*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #ffffff;
  --blush:   #CA9084;
  --teal:    #115562;
  --ink:     #000000;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: var(--teal);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--blush); font-style: italic; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  opacity: 0.8;
}
.nav-link:hover,
.nav-link.active { opacity: 1; }
.nav-cta {
  background: var(--blush);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #d9a396; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,85,98,0.12);
}
.hero::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(17,85,98,0.08);
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--blush); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--blush);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #d9a396; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(17,85,98,0.4);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--teal); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ── SECTION BASE ── */
section { padding: 6rem 4rem; }
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--blush); }

/* ── WHY ── */
.why { background: var(--teal); color: var(--cream); }
.why .section-eyebrow { color: var(--cream); }
.why .section-title { color: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 2rem;
}
.why-stat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.why-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blush);
  min-width: 80px;
}
.why-stat-label {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cream);
  padding-top: 0.4rem;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 1.5rem;
}
.why-card-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.why-card-icon svg { width: 18px; height: 18px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
.why-card h3 { font-size: 0.95rem; font-weight: 500; color: var(--teal); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.83rem; font-weight: 300; line-height: 1.6; color: var(--ink); }

/* ── HOW ── */
.how { background: var(--cream); }
.how-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
  max-width: 500px;
  margin-bottom: 3.5rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, rgba(17,85,98,0.2), var(--teal), rgba(17,85,98,0.2));
  opacity: 0.4;
}
.how-step { padding: 0 1.5rem; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
}
.step-num-1, .step-num-2, .step-num-3, .step-num-4 { background: var(--teal); color: var(--cream); }
.how-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blush);
  margin-bottom: 0.6rem;
}
.how-step p { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: var(--ink); }

/* ── CTA / CONTACT ── */
.cta-section {
  background: var(--teal);
  text-align: center;
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.cta-section .section-eyebrow { color: var(--cream); }
.cta-section .section-title { color: var(--cream); }
.cta-section .section-title em { color: var(--blush); }
.cta-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  text-align: left;
  color: var(--cream);
  max-width: 480px;
  margin: 0 auto 3rem;
}
.contact-grid {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-form {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 2rem;
  text-align: left;
}
.contact-field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.contact-field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(17,85,98,0.15);
  border-radius: 6px;
  padding: 0.95rem 1rem;
  font: inherit;
  font-size: 1rem; /* prevents iOS zoom on focus */
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(202,144,132,0.2);
}
.contact-field textarea { min-height: 130px; resize: vertical; }
.contact-submit {
  background: var(--blush);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  padding: 1rem 1.6rem;
  font: 500 1rem 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.contact-submit:hover { background: #d9a396; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--teal);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); }
.footer-logo span { color: var(--blush); font-style: italic; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.25s; }
.hero-sub      { animation-delay: 0.4s; }
.hero-actions  { animation-delay: 0.55s; }
.hero-visual {
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

/* ══════════════════════════════
   TABLET  (≤ 1024px)
══════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.25rem 2.5rem; }
  section { padding: 5rem 2.5rem; }
  .hero { padding: 6rem 2.5rem 4rem; gap: 2.5rem; }
  .why-grid { gap: 2.5rem; }
  .how-step { padding: 0 0.75rem; }
  .how-step h3 { font-size: 1.1rem; }
}

/* ══════════════════════════════
   MOBILE  (≤ 768px)
══════════════════════════════ */
@media (max-width: 768px) {

  /* NAV — hamburger menu */
  nav { padding: 1rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: var(--teal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 1.1rem;
    opacity: 0.85;
  }
  .nav-cta {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  /* Overlay behind the drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 140;
  }
  .nav-overlay.open { display: block; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 6rem 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.975rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; padding: 1rem; }

  /* SECTIONS */
  section { padding: 4rem 1.5rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-cards { grid-template-columns: 1fr; gap: 0.75rem; }
  .why-stat-num { font-size: 2rem; min-width: 65px; }

  /* HOW */
  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .how-steps::before { display: none; }
  .how-step { padding: 0; }
  .how-step h3 { font-size: 1rem; }

  /* CONTACT */
  .cta-section { padding: 4rem 1.5rem; }
  .cta-body { text-align: center; }
  .contact-form { padding: 1.5rem 1.25rem; }

  /* FOOTER */
  footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* ══════════════════════════════
   SMALL PHONES  (≤ 420px)
══════════════════════════════ */
@media (max-width: 420px) {
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .hero-headline { font-size: 2rem; }
  .why-stat { flex-direction: column; gap: 0.25rem; }
  .why-stat-num { font-size: 2.2rem; }
}