@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("/assets/fonts/inter-tight-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --navy: #132642;
  --muted: #475468;
  --accent: #0038ff;
  --cream: #f5f2ec;
  --sand: #f7f1e7;
  --line: #e6e0d4;
  --yellow: #f2c746;
  --green: #1fa971;
  --heading: "Sora", system-ui, sans-serif;
  --body: "Inter Tight", system-ui, -apple-system, sans-serif;
  --gutter: clamp(16px, 3vw, 40px);
  --section-y: clamp(32px, 6vw, 80px);
  --shadow-1: 0 1px 2px rgba(19, 38, 66, .06);
  --shadow-2: 0 20px 50px rgba(19, 38, 66, .1);
  --shadow-3: 0 20px 50px rgba(19, 38, 66, .14);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
body { margin: 0; background: var(--cream); color: var(--navy); font: 16px/1.55 var(--body); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
a:hover { color: var(--navy); }
h1, h2, h3 { font-family: var(--heading); line-height: 1; margin: 0; text-wrap: balance; overflow-wrap: anywhere; }
p { margin: 0; text-wrap: pretty; }

/* Layout primitives */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.container--text { max-width: 760px; }
.section { padding-block: var(--section-y); }
.section--flush { padding-block-start: 0; }
.stack { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; min-width: 0; }

/* One grid, three track sizes. Everything in the design is an auto-fit grid. */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min, 300px)), 1fr)); }
.grid--wide { --min: 400px; }
.grid--narrow { --min: 260px; }
.grid--cards { --min: 280px; gap: 12px; }
.grid--quad { --min: 250px; gap: 12px; }
.grid--split { --min: 340px; gap: clamp(24px, 4vw, 64px); align-items: center; }
.grid--tight { gap: 12px; }

/* Headings */
.h1 { font-weight: 800; font-size: clamp(36px, 5vw, 64px); letter-spacing: -.04em; }
.h2 { font-weight: 800; font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -.035em; }
.h3 { font-weight: 700; font-size: 20px; line-height: 1.2; letter-spacing: -.02em; }
.lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.5; color: var(--muted); max-width: 52ch; }
.section-head { display: flex; flex-direction: column; gap: 14px; }
.section-head p { font-size: 17px; color: var(--muted); max-width: 46ch; }
.section-head--row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(16px, 4vw, 48px); align-items: end; margin-bottom: 28px; }
.eyebrow { font: 600 13px var(--heading); color: var(--muted); letter-spacing: .04em; }
.highlight { color: var(--accent); font-weight: 600; }

