
  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,800&family=Inter:wght@400;500;700;800&display=swap');

  :root {
    --cream:   #F6F2EA;
    --orange:  #B96545;
    --orange-deep: #8F4936;
    --orange-light: #D58A6E;
    --green:   #2F5D50;
    --green-deep: #173A32;
    --mint:    #A7B8A1;
    --mint-deep: #83977D;
    --mint-light: #D6DFD1;
    --sky:     #D9E4DE;
    --navy:    #171A24;
    --white:   #FFFFFF;
    --yellow:  #D8B26E;
    --yellow-deep: #A98143;
    --pink:    #9B6F67;
    --pink-soft: #C9AAA1;
    --magenta: #7B4E56;
    --blue:    #6F8390;
    --peach:   #C99B84;
    --cream-warm: #FBF7EF;
    --line:    rgba(23,26,36,0.12);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-slow: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--cream);
    color: var(--navy);
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  body.nav-open { overflow: hidden; }
  ::selection { background: var(--orange); color: var(--white); }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    text-transform: none;
    letter-spacing: -0.5px;
    line-height: 1;
    margin: 0;
  }
  h2 { font-size: clamp(2.5rem, 6vw, 6rem); }
  h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
  p { margin: 0 0 1rem; }
  a { color: inherit; text-decoration: none; }

  .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
  }
  section {
    position: relative;
    scroll-margin-top: 92px;
  }
  section > .container,
  footer > .container {
    position: relative;
    z-index: 10;
  }

  /* ========================= NAV ========================= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background: rgba(246, 242, 234, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line);
    transition: opacity 0.3s var(--ease);
  }
  .nav.scrolled {
    background: rgba(246, 242, 234, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.9rem 2.5rem;
    box-shadow: 0 1px 0 var(--line);
  }
  .nav.nav-open::before { opacity: 1; }
  .logo {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0;
    text-transform: none;
    line-height: 0.95;
    max-width: min(34vw, 330px);
    overflow-wrap: anywhere;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease);
  }
  .logo .dot { color: var(--orange); }
  .nav.scrolled .logo { color: var(--orange); text-shadow: none; }
  .nav.scrolled .logo .dot { color: var(--navy); }
  @media (max-width: 820px) {
    .logo {
      max-width: calc(100vw - 148px);
      font-size: clamp(1.15rem, 5vw, 1.55rem);
    }
  }
  .nav-links {
    display: flex;
    gap: 1.7rem;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .nav-links a {
    color: var(--white);
    transition: color 0.3s var(--ease);
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
  }
  .nav.scrolled .nav-links a { color: var(--navy); text-shadow: none; }
  .nav-links a:hover { color: var(--yellow); }
  .nav.scrolled .nav-links a:hover { color: var(--orange); }
  @media (max-width: 820px) { .nav-links { display: none; } }
  .nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(26,26,46,0.16);
    cursor: pointer;
    place-items: center;
    position: relative;
  }
  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: absolute;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  }
  .nav-toggle::before { transform: translateY(-7px); }
  .nav-toggle::after { transform: translateY(7px); }
  .nav.nav-open .nav-toggle::before { transform: rotate(45deg); }
  .nav.nav-open .nav-toggle::after { transform: rotate(-45deg); }
  .nav.nav-open .nav-toggle span { opacity: 0; }
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 76px 1rem auto;
    z-index: 99;
    border-radius: 24px;
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 28px 70px rgba(26,26,46,0.24);
    padding: 0.7rem;
    transform: translateY(-14px) scale(0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0s linear 0.25s;
  }
  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    padding: 0 1rem;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .mobile-menu a + a { margin-top: 0.2rem; }
  .mobile-menu a:hover { background: var(--cream); color: var(--orange); }
  .mobile-menu a::after {
    content: "→";
    color: var(--orange);
    font-size: 1.1rem;
  }
  .mobile-menu .mobile-primary {
    background: var(--orange);
    color: var(--white);
    margin-top: 0.6rem;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.12);
  }
  .mobile-menu .mobile-primary::after { color: var(--white); }
  .nav.nav-open + .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }
  .nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 6px 18px rgba(232,68,26,0.4);
  }
  .nav-cta:hover { background: var(--navy); transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }

  /* ============================================================
     ★★★ HERO — fully rebuilt ★★★
     ============================================================ */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* Gradient sky: warm sunrise top → mint at horizon */
    background:
      radial-gradient(ellipse 80% 60% at 50% 110%, rgba(131,151,125,0.72) 0%, transparent 70%),
      linear-gradient(to bottom,
        #EFE4D3 0%,
        #E8D7C1 20%,
        #D9E0D7 50%,
        #A7B8A1 100%);
  }

  .vanta-birds-layer {
    position: fixed;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0.2;
  }
  .vanta-birds-layer canvas {
    opacity: 0.82;
  }
  body.vanta-ready .bird { opacity: 0.28; }

  /* Soft warm sun glow */
  .sun {
    position: absolute;
    top: 12%; left: 50%;
    width: 220px; height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(circle, #FFF5C8 0%, rgba(255,235,170,0.6) 30%, rgba(255,210,140,0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: sunBreathe 8s ease-in-out infinite alternate;
  }
  @keyframes sunBreathe {
    from { transform: translateX(-50%) scale(1); opacity: 0.9; }
    to   { transform: translateX(-50%) scale(1.08); opacity: 1; }
  }
  .sun-disc {
    position: absolute;
    top: 16%; left: 50%;
    width: 80px; height: 80px;
    transform: translateX(-50%);
    background: #FFE89A;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 60px 20px rgba(255,232,154,0.5);
  }

  /* ===== Distant mountains (parallax layer 1, furthest) ===== */
  .mtn-far {
    position: absolute;
    bottom: 38%;
    left: -5%;
    width: 110%;
    height: 22%;
    z-index: 2;
    opacity: 0.55;
  }
  .mtn-far svg { width: 100%; height: 100%; display: block; }

  /* ===== Mid mountains (layer 2) ===== */
  .mtn-mid {
    position: absolute;
    bottom: 32%;
    left: -5%;
    width: 110%;
    height: 26%;
    z-index: 3;
    opacity: 0.85;
  }
  .mtn-mid svg { width: 100%; height: 100%; display: block; }

  /* ===== The valley — the centerpiece ===== */
  .valley-stage {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 50%;
    z-index: 4;
    pointer-events: none;
  }
  .valley-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Path stripes — drawn over the valley */
  .path-stripe {
    fill: none;
    stroke: rgba(255,255,255,0.32);
    stroke-width: 1.5;
    stroke-dasharray: 12 18;
    stroke-linecap: round;
    animation: dashFlow 12s linear infinite;
  }
  @keyframes dashFlow {
    to { stroke-dashoffset: -300; }
  }

  /* ===== Foreground hills (parallax layer 4, closest) ===== */
  .hill-left, .hill-right {
    position: absolute;
    bottom: 0;
    z-index: 6;
    pointer-events: none;
  }
  .hill-left { left: -2%; width: 38%; }
  .hill-right { right: -2%; width: 38%; }
  .hill-left svg, .hill-right svg { width: 100%; display: block; }

  /* ===== Tree (foreground left) ===== */
  .tree {
    position: absolute;
    bottom: 14%;
    left: 9%;
    z-index: 7;
    width: 130px;
    transform-origin: bottom center;
    animation: sway 6s ease-in-out infinite alternate;
    filter: drop-shadow(8px 12px 0 rgba(15,69,37,0.25));
  }
  @keyframes sway {
    from { transform: rotate(-2deg); }
    to   { transform: rotate(2.5deg); }
  }
  .tree svg { width: 100%; display: block; }

  /* ===== Second smaller tree ===== */
  .tree-small {
    position: absolute;
    bottom: 8%;
    left: 4%;
    z-index: 7;
    width: 70px;
    transform-origin: bottom center;
    animation: sway 4.5s ease-in-out -1.5s infinite alternate;
    filter: drop-shadow(4px 6px 0 rgba(15,69,37,0.2));
  }
  .tree-small svg { width: 100%; display: block; }

  /* ===== Flowers / grass tufts ===== */
  .grass-tufts {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 18%;
    z-index: 8;
    pointer-events: none;
  }
  .tuft {
    position: absolute;
    bottom: 8%;
    width: 12px; height: 16px;
  }
  .tuft::before, .tuft::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 3px; height: 14px;
    background: var(--green-deep);
    border-radius: 2px 2px 0 0;
  }
  .tuft::before { left: 0; transform: rotate(-12deg); }
  .tuft::after  { right: 0; transform: rotate(12deg); }
  .tuft i {
    position: absolute;
    bottom: 0; left: 4px;
    width: 4px; height: 16px;
    background: var(--green-deep);
    border-radius: 2px 2px 0 0;
  }
  .flower {
    position: absolute;
    bottom: 12%;
    width: 14px; height: 14px;
  }
  .flower::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 18px;
    background: var(--green-deep);
  }
  .flower-bloom {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    border-radius: 50%;
  }
  .flower-bloom::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--yellow);
    border-radius: 50%;
  }

  /* ===== Hot air balloon (more refined) ===== */
  .balloon {
    position: absolute;
    top: 16%;
    right: 11%;
    z-index: 9;
    width: 130px;
    animation: bob 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 14px 28px rgba(26,26,46,0.18));
  }
  @keyframes bob {
    from { transform: translateY(0) rotate(-1deg); }
    to   { transform: translateY(-18px) rotate(1.5deg); }
  }
  .balloon svg { width: 100%; display: block; }

  /* Smaller second balloon, distant */
  .balloon-far {
    position: absolute;
    top: 24%;
    left: 16%;
    z-index: 5;
    width: 56px;
    opacity: 0.85;
    animation: bobSlow 7s ease-in-out infinite alternate;
    filter: drop-shadow(0 6px 12px rgba(26,26,46,0.15));
  }
  @keyframes bobSlow {
    from { transform: translateY(0) translateX(0); }
    to   { transform: translateY(-12px) translateX(8px); }
  }
  .balloon-far svg { width: 100%; display: block; }

  /* ===== Birds ===== */
  .bird {
    position: absolute;
    z-index: 6;
    font-family: serif;
    color: var(--navy);
    opacity: 0.5;
  }
  .bird svg { width: 100%; display: block; }
  .bird.b1 { top: 28%; left: 30%; width: 28px; animation: flyAcross 25s linear infinite; }
  .bird.b2 { top: 22%; left: 30%; width: 22px; animation: flyAcross 30s linear -6s infinite; }
  .bird.b3 { top: 32%; left: 30%; width: 18px; animation: flyAcross 28s linear -12s infinite; }
  @keyframes flyAcross {
    0%   { transform: translateX(0) translateY(0); opacity: 0; }
    8%   { opacity: 0.6; }
    50%  { transform: translateX(35vw) translateY(-30px); opacity: 0.6; }
    92%  { opacity: 0; }
    100% { transform: translateX(60vw) translateY(20px); opacity: 0; }
  }

  /* ===== Reader character (more crafted) ===== */
  .reader {
    position: absolute;
    bottom: 10%;
    left: 50%;
    z-index: 10;
    width: 150px;
    transform: translateX(-50%);
    animation: rock 5s ease-in-out infinite alternate;
    transform-origin: bottom center;
    filter: drop-shadow(0 18px 24px rgba(26,26,46,0.22));
  }
  @keyframes rock {
    from { transform: translateX(-50%) rotate(-2.5deg); }
    to   { transform: translateX(-50%) rotate(2.5deg); }
  }
  .reader svg { width: 100%; display: block; }

  /* ===== Clouds — layered, varied ===== */
  .cloud {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0 6px 14px rgba(26,26,46,0.08));
  }
  .cloud svg { width: 100%; display: block; }

  .cloud.c1 { top: 12%; left: 8%;  width: 130px; animation: drift 14s ease-in-out infinite alternate; }
  .cloud.c2 { top: 8%;  right: 18%; width: 170px; animation: drift 18s ease-in-out -3s infinite alternate-reverse; }
  .cloud.c3 { top: 28%; left: 42%; width: 90px;  animation: drift 11s ease-in-out -2s infinite alternate; }
  .cloud.c4 { top: 18%; right: 4%; width: 110px; animation: drift 16s ease-in-out -5s infinite alternate-reverse; }
  .cloud.c5 { top: 36%; left: 4%;  width: 80px;  animation: drift 13s ease-in-out -7s infinite alternate; opacity: 0.85; }
  @keyframes drift {
    from { transform: translateX(0); }
    to   { transform: translateX(30px); }
  }

  /* ===== Floating sparkles ===== */
  .sparkle {
    position: absolute;
    width: 8px; height: 8px;
    z-index: 5;
    pointer-events: none;
  }
  .sparkle::before, .sparkle::after {
    content: '';
    position: absolute;
    background: var(--yellow);
    border-radius: 1px;
  }
  .sparkle::before { top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; }
  .sparkle::after  { top: 50%; left: 0; transform: translateY(-50%); width: 100%; height: 2px; }
  .sparkle.s1 { top: 24%; left: 28%; animation: twinkle 3s ease-in-out infinite; }
  .sparkle.s2 { top: 38%; right: 22%; animation: twinkle 4s ease-in-out -1s infinite; width: 10px; height: 10px; }
  .sparkle.s3 { top: 18%; right: 32%; animation: twinkle 3.5s ease-in-out -2s infinite; width: 6px; height: 6px; }
  .sparkle.s4 { top: 44%; left: 14%; animation: twinkle 4.5s ease-in-out -0.5s infinite; }
  @keyframes twinkle {
    0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.4; }
    50%      { transform: scale(1.2) rotate(45deg); opacity: 1; }
  }

  /* ===== Hero card — refined ===== */
  .hero-card {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -54%) rotate(-1deg);
    width: min(620px, 88%);
    background: rgba(23,58,50,0.96);
    border-radius: 16px;
    padding: 2.6rem 2.4rem 2.2rem;
    z-index: 20;
    text-align: center;
    box-shadow:
      0 30px 70px -10px rgba(26,26,46,0.35),
      0 0 0 8px rgba(255,255,255,0.16),
      inset 0 -8px 0 rgba(0,0,0,0.08);
    animation: cardEnter 1.4s var(--ease-bounce) 0.4s both;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    will-change: transform;
  }
  @keyframes cardEnter {
    from { opacity: 0; transform: translate(-50%, -30%) rotate(-1deg) scale(0.92); }
    to   { opacity: 1; transform: translate(-50%, -54%) rotate(-1deg) scale(1); }
  }
  @media (hover: hover) and (pointer: fine) {
    .hero-card:hover {
      transform: translate(-50%, -56%) rotate(-0.5deg) scale(1.015);
      box-shadow:
        0 36px 78px -12px rgba(26,26,46,0.4),
        0 0 0 8px rgba(255,255,255,0.22),
        inset 0 -8px 0 rgba(0,0,0,0.08);
    }
  }

  /* Decorative tape corners */
  .tape {
    position: absolute;
    width: 60px; height: 22px;
    background: rgba(255,255,255,0.45);
    z-index: 21;
  }
  .tape.t1 { top: -10px; left: 30px; transform: rotate(-18deg); }
  .tape.t2 { top: -10px; right: 30px; transform: rotate(15deg); }

  .hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 4px 0 rgba(0,0,0,0.08);
  }
  .hero-badge .dot-ico {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin-right: 0.4rem;
    transform: translateY(-1px);
  }

  .hero-card h1 {
    color: var(--white);
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    text-transform: none;
    font-size: clamp(2.1rem, 4.8vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.8px;
    margin-bottom: 1.3rem;
  }
  .hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(0deg);
    animation: wordIn 0.9s var(--ease-bounce) forwards;
  }
  .hero-word.tilt-l { --r: -5deg; }
  .hero-word.tilt-r { --r: 4deg; }
  @keyframes wordIn {
    to { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)); }
  }

  .hero-card .subtitle {
    color: var(--mint-light);
    font-size: 1.08rem;
    line-height: 1.5;
    max-width: 38ch;
    margin: 0 auto 1.8rem;
    font-weight: 500;
  }

  .hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero-cta {
    background: var(--white);
    color: var(--green-deep);
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
    box-shadow: 0 6px 0 rgba(0,0,0,0.12);
  }
  .hero-cta:hover { transform: translateY(-3px); background: var(--navy); color: var(--white); }
  .hero-cta svg { width: 14px; height: 14px; }

  .scroll-down {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: grid; place-items: center;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
    animation: pulse 2s ease-in-out infinite;
  }
  .scroll-down:hover { background: var(--white); color: var(--orange); animation-play-state: paused; }
  .scroll-down svg { width: 18px; height: 18px; }
  @keyframes pulse {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
  }

  /* ===== Side info ticker — bottom of hero ===== */
  .hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 15;
    padding: 1rem 0;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    border-top: 4px solid var(--orange);
  }
  .ticker-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .ticker-track span { display: inline-flex; align-items: center; gap: 3rem; }
  .ticker-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
  }
  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .balloon,
  .balloon-far,
  .reader,
  .flower,
  .sparkle {
    display: none;
  }
  .sun-disc {
    background: #E1C891;
    opacity: 0.7;
    box-shadow: 0 0 70px 28px rgba(216,178,110,0.28);
  }
  .sun {
    background: radial-gradient(circle, rgba(232,211,170,0.68) 0%, rgba(232,211,170,0.2) 44%, rgba(232,211,170,0) 72%);
  }
  .mtn-far { opacity: 0.32; }
  .mtn-mid { opacity: 0.55; }
  .cloud { opacity: 0.58; }
  .hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.22);
    pointer-events: none;
  }

  /* Mobile tweaks for hero */
  @media (max-width: 768px) {
    body { font-size: 1.04rem; line-height: 1.6; }
    h1, h2, h3, h4 { letter-spacing: -0.8px; }
    .container { padding: 0 1.15rem; }
    .nav {
      padding: 0.85rem 1rem;
      gap: 0.8rem;
    }
    .nav.scrolled { padding: 0.65rem 1rem; }
    .logo { font-size: 1.55rem; }
    .nav.scrolled .logo,
    .nav.nav-open .logo {
      color: var(--orange);
      text-shadow: none;
    }
    .nav.nav-open .logo .dot { color: var(--navy); }
    .nav-cta { display: none; }
    .nav-toggle { display: grid; margin-left: auto; }
    .mobile-menu { display: block; }
    .hero {
      min-height: 720px;
      min-height: 100svh;
      background:
        radial-gradient(ellipse 95% 45% at 50% 105%, var(--mint-deep) 0%, transparent 72%),
        linear-gradient(to bottom, #FFE8B8 0%, #FFD29C 20%, var(--sky) 57%, var(--mint) 100%);
    }
    .mtn-far { bottom: 37%; height: 18%; width: 130%; left: -15%; }
    .mtn-mid { bottom: 31%; height: 22%; width: 130%; left: -15%; }
    .valley-stage { height: 46%; }
    .hill-left, .hill-right { width: 48%; }
    .balloon { width: 76px; right: 2%; top: 17%; opacity: 0.95; }
    .balloon-far { display: none; }
    .tree { width: 74px; left: 2%; bottom: 16%; }
    .tree-small { display: none; }
    .reader { width: 86px; bottom: 12%; }
    .sun-disc { width: 54px; height: 54px; top: 13%; }
    .sun { width: 150px; height: 150px; top: 9%; }
    .cloud.c1 { width: 96px; top: 13%; left: -3%; }
    .cloud.c2 { width: 112px; top: 9%; right: 18%; }
    .cloud.c4 { width: 82px; top: 27%; right: -6%; }
    .sparkle.s1, .sparkle.s4, .bird { display: none; }
    .vanta-birds-layer {
      opacity: 0.18;
    }
    .vanta-birds-layer canvas { opacity: 0.78; }
    .hero-card {
      width: min(91vw, 390px);
      top: 48%;
      border-radius: 22px;
      padding: 1.55rem 1.1rem 1.25rem;
      transform: translate(-50%, -52%) rotate(-1deg);
      box-shadow:
        0 22px 48px -16px rgba(26,26,46,0.45),
        0 0 0 5px rgba(255,255,255,0.22),
        inset 0 -6px 0 rgba(0,0,0,0.08);
    }
    .hero-card:hover { transform: translate(-50%, -52%) rotate(-1deg); }
    @keyframes cardEnter {
      from { opacity: 0; transform: translate(-50%, -35%) rotate(-1deg) scale(0.9); }
      to   { opacity: 1; transform: translate(-50%, -52%) rotate(-1deg) scale(1); }
    }
    .tape { width: 48px; height: 18px; }
    .hero-badge {
      font-size: 0.68rem;
      padding: 0.38rem 0.85rem;
      margin-bottom: 1rem;
      letter-spacing: 1.1px;
    }
    .hero-card h1 {
      font-size: clamp(2rem, 14vw, 3.2rem);
      letter-spacing: -1.4px;
      line-height: 0.9;
      margin-bottom: 1rem;
    }
    .hero-card .subtitle {
      font-size: 1rem;
      line-height: 1.42;
      max-width: 29ch;
      margin-bottom: 1.2rem;
    }
    .hero-actions {
      display: grid;
      grid-template-columns: 1fr 48px;
      gap: 0.65rem;
    }
    .hero-cta {
      min-height: 50px;
      justify-content: center;
      padding: 0.85rem 1rem;
      font-size: 0.86rem;
    }
    .scroll-down { width: 50px; height: 50px; }
    .hero-ticker { padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom)); }
    .ticker-track { gap: 2rem; font-size: 0.78rem; animation-duration: 30s; }
    .cloud.c3, .cloud.c5 { display: none; }
  }

  @media (max-width: 380px) {
    .hero-card { width: 93vw; padding-left: 0.9rem; padding-right: 0.9rem; }
    .hero-card h1 { font-size: clamp(1.85rem, 13vw, 2.85rem); }
    .hero-card .subtitle { font-size: 0.94rem; }
  }

  /* ============================================================
     Everything below the hero (unchanged from before)
     ============================================================ */

  /* APPROACH */
  .stacked { padding: 96px 0 104px; background: var(--cream); }
  .stacked-header {
    max-width: 900px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
  }
  .stacked-eyebrow {
    display: inline-block;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .stacked-header h2 {
    color: var(--green-deep);
    font-size: clamp(2.8rem, 5.2vw, 5.7rem);
    line-height: 0.98;
    margin-bottom: 0;
  }
  .stacked-header h2 em { font-style: normal; color: var(--orange); display: inline-block; transform: rotate(-3deg); }
  .stacked-header p {
    font-size: 1.08rem;
    color: rgba(23,26,36,0.72);
    line-height: 1.72;
    max-width: 50ch;
    margin: 0;
  }
  .simple-approach-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(23,26,36,0.1);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 18px 46px rgba(23,26,36,0.06);
  }
  .simple-approach-card {
    min-height: 240px;
    padding: clamp(1.3rem, 2.4vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.6rem;
  }
  .simple-approach-card + .simple-approach-card {
    border-left: 1px solid rgba(23,26,36,0.1);
  }
  .simple-approach-card span {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .simple-approach-card h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 0.65rem;
    line-height: 1.15;
    color: var(--navy);
  }
  .simple-approach-card p { font-size: 0.98rem; line-height: 1.62; margin: 0; color: rgba(23,26,36,0.7); }
  @media (max-width: 900px) {
    .stacked-header {
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 680px;
    }
    .simple-approach-grid {
      grid-template-columns: 1fr;
      max-width: 680px;
    }
    .simple-approach-card + .simple-approach-card {
      border-left: 0;
      border-top: 1px solid rgba(23,26,36,0.1);
    }
  }
  @media (max-width: 768px) {
    .stacked { padding: 62px 0 68px; }
    .stacked-header { margin-bottom: 34px; text-align: left; }
    .stacked-eyebrow { font-size: 0.75rem; margin-bottom: 0.75rem; }
    .stacked-header h2 { font-size: clamp(2.35rem, 11vw, 3.45rem); line-height: 0.98; }
    .stacked-header p { font-size: 1rem; margin-left: 0; }
    .simple-approach-grid { border-radius: 14px; }
    .simple-approach-card { min-height: auto; padding: 1.2rem; gap: 1rem; }
    .simple-approach-card h3 { font-size: 1.12rem; }
    .simple-approach-card p { font-size: 0.96rem; }
  }

  /* THERAPIST */
  .therapist-section {
    padding: 130px 0;
    background: var(--cream-warm);
    overflow: hidden;
  }
  .therapist-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  .therapist-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 440px;
    border-radius: 18px;
    overflow: hidden;
    background:
      linear-gradient(rgba(23,58,50,0.08), rgba(23,58,50,0.18)),
      var(--therapist-photo, linear-gradient(145deg, #D9E0D7, #A7B8A1 48%, #B96545 100%));
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 70px rgba(23,26,36,0.16);
  }
  .therapist-photo::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 12px;
    pointer-events: none;
  }
  .therapist-photo::after {
    content: "Portrait";
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .therapist-copy {
    max-width: 650px;
  }
  .therapist-copy h2 {
    color: var(--green-deep);
    font-size: clamp(2.8rem, 5.8vw, 6.5rem);
    margin-bottom: 1.5rem;
  }
  .therapist-copy p {
    color: rgba(23,26,36,0.78);
    font-size: 1.12rem;
    line-height: 1.75;
    max-width: 58ch;
  }
  .therapist-note {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    color: var(--navy);
  }
  .therapist-note span {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
  }
  .therapist-note strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }
  .therapist-note p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
  }
  @media (max-width: 860px) {
    .therapist-layout {
      grid-template-columns: 1fr;
    }
    .therapist-photo {
      min-height: auto;
      max-width: 440px;
      width: 100%;
    }
  }
  @media (max-width: 768px) {
    .therapist-section {
      padding: 76px 0 84px;
    }
    .therapist-layout {
      gap: 1.6rem;
    }
    .therapist-copy h2 {
      font-size: clamp(2.4rem, 12vw, 4rem);
      margin-bottom: 1rem;
    }
    .therapist-copy p {
      font-size: 1rem;
      line-height: 1.62;
    }
    .therapist-note {
      margin-top: 1.4rem;
      padding-top: 1.4rem;
    }
  }

  /* FOCUS AREAS */
  .focus-section {
    padding: 120px 0 130px;
    background: var(--cream);
    overflow: hidden;
  }
  .focus-header {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    margin-bottom: 3rem;
  }
  .focus-header h2 {
    color: var(--green-deep);
    font-size: clamp(2.8rem, 5.4vw, 5.9rem);
    max-width: 9ch;
  }
  .focus-header p {
    color: rgba(23,26,36,0.74);
    font-size: 1.08rem;
    line-height: 1.72;
    max-width: 58ch;
  }
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
  .focus-card {
    min-height: 260px;
    border-radius: 18px;
    padding: 1.35rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(23,26,36,0.09);
    box-shadow: 0 14px 38px rgba(23,26,36,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .focus-card:nth-child(1) {
    background: var(--green-deep);
    color: var(--white);
  }
  .focus-card.primary-focus,
  .city-chip.primary-area {
    position: relative;
  }
  .city-chip.primary-area {
    border-color: rgba(185,101,69,0.34);
    box-shadow: 0 16px 42px rgba(185,101,69,0.11);
  }
  .focus-card:nth-child(1) p {
    color: rgba(255,255,255,0.78);
  }
  .focus-card .tag {
    align-self: flex-start;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--mint-light);
    color: var(--green-deep);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .focus-card:nth-child(1) .tag {
    background: rgba(255,255,255,0.13);
    color: var(--mint-light);
  }
  .focus-card h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.25px;
    margin: 1.4rem 0 0.55rem;
  }
  .focus-card p {
    color: rgba(23,26,36,0.7);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
  }
  @media (max-width: 980px) {
    .focus-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .focus-section {
      padding: 76px 0 84px;
    }
    .focus-header {
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-bottom: 1.8rem;
    }
    .focus-header h2 {
      font-size: clamp(2.35rem, 11vw, 3.7rem);
    }
    .focus-header p {
      font-size: 1rem;
      line-height: 1.62;
    }
    .focus-grid {
      grid-template-columns: 1fr;
    }
    .focus-card {
      min-height: 210px;
    }
  }

  /* QUOTE */
  .quote-section { padding: 160px 0 180px; background: var(--green); overflow: hidden; text-align: center; }
  .quote-section h2 {
    color: var(--mint); font-size: clamp(2.8rem, 7vw, 7.5rem);
    line-height: 0.95; letter-spacing: -2px;
    max-width: 14ch; margin: 0 auto 3rem; position: relative; z-index: 2;
  }
  .quote-section h2 .qword { display: inline-block; margin: 0 0.2em; }
  .quote-section h2 .qword.r1 { transform: rotate(-3deg); }
  .quote-section h2 .qword.r2 { transform: rotate(2deg); color: var(--yellow); }
  .quote-section h2 .qword.r3 { transform: rotate(-2deg); color: var(--orange); }
  .quote-clouds .cloud { z-index: 1; opacity: 0.2; }
  .quote-clouds .cloud.qc1 { bottom: 10%; left: 5%; top: auto; width: 140px; }
  .quote-clouds .cloud.qc2 { bottom: 14%; right: 4%; top: auto; width: 120px; }
  .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
  .pill {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1.1rem 2rem; border-radius: 999px;
    font-weight: 900; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer; border: 2px solid transparent;
  }
  .pill svg { width: 14px; height: 14px; }
  .pill:hover { transform: scale(1.05); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
  .pill-orange { background: var(--orange); color: var(--white); }
  .pill-outline { background: transparent; color: var(--white); border-color: var(--white); }
  .pill-outline:hover { background: var(--white); color: var(--green); }
  @media (max-width: 768px) {
    .quote-section { padding: 86px 0 96px; }
    .quote-section h2 {
      font-size: clamp(2.25rem, 12.5vw, 4rem);
      max-width: 10.5ch;
      text-align: left;
      margin-bottom: 2rem;
    }
    .quote-section h2 .qword { margin: 0 0.08em; }
    .quote-clouds .cloud.qc1 { width: 92px; left: -2%; bottom: 4%; }
    .quote-clouds .cloud.qc2 { width: 86px; right: -5%; bottom: 76%; }
    .cta-row { display: grid; gap: 0.8rem; }
    .pill {
      width: 100%;
      min-height: 54px;
      justify-content: center;
      padding: 0.95rem 1.1rem;
      border-radius: 16px;
      font-size: 0.86rem;
    }
  }

  /* HOW IT WORKS */
  .how { padding: 160px 0; background: var(--mint); }
  .how-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }
  .how-header h2 { color: var(--green); line-height: 0.95; }
  .how-header h2 em { font-style: normal; color: var(--orange); display: inline-block; transform: rotate(-2deg); }
  .how-header p { color: var(--navy); opacity: 0.8; margin-top: 1.5rem; font-size: 1.15rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
  .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  @media (max-width: 900px) { .step-grid { grid-template-columns: 1fr; } }
  .step-card {
    background: var(--white); border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 14px 40px rgba(26,26,46,0.08);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .step-card:hover { transform: scale(1.03); box-shadow: 0 24px 60px rgba(26,26,46,0.18); }
  .step-num { font-weight: 900; font-size: 3.5rem; color: var(--orange); line-height: 1; letter-spacing: -3px; margin-bottom: 1.5rem; }
  .step-icon { width: 64px; height: 64px; margin-bottom: 1.2rem; background: var(--cream); border-radius: 16px; display: grid; place-items: center; }
  .step-icon svg { width: 32px; height: 32px; }
  .step-card h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.25px;
    color: var(--navy);
    margin-bottom: 0.8rem;
    line-height: 1.12;
  }
  .step-card p { font-size: 1rem; line-height: 1.55; color: var(--navy); opacity: 0.75; margin: 0; }
  @media (max-width: 768px) {
    .how { padding: 78px 0 86px; }
    .how-header {
      text-align: left;
      margin-bottom: 34px;
    }
    .how-header h2 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
    .how-header p {
      font-size: 1rem;
      margin-left: 0;
      margin-top: 1rem;
    }
    .step-grid { gap: 0.85rem; }
    .step-card {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 0 1rem;
      align-items: start;
      border-radius: 18px;
      padding: 1.25rem;
    }
    .step-card:hover { transform: none; }
    .step-num {
      grid-row: 1 / 4;
      font-size: 2rem;
      letter-spacing: -1px;
      margin: 0;
    }
    .step-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      margin: 0 0 0.9rem;
    }
    .step-icon svg { width: 26px; height: 26px; }
    .step-card h3 {
      font-size: 1.18rem;
      line-height: 1.05;
      margin-bottom: 0.55rem;
    }
    .step-card p { font-size: 0.95rem; }
  }

  /* REASSURANCE */
  .reassurance {
    padding: 130px 0 145px;
    background: var(--cream);
    overflow: hidden;
  }
  .reassurance-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
  }
  .reassurance h2 {
    color: var(--green-deep);
    font-size: clamp(3rem, 6vw, 6.5rem);
    max-width: 8.5ch;
  }
  .reassurance-intro {
    color: rgba(23,26,36,0.78);
    font-size: 1.14rem;
    line-height: 1.72;
    max-width: 58ch;
    margin-bottom: 2rem;
  }
  .reassurance-list {
    display: grid;
    gap: 0.8rem;
  }
  .reassurance-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
  }
  .reassurance-item:last-child {
    border-bottom: 1px solid var(--line);
  }
  .reassurance-item span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mint-light);
    color: var(--green-deep);
    font-weight: 800;
    font-size: 0.78rem;
  }
  .reassurance-item strong {
    display: block;
    color: var(--navy);
    font-size: 1.03rem;
    margin-bottom: 0.2rem;
  }
  .reassurance-item p {
    color: rgba(23,26,36,0.7);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0;
  }
  @media (max-width: 860px) {
    .reassurance-grid {
      grid-template-columns: 1fr;
      gap: 1.8rem;
    }
    .reassurance h2 {
      max-width: 10ch;
    }
  }
  @media (max-width: 768px) {
    .reassurance {
      padding: 76px 0 84px;
    }
    .reassurance h2 {
      font-size: clamp(2.5rem, 12vw, 4rem);
    }
    .reassurance-intro {
      font-size: 1rem;
      line-height: 1.62;
      margin-bottom: 1.2rem;
    }
    .reassurance-item {
      grid-template-columns: 28px 1fr;
      gap: 0.75rem;
    }
    .reassurance-item span {
      width: 28px;
      height: 28px;
    }
  }

  /* LOCAL SEO */
  .local-area {
    padding: 120px 0 130px;
    background: var(--cream-warm);
    overflow: hidden;
  }
  .local-area-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
  }
  .local-area h2 {
    color: var(--green-deep);
    font-size: clamp(2.7rem, 5.4vw, 5.8rem);
    max-width: 9ch;
    margin-bottom: 1.2rem;
  }
  .local-area p {
    color: rgba(23,26,36,0.74);
    font-size: 1.08rem;
    line-height: 1.72;
    max-width: 58ch;
  }
  .city-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.3rem;
  }
  .city-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 58px;
    border: 1px solid rgba(23,26,36,0.1);
    border-radius: 16px;
    padding: 0 1rem;
    background: rgba(255,255,255,0.72);
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 12px 34px rgba(23,26,36,0.06);
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  a.city-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(185,101,69,0.42);
    box-shadow: 0 18px 44px rgba(23,26,36,0.1);
  }
  .city-chip span {
    color: var(--orange);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .local-note {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    font-size: 0.95rem !important;
  }
  @media (max-width: 860px) {
    .local-area-layout {
      grid-template-columns: 1fr;
      gap: 1.7rem;
    }
    .local-area h2 {
      max-width: 11ch;
    }
  }
  @media (max-width: 768px) {
    .local-area {
      padding: 76px 0 84px;
    }
    .local-area h2 {
      font-size: clamp(2.35rem, 11vw, 3.7rem);
    }
    .local-area p {
      font-size: 1rem;
      line-height: 1.62;
    }
    .city-grid {
      grid-template-columns: 1fr;
    }
  }

  /* SEO ROUTED LANDING PAGES */
  .route-pages {
    position: relative;
    padding: 110px 0 120px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    overflow: hidden;
  }
  .route-header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    margin-bottom: 2rem;
  }
  .route-header h2 {
    color: var(--green-deep);
    font-size: clamp(2.7rem, 5.5vw, 5.8rem);
    max-width: 10ch;
  }
  .route-header p {
    color: rgba(23,26,36,0.72);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 60ch;
  }
  .route-link {
    color: inherit;
    text-decoration: none;
  }
  .focus-card.route-link {
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  }
  .focus-card.route-link:hover {
    transform: translateY(-5px);
    border-color: rgba(185,101,69,0.35);
    box-shadow: 0 22px 50px rgba(23,26,36,0.11);
  }
  .route-grid {
    display: grid;
    gap: 1rem;
  }
  .route-page {
    scroll-margin-top: 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.25rem, 3vw, 3rem);
    padding: clamp(1.1rem, 2.5vw, 2rem);
    border: 1px solid rgba(23,26,36,0.09);
    border-radius: 22px;
    background: rgba(255,255,255,0.74);
    box-shadow: 0 18px 48px rgba(23,26,36,0.07);
  }
  .route-page.primary-route {
    background: var(--green-deep);
    color: var(--white);
  }
  .route-page h3 {
    font-family: 'Fraunces', Georgia, serif;
    color: inherit;
    font-size: clamp(2rem, 3.6vw, 3.85rem);
    line-height: 0.96;
    margin: 0.75rem 0 1rem;
    max-width: 9ch;
  }
  .route-page p,
  .route-page li {
    color: rgba(23,26,36,0.72);
    font-size: 1rem;
    line-height: 1.68;
  }
  .route-page.primary-route p,
  .route-page.primary-route li {
    color: rgba(255,255,255,0.78);
  }
  .route-page ul {
    margin: 1.1rem 0 0;
    padding-left: 1.1rem;
  }
  .route-page li + li { margin-top: 0.45rem; }
  .route-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    padding: 0.38rem 0.68rem;
    background: var(--mint-light);
    color: var(--green-deep);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }
  .primary-route .route-kicker {
    background: rgba(255,255,255,0.14);
    color: var(--mint-light);
  }
  .route-faq {
    display: grid;
    gap: 0.55rem;
  }
  .route-faq details {
    border: 1px solid rgba(23,26,36,0.1);
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    overflow: hidden;
  }
  .primary-route .route-faq details {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
  }
  .route-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 0.95rem 1rem;
    color: var(--navy);
    font-weight: 900;
  }
  .route-faq summary::-webkit-details-marker { display: none; }
  .route-faq summary::after {
    content: "+";
    float: right;
    color: var(--orange);
  }
  .route-faq details[open] summary::after { content: "-"; }
  .primary-route .route-faq summary { color: var(--white); }
  .route-faq details p {
    margin: 0;
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
  }
  .route-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.3rem;
  }
  .route-actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 1rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .route-actions .route-book {
    background: var(--orange);
    color: var(--white);
  }
  .route-actions .route-back {
    border: 1px solid rgba(23,26,36,0.16);
    color: var(--navy);
  }
  .primary-route .route-actions .route-back {
    border-color: rgba(255,255,255,0.28);
    color: var(--white);
  }
  @media (max-width: 860px) {
    .route-header,
    .route-page {
      grid-template-columns: 1fr;
    }
    .route-header h2,
    .route-page h3 {
      max-width: 11ch;
    }
  }
  @media (max-width: 768px) {
    .route-pages {
      padding: 76px 0 84px;
    }
    .route-header {
      margin-bottom: 1.3rem;
    }
    .route-header h2 {
      font-size: clamp(2.35rem, 11vw, 3.7rem);
    }
    .route-page {
      border-radius: 18px;
      padding: 1rem;
    }
    .route-page h3 {
      font-size: clamp(2rem, 10vw, 3rem);
    }
    .route-actions a {
      width: 100%;
      border-radius: 14px;
    }
  }

  /* NEXT */
  .next { background: var(--orange); padding: 200px 0 160px; overflow: hidden; text-align: center; }
  .next-wave { position: absolute; top: -1px; left: 0; width: 100%; height: 80px; line-height: 0; }
  .next-wave svg { width: 100%; height: 100%; display: block; }
  .next-eyebrow { color: var(--yellow); font-weight: 900; font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; display: inline-block; }
  .next h2 { color: var(--white); font-size: clamp(3rem, 8vw, 8rem); line-height: 0.9; letter-spacing: -2.5px; margin-bottom: 2.5rem; max-width: 14ch; margin-left: auto; margin-right: auto; }
  .next h2 .nw { display: inline-block; }
  .next h2 .nw.r1 { transform: rotate(-3deg); }
  .next h2 .nw.r2 { transform: rotate(2deg); }
  .next .pill { background: var(--white); color: var(--navy); font-size: 1rem; padding: 1.2rem 2.2rem; }
  .next .pill:hover { background: var(--navy); color: var(--white); }
  @media (max-width: 768px) {
    .next { padding: 108px 0 92px; }
    .next-wave { height: 54px; }
    .next-eyebrow { font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .next h2 {
      font-size: clamp(2.6rem, 14vw, 4.8rem);
      margin-bottom: 1.7rem;
      max-width: 9ch;
    }
    .next .pill { border-radius: 16px; font-size: 0.9rem; }
  }

  /* FOOTER */
  .footer { position: relative; background: var(--navy); color: var(--white); padding: 80px 0 30px; border-top: 4px solid var(--orange); }
  .footer-top { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 2.2rem; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
  @media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
  .footer .logo { font-size: 3rem; color: var(--orange); display: block; margin-bottom: 1.2rem; text-shadow: none; }
  .footer .logo .dot { color: var(--white); }
  .footer-tag { font-size: 0.95rem; opacity: 0.7; line-height: 1.6; max-width: 28ch; }
  .footer-col h4 { font-size: 0.85rem; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 1.2rem; font-weight: 900; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 0.7rem; }
  .footer-col a { font-size: 0.95rem; color: var(--white); opacity: 0.75; transition: opacity 0.3s ease, color 0.3s ease; }
  .footer-col a:hover { opacity: 1; color: var(--orange); }
  .social-row { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
  .social { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3); display: grid; place-items: center; font-weight: 900; font-size: 0.7rem; color: var(--white); transition: background 0.3s ease, border-color 0.3s ease; cursor: pointer; }
  .social:hover { background: var(--orange); border-color: var(--orange); }
  .footer-bottom { padding-top: 2rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
  .mobile-sticky-cta { display: none; }
  .booking-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .booking-modal.open { display: flex; }
  .booking-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23,26,36,0.54);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .booking-panel {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: min(860px, calc(100vh - 2rem));
    overflow: auto;
    border-radius: 24px;
    background: var(--cream-warm);
    box-shadow: 0 34px 90px rgba(0,0,0,0.34);
  }
  .booking-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.4rem 1rem;
    border-bottom: 1px solid var(--line);
  }
  .booking-head h2 {
    color: var(--green-deep);
    font-size: clamp(1.9rem, 4vw, 3.6rem);
    margin-top: 0.25rem;
  }
  .booking-close {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(23,26,36,0.12);
  }
  .booking-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 1.4rem;
  }
  .booking-step {
    border: 1px solid rgba(23,26,36,0.1);
    border-radius: 18px;
    padding: 1rem;
    background: rgba(255,255,255,0.68);
  }
  .booking-step[hidden] { display: none; }
  .booking-step h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .booking-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .booking-option {
    min-height: 52px;
    border: 1px solid rgba(23,26,36,0.12);
    border-radius: 14px;
    background: var(--white);
    color: var(--navy);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
  }
  .booking-option.active {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
  }
  .simplepractice-step {
    grid-column: 1 / -1;
  }
  .simplepractice-embed {
    min-height: 520px;
    border: 1px solid rgba(23,26,36,0.12);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
  }
  .simplepractice-embed iframe {
    display: block;
    width: 100%;
    min-height: 520px;
    border: 0;
    background: var(--white);
  }
  .booking-help {
    margin: 0.8rem 0 0;
    color: rgba(23,26,36,0.64);
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .booking-help code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.78rem;
    padding: 0.08rem 0.25rem;
    border-radius: 5px;
    background: rgba(23,26,36,0.08);
  }
  .booking-fields {
    display: grid;
    gap: 0.7rem;
  }
  .booking-fields label {
    display: grid;
    gap: 0.35rem;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .booking-fields input,
  .booking-fields select,
  .booking-fields textarea {
    width: 100%;
    border: 1px solid rgba(23,26,36,0.13);
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
    background: var(--white);
    color: var(--navy);
    font: inherit;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
  }
  .booking-fields select {
    min-height: 54px;
    appearance: none;
    background-image:
      linear-gradient(45deg, transparent 50%, rgba(23,26,36,0.68) 50%),
      linear-gradient(135deg, rgba(23,26,36,0.68) 50%, transparent 50%);
    background-position:
      calc(100% - 18px) 50%,
      calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.4rem;
  }
  .booking-fields textarea {
    min-height: 104px;
    resize: vertical;
  }
  .booking-summary {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: var(--green-deep);
    color: var(--white);
  }
  .booking-summary p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .booking-submit {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    min-height: 50px;
    padding: 0 1.15rem;
    background: var(--white);
    color: var(--green-deep);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .booking-submit:disabled {
    opacity: 0.58;
    cursor: not-allowed;
  }
  @media (max-width: 768px) {
    .footer { padding: 58px 0 calc(112px + env(safe-area-inset-bottom)); }
    .footer-top { gap: 2rem; padding-bottom: 36px; }
    .footer .logo { font-size: 2.4rem; }
    .footer-col h4 { margin-bottom: 0.8rem; }
    .footer-col a {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
    }
    .mobile-sticky-cta {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: calc(0.85rem + env(safe-area-inset-bottom));
      z-index: 90;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      border-radius: 18px;
      background: var(--orange);
      color: var(--white);
      font-weight: 900;
      font-size: 0.9rem;
      letter-spacing: 0.45px;
      text-transform: uppercase;
      box-shadow: 0 14px 36px rgba(26,26,46,0.28), inset 0 -5px 0 rgba(0,0,0,0.12);
      transform: translateY(120%);
      transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
      opacity: 0;
    }
    .mobile-sticky-cta.show {
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-sticky-cta svg { width: 15px; height: 15px; }
    .booking-modal {
      align-items: flex-end;
      padding: 0;
    }
    .booking-panel {
      width: 100%;
      max-height: calc(100vh - 1rem);
      border-radius: 24px 24px 0 0;
    }
    .booking-body {
      grid-template-columns: 1fr;
      padding: 1rem;
    }
    .booking-options {
      grid-template-columns: 1fr;
    }
    .booking-summary {
      display: grid;
    }
    .booking-submit {
      width: 100%;
    }
  }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-slow), transform 0.9s var(--ease-slow); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-word { opacity: 1; transform: none; }
  }

  @media (max-width: 768px) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }


