@layer reset, tokens, base, components, sections, responsive, motion;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  * { margin: 0; }
  html { scroll-behavior: smooth; }
  body { min-height: 100vh; }
  img, picture, svg { display: block; max-width: 100%; }
  button, input, textarea { font: inherit; }
  a { color: inherit; text-decoration: none; }
  ul { margin: 0; padding: 0; list-style: none; }
}

@layer tokens {
  :root {
    --cream: #fbf4ec;
    --paper: #fffdf9;
    --navy: #1e325c;
    --navy-deep: #14264b;
    --ink-soft: #46567c;
    --muted: #7583a1;
    --pink: #de7fa6;
    --pink-pale: #f8d6e3;
    --peach: #f0a882;
    --peach-pale: #fbe3d0;
    --lilac: #8b7cc8;
    --lilac-pale: #e4def6;
    --blue-pale: #e9effa;
    --line: rgb(30 50 92 / 11%);
    --display: "Bricolage Grotesque", sans-serif;
    --serif: "Instrument Serif", serif;
    --body: "Hanken Grotesk", sans-serif;
    --shell: min(1180px, calc(100% - 40px));
    --section-space: clamp(5rem, 9vw, 8.125rem);
    --radius: 1.625rem;
    --shadow: 0 1.5rem 4rem -2rem rgb(30 50 92 / 35%);
  }
}

@layer base {
  body { background: var(--cream); color: var(--navy); font-family: var(--body); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: clip; }
  body.menu-open, body.modal-open { overflow: hidden; }
  [hidden] { display: none !important; }
  ::selection { background: var(--pink-pale); color: var(--navy); }
  :focus-visible { outline: 3px solid var(--peach); outline-offset: 4px; }
  h1, h2, h3 { font-family: var(--display); line-height: 1; letter-spacing: -.035em; text-wrap: balance; }
  h2 { font-size: clamp(2.55rem, 5.3vw, 4.75rem); }
  h3 { font-size: 1.75rem; }
  em { color: var(--pink); font-family: var(--serif); font-weight: 400; }
  .peach { color: var(--peach); }
  .lilac { color: var(--lilac); }
  .shell { width: var(--shell); margin-inline: auto; position: relative; z-index: 1; }
  .section { padding-block: var(--section-space); position: relative; overflow: hidden; scroll-margin-top: 5rem; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 1000; background: var(--navy); color: white; padding: .75rem 1rem; border-radius: .5rem; transform: translateY(-160%); }
  .skip-link:focus { transform: none; }
}