/* Surfaces */
.surface { background: #fff; border-radius: 24px; box-shadow: var(--shadow-1); }
.panel { background: #fff; border-radius: 32px; padding: clamp(24px, 4vw, 56px); box-shadow: var(--shadow-1); }
.band { border-radius: 32px; padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 64px); }
.dark { background: var(--navy); color: #fff; }
.dark p { color: rgba(255, 255, 255, .78); }

/* Buttons and links */
.btn { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; font: 700 16px var(--heading); padding: 16px 28px; min-height: 52px; border-radius: 999px; box-shadow: 0 12px 32px rgba(0, 56, 255, .28); text-decoration: none; border: 0; cursor: pointer; white-space: nowrap; }
.btn:hover { background: var(--navy); color: #fff; box-shadow: none; }
.btn--arrow::after { content: "→"; }
.btn--sm { font: 600 14px var(--heading); padding: 10px 16px; min-height: 44px; box-shadow: none; }
.btn--md { font-size: 15px; padding: 14px 24px; min-height: 48px; box-shadow: none; }
.btn--dark { background: var(--navy); box-shadow: none; }
.btn--dark:hover { background: var(--accent); }
.dark .btn { background: #fff; color: var(--navy); box-shadow: none; }
.dark .btn:hover { background: var(--accent); color: #fff; }
.dark .btn--ghost { background: transparent; border: 1px solid rgba(255, 255, 255, .35); color: #fff; }
.dark .btn--ghost:hover { background: #fff; color: var(--navy); }
.link-arrow { font: 600 14px var(--heading); color: var(--accent); text-decoration: none; }
.link-arrow::after { content: " →"; }
.link-under { display: inline-block; font: 600 15px var(--heading); color: var(--navy); text-decoration: underline; text-underline-offset: 5px; text-decoration-color: #c9c1b1; padding: 12px 0; }
.link-under:hover { color: var(--navy); text-decoration-color: var(--accent); }
.dark .link-under { color: #fff; text-decoration-color: rgba(255, 255, 255, .4); }
.dark .link-under:hover { color: var(--yellow); text-decoration-color: var(--yellow); }

/* Pills, chips, avatars */
.pill { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; background: #fff; border-radius: 999px; padding: 6px 14px 6px 6px; box-shadow: var(--shadow-1); font: 500 13px var(--heading); color: var(--muted); line-height: 1.3; }
.pill--plain { padding: 6px 14px; }
.pill img { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.avatar { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chips li { background: #fff; border-radius: 999px; padding: 8px 14px; font: 500 13px var(--heading); white-space: nowrap; }
.social { display: flex; flex-wrap: wrap; gap: 10px; }
.social a { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--navy); border-radius: 999px; padding: 12px 20px; min-height: 44px; font: 600 14px var(--heading); text-decoration: none; white-space: nowrap; box-shadow: var(--shadow-1); }
.social a:hover { background: var(--navy); color: #fff; }
.social img { width: 18px; height: 18px; }

/* Review row */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; font-size: 14px; color: var(--muted); }
.trust-row > span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.trust-row img { width: 16px; height: 16px; }
.trust-row a { color: var(--navy); text-decoration: none; font-weight: 600; }
.trust-row a:hover { color: var(--accent); }
.stars { color: var(--yellow); letter-spacing: 1px; font-size: 15px; }
.dark .trust-row { color: rgba(255, 255, 255, .78); }

/* Framed photo */
.photo-frame { background: #fff; border-radius: 36px; padding: 12px; box-shadow: var(--shadow-2); width: 100%; max-width: 460px; }
.photo-frame img { border-radius: 26px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

/* Header */
.site-header { padding: 16px var(--gutter); }
.nav-bar { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px; background: #fff; border-radius: 999px; padding: 8px 8px 8px 16px; box-shadow: var(--shadow-1); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); font: 700 15px var(--heading); text-decoration: none; white-space: nowrap; }
.brand img { width: 28px; height: 28px; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.site-nav > a, .nav-drop > summary { font: 500 14px var(--heading); color: var(--muted); text-decoration: none; white-space: nowrap; }
.site-nav > a:hover, .nav-drop > summary:hover { color: var(--navy); }
.site-nav > a[aria-current], .nav-drop[data-current] > summary { font-weight: 600; color: var(--navy); }
.nav-drop { position: relative; }
.nav-drop > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after { content: "▾"; font-size: 10px; }
.nav-drop__menu { position: absolute; top: calc(100% + 14px); left: -12px; z-index: 50; display: flex; flex-direction: column; gap: 2px; min-width: 260px; background: #fff; border-radius: 20px; padding: 8px; box-shadow: var(--shadow-3); }
.nav-drop__menu a { display: block; padding: 10px 14px; border-radius: 12px; font: 500 14px var(--heading); color: var(--navy); text-decoration: none; white-space: nowrap; }
.nav-drop__menu a:hover { background: var(--cream); color: var(--accent); }
.nav-drop__menu hr { border: 0; height: 1px; background: var(--line); margin: 6px 8px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); }
.site-footer .container { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; padding-bottom: 24px; font-size: 13px; color: var(--muted); }
.site-footer__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px; font-size: 14px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a, .site-footer button { color: var(--muted); text-decoration: none; white-space: nowrap; }
.site-footer a:hover, .site-footer button:hover { color: var(--navy); }
.site-footer button { background: none; border: 0; font: inherit; cursor: pointer; padding: 0; }
.disclaimers { display: grid; gap: 10px; max-width: 90ch; line-height: 1.5; }

/* Shared body copy: home about, about page, campaign about panel */
.body-copy { display: flex; flex-direction: column; gap: 16px; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 60ch; }
.body-copy a { font-weight: 600; text-decoration: none; }

/* Home */
.home-hero { --min: 400px; gap: clamp(28px, 4vw, 56px); }
.home-hero .stack { gap: 28px; }
.home-hero h1 { font-size: clamp(44px, 5.6vw, 76px); line-height: .98; }
.home-hero .lede { font-size: clamp(17px, 1.5vw, 19px); }
.home-hero .photo-frame { justify-self: end; }
.home-video { --min: 340px; gap: 40px; border-radius: 40px; padding: 24px; }
.home-video h2 { font-size: clamp(30px, 3vw, 40px); }
.home-about h2 { font-size: clamp(32px, 3.4vw, 44px); max-width: 8ch; }

/* A heading beside prose, or a sidebar beside a post body: one track, then two. */
.split-3 { --min: 280px; gap: clamp(24px, 4vw, 64px); align-items: start; }
.split-3 > :nth-child(2) { grid-column: span 2; }

/* About */
.about-hero { --min: 340px; }
.about-hero .photo-frame { justify-self: end; }
.about-kicker { font: 600 clamp(18px, 1.6vw, 22px)/1.4 var(--heading); color: var(--muted); letter-spacing: -.01em; }
.about-story h2 { font-size: clamp(30px, 3.4vw, 44px); max-width: 10ch; }

/* Newsletter card, and the dark call-to-action band */
.newsletter { --min: 320px; gap: clamp(24px, 4vw, 48px); align-items: center; }
.newsletter h2, .cta-band h2 { font-size: clamp(28px, 3.4vw, 44px); }
.newsletter .stack { gap: 12px; }
.newsletter p { font-size: 17px; color: var(--muted); max-width: 44ch; }
.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band > div { display: flex; flex-direction: column; gap: 10px; max-width: 50ch; }
.cta-band p { font-size: 17px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Home: service cards */
.service-card { display: grid; grid-template-columns: minmax(0, 200px) minmax(0, 1fr); gap: 20px; align-items: center; background: #fff; border-radius: 28px; padding: 12px; box-shadow: var(--shadow-1); }
.service-card:hover { box-shadow: var(--shadow-2); }
.service-card img { aspect-ratio: 1; object-fit: cover; border-radius: 20px; background: var(--sand); }
.service-card div { display: flex; flex-direction: column; gap: 10px; padding: 8px 12px 8px 0; }
.service-card h3 { font-size: 22px; }
.service-card p { font-size: 14px; color: var(--muted); }

/* Video facade */
.video { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 24px; overflow: hidden; background: #000; padding: 0; cursor: pointer; }
.video--wide { aspect-ratio: 16 / 10; }
.video img { width: 100%; height: 100%; object-fit: cover; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__play { position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; border-radius: 50%; background: #fff; display: grid; place-items: center; transition: transform .18s ease; }
.video__play::before { content: ""; border-left: 20px solid var(--accent); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 6px; }
.video:hover .video__play { transform: scale(1.06); }
.video__badge { position: absolute; left: 12px; border-radius: 999px; padding: 8px 14px; font: 600 12px var(--heading); }
.video__badge--top { top: 12px; background: var(--navy); color: #fff; }
.video__badge--bottom { bottom: 12px; background: #fff; color: var(--navy); }
.media-card { background: #fff; border-radius: 32px; padding: 10px; box-shadow: var(--shadow-2); }
.media-card figcaption { margin: 10px 12px 4px; font-size: 13px; color: var(--muted); }
.media-still { position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: 24px; overflow: hidden; background: var(--sand); }
.media-still img { width: 100%; height: 100%; object-fit: cover; }

/* About: stats */
.stat { background: #fff; border-radius: 24px; padding: clamp(22px, 3vw, 28px); display: flex; flex-direction: column; gap: 8px; }
.stat b { font: 800 40px/1 var(--heading); letter-spacing: -.04em; color: var(--accent); }
.stat h3 { font: 700 17px var(--heading); }
.stat p { font-size: 14px; color: var(--muted); }

/* Contact */
.contact-grid { --min: 360px; gap: clamp(24px, 4vw, 64px); align-items: start; }
.contact-grid .stack { gap: 24px; }
.contact-grid .lede { max-width: 48ch; }
.contact-aside { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; width: 100%; max-width: 440px; padding: clamp(20px, 3vw, 28px); }
.contact-aside b { font: 700 15px var(--heading); }
.contact-aside p { font-size: 14px; color: var(--muted); }
.contact-elsewhere { gap: 12px; }
.contact-grid .embed { border-radius: 32px; }

/* Campaign pages */
.campaign-hero { --min: 400px; gap: clamp(28px, 4vw, 56px); align-items: center; }
.campaign-hero h1 { font-size: clamp(36px, 5.2vw, 68px); }
.campaign-hero .lede { font-size: clamp(17px, 1.5vw, 19px); }
.campaign-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; }
.campaign-chips { text-align: center; }
.campaign-chips p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.campaign-process { display: flex; flex-direction: column; gap: 32px; }
.campaign-process .section-head { max-width: 60ch; gap: 12px; }
.campaign-about { --min: 300px; gap: clamp(24px, 4vw, 56px); align-items: center; }
.campaign-about h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.05; }
.campaign-about .photo { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; max-width: 420px; width: 100%; }
.campaign-about .photo img { width: 100%; height: 100%; object-fit: cover; }
.campaign-about .stack { gap: 18px; }
.campaign-faq { --min: 300px; gap: clamp(20px, 4vw, 64px); align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.campaign-cta { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; padding: clamp(32px, 6vw, 80px) clamp(20px, 4vw, 64px); }
.campaign-cta h2 { font-size: clamp(30px, 4vw, 56px); max-width: 18ch; }
.campaign-cta p { font-size: 17px; line-height: 1.5; max-width: 50ch; }
.campaign-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* Campaign pages: pain cards, process, includes, FAQ */
.pain { background: #fff; border-radius: 24px; padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; gap: 10px; }
.pain p { font-size: 15px; color: var(--muted); }
.steps { list-style: none; margin: 0; padding: 0; }
.step { background: var(--cream); border-radius: 20px; padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.step b { font: 800 36px/1 var(--heading); letter-spacing: -.04em; color: var(--accent); }
.step h3 { font: 700 18px/1.2 var(--heading); }
.step p { font-size: 14px; color: var(--muted); }
.feature { background: #fff; border-radius: 24px; padding: 10px; display: flex; flex-direction: column; gap: 14px; }
.feature img { aspect-ratio: 5 / 3; object-fit: cover; border-radius: 16px; background: var(--sand); }
.feature div { padding: 0 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.feature h3 { font: 700 18px/1.2 var(--heading); }
.feature p { font-size: 14px; color: var(--muted); }
.faq { background: #fff; border-radius: 18px; padding: 18px 22px; }
.faq summary { font: 700 16px var(--heading); cursor: pointer; list-style: none; min-height: 24px; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 12px; font-size: 15px; color: var(--muted); }
.byline { display: flex; align-items: center; gap: 12px; }
.byline img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.byline b { font: 700 15px var(--heading); display: block; }
.byline span { font-size: 14px; color: var(--muted); }

/* Contact modal */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal__scrim { position: absolute; inset: 0; border: 0; padding: 0; cursor: pointer; background: rgba(19, 38, 66, .55); backdrop-filter: blur(6px); }
.modal__panel { position: relative; display: flex; flex-direction: column; overflow: hidden; width: 100%; max-width: 560px; max-height: calc(100dvh - 32px); background: #fff; border-radius: 28px; box-shadow: 0 40px 100px rgba(19, 38, 66, .35); }
.modal__head { position: relative; padding: 24px 60px 0 24px; display: grid; gap: 6px; }
.modal__head h2 { font-weight: 800; font-size: 24px; line-height: 1.1; letter-spacing: -.03em; }
.modal__head p { font-size: 14px; color: var(--muted); }
.modal__close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--cream); color: var(--navy); font-size: 20px; cursor: pointer; }
.modal__close:hover { background: var(--navy); color: #fff; }
.modal__body { flex: 1; min-height: 0; display: flex; padding: 12px 16px 16px; }
.modal__body iframe { flex: 1; width: 100%; height: min(700px, calc(100dvh - 140px)); border: 0; border-radius: 8px; }

/* Booking page */
.booking-card { background: #fff; border-radius: 32px; padding: clamp(12px, 2vw, 20px); box-shadow: var(--shadow-2); position: sticky; top: 16px; min-width: 0; }
.booking-card__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 8px 14px; }
.booking-card__head b { font: 700 16px var(--heading); }
.booking-card__head span { font-size: 13px; color: var(--muted); }
.booking-card__embed { border-radius: 20px; overflow: hidden; background: var(--cream); min-height: 720px; }
.booking-card__embed iframe { width: 100%; min-height: 720px; border: 0; overflow: hidden; display: block; }
.numbered { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.numbered li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.numbered b { width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font: 700 13px var(--heading); color: var(--accent); }
.numbered strong { display: block; font: 700 15px var(--heading); }
.numbered span { font-size: 14px; color: var(--muted); }

/* Blog */
.post-card { display: flex; flex-direction: column; gap: 14px; min-width: 0; background: #fff; border-radius: 28px; padding: 10px; color: var(--navy); text-decoration: none; box-shadow: var(--shadow-1); }
.post-card:hover { box-shadow: var(--shadow-2); color: var(--navy); }
.post-card img, .post-card__blank { width: 100%; aspect-ratio: 16 / 9; object-fit: contain; border-radius: 20px; background: var(--sand); padding: 12px; }
.post-card__blank { background: var(--sand) url("/assets/images/logo.svg") center / 64px no-repeat; }
.post-card__text { display: flex; flex-direction: column; gap: 10px; padding: 0 12px 14px; }
.post-card h2 { font: 700 20px/1.2 var(--heading); letter-spacing: -.025em; }
.post-card p { font-size: 14px; color: var(--muted); }
.post-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 24px; align-items: center; }
.post-card--featured img, .post-card--featured .post-card__blank { aspect-ratio: 4 / 3; }
.post-card--featured .post-card__text { padding: 12px 20px 20px 4px; }
.post-card--featured h2 { font-size: clamp(24px, 2.6vw, 34px); }
.post-card--featured p { font-size: 16px; }
.meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font: 500 13px var(--heading); color: var(--muted); }
.meta a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* Booking page */
.booking-grid { --min: 380px; gap: clamp(24px, 4vw, 56px); align-items: start; }
.booking-grid .stack { gap: 28px; }
.booking-grid .lede { max-width: 50ch; }
.booking-steps { width: 100%; display: flex; flex-direction: column; gap: 16px; padding: clamp(20px, 3vw, 28px); }
.booking-steps h2 { font: 700 16px var(--heading); color: var(--muted); letter-spacing: .02em; }
.booking-note { font-size: 13px; color: var(--muted); max-width: 50ch; }
.booking-note a { font-weight: 600; text-decoration: none; }

/* Blog index and post header */
.blog-head { gap: 20px; }
.blog-head .lede { max-width: 56ch; }
.post-head { gap: 20px; }
.post-head h1 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05; max-width: 22ch; }
.post-hero { background: #fff; border-radius: 32px; padding: 10px; box-shadow: var(--shadow-2); }
.post-hero img { width: 100%; aspect-ratio: 2 / 1; object-fit: contain; border-radius: 24px; background: var(--sand); }
.post-body { --min: 260px; }
.related { gap: 20px; }
.related h2 { font-size: clamp(26px, 3vw, 36px); }

/* Post sidebar */
.post-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 16px; }
.toc { background: #fff; border-radius: 24px; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.toc b { font: 600 12px var(--heading); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.toc a { font: 500 14px var(--heading); color: var(--navy); text-decoration: none; }
.toc a:hover { color: var(--accent); }
.side-cta { border-radius: 24px; padding: 22px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.side-cta b { font: 700 16px var(--heading); }
.side-cta p { font-size: 14px; }

/* Long-form text: posts, privacy policy */
.prose { font-size: 18px; line-height: 1.65; color: var(--muted); display: flex; flex-direction: column; gap: 22px; max-width: 68ch; min-width: 0; }
.prose h2, .prose h3 { color: var(--navy); margin-top: 16px; }
.prose h2 { font-weight: 700; font-size: clamp(22px, 2vw, 26px); line-height: 1.25; letter-spacing: -.025em; }
.prose h3 { font-weight: 700; font-size: 19px; line-height: 1.3; }
.prose strong { color: var(--navy); }
.prose ul, .prose ol { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose img { border-radius: 18px; background: var(--sand); }
.prose blockquote { margin: 0; background: #fff; border-radius: 20px; padding: 18px 22px; border-left: 4px solid var(--accent); font-size: 15px; }
.prose blockquote p + p { margin-top: 12px; }
.prose hr { border: 0; border-top: 1px solid var(--line); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--navy); }
.prose a { font-weight: 600; text-decoration: none; }

/* White-label page */
.page-hero { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; max-width: 900px; }
.page-hero .lede { max-width: 62ch; }
.section-head--center { align-items: center; text-align: center; margin: 0 auto 36px; }
.section-head--center p { max-width: 62ch; }
.card { display: flex; flex-direction: column; gap: 14px; background: #fff; border-radius: 24px; padding: clamp(20px, 3vw, 24px); box-shadow: var(--shadow-1); }
.card img { border-radius: 16px; background: var(--sand); aspect-ratio: 5 / 4; object-fit: cover; }
.card h3 { font: 700 18px/1.2 var(--heading); }
.card p { color: var(--muted); font-size: 14px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.checklist li { background: #fff; border-radius: 12px; padding: 14px 16px; font-weight: 600; box-shadow: var(--shadow-1); }
.checklist li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: 10px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 16px; }
.gallery img { border-radius: 16px; box-shadow: var(--shadow-2); }
.scroller { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 12px; max-width: 1200px; margin: 0 auto; }
.scroller img { height: 420px; width: auto; max-width: none; border-radius: 16px; scroll-snap-align: start; }
.emoji { font-size: 32px; line-height: 1; }

/* GHL embeds */
.embed { background: #fff; border-radius: 24px; padding: clamp(12px, 2vw, 20px); box-shadow: var(--shadow-2); }
.embed iframe { display: block; border-radius: 12px; }

/* Cookie consent */
.consent { position: fixed; z-index: 1100; left: 16px; right: 16px; bottom: 16px; max-width: 440px; margin-left: auto; background: #fff; color: var(--navy); border-radius: 24px; box-shadow: var(--shadow-3); padding: 20px; font-size: 14px; display: grid; gap: 14px; }
.consent strong { font: 700 16px var(--heading); }
.consent p { color: var(--muted); }
.consent div { display: flex; gap: 10px; justify-content: flex-end; }
.consent button { font: 700 14px var(--heading); padding: 10px 18px; border-radius: 999px; cursor: pointer; border: 1px solid var(--navy); background: #fff; color: var(--navy); }
.consent button[value="accept"] { background: var(--navy); color: #fff; }

@media (max-width: 720px) {
  .nav-bar { border-radius: 24px; padding: 10px 12px; gap: 8px 16px; }
  .site-nav { gap: 6px 16px; }
  .site-nav > a, .nav-drop > summary { font-size: 13px; }
  .nav-bar .btn--sm { padding: 8px 14px; min-height: 38px; }
}

@media (max-width: 560px) {
  .service-card { grid-template-columns: 1fr; }
  .service-card div { padding: 0 12px 12px; }
  .scroller img { height: 320px; }
}
