  /* ===================== TOKENS ===================== */
  :root {
    --sage:      #C4D7C6;
    --sage-dk:   #8FAF93;
    --blush:     #F4D6CC;
    --cream:     #FAF8F3;
    --rose:      #D9A5B3;
    --rose-dk:   #BF7E92;
    --taupe:     #A3978B;
    --taupe-dk:  #7A6E65;
    --ink:       #3B3530;
    --white:     #FFFFFF;
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body:    'Jost', system-ui, sans-serif;
    --radius:    12px;
    --radius-lg: 24px;
    --shadow:    0 4px 32px rgba(59,53,48,.08);
    --shadow-md: 0 8px 48px rgba(59,53,48,.12);
    --transition: .35s cubic-bezier(.4,0,.2,1);
  }

  /* ===================== RESET ===================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--ff-body); color: var(--ink); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

  /* ===================== TYPOGRAPHY ===================== */
  h1,h2,h3,h4,h5 { font-family: var(--ff-display); font-weight: 400; line-height: 1.2; }
  h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
  h2 { font-size: clamp(2rem, 4vw, 3rem); }
  h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
  h4 { font-size: 1.25rem; }
  p { font-size: 1rem; font-weight: 300; }
  .eyebrow { font-size: .75rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: .75rem; }
  .italic { font-style: italic; }

  /* ===================== LAYOUT ===================== */
  .container { width: 90%; max-width: 1200px; margin: 0 auto; }
  .section { padding: 6rem 0; }
  .section-sm { padding: 4rem 0; }
  .text-center { text-align: center; }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
  .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
  .flex-center { display: flex; align-items: center; justify-content: center; gap: 1rem; }
  .flex-wrap { flex-wrap: wrap; }

  /* ===================== BUTTONS ===================== */
  .btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 2.2rem; border-radius: 50px; font-size: .875rem; font-weight: 500; letter-spacing: .05em; transition: all var(--transition); white-space: nowrap; }
  .btn-primary { background: var(--rose-dk); color: var(--white); }
  .btn-primary:hover { background: #a8667c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(191,126,146,.35); }
  .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
  .btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
  .btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.7); }
  .btn-outline-white:hover { background: var(--white); color: var(--ink); }
  .btn-sage { background: var(--sage-dk); color: var(--white); }
  .btn-sage:hover { background: #6f9475; transform: translateY(-2px); }

  /* ===================== NAV ===================== */
  .nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.2rem 0; transition: all var(--transition); }
  .nav.scrolled { background: rgba(250,248,243,.95); backdrop-filter: blur(12px); box-shadow: 0 2px 24px rgba(59,53,48,.08); padding: .8rem 0; }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 500; color: var(--ink); line-height: 1.1; }
  .nav-logo span { display: block; font-size: .65rem; font-family: var(--ff-body); letter-spacing: .15em; text-transform: uppercase; color: var(--taupe); font-weight: 400; margin-top: .1rem; }
  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a { font-size: .875rem; font-weight: 400; color: var(--ink); transition: color var(--transition); position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--rose-dk); transition: width var(--transition); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a:hover { color: var(--rose-dk); }
  .nav-cta { font-size: .8rem; }
  .hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all var(--transition); }
  .mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 999; padding: 7rem 2rem 3rem; flex-direction: column; gap: 2rem; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: var(--ff-display); font-size: 2rem; border-bottom: 1px solid var(--blush); padding-bottom: 1rem; }

  /* ===================== HERO ===================== */
  .hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #f0ede6 0%, #ede0d8 50%, #e8ddd8 100%); }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-bg-shape { position: absolute; border-radius: 50%; filter: blur(80px); }
  .hero-bg-shape.s1 { width: 600px; height: 600px; background: rgba(196,215,198,.4); right: -150px; top: -100px; }
  .hero-bg-shape.s2 { width: 400px; height: 400px; background: rgba(244,214,204,.5); left: -100px; bottom: -50px; }
  .hero-bg-shape.s3 { width: 300px; height: 300px; background: rgba(217,165,179,.25); right: 200px; bottom: 100px; }
  .hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; min-height: 100vh; padding: 11rem 0 5rem; }
  .hero-text { }
  .hero-text .eyebrow {
  font-size: .7rem;
}
  .hero-h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; }
  .hero-h1 em { font-style: italic; color: var(--rose-dk); }
  .hero-sub { font-size: 1.05rem; color: var(--taupe-dk); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-trust { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(163,151,139,.2); }
  .hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--taupe-dk); }
  .hero-trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }
  .hero-image { position: relative; }
  .hero-image-wrap { border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(145deg, var(--blush), var(--rose)); display: flex; align-items: center; justify-content: center; position: relative; }
  .hero-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
  .hero-image-placeholder svg { width: 60%; height: 60%; opacity: .25; }
  .hero-badge { position: absolute; bottom: -1rem; left: -2rem; background: var(--white); border-radius: var(--radius); padding: 1rem 1.5rem; box-shadow: var(--shadow-md); }
  .hero-badge-text { font-family: var(--ff-display); font-size: 1.1rem; color: var(--ink); }
  .hero-badge-sub { font-size: .7rem; color: var(--taupe); font-weight: 400; margin-top: .15rem; }
  .hero-badge-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--sage-dk); margin-right: .4rem; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }

  /* ===================== WELCOME ===================== */
  .welcome { background: var(--white); }
  .welcome-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
  .welcome-visual { position: relative; }
  .welcome-circle { width: 100%; aspect-ratio: 1; border-radius: 50%; background: linear-gradient(145deg, var(--sage) 0%, var(--blush) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
  .welcome-circle::after { content: ''; position: absolute; inset: 15%; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); }
  .welcome-circle svg { width: 45%; opacity: .4; color: var(--white); }
  .welcome-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
  .welcome-stat { background: var(--cream); border-radius: var(--radius); padding: 1.2rem; text-align: center; }
  .welcome-stat-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 500; color: var(--rose-dk); }
  .welcome-stat-label { font-size: .75rem; color: var(--taupe); margin-top: .2rem; }
  .welcome-text h2 { margin-bottom: 1.5rem; }
  .welcome-text p { color: var(--taupe-dk); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; }
  .welcome-pillars { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
  .welcome-pillar { display: flex; align-items: center; gap: 1rem; font-size: .9rem; color: var(--taupe-dk); }
  .pillar-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sage-dk); flex-shrink: 0; }

  /* ===================== SERVICES ===================== */
  .services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .service-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; transition: all var(--transition); border: 1px solid rgba(196,215,198,.3); position: relative; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sage-dk), var(--rose)); opacity: 0; transition: opacity var(--transition); }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .service-card:hover::before { opacity: 1; }
  .service-icon { width: 52px; height: 52px; border-radius: var(--radius); background: linear-gradient(135deg, var(--blush), var(--sage)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
  .service-icon svg { width: 24px; height: 24px; color: var(--taupe-dk); }
  .service-card h4 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: .75rem; font-weight: 500; }
  .service-card p { font-size: .9rem; color: var(--taupe-dk); line-height: 1.7; }
  .service-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--rose-dk); font-weight: 500; margin-top: 1.2rem; transition: gap var(--transition); }
  .service-link:hover { gap: .7rem; }

  /* ===================== WHY DOULA ===================== */
  .why { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
  .why::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: rgba(196,215,198,.05); }
  .why .eyebrow { color: var(--sage); }
  .why h2 { color: var(--cream); margin-bottom: 1rem; }
  .why-intro { color: rgba(250,248,243,.65); font-size: 1.05rem; max-width: 600px; margin: 0 auto 4rem; }
 .why-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    align-items: stretch;
}

