/* ========================================================================
   EVERYBODY SURF — The Surf Ready System
   Editorial-coastal revamp · loud/quiet rhythm
   ======================================================================== */

/* ---------- Brand tokens ---------- */
:root {
  --ocean:      #296D9C;
  --ocean-deep: #1F5479;   /* hover/darker */
  --ocean-soft: #E7F0F5;   /* light tint for form / wave-bullet bg */
  --seafoam:    #8BBFAF;
  --seafoam-soft:#E4F0EB;
  --cream:      #FEFBF4;
  --cream-2:    #F6EEDD;   /* warm muted tan for alternating bands */
  --ink:        #1A2A33;
  --coral:      #E8714C;
  --coral-deep: #D65F3B;

  --muted:      #54656E;   /* secondary text on light */
  --line:       rgba(26, 42, 51, 0.12);

  /* scrim base (ocean-tinted, not grey) */
  --scrim: 15, 40, 60;

  /* fonts */
  --font-display: "Anton", "Inter", sans-serif;
  --font-serif:   "Fraunces", Georgia, serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-hand:    "Caveat", cursive;

  /* spacing scale */
  --space-section: clamp(64px, 9vw, 120px);
  --space-block: 32px;   /* heading → first content block, and block → block */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 44px rgba(26, 42, 51, 0.14);
  --shadow-sm: 0 6px 18px rgba(26, 42, 51, 0.08);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  /* lock horizontal panning — no swiping into empty space */
  overflow-x: clip;
  max-width: 100%;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 600;
}

/* Loud display headline — Anton, uppercase, tight tracking */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 0.98;
  font-size: clamp(2.1rem, 6.5vw, 5.2rem);
  overflow-wrap: break-word;
}

h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ocean-deep); margin-top: 1.6em; }
h5 { font-size: 1.1rem; margin-bottom: 0.3em; }

p { margin: 0 0 1.1em; }
a { color: var(--ocean-deep); }

.center { text-align: center; }
.optional { font-weight: 400; color: var(--muted); font-size: 0.85em; }

.eyebrow {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.82rem; color: var(--ocean-deep); margin-bottom: 0.7em;
}
.eyebrow--coral { color: var(--coral); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 740px; }

.section { padding: var(--space-section) 0; }
.section--sand  { background: var(--cream-2); }
.section--ocean { background: var(--ocean-soft); }

/* ====================================================================
   NAV
   ==================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; gap: 22px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem;
  color: var(--ink); text-decoration: none; letter-spacing: -0.2px;
}
.nav__logo {
  height: 40px; width: 40px; object-fit: contain;
  /* logo PNG ships on a white box; multiply blends it into cream */
  mix-blend-mode: multiply;
}
.nav__links { margin-left: auto; display: flex; gap: 28px; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--coral); transition: right .2s ease;
}
.nav__links a:hover { color: var(--ocean-deep); }
.nav__links a:hover::after { right: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  text-decoration: none; text-align: center;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.btn--primary { background: var(--ocean); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--coral); }