/* Split-site and conversion additions */
.nav-links { gap: 2.05rem; font-size: 0.86rem; }
.vanta-birds-layer { opacity: 0.14; }
.vanta-birds-layer canvas { opacity: 0.72; }
.hero-card { width: min(560px, 86%); padding: 2.25rem 2.15rem 1.95rem; }
.hero-badge { margin-bottom: 1.15rem; }
.hero-card h1 { font-size: clamp(2rem, 4.35vw, 3.45rem); margin-bottom: 1.1rem; }
.hero-card .subtitle { margin-bottom: 1.45rem; }
.mtn-far { opacity: 0.27; }
.mtn-mid { opacity: 0.48; }
.cloud { opacity: 0.46; }
.inner-page { background: var(--cream); }
.inner-page .nav { background: rgba(246,242,234,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.inner-page .nav .logo { color: var(--orange); text-shadow: none; }
.inner-page .nav .logo .dot { color: var(--navy); }
.inner-page .nav .nav-links a { color: var(--navy); text-shadow: none; }
.inner-page .route-pages { padding-top: 38px; padding-bottom: 38px; }
.inner-page .route-pages + .route-pages { padding-top: 28px; }
.inner-page .reveal { opacity: 1; transform: none; transition: none; }
.page-intro { min-height: 40vh; display: grid; align-items: center; padding: 124px 0 32px; background: var(--cream); position: relative; overflow: hidden; }
.page-intro > .container,
.page-intro-grid,
.page-intro-grid > * { min-width: 0; }
.page-intro h1 { color: var(--green-deep); font-size: clamp(3.2rem, 8vw, 7.6rem); line-height: 0.88; max-width: 10ch; margin-bottom: 1.2rem; }
.page-intro p { color: rgba(23,26,36,0.74); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.7; max-width: 62ch; }
.page-intro-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; color: rgba(23,26,36,0.56); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span + span::before { content: "/"; margin-right: 0.45rem; color: rgba(23,26,36,0.28); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.3rem 0 1.35rem; }
.page-hero-actions a { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 0 1rem; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.page-hero-actions .hero-book { background: var(--orange); color: var(--white); box-shadow: 0 12px 28px rgba(185,101,69,0.22); }
.page-hero-actions .hero-secondary { border: 1px solid rgba(23,26,36,0.15); background: rgba(255,255,255,0.58); color: var(--navy); }
.page-mini-nav { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.page-mini-nav a { border: 1px solid rgba(23,26,36,0.12); border-radius: 999px; padding: 0.68rem 0.9rem; background: rgba(255,255,255,0.72); color: var(--navy); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }
.conversion-section { padding: 40px 0 46px; background: var(--cream); }
.conversion-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; }
.conversion-card { border-radius: 18px; padding: 1.15rem; background: rgba(255,255,255,0.74); border: 1px solid rgba(23,26,36,0.09); box-shadow: 0 14px 36px rgba(23,26,36,0.06); }
.conversion-card span, .consult-band span { display: inline-flex; width: fit-content; border-radius: 999px; padding: 0.34rem 0.58rem; background: var(--mint-light); color: var(--green-deep); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.conversion-card h2 { font-family: 'Inter', -apple-system, sans-serif; font-size: 1.18rem; line-height: 1.15; margin: 1rem 0 0.65rem; color: var(--navy); letter-spacing: 0; }
.conversion-card p, .conversion-card li, .consult-band p { color: rgba(23,26,36,0.72); font-size: 0.95rem; line-height: 1.62; }
.conversion-card ul { margin: 0; padding-left: 1.05rem; }
.conversion-card li + li { margin-top: 0.4rem; }
.consult-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; align-items: center; margin-top: 1rem; border-radius: 22px; padding: clamp(1.1rem, 2.8vw, 1.8rem); background: var(--green-deep); color: var(--white); box-shadow: 0 18px 48px rgba(23,26,36,0.1); }
.consult-band span { background: rgba(255,255,255,0.12); color: var(--mint-light); }
.consult-band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 3.3rem); line-height: 0.96; max-width: 12ch; margin: 0.8rem 0 0.7rem; }
.consult-band p { color: rgba(255,255,255,0.74); max-width: 60ch; margin: 0; }
.consult-band a { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 0 1.15rem; background: var(--orange); color: var(--white); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.85rem; margin-top: 1.5rem; }
.directory-card { min-height: 132px; border-radius: 18px; padding: 1.15rem; background: rgba(255,255,255,0.76); border: 1px solid rgba(23,26,36,0.09); box-shadow: 0 14px 38px rgba(23,26,36,0.06); color: var(--navy); display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.directory-card::after { content: "View page"; color: var(--orange); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1rem; }
.directory-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(23,26,36,0.1); }
.directory-card strong { font-size: 1.08rem; line-height: 1.15; }
.directory-card span { color: var(--orange); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.thank-you-hero { min-height: 56vh; }
.source-table {
  display: grid;
  gap: 0.7rem;
}
.source-table div {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(23,26,36,0.1);
}
.source-table div:last-child { border-bottom: 0; }
.source-table span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.source-table strong {
  min-width: 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
@media (max-width: 860px) { .page-intro-grid, .conversion-grid, .consult-band { grid-template-columns: 1fr; } .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 768px) { .inner-page .route-pages { padding-top: 20px; padding-bottom: 34px; } .inner-page .route-pages + .route-pages { padding-top: 24px; } .page-intro { padding-top: 118px; padding-bottom: 10px; min-height: auto; } .page-intro h1 { font-size: clamp(2.65rem, 13vw, 4.4rem); } .page-hero-actions a, .consult-band a { width: 100%; border-radius: 14px; } .page-mini-nav { flex-wrap: nowrap; overflow-x: auto; margin-top: 1rem; padding-bottom: 0.35rem; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; } .page-mini-nav a { flex: 0 0 auto; scroll-snap-align: start; } .conversion-section { padding: 24px 0 34px; } .directory-grid { grid-template-columns: 1fr; } .directory-card { min-height: 112px; } .source-table div { grid-template-columns: 1fr; gap: 0.25rem; } }