.why-stat {
    border: 1px solid rgba(196,215,198,.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 220px;
}

.why-stat:hover {
    border-color: var(--sage);
    background: rgba(196,215,198,.05);
}

.why-stat-num {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--sage);
    line-height: 1;
    margin-bottom: .5rem;
}

.why-stat-num sup {
    font-size: 1.5rem;
}

.why-stat-label {
    font-size: .9rem;
    color: rgba(250,248,243,.72);
    line-height: 1.6;
}
  .why-stat { border: 1px solid rgba(196,215,198,.2); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; transition: all var(--transition); }
  .why-stat:hover { border-color: var(--sage); background: rgba(196,215,198,.05); }
  .why-stat-num { font-family: var(--ff-display); font-size: 3.5rem; font-weight: 300; color: var(--sage); line-height: 1; margin-bottom: .5rem; }
  .why-stat-num sup { font-size: 1.5rem; }
  .why-stat-label { font-size: .85rem; color: rgba(250,248,243,.65); line-height: 1.5; }
  .why-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .why-benefit { display: flex; align-items: flex-start; gap: 1.2rem; }
  .benefit-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(196,215,198,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .benefit-icon svg { width: 20px; height: 20px; color: var(--sage); }
  .benefit-text h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream); margin-bottom: .3rem; }
  .benefit-text p { font-size: .85rem; color: rgba(250,248,243,.55); line-height: 1.6; }