@layer components {
  .brand { display: inline-flex; align-items: baseline; font-family: var(--display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.04em; }
  .brand span { color: var(--pink); }
  .brand--light { color: var(--cream); font-size: 1.95rem; }
  .kicker { color: var(--pink); font-size: .76rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
  .kicker--peach { color: var(--peach); }
  .kicker--lilac { color: var(--lilac); }
  .button { display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.75rem; padding: .55rem .65rem .55rem 1.85rem; border: 2px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.1; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
  .button:hover { transform: translateY(-3px); }
  .button__icon { display: inline-grid; width: 2.7rem; aspect-ratio: 1; place-items: center; border-radius: 50%; font-size: 1.2rem; }
  .button--primary { background: var(--navy); color: var(--cream); box-shadow: 0 1rem 2.25rem -1rem rgb(30 50 92 / 65%); }
  .button--primary .button__icon { background: var(--peach); color: var(--navy); }
  .button--primary:hover { background: var(--pink); color: var(--navy); box-shadow: 0 1.4rem 2.75rem -1rem rgb(222 127 166 / 60%); }
  .button--outline { border-color: var(--navy); color: var(--navy); }
  .button--outline .button__icon { background: var(--pink); }
  .button--outline:hover { background: var(--navy); color: var(--cream); }
  .button--pink { background: var(--pink); color: var(--navy); }
  .button--pink .button__icon { background: var(--navy); color: var(--cream); }
  .button--pink:hover { background: var(--peach); }
  .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3.4rem; }
  .section-heading h2 { max-width: 12ch; }
  .section-heading > p { color: var(--ink-soft); font-size: 1.08rem; max-width: 34ch; }
  .section-copy { max-width: 63ch; margin-bottom: 3.25rem; }
  .section-copy h2 { margin: 1rem 0 1.25rem; }
  .section-copy > p:not(.kicker) { color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.16rem); }
  .section-copy > p + p { margin-top: 1rem; }
  .shape { position: absolute; pointer-events: none; will-change: transform; }
}

@layer sections {
  .site-header { position: sticky; top: 0; z-index: 50; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 5.15rem; padding-inline: clamp(1.25rem, 5vw, 4rem); border-bottom: 1px solid var(--line); background: rgb(251 244 236 / 82%); backdrop-filter: blur(16px); transition: min-height .3s ease, box-shadow .3s ease; }
  .site-header.is-scrolled { min-height: 4.4rem; box-shadow: 0 .75rem 2rem -1.6rem rgb(30 50 92 / 45%); }
  .primary-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.35rem); color: var(--ink-soft); font-size: .94rem; font-weight: 500; }
  .primary-nav a, .site-footer nav a { transition: color .2s ease; }
  .primary-nav a:hover, .site-footer nav a:hover { color: var(--pink); }
  .header-cta { justify-self: end; padding: .7rem 1.35rem; border-radius: 999px; background: var(--navy); color: var(--cream); font-weight: 600; }
  .header-cta:hover { background: var(--pink); color: var(--navy); }
  .menu-toggle { display: none; }

  .hero { min-height: calc(100svh - 5rem); padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(7.5rem, 11vw, 9.5rem); position: relative; overflow: hidden; display: grid; align-items: center; }
  .hero__inner { position: relative; z-index: 2; }
  .eyebrow { display: inline-flex; align-items: center; gap: .65rem; padding: .55rem .95rem; border: 1px solid var(--line); border-radius: 999px; background: rgb(255 255 255 / 58%); color: var(--ink-soft); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
  .eyebrow span { width: .45rem; aspect-ratio: 1; border-radius: 50%; background: var(--pink); }
  .hero__title { max-width: 12ch; margin-top: 1.65rem; font-size: clamp(3.7rem, 8.4vw, 8.25rem); font-weight: 800; line-height: .91; }
  .hero__intro { max-width: 57ch; margin-top: 2rem; color: var(--ink-soft); font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
  .hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.55rem; }
  .hero-stats { display: flex; align-items: stretch; gap: 0; margin-top: 3.4rem; }
  .hero-stats > div { padding-inline: clamp(1.5rem, 3vw, 4.25rem); border-left: 1px solid var(--line); }
  .hero-stats > div:first-child { padding-left: 0; border-left: 0; }
  .hero-stats dd { font-family: var(--display); font-size: clamp(2.35rem, 4vw, 3.55rem); font-weight: 800; line-height: 1; letter-spacing: -.04em; }
  .hero-stats dt { margin-top: .55rem; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
  .scroll-cue { position: absolute; bottom: 1.8rem; left: 50%; z-index: 2; display: grid; justify-items: center; gap: .5rem; transform: translateX(-50%); color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
  .scroll-cue i { width: 1px; height: 2.2rem; background: linear-gradient(var(--muted), transparent); }
  .shape--hero-blue { top: -9rem; right: -7rem; width: min(35rem, 52vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #cfe0fb, #e9effa 62%, transparent 72%); }
  .shape--hero-pink { bottom: -12rem; left: -8rem; width: min(31rem, 48vw); aspect-ratio: 1; border-radius: 47% 53% 62% 38% / 55% 42% 58% 45%; background: radial-gradient(circle, var(--pink-pale), transparent 68%); }
  .shape--hero-ring { top: 6rem; left: 47%; width: 14rem; aspect-ratio: 1; border: 1.5px solid rgb(222 127 166 / 45%); border-radius: 50%; }

  .marquee { overflow: hidden; padding-block: 1.2rem; background: var(--navy); color: var(--cream); }
  .marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
  .marquee__group { display: flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
  .marquee__group i { color: var(--pink); font-style: normal; }

  .shape--paths-ring { top: 4rem; right: -6rem; width: 23rem; aspect-ratio: 1; border: 1.5px solid var(--line); border-radius: 50%; }
  .path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
  .path-card { position: relative; isolation: isolate; display: flex; flex-direction: column; min-height: 22rem; overflow: hidden; padding: 2.35rem 2.1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
  .path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
  .path-card .card-shape { position: absolute; top: -2.5rem; right: -2.5rem; z-index: -1; width: 9rem; aspect-ratio: 1; border-radius: 44% 56% 68% 32% / 42% 47% 53% 58%; opacity: .72; transition: transform .5s ease; }
  .path-card:hover .card-shape { transform: rotate(12deg) scale(1.08); }
  .path-card h3 { margin: 1rem 0 .75rem; font-size: 1.65rem; line-height: 1.08; }
  .path-card > p:not(.kicker) { color: var(--ink-soft); font-size: .97rem; }
  .path-card > a { margin-top: auto; padding-top: 1.4rem; font-weight: 700; }
  .path-card--pink .card-shape { background: var(--pink-pale); } .path-card--pink:hover { border-color: var(--pink); }
  .path-card--peach .card-shape { background: var(--peach-pale); } .path-card--peach .kicker { color: #c7754d; } .path-card--peach:hover { border-color: var(--peach); }
  .path-card--lilac .card-shape { background: var(--lilac-pale); } .path-card--lilac .kicker { color: var(--lilac); } .path-card--lilac:hover { border-color: var(--lilac); }
  .path-card--navy { border: 0; background: var(--navy); color: var(--cream); }
  .path-card--navy .card-shape { background: rgb(222 127 166 / 45%); }
  .path-card--navy .kicker { color: var(--peach); }
  .path-card--navy > p:not(.kicker) { color: #c3cce0; }

  .learn, .about { background: var(--blue-pale); }
  .shape--learn { right: -8rem; bottom: -10rem; width: 31rem; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--peach-pale), transparent 70%); }
  .learn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
  .offer-card { min-height: 18rem; display: flex; flex-direction: column; padding: 2.5rem 2.25rem; border-radius: var(--radius); background: var(--cream); }
  .offer-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; }
  .offer-card__tags span { padding: .35rem .7rem; border-radius: 999px; background: rgb(30 50 92 / 7%); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .offer-card__tags span:first-child { background: var(--pink-pale); color: #c35f89; }
  .offer-card--peach .offer-card__tags span:first-child { background: var(--peach-pale); color: #b9673e; }
  .offer-card h3 { margin: 1.35rem 0 .7rem; font-size: 1.9rem; }
  .offer-card > p { color: var(--ink-soft); }
  .offer-card > a { margin-top: auto; padding-top: 1.5rem; font-weight: 700; }

  .visibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; margin-bottom: 2.15rem; }
  .visibility-card { display: flex; flex-direction: column; min-height: 15rem; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
  .visibility-card > span { color: var(--lilac); font-family: var(--display); font-weight: 800; }
  .visibility-card h3 { margin: 1.35rem 0 .6rem; font-size: 1.55rem; }
  .visibility-card p { color: var(--ink-soft); }
  .visibility-card--featured { background: var(--navy); color: var(--cream); transform: translateY(-.75rem); box-shadow: var(--shadow); }
  .visibility-card--featured p { color: #c3cce0; }

  .brands { background: var(--navy); color: var(--cream); }
  .shape--brands { top: -8rem; right: -6rem; width: 30rem; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgb(240 168 130 / 35%), transparent 68%); }
  .brands__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 6rem); }
  .section-copy--light > p:not(.kicker) { color: #c3cce0; }
  .section-copy .button { margin-top: 2rem; }
  .service-list .kicker { color: #96a2bf; }
  .service-list li { display: flex; align-items: center; gap: .9rem; padding-block: 1rem; border-bottom: 1px solid rgb(255 255 255 / 12%); font-size: 1.14rem; transition: color .2s ease, padding .2s ease; }
  .service-list li:hover { padding-left: .5rem; color: var(--peach); }
  .service-list li span { color: var(--pink); }

  .stats__title { margin-bottom: 3.75rem; text-align: center; font-size: clamp(2.75rem, 5.6vw, 5.1rem); }
  .stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
  .stats-grid > div { min-width: 0; padding: 1.85rem 1rem; border-left: 1px solid var(--line); text-align: center; }
  .stats-grid > div:first-child { border-left: 0; }
  .stats-grid dd { font-family: var(--display); font-size: clamp(2.65rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
  .stats-grid dt { margin-top: .65rem; color: var(--muted); font-size: .77rem; font-weight: 600; letter-spacing: .08em; }
  .count--pink { color: var(--pink); } .count--peach { color: #d67d51; } .count--lilac { color: var(--lilac); }

  .shape--about { top: -8rem; left: -6rem; width: 27rem; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--pink-pale), transparent 70%); }
  .about__grid { display: grid; grid-template-columns: minmax(17rem, .8fr) 1fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
  .about .section-copy { margin: 0; }
  .portrait { position: relative; aspect-ratio: 4 / 5; display: grid; align-items: end; overflow: hidden; padding: 1.4rem; border-radius: 1.75rem 1.75rem 1.75rem 5rem; background: linear-gradient(145deg, var(--lilac-pale), #eee9fa 46%, var(--pink-pale)); box-shadow: 1.1rem 1.2rem 0 rgb(222 127 166 / 48%); }
  .portrait::before, .portrait::after { content: ""; position: absolute; border-radius: 50%; }
  .portrait::before { width: 60%; aspect-ratio: 1; top: 13%; right: -15%; border: 1px solid rgb(30 50 92 / 18%); }
  .portrait::after { width: 35%; aspect-ratio: 1; bottom: 18%; left: -10%; background: rgb(240 168 130 / 40%); }
  .portrait span { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem); font-style: italic; color: var(--navy); }
  .text-link { display: inline-block; margin-top: 1.75rem; padding-bottom: .2rem; border-bottom: 2px solid var(--pink); font-size: 1.05rem; font-weight: 700; }
  .text-link:hover { color: var(--pink); }

  .contact-card { width: min(900px, calc(100% - 40px)); margin-inline: auto; position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.75rem, 5vw, 4.5rem); border-radius: 2.1rem; background: var(--navy); color: var(--cream); text-align: center; }
  .contact-card__content { position: relative; z-index: 1; }
  .contact-card h2 { max-width: 18ch; margin: 1rem auto 1.2rem; font-size: clamp(2.2rem, 4.7vw, 3.75rem); }
  .contact-card__content > p:not(.kicker) { max-width: 52ch; margin: 0 auto 2rem; color: #c3cce0; font-size: 1.1rem; }
  .contact-card .button { margin-inline: auto; }
  .contact-card__alternate { margin-top: 1.35rem !important; margin-bottom: 0 !important; color: #96a2bf !important; font-size: .94rem !important; }
  .email-accent { display: inline-flex; align-items: center; gap: .35rem; margin-left: .25rem; padding: .35rem .7rem; border: 1px solid rgb(240 168 130 / 60%); border-radius: 999px; background: rgb(240 168 130 / 12%); color: var(--peach); font-weight: 700; transition: background .2s ease, color .2s ease, transform .2s ease; }
  .email-accent:hover { background: var(--peach); color: var(--navy); transform: translateY(-2px); }
  .shape--contact-a { top: -5rem; left: -4rem; width: 17rem; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgb(222 127 166 / 42%), transparent 70%); }
  .shape--contact-b { right: -3rem; bottom: -5rem; width: 17rem; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgb(240 168 130 / 42%), transparent 70%); }

  .site-footer { padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.4rem; background: var(--navy-deep); color: var(--cream); }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
  .footer-grid > div:first-child > p { max-width: 34ch; margin-top: 1rem; color: #96a2bf; }
  .site-footer h2 { color: #7885a4; font-family: var(--body); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
  .site-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; margin-top: 1rem; color: #c3cce0; }
  .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; color: #96a2bf; }
  .footer-contact h2 { margin-bottom: .25rem; }
  .footer-email { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; width: 100%; padding: .7rem .75rem .7rem 1rem; border: 1px solid rgb(240 168 130 / 45%); border-radius: 999px; background: rgb(240 168 130 / 10%); color: var(--peach); font-weight: 700; transition: background .2s ease, color .2s ease, transform .2s ease; }
  .footer-email b { display: grid; width: 2rem; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--peach); color: var(--navy); }
  .footer-email:hover { background: var(--peach); color: var(--navy); transform: translateY(-2px); }
  .footer-contact > span { overflow-wrap: anywhere; font-size: .88rem; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid rgb(255 255 255 / 10%); color: #7885a4; font-size: .77rem; }
  .footer-bottom div { display: flex; gap: 1.5rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .footer-bottom a:hover { color: var(--pink); }

  .contact-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .contact-modal.is-open { opacity: 1; visibility: visible; }
  .contact-modal__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgb(20 38 75 / 62%); backdrop-filter: blur(6px); cursor: default; }
  .contact-dialog { position: relative; width: min(34rem, 100%); max-height: calc(100svh - 3rem); overflow: auto; padding: clamp(2rem, 4.5vw, 3.25rem); border-radius: 1.9rem; background: var(--cream); box-shadow: 0 3rem 6rem -2rem rgb(20 38 75 / 70%); transform: translateY(1.5rem) scale(.98); transition: transform .35s cubic-bezier(.22, 1, .36, 1); }
  .contact-modal.is-open .contact-dialog { transform: none; }
  .contact-dialog__shape { position: absolute; top: -4rem; right: -3rem; width: 12rem; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--pink-pale), transparent 70%); pointer-events: none; }
  .contact-dialog__close { position: absolute; top: 1.15rem; right: 1.15rem; z-index: 2; display: grid; width: 2.5rem; aspect-ratio: 1; place-items: center; border: 0; border-radius: 50%; background: rgb(30 50 92 / 8%); color: var(--navy); font-size: 1.45rem; line-height: 1; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
  .contact-dialog__close:hover { background: var(--navy); color: var(--cream); transform: rotate(6deg); }
  .contact-form-view, .contact-success { position: relative; z-index: 1; }
  .contact-form-view > h2, .contact-success h2 { margin: .75rem 0 .55rem; font-size: clamp(2rem, 4vw, 2.55rem); }
  .contact-form-view > p:not(.kicker) { margin-bottom: 1.55rem; color: var(--ink-soft); }
  .contact-form { display: grid; gap: 1rem; }
  .contact-form label { display: grid; gap: .4rem; color: var(--navy); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .contact-form input:not([type="hidden"]):not(.botcheck), .contact-form textarea { width: 100%; border: 1.5px solid rgb(30 50 92 / 16%); border-radius: .85rem; background: var(--paper); color: var(--navy); padding: .8rem .95rem; font-size: 1rem; font-weight: 500; letter-spacing: 0; outline: none; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgb(222 127 166 / 16%); }
  .contact-form textarea { min-height: 7.5rem; resize: vertical; }
  .botcheck { position: absolute; left: -9999px; opacity: 0; }
  .form-status { min-height: 1.25rem; color: #a53d60; font-size: .88rem; }
  .form-submit { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; min-height: 3.35rem; border: 0; border-radius: 999px; background: var(--navy); color: var(--cream); font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
  .form-submit:hover { background: var(--pink); color: var(--navy); transform: translateY(-2px); }
  .form-submit:disabled { opacity: .65; cursor: wait; transform: none; }
  .contact-success { padding: 1.5rem .5rem; text-align: center; }
  .contact-success > span { display: inline-grid; width: 4.2rem; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--pink-pale); color: var(--pink); font-size: 2rem; }
  .contact-success p { max-width: 34ch; margin: 0 auto 1.5rem; color: var(--ink-soft); }
  .contact-success button { padding: .75rem 1.6rem; border: 2px solid var(--navy); border-radius: 999px; background: transparent; color: var(--navy); font-weight: 700; cursor: pointer; }
  .contact-success button:hover { background: var(--navy); color: var(--cream); }
}

@layer responsive {
  @media (max-width: 980px) {
    .site-header { grid-template-columns: 1fr auto auto; gap: 1rem; }
    .menu-toggle { display: grid; width: 2.8rem; aspect-ratio: 1; place-content: center; gap: .35rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--navy); cursor: pointer; }
    .menu-toggle span:not(.sr-only) { display: block; width: 1.15rem; height: 2px; background: currentColor; transition: transform .25s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .primary-nav { position: fixed; inset: 4.75rem 1rem auto; display: grid; gap: 0; padding: .75rem; border: 1px solid var(--line); border-radius: 1.25rem; background: var(--cream); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-.75rem); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .primary-nav a { padding: .9rem 1rem; border-radius: .75rem; font-size: 1.05rem; }
    .primary-nav a:hover { background: var(--pink-pale); }
    .path-grid { grid-template-columns: repeat(2, 1fr); }
    .path-card { min-height: 20rem; }
    .stats-grid { grid-template-columns: repeat(6, 1fr); row-gap: 1.5rem; }
    .stats-grid > div { grid-column: span 2; }
    .stats-grid > div:nth-last-child(-n+2) { grid-column: span 3; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; max-width: 24rem; }
  }

  @media (max-width: 700px) {
    :root { --shell: min(100% - 32px, 1180px); --section-space: 4.5rem; }
    .site-header { min-height: 4.65rem; padding-inline: 1rem; }
    .header-cta { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .hero { min-height: auto; padding-block: 4.25rem 7rem; }
    .hero__title { font-size: clamp(3.25rem, 17vw, 5rem); }
    .hero__intro { font-size: 1.05rem; }
    .hero__actions { align-items: stretch; flex-direction: column; }
    .hero__actions .button { width: 100%; }
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
    .hero-stats > div { padding-inline: .8rem; }
    .hero-stats dd { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .hero-stats dt { font-size: .59rem; letter-spacing: .09em; }
    .shape--hero-blue { right: -12rem; width: 28rem; }
    .shape--hero-pink { left: -12rem; width: 26rem; }
    .shape--hero-ring { left: 65%; width: 10rem; }
    .section-heading { display: grid; margin-bottom: 2.4rem; }
    .section-heading > p { font-size: 1rem; }
    .path-grid, .learn-grid, .visibility-grid, .brands__grid, .about__grid { grid-template-columns: 1fr; }
    .path-card { min-height: 18rem; }
    .offer-card { min-height: 17rem; padding: 2rem 1.5rem; }
    .visibility-card { min-height: 13rem; }
    .visibility-card--featured { transform: none; }
    .brands__grid { gap: 1rem; }
    .brands .section-copy { margin-bottom: 2rem; }
    .stats__title { margin-bottom: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 0; }
    .stats-grid > div, .stats-grid > div:nth-last-child(-n+2) { grid-column: span 1; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
    .stats-grid > div:nth-child(odd) { border-left: 0; }
    .stats-grid > div:first-child, .stats-grid > div:nth-child(2) { border-top: 0; }
    .stats-grid > div:last-child { grid-column: 1 / -1; border-left: 0; }
    .stats-grid dt { font-size: .7rem; }
    .about__grid { gap: 3.5rem; }
    .portrait { width: min(85%, 22rem); margin-inline: auto; }
    .contact-card { width: calc(100% - 32px); }
    .contact-card .button { width: 100%; text-align: left; }
    .contact-card__alternate { display: grid; justify-items: center; gap: .5rem; }
    .email-accent { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child, .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .contact-modal { padding: .75rem; }
    .contact-dialog { max-height: calc(100svh - 1.5rem); padding: 2.1rem 1.25rem 1.5rem; border-radius: 1.4rem; }
    .contact-dialog__close { top: .8rem; right: .8rem; }
  }

  @media (max-width: 380px) {
    .eyebrow { font-size: .65rem; letter-spacing: .11em; }
    .hero__title { font-size: 3.15rem; }
    .hero-stats dt { overflow-wrap: anywhere; }
    .button { padding-left: 1.35rem; font-size: .94rem; }
    .path-card { padding: 2rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child, .footer-contact { grid-column: auto; }
  }
}

@layer motion {
  @keyframes marquee { to { transform: translateX(-50%); } }
  @keyframes float { 50% { transform: translateY(-1.3rem) rotate(4deg); } }
  @keyframes spin { to { rotate: 360deg; } }
  .shape--hero-blue, .shape--contact-a { animation: float 16s ease-in-out infinite; }
  .shape--hero-ring { animation: spin 48s linear infinite; }
  .reveal { opacity: 0; transform: translateY(1.6rem); transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1); }
  .reveal.is-visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
  }
}
