/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #2a1f1f;
  background: #fdf8f5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a0e0e;
}

/* ── Section Labels & Titles ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: #5a4040;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: #7B2D3B;
  color: #fff;
  border: 2px solid #7B2D3B;
}
.btn--primary:hover { background: #611f2c; border-color: #611f2c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,59,0.3); }
.btn--burgundy {
  background: #7B2D3B;
  color: #fff;
  border: 2px solid #7B2D3B;
}
.btn--burgundy:hover { background: #611f2c; border-color: #611f2c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,59,0.3); }
.btn--outline {
  background: transparent;
  color: #7B2D3B;
  border: 2px solid #7B2D3B;
}
.btn--outline:hover { background: #7B2D3B; color: #fff; transform: translateY(-2px); }
.btn--nav {
  background: #7B2D3B;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.85rem;
}
.btn--nav:hover { background: #611f2c; }
.btn--full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(123,45,59,0.1); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1a0e0e;
}
.logo--light { color: #fdf8f5; }
.logo-icon { color: #7B2D3B; }
.logo--light .logo-icon { color: #F5E6D8; }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2a1f1f;
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:not(.btn):hover { color: #7B2D3B; }
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7B2D3B;
  transition: width 0.3s ease;
}
.main-nav a:not(.btn):hover::after { width: 100%; }

/* ── Nav Toggle ── */
.nav-toggle { display: none; padding: 8px; }
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a0e0e;
  position: relative;
  transition: background 0.3s ease;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #1a0e0e;
  left: 0;
  transition: transform 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/4872023/pexels-photo-4872023.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280') center center / cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,14,0.82) 0%, rgba(123,45,59,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5E6D8;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-headline {
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: #fdf8f5;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-headline em {
  font-style: italic;
  color: #F5E6D8;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(253,248,245,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-actions .btn--outline {
  color: #fdf8f5;
  border-color: rgba(253,248,245,0.6);
}
.hero-actions .btn--outline:hover {
  background: #fdf8f5;
  color: #7B2D3B;
  border-color: #fdf8f5;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(253,248,245,0.6);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #fdf8f5;
}
.services .section-title,
.services .section-desc { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(123,45,59,0.08);
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(123,45,59,0.1);
  border-color: rgba(123,45,59,0.15);
}
.service-icon {
  color: #7B2D3B;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.925rem;
  color: #5a4040;
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: #f5ebe5;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(123,45,59,0.15);
}
.about-img--main {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
}
.about-img--accent {
  width: 55%;
  height: 45%;
  bottom: 0;
  right: 0;
  border: 4px solid #f5ebe5;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-desc { margin-bottom: 24px; }
.about-content p {
  font-size: 0.95rem;
  color: #5a4040;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(123,45,59,0.12);
  border-bottom: 1px solid rgba(123,45,59,0.12);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7B2D3B;
}
.stat-label {
  font-size: 0.8rem;
  color: #5a4040;
  line-height: 1.4;
}

/* ── Process ── */
.process {
  padding: 100px 0;
  background: #fdf8f5;
  text-align: center;
}
.process .section-title { margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #7B2D3B, rgba(123,45,59,0.2));
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(123,45,59,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: #5a4040;
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: #7B2D3B;
}
.testimonials .section-label { color: #F5E6D8; opacity: 0.8; }
.testimonials .section-title { color: #fdf8f5; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(253,248,245,0.08);
  border: 1px solid rgba(253,248,245,0.12);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(253,248,245,0.12);
  transform: translateY(-4px);
}
.testimonial-quote {
  color: #F5E6D8;
  opacity: 0.5;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(253,248,245,0.9);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: #F5E6D8;
  letter-spacing: 0.04em;
}

/* ── CTA ── */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/7433937/pexels-photo-7433937.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=900') center center / cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,45,59,0.88) 0%, rgba(26,14,14,0.82) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5E6D8;
  margin-bottom: 16px;
}
.cta-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fdf8f5;
  margin-bottom: 20px;
}
.cta-body {
  font-size: 1.05rem;
  color: rgba(253,248,245,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta .btn--primary {
  background: #fdf8f5;
  color: #7B2D3B;
  border-color: #fdf8f5;
}
.cta .btn--primary:hover {
  background: #F5E6D8;
  border-color: #F5E6D8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #fdf8f5;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-desc { margin-bottom: 36px; }
.contact-details { margin-bottom: 32px; }
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(123,45,59,0.1);
}
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D3B;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: #2a1f1f;
  line-height: 1.6;
}
.contact-detail-value a { color: #2a1f1f; transition: color 0.2s; }
.contact-detail-value a:hover { color: #7B2D3B; }
.contact-map { border-radius: 12px; overflow: hidden; }

/* ── Contact Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(123,45,59,0.08);
  box-shadow: 0 16px 48px rgba(123,45,59,0.06);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #2a1f1f;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(123,45,59,0.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #2a1f1f;
  background: #fdf8f5;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7B2D3B;
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a08080; }
.form-notice {
  font-size: 0.8rem;
  color: #8a6060;
  margin-top: 16px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success svg { margin: 0 auto 20px; }
.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #7B2D3B;
}
.form-success p {
  font-size: 0.95rem;
  color: #5a4040;
  margin-bottom: 28px;
  line-height: 1.7;
}
.form-success .btn--outline { color: #7B2D3B; }

/* ── Footer ── */
.site-footer {
  background: #1a0e0e;
  color: rgba(253,248,245,0.7);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5E6D8;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #F5E6D8; }
.footer-contact address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-contact a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #F5E6D8; }
.footer-bottom {
  border-top: 1px solid rgba(253,248,245,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(253,248,245,0.4); }
.footer-bottom a { color: rgba(253,248,245,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: #F5E6D8; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-step:not(:last-child)::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; z-index: 1001; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fdf8f5;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
  .main-nav a { font-size: 1.1rem; }

  .hero-content { padding: 100px 24px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 400px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; gap: 24px; }
}