.why-research-note{
    max-width:850px;
    margin:3rem auto 3.5rem;
    padding:1rem 1.5rem;
    text-align:center;
    border-top:1px solid rgba(196,215,198,.2);
    border-bottom:1px solid rgba(196,215,198,.2);
}

.why-research-note p{
    font-size:.9rem;
    line-height:1.8;
    color:rgba(250,248,243,.72);
    margin:0;
}

.why-research-note strong{
    color:var(--cream);
}

.why-research-note a{
    color:var(--sage);
    text-decoration:underline;
    text-underline-offset:3px;
}

.why-research-note a:hover{
    color:#d7ead9;
}
  /* ===================== MEET DENISSE ===================== */
  .meet { background: var(--white); }
  .meet-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: center; }
  .meet-image-stack { position: relative; }
  .meet-photo { width: 100%; aspect-ratio: 3/4; background: linear-gradient(145deg, var(--blush) 0%, var(--rose) 60%, var(--sage) 100%); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .meet-photo svg { width: 50%; opacity: .2; color: var(--white); }
  .meet-cert { position: absolute; bottom: 2rem; right: -2rem; background: var(--cream); border-radius: var(--radius); padding: 1.2rem 1.5rem; box-shadow: var(--shadow); width: 200px; }
  .meet-cert-title { font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe); margin-bottom: .75rem; }
  .meet-cert-item { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--taupe-dk); margin-bottom: .4rem; }
  .meet-cert-item::before { content: '✓'; color: var(--sage-dk); font-weight: 600; font-size: .9rem; }
  .meet-text h2 { margin-bottom: 1rem; }
  .meet-quote { font-family: var(--ff-display); font-size: 1.4rem; font-style: italic; color: var(--rose-dk); line-height: 1.5; margin-bottom: 1.5rem; padding-left: 1.5rem; border-left: 3px solid var(--blush); }
  .meet-text p { color: var(--taupe-dk); font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; }
  .meet-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; margin-bottom: 2rem; }
  .meet-tag { background: var(--cream); border: 1px solid var(--blush); border-radius: 50px; padding: .4rem 1rem; font-size: .78rem; color: var(--taupe-dk); }

  /* ===================== PACKAGES ===================== */
  .packages { background: var(--cream); }
  .packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .package-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; border: 1.5px solid rgba(196,215,198,.3); transition: all var(--transition); display: flex; flex-direction: column; }
  .package-card.featured { background: var(--ink); border-color: var(--ink); transform: scale(1.03); position: relative; }
  .package-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--rose-dk); color: var(--white); font-size: .7rem; font-weight: 500; letter-spacing: .1em; padding: .35rem 1.2rem; border-radius: 50px; white-space: nowrap; }
  .package-card:hover:not(.featured) { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .package-name { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 500; margin-bottom: .3rem; }
  .package-card.featured .package-name { color: var(--cream); }
  .package-subtitle { font-size: .8rem; color: var(--taupe); margin-bottom: 1.5rem; }
  .package-card.featured .package-subtitle { color: rgba(250,248,243,.5); }
  .package-price { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 300; color: var(--rose-dk); line-height: 1; margin-bottom: .3rem; }
  .package-card.featured .package-price { color: var(--blush); }
  .package-price-note { font-size: .75rem; color: var(--taupe); margin-bottom: 2rem; }
  .package-card.featured .package-price-note { color: rgba(250,248,243,.45); }
  .package-divider { border: none; border-top: 1px solid rgba(196,215,198,.3); margin-bottom: 1.5rem; }
  .package-card.featured .package-divider { border-color: rgba(250,248,243,.1); }
  .package-features { flex: 1; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
  .pkg-feat { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--taupe-dk); }
  .package-card.featured .pkg-feat { color: rgba(250,248,243,.75); }
  .pkg-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(196,215,198,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .package-card.featured .pkg-check { background: rgba(196,215,198,.15); }
  .pkg-check::after { content: '✓'; font-size: .65rem; color: var(--sage-dk); }
  .package-card.featured .pkg-check::after { color: var(--sage); }
  .pkg-cta { width: 100%; padding: 1rem; border-radius: 50px; font-size: .875rem; font-weight: 500; letter-spacing: .05em; transition: all var(--transition); }
  .pkg-cta-default { border: 1.5px solid var(--rose-dk); color: var(--rose-dk); }
  .pkg-cta-default:hover { background: var(--rose-dk); color: var(--white); }
  .pkg-cta-featured { background: var(--rose-dk); color: var(--white); }
  .pkg-cta-featured:hover { background: #a8667c; }
  .packages-note { text-align: center; margin-top: 2.5rem; font-size: .875rem; color: var(--taupe); }

  /* ===================== TESTIMONIALS ===================== */
  .testimonials { background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 60%); }
  .testimonials h2 { margin-bottom: .75rem; }
  .testimonials-intro { color: var(--taupe-dk); margin-bottom: 3rem; font-size: 1.05rem; }
  .testimonial-carousel { position: relative; overflow: hidden; }
  .testimonial-track { display: flex; gap: 2rem; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-width: 100%;
  max-width: 100%;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  height: auto;
}  .testimonial-stars { color: var(--rose-dk); font-size: 1.1rem; margin-bottom: 1.2rem; letter-spacing: .1rem; }
 .testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 100%;
}
  .testimonial-author { display: flex; align-items: center; gap: 1rem; }
  .author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--sage), var(--blush)); flex-shrink: 0; }
  .author-name { font-weight: 500; font-size: .9rem; }
  .author-detail { font-size: .78rem; color: var(--taupe); }
  .carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
  .carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--rose-dk); display: flex; align-items: center; justify-content: center; transition: all var(--transition); cursor: pointer; background: none; }
  .carousel-btn:hover { background: var(--rose-dk); }
  .carousel-btn:hover svg { color: var(--white); }
  .carousel-btn svg { width: 16px; height: 16px; color: var(--rose-dk); transition: color var(--transition); }
  .carousel-dots { display: flex; align-items: center; gap: .5rem; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(163,151,139,.3); transition: all var(--transition); cursor: pointer; }
  .dot.active { background: var(--rose-dk); width: 24px; border-radius: 4px; }

  /* ===================== FAQ ===================== */
  .faq { background: var(--white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
  .faq-item { border: 1px solid rgba(196,215,198,.4); border-radius: var(--radius); overflow: hidden; }
  .faq-question { padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 500; font-size: .95rem; gap: 1rem; transition: background var(--transition); }
  .faq-question:hover { background: var(--cream); }
  .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); }
  .faq-icon svg { width: 14px; height: 14px; color: var(--rose-dk); transition: transform var(--transition); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
  .faq-answer-inner { padding: 0 1.5rem 1.2rem; font-size: .9rem; color: var(--taupe-dk); line-height: 1.7; }
  .faq-item.open .faq-icon { background: var(--rose-dk); }
  .faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
  .faq-item.open .faq-answer { max-height: 400px; }

  /* ===================== SERVICE AREAS ===================== */
  .areas { background: var(--sage); }
  .areas h2 { margin-bottom: 1rem; }
  .areas-intro { color: var(--taupe-dk); margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
  .areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .area-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; transition: all var(--transition); }
  .area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .area-card svg { width: 24px; height: 24px; color: var(--sage-dk); margin: 0 auto .75rem; }
  .area-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500; margin-bottom: .25rem; }
  .area-county { font-size: .75rem; color: var(--taupe); }

  /* ===================== CONTACT ===================== */
  .contact { background: var(--cream); }
  .contact-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; }
  .contact-info h2 { margin-bottom: 1.5rem; }
  .contact-info p { color: var(--taupe-dk); line-height: 1.85; margin-bottom: 2rem; }
  .contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
  .contact-detail-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--blush); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-detail-icon svg { width: 18px; height: 18px; color: var(--rose-dk); }
  .contact-detail-text strong { display: block; font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--taupe); margin-bottom: .15rem; }
  .contact-detail-text span { font-size: .95rem; color: var(--taupe-dk); }
  .contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--taupe); margin-bottom: .5rem; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: .85rem 1.1rem; border: 1.5px solid rgba(196,215,198,.5); border-radius: var(--radius); background: var(--cream); font-family: var(--ff-body); font-size: .9rem; color: var(--ink); transition: border-color var(--transition); outline: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage-dk); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit { width: 100%; padding: 1.1rem; border-radius: 50px; background: var(--rose-dk); color: var(--white); font-family: var(--ff-body); font-size: .95rem; font-weight: 500; letter-spacing: .05em; transition: all var(--transition); cursor: pointer; border: none; margin-top: .5rem; }
  .form-submit:hover { background: #a8667c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(191,126,146,.35); }

  /* ===================== LEAD MAGNET ===================== */
  .lead-magnet { background: linear-gradient(135deg, var(--rose-dk) 0%, #c46e88 50%, var(--taupe-dk) 100%); color: var(--white); text-align: center; padding: 5rem 0; }
  .lead-magnet h2 { color: var(--white); margin-bottom: .75rem; }
  .lead-magnet p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2.5rem; }
  .lead-magnet-form { display: flex; gap: 1rem; max-width: 480px; margin: 0 auto; }
  .lead-magnet-form input { flex: 1; padding: 1rem 1.5rem; border-radius: 50px; border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.15); color: var(--white); font-family: var(--ff-body); font-size: .9rem; outline: none; }
  .lead-magnet-form input::placeholder { color: rgba(255,255,255,.6); }
  .lead-magnet-form input:focus { border-color: rgba(255,255,255,.7); }

  /* ===================== FOOTER ===================== */
  .footer { background: var(--ink); color: rgba(250,248,243,.7); padding: 5rem 0 2rem; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand .nav-logo { color: var(--cream); margin-bottom: 1rem; }
  .footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 280px; }
  .footer-col h5 { font-family: var(--ff-display); color: var(--cream); font-size: 1.1rem; margin-bottom: 1.2rem; font-weight: 500; }
  .footer-col a { display: block; font-size: .875rem; margin-bottom: .6rem; transition: color var(--transition); }
  .footer-col a:hover { color: var(--rose); }
  .footer-bottom { border-top: 1px solid rgba(250,248,243,.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
  .footer-langs { display: flex; gap: 1rem; }
  .footer-lang { background: rgba(250,248,243,.08); border-radius: 50px; padding: .35rem .9rem; font-size: .75rem; cursor: pointer; transition: background var(--transition); }
  .footer-lang:hover, .footer-lang.active { background: var(--rose-dk); color: var(--white); }

  /* ===================== SECTION HEADERS ===================== */
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-header h2 { margin-bottom: .75rem; }
  .section-header p { font-size: 1.05rem; color: var(--taupe-dk); max-width: 560px; margin: 0 auto; }

  /* ===================== PAGE SECTIONS (about, etc.) ===================== */
  .page-hero { padding: 10rem 0 5rem; background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%); text-align: center; }
  .page-hero .eyebrow { margin-bottom: .75rem; }
  .page-hero h1 { max-width: 700px; margin: 0 auto 1.5rem; }
  .page-hero p { max-width: 600px; margin: 0 auto; color: var(--taupe-dk); font-size: 1.1rem; }

  /* ===================== SCROLL REVEAL ===================== */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ===================== BACK TO TOP ===================== */
  .back-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; border-radius: 50%; background: var(--rose-dk); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); cursor: pointer; opacity: 0; transform: translateY(20px); transition: all var(--transition); z-index: 500; border: none; }
  .back-top.visible { opacity: 1; transform: translateY(0); }
  .back-top:hover { background: #a8667c; transform: translateY(-3px); }
  .back-top svg { width: 20px; height: 20px; }

  /* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}
    .hero-image { display: none; }
    .hero-text { text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .welcome-inner { grid-template-columns: 1fr; }
    .welcome-visual { display: none; }
    .meet-inner { grid-template-columns: 1fr; }
    .meet-image-stack { display: none; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-stats {
    grid-template-columns: repeat(2, minmax(0,1fr));
    max-width: 700px;
}
    .why-benefits { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .package-card.featured { transform: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(3,1fr); }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card { min-width: calc(100% - 0px); }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr 1fr; }
    .areas-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .lead-magnet-form { flex-direction: column; }
    .hero-btns { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-trust { flex-direction: column; align-items: center; gap: 1rem; }
  }
  @media (max-width: 480px) {
    .areas-grid { grid-template-columns: repeat(2,1fr); }
    .why-stats { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .contact-form { padding: 2rem 1.5rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
  }