.btn--outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ocean-deep); border-color: var(--ocean); }
.btn--ghost:hover { background: #fff; }

.btn--small { padding: 9px 20px; font-size: 0.9rem; background: var(--ocean); color: #fff; }
.btn--small:hover { background: var(--coral); }
.btn--block { display: block; width: 100%; margin-top: 18px; }
.btn--lg { padding: 17px 36px; font-size: 1.1rem; }

/* ====================================================================
   FULL-BLEED PHOTO BANDS (Hero, What-Is, Why, Mission)
   ==================================================================== */
.photo-band {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.photo-band__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.photo-band__scrim { position: absolute; inset: 0; z-index: 1; }
.photo-band > .container,
.photo-band > .hero__inner { position: relative; z-index: 2; }

/* ====================================================================
   SECTION 1 — HERO (loud · emotional)
   ==================================================================== */
.hero { min-height: 85vh; min-height: 85svh; padding: 96px 0; }
.hero__scrim {
  background: linear-gradient(
    to right,
    rgba(var(--scrim), 0.75),
    rgba(var(--scrim), 0.45) 45%,
    rgba(var(--scrim), 0.15)
  );
}
.hero__inner {
  width: 100%; max-width: var(--maxw); min-width: 0; margin: 0 auto; padding: 0 28px;
  color: #fff;
}
.photo-band > .container { min-width: 0; }
.hero__inner > * { max-width: min(620px, calc(100vw - 56px)); overflow-wrap: break-word; }
.hero .display {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.4em;
}
.hero__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500; line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero__body {
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero__script {
  font-family: var(--font-hand);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: #fff; line-height: 1.1; margin: 0.2em 0 1.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 0.4em; }

.section p:last-child { margin-bottom: 0; }

/* Prominent hero kicker — "THE SURF READY SYSTEM" at the top */
.hero .eyebrow--coral {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 700; letter-spacing: 0.26em;
  margin-bottom: 1rem; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero .eyebrow--coral::before {
  content: ""; width: 40px; height: 3px; background: var(--coral); border-radius: 2px;
}

/* ====================================================================
   SHARED PHOTO-BAND TEXT (What-Is, Mission)
   ==================================================================== */
.band-text { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.band-text__panel { max-width: 540px; color: #fff; }
.band-text__panel > * { max-width: min(560px, calc(100vw - 56px)); overflow-wrap: break-word; }
.band-text__panel h2 { color: #fff; }
.band-text__panel p {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* ---------- Section 2 · What-Is (calm/airy · baby-blue solid) ---------- */
.band-whatis-flat h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 0.7em;
}
.whatis-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.whatis-grid__text { min-width: 0; }
.whatis-grid__text p:last-child { margin-bottom: 0; }
.whatis-grid__logo { display: flex; justify-content: center; }
.whatis-grid__logo img {
  width: 100%; max-width: 320px; height: auto;
  /* logo ships on a white box; multiply blends it into the baby-blue band */
  mix-blend-mode: multiply;
}

/* ---------- Section 3 · Why (loud editorial) ---------- */
.band-why { min-height: 84vh; min-height: 84svh; padding: 56px 0; justify-content: flex-end; }
.band-why .photo-band__img { object-position: center 58%; }
.band-why__scrim {
  background: linear-gradient(
    to top,
    rgba(var(--scrim), 0.9) 0%,
    rgba(var(--scrim), 0.78) 40%,
    rgba(var(--scrim), 0.3) 62%,
    rgba(var(--scrim), 0.1) 100%
  );
}
.band-why__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.band-why__text { max-width: 640px; color: #fff; }
.band-why__text > * { max-width: min(660px, calc(100vw - 56px)); overflow-wrap: break-word; }
.why-kicker {
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--coral); font-size: 0.85rem; margin-bottom: 0.5em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.why-intro {
  font-family: var(--font-serif); font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500; margin-bottom: 0.4em; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.why-stagger { margin: 0.1em 0 0.55em; }
.why-stagger p {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1rem, 1.7vw, 1.28rem); line-height: 1.22;
  margin-bottom: 0.12em; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.why-stagger p:nth-child(2) { margin-left: 1.2rem; }
.why-stagger p:nth-child(3) { margin-left: 2.4rem; }
.why-belief { font-size: 0.92rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 0.35em; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6); }
.why-quote {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.5px;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 0.98; color: var(--coral);
  margin: 0.1em 0 0.35em; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.why-tail { font-size: 0.92rem; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6); }

/* ---------- Section 6 · Mission (manifesto) ---------- */
.band-mission { min-height: 80vh; min-height: 80svh; padding: 96px 0; }
.band-mission__scrim {
  background: linear-gradient(
    to right,
    rgba(var(--scrim), 0.72), rgba(var(--scrim), 0.4) 50%, rgba(var(--scrim), 0.1)
  );
}
.band-mission .band-display {
  color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 0.5em; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.band-mission .band-text__panel { max-width: 560px; }
.mission-punch {
  font-weight: 700; font-size: 1.15rem; color: #fff;
  border-left: 4px solid var(--coral); padding-left: 16px; margin: 1.2em 0;
}

/* ====================================================================
   SECTION 4 — PRICING (banner + equal-height paid cards + details zone)
   ==================================================================== */
.options__subhead {
  color: var(--muted); font-size: 1.1rem; margin: -0.4em auto 0; max-width: 620px;
}

/* ---- Free: full-width banner, self-contained ---- */
.free-banner {
  margin-top: var(--space-block);
  background: var(--seafoam-soft); border: 1px solid rgba(139, 191, 175, 0.5);
  border-radius: var(--radius); padding: 28px 32px;
}
.free-banner__top {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap;
}
.free-banner__main { flex: 1 1 360px; min-width: 0; }
.free-banner__main .offer__tag { margin-bottom: 0.4em; }
.free-banner__main h3 { margin-bottom: 0.25em; font-size: 1.4rem; }
.free-banner__desc { color: var(--muted); margin: 0; max-width: 52ch; }
.free-banner__action { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.free-banner__price { font-size: 2rem; }
.free-banner__lists {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(139, 191, 175, 0.5);
}
.free-banner__lists h4 { margin-top: 0; }

/* ---- Two paid cards: side by side, EXACT equal height ---- */
.paid-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px; margin-top: var(--space-block); align-items: stretch;
}
.offer {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 36px 34px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.offer--featured {
  border: 2px solid var(--ocean); box-shadow: var(--shadow); z-index: 2;
}
.offer__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff; font-family: var(--font-body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; margin: 0; white-space: nowrap;
}
.offer__head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 18px; }
.offer__tag {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.76rem; color: var(--coral); font-weight: 700; margin-bottom: 0.5em;
}
.offer__head h3 { margin-bottom: 0.35em; }
.offer__price { font-family: var(--font-display); font-weight: 400; font-size: 2.2rem; color: var(--ink); margin: 0; }
/* body grows to fill; even spacing keeps shorter card from a dead tail */
.offer__body { display: flex; flex-direction: column; flex: 1 0 auto; }
.offer__intro { color: var(--ink); font-size: 1.05rem; }
.offer__body h4 { margin-top: 1.3em; }
.offer .paths { margin-top: 0.7em; }
.offer__foot { margin-top: auto; padding-top: 22px; }
.offer__note { font-size: 0.92rem; color: var(--muted); margin: 0 0 14px; font-style: italic; }

/* in-card two-column list group (and the free banner lists) */
.offer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 36px; margin-top: 1.3em; }
.offer__cols h4 { margin-top: 0; }
.free-banner__lists.offer__cols { margin-top: 22px; }
.check--2col { columns: 2; column-gap: 36px; }
.check--2col li { break-inside: avoid; }

/* Wave SVG bullets (replaces 🌊) */
ul.check { list-style: none; padding: 0; margin: 0.4em 0 0; }
ul.check li {
  position: relative; padding-left: 30px; margin-bottom: 9px;
}
ul.check li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 18px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath d='M1 9c2 0 2-4 5-4s3 4 5 4 2-4 5-4 3 4 5 4' fill='none' stroke='%23296D9C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.paths { display: grid; gap: 14px; margin-top: 0.6em; }
.paths--row { grid-template-columns: repeat(3, 1fr); }
.path { background: var(--seafoam-soft); border-radius: var(--radius-sm); padding: 16px 18px; }
.path p:last-child { margin-bottom: 0; }
.path p { font-size: 0.95rem; }

.steps { list-style: none; padding: 0; margin: 0.6em 0 0; }
.steps--row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps--row li { margin-bottom: 0; flex-direction: column; }
.steps li { display: flex; gap: 16px; margin-bottom: 18px; }
.steps__num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--ocean); color: #fff;
  font-family: var(--font-display); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.steps strong { font-family: var(--font-serif); }
.steps p { font-size: 0.95rem; margin: 0.2em 0 0; }

/* ====================================================================
   SECTION 5 — FORM (baseline; refined in its own step)
   ==================================================================== */
.card-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow); margin-top: var(--space-block);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--ink);
  transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(41, 109, 156, 0.18); background: #fff;
}
.field textarea { resize: vertical; }
.form__success {
  margin: 18px 0 0; padding: 14px 18px; background: var(--ocean-soft);
  border-radius: var(--radius-sm); color: var(--ocean-deep); font-weight: 700; text-align: center;
}

.plan-picker { border: none; padding: 0; margin: 0 0 26px; }
.plan-picker legend {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem;
  margin-bottom: 12px; padding: 0;
}
.plan-option {
  display: flex; align-items: flex-start; gap: 14px;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 12px; cursor: pointer;
  background: var(--cream); transition: border .15s ease, background .15s ease, box-shadow .15s ease;
}
.plan-option:hover { border-color: var(--ocean); }
.plan-option input { flex: none; margin-top: 4px; width: 20px; height: 20px; accent-color: var(--ocean); }
.plan-option.is-selected { border-color: var(--ocean); background: var(--ocean-soft); box-shadow: var(--shadow-sm); }
.plan-option__body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.plan-option__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.05rem; }
.plan-option__desc { font-size: 0.92rem; color: var(--muted); }
.plan-option__price { font-family: var(--font-display); color: var(--ocean-deep); font-size: 1.2rem; margin-top: 4px; }

.plan-extra { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 20px; animation: fadeIn .25s ease; }
.plan-extra[hidden] { display: none; }
.plan-extra__intro { font-weight: 600; color: var(--ocean-deep); margin-bottom: 16px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ====================================================================
   SECTION 7 — FAQ (baseline; refined in its own step)
   ==================================================================== */
.faq { margin-top: var(--space-block); }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 20px 24px; font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem;
  list-style: none; position: relative; padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--ocean); transition: transform .2s ease, color .2s ease;
}
.faq summary:hover::after { color: var(--coral); }
.faq details[open] summary::after { content: "\2013"; }
.faq__body { padding: 0 24px 20px; }
.faq__body p { margin-bottom: 0.7em; }
.faq__body p:last-child { margin-bottom: 0; }

/* ====================================================================
   FOOTER (baseline; refined in its own step)
   ==================================================================== */
.footer { background: var(--ink); color: #cfd8dc; padding: 54px 0; text-align: center; }
.footer__brand {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: #fff;
  margin: 0 0 0.5em;
  /* inline-block sizes to the text only, so the text centers on the page;
     the logo is positioned beside it without shifting the text off-center */
  display: inline-block; position: relative;
}
.footer__logo {
  position: absolute; right: 100%; top: 50%; transform: translateY(-50%);
  margin-right: 10px;
  height: 32px; width: 32px; object-fit: contain;
  /* black-on-white logo → invert makes lines white, screen drops the box */
  filter: invert(1); mix-blend-mode: screen;
}
.footer p { margin-bottom: 0.6em; }
.footer__fine { font-size: 0.82rem; color: #8c9aa1; max-width: 640px; margin: 16px auto 0; line-height: 1.6; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 920px) {
  .paid-cards { grid-template-columns: 1fr; gap: 32px; }
  .offer--featured { transform: none; }
  .paths--row { grid-template-columns: 1fr; }
  .steps--row { grid-template-columns: 1fr; gap: 18px; }
  .steps--row li { flex-direction: row; }
}
@media (max-width: 760px) {
  .whatis-grid { grid-template-columns: 1fr; gap: 28px; }
  .whatis-grid__logo { order: -1; }
  .whatis-grid__logo img { max-width: 200px; }
}
@media (max-width: 640px) {
  .free-banner { padding: 22px 22px; }
  .free-banner__action { width: 100%; align-items: flex-start; }
  .free-banner__action .btn { width: 100%; }
  .offer { padding: 28px 22px; }
  .offer__cols { grid-template-columns: 1fr; gap: 0; }
  .check--2col { columns: 1; }
}
@media (max-width: 760px) {
  /* Mobile: ALL photo bands share ONE fixed pixel height (no viewport units),
     so they're identical in size AND never re-crop/zoom when the URL bar
     shows/hides during scroll. The value is large enough to contain each
     band's content, so min-height (not content) sets the height for all. */
  .hero,
  .band-why,
  .band-mission { min-height: 760px; padding: 56px 0; }

  .hero__scrim {
    background: linear-gradient(
      to bottom,
      rgba(var(--scrim), 0.55),
      rgba(var(--scrim), 0.7)
    );
  }
  .photo-band__img { object-position: 60% center; }

  /* Why: keep the wave and surfer in frame; text sits in the lower third */
  .band-why .photo-band__img { object-position: center 58%; }
  .band-why__scrim {
    background: linear-gradient(to top, rgba(var(--scrim), 0.78), rgba(var(--scrim), 0.25) 55%, rgba(var(--scrim), 0.5));
  }
  .why-stagger p:nth-child(2) { margin-left: 0.9rem; }
  .why-stagger p:nth-child(3) { margin-left: 1.8rem; }

  /* Mission: keep the surfer in frame */
  .band-mission .photo-band__img { object-position: 55% center; }
  .band-mission__scrim {
    background: linear-gradient(to bottom, rgba(var(--scrim), 0.55), rgba(var(--scrim), 0.7));
  }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .nav__inner { padding: 11px 16px; gap: 10px; }
  .nav__brand { font-size: 1.1rem; gap: 8px; white-space: nowrap; }
  .nav__logo { height: 34px; width: 34px; }
  .btn--small { padding: 6px 12px; font-size: 0.75rem; white-space: nowrap; }
  .hero .display { font-size: 2.05rem; }
  .hero__script { font-size: 1.6rem; }
  .field-row { grid-template-columns: 1fr; }
  .card-form { padding: 24px; }
}
