/* =========================================================
   KitsapSkates.com — styles
   Mobile-first. No frameworks, no build step.
   Edit the tokens in :root to reskin the whole site.

   PALETTE NOTE: every text/background pairing below was
   checked against WCAG AA. Two rules worth keeping if you
   change colors:
     · Coral #E76F51 is a FILL color, never text on cream
       (2.75:1). Coral text uses --coral-text (#B84527, 4.76:1).
     · Sea green is an icon/shape color, never text on cream.
   ========================================================= */

/* Self-hosted variable font (weight 100–900, width 62–125%).
   One 88KB file, no third-party requests, no tracking.
   SIL Open Font License — see assets/fonts/Archivo-LICENSE.txt */
@font-face {
  font-family: "Archivo Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  src: url("/assets/fonts/archivo-latin.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
                 U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* --- Surfaces (light-dominant by design) --- */
  --cream:       #F6F1E7;   /* dominant background */
  --panel:       #FFFCF6;   /* cards and raised surfaces */
  --tint:        #EAF1F1;   /* pale teal-tinted background */

  /* --- Brand --- */
  --teal-deep:   #05668D;   /* primary anchor: buttons, headings, feature section */
  --teal-deep-2: #045471;   /* button hover */
  --teal-deeper: #0A4257;   /* the one moodier section (adult experience) */
  --teal:        #028090;   /* secondary teal */
  --sea:         #00A896;   /* energetic accent — shapes and icons only */
  --coral:       #E76F51;   /* playful contrast — fills and blocks */
  --coral-text:  #B84527;   /* the same coral, darkened enough to be readable text */
  --mustard:     #E9B949;   /* small retro accent + CTAs on dark sections */

  /* Barely-there card washes. These exist so cards read as warm paper
     rather than white SaaS panels. If you strengthen them, the page
     starts to look like a box of highlighters — keep them near-neutral. */
  --wash-aqua:   #EDF5F4;
  --wash-coral:  #FCF1ED;
  --wash-sun:    #FBF5E6;

  /* --- Type --- */
  --ink:         #19323C;   /* all dark type; never pure black */
  --muted:       #4E6470;   /* secondary type on light surfaces */
  --on-teal:     #DCE8EC;   /* body type on --teal-deep */
  --on-teal-2:   #C9DBE2;   /* body type on --teal-deeper */

  --line:        rgba(25, 50, 60, .14);
  --line-light:  rgba(246, 241, 231, .22);

  --font: "Archivo Variable", "Archivo", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;

  --gutter: 20px;
  --maxw: 1160px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 28px -18px rgba(25, 50, 60, .35);
  --shadow-lg: 0 20px 48px -26px rgba(25, 50, 60, .40);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, figure, figcaption { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 6px;
}
.section-ink :focus-visible, .section-mood :focus-visible { outline-color: var(--mustard); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--teal-deep); color: var(--cream); padding: 12px 18px;
  font-weight: 700; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(60px, 10vw, 108px); }
.section-cream { background: var(--cream); color: var(--ink); }
.section-tint  { background: var(--tint);  color: var(--ink); }
.section-ink   { background: var(--teal-deep); color: var(--cream); }   /* deep teal feature */
.section-mood  { background: var(--teal-deeper); color: var(--cream); } /* the one moodier band */

/* ---------- Type ---------- */
.display {
  font-weight: 800;
  font-stretch: 105%;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.display-xl { font-size: clamp(2.3rem, 8.4vw, 4.4rem); text-transform: uppercase; text-wrap: pretty; line-height: .98; }
.display-lg { font-size: clamp(1.95rem, 6vw, 3.1rem); letter-spacing: -.025em; }
.display-sm { font-size: clamp(1.2rem, 3.2vw, 1.5rem); line-height: 1.16; }

.lede { font-size: clamp(1.05rem, 2.5vw, 1.22rem); line-height: 1.55; color: var(--muted); max-width: 36ch; }
.body-lg { font-size: clamp(1rem, 2.1vw, 1.1rem); color: var(--muted); max-width: 62ch; }
.section-ink .body-lg, .section-ink .lede { color: var(--on-teal); }
.section-mood .body-lg, .section-mood .lede { color: var(--on-teal-2); }
.section-head > * + * { margin-top: 16px; }

.kicker {
  font-size: .76rem; font-weight: 800; letter-spacing: .17em;
  text-transform: uppercase; color: var(--coral-text);
}
.kicker-light { color: var(--mustard); }
.kicker-dark  { color: var(--teal-deep); }

/* The one coral moment in the hero headline. Uses the darkened
   coral so it stays readable — see the palette note above. */
.hl { color: var(--coral-text); }

/* Hand-drawn mustard underline, used exactly twice on the page. */
.underline-swoosh {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M4 9 Q52 2 100 7 T196 6' fill='none' stroke='%23E9B949' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% .2em;
  background-position: 0 96%;
  padding-inline: .04em;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-deep);
  border: 1.5px solid rgba(5, 102, 141, .3);
  border-radius: 999px; padding: 7px 15px 7px 12px;
  background: rgba(2, 128, 144, .07);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sea); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal-deep);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; border-radius: 999px;
  font-weight: 800; font-size: 1rem; font-stretch: 103%;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-ico { width: 20px; height: 20px; flex: none; }

/* Primary action on light sections: deep teal. */
.btn-primary { --btn-bg: var(--teal-deep); --btn-fg: var(--cream); }
.btn-primary:hover { --btn-bg: var(--teal-deep-2); }

/* Primary action on the deep-teal and moodier sections: mustard on ink.
   Coral is deliberately not used for buttons — cream on coral is 2.75:1. */
.btn-sun { --btn-bg: var(--mustard); --btn-fg: var(--ink); }
.btn-sun:hover { --btn-bg: #F2C75F; }

.btn-outline {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: rgba(25, 50, 60, .38);
}
.btn-outline:hover { --btn-bg: rgba(25, 50, 60, .06); border-color: var(--ink); }

.btn-outline-light {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border-color: var(--line-light);
}
.btn-outline-light:hover { --btn-bg: rgba(246, 241, 231, .12); border-color: var(--cream); }

.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-lg { padding: 17px 28px; font-size: 1.04rem; }
.btn-xl { padding: 19px 30px; font-size: clamp(1.02rem, 2.5vw, 1.18rem); }
.btn-block { display: flex; width: 100%; }

.cta-row { display: flex; flex-direction: column; gap: 12px; }
.cta-row-center { align-items: center; }
@media (min-width: 560px) {
  .cta-row { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .cta-row-center { justify-content: center; }
}

/* ---------- Brand mark ----------
   One <symbol>-style definition in index.html, recolored per context
   by setting these four custom properties on the <svg> that uses it. */
.mk-boot  { fill: var(--mark-boot,  #05668D); }
.mk-lace  { stroke: var(--mark-lace, #F6F1E7); }
.mk-plate { fill: var(--mark-plate, #E76F51); }
.mk-wheel { fill: var(--mark-wheel, #E9B949); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 241, 231, .94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 62px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 800; font-stretch: 104%;
  letter-spacing: -.015em; font-size: 1.06rem; color: var(--ink);
}
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-text-accent { color: var(--coral-text); }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  background: var(--cream); color: var(--ink);
  padding-block: clamp(44px, 8vw, 86px) clamp(52px, 9vw, 96px);
  overflow: hidden;
}
/* Two flat background shapes. Nothing else in the hero. */
.hero-shape {
  position: absolute; z-index: -1; border-radius: 50%; pointer-events: none;
}
.hero-shape-a {
  width: 62vw; max-width: 460px; aspect-ratio: 1;
  top: -14%; right: -16%;
  background: var(--tint);
}
.hero-shape-b {
  width: 34vw; max-width: 230px; aspect-ratio: 1;
  bottom: -8%; left: -12%;
  background: rgba(233, 185, 73, .22);
}

.hero-inner { display: grid; gap: clamp(26px, 5vw, 40px); }
.hero-inner > * { min-width: 0; }
.hero-copy > * + * { margin-top: 20px; }
.hero-copy .display-xl { margin-top: 18px; }

.cta-note {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .93rem; color: var(--muted); max-width: 42ch;
}
.note-ico { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--teal); }

.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: min(100%, 440px); }

/* ---------- Skate illustration ----------
   The air streaming past the skate is the one piece of continuous
   motion on the page. Everything here stops under prefers-reduced-motion. */
@media (prefers-reduced-motion: no-preference) {
  @keyframes stream {
    0%   { opacity: 0; transform: translateX(16px); }
    30%  { opacity: 1; }
    100% { opacity: 0; transform: translateX(-26px); }
  }
  @keyframes skate-float {
    from { transform: translateY(0); }
    to   { transform: translateY(-7px); }
  }
  .stream path { animation: stream 2.1s ease-in-out infinite; }
  .stream path:nth-child(2) { animation-delay: .35s; }
  .stream path:nth-child(3) { animation-delay: .7s; }
  .hero-art .skate-body { animation: skate-float 3.2s ease-in-out infinite alternate; }
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; }
  .hero-art { order: 2; }
  .lede { max-width: 42ch; }
  .hero-copy .display-xl { font-size: clamp(2.7rem, 4vw, 3.8rem); }
  .hero-art svg { width: min(100%, 470px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--mustard); color: var(--ink);
  overflow: hidden; padding-block: 10px;
  font-weight: 800; font-stretch: 104%; text-transform: uppercase;
  letter-spacing: .06em; font-size: clamp(.8rem, 2.2vw, .95rem);
}
.marquee-track { display: flex; width: max-content; }
.marquee-track span { white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 46s linear infinite; }
  @keyframes marquee { to { transform: translateX(-50%); } }
}

/* ---------- Cards (The idea) ---------- */
.card-grid {
  display: grid; gap: 16px; margin-top: clamp(30px, 5vw, 44px);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 980px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* Cards cycle through the three washes rather than all being white. */
.card {
  background: var(--wash-aqua);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.14rem; font-weight: 800; font-stretch: 104%; margin-top: 14px; letter-spacing: -.01em; }
.card p { margin-top: 8px; color: var(--muted); font-size: .96rem; }
.card-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--tint); color: var(--teal-deep);
}
.card-ico svg { width: 26px; height: 26px; }
/* A light rotation of accent colors, not one per card. */
.card:nth-child(3n+2) { background: var(--wash-coral); }
.card:nth-child(3n+3) { background: var(--wash-sun); }
.card-ico { background: var(--panel); }
.card:nth-child(3n+2) .card-ico { color: var(--coral-text); }
.card:nth-child(3n+3) .card-ico { color: #8A6410; }

.disclaimer {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: clamp(24px, 4vw, 34px);
  padding: 15px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .92rem; color: var(--muted);
  max-width: 64ch;
}
.disclaimer .note-ico { color: var(--coral-text); }

/* ---------- Why Kitsap (deep teal feature) ---------- */
.why-inner { display: grid; gap: clamp(30px, 5vw, 52px); }
.why-copy > * + * { margin-top: 16px; }
.why-copy .btn { margin-top: 24px; }

.why-aside { display: grid; gap: 12px; }
.stat-card {
  border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 18px 20px; background: rgba(255, 255, 255, .07);
  display: flex; align-items: baseline; gap: 16px;
}
.stat-num {
  font-size: clamp(1.9rem, 6.4vw, 2.6rem); font-weight: 800; font-stretch: 106%;
  line-height: 1; color: var(--mustard); flex: none;
}
.stat-card-alt .stat-num { color: var(--sea); }
.stat-card-ghost .stat-num { color: var(--coral); }
.stat-label { font-size: .94rem; color: var(--on-teal); }

@media (min-width: 900px) {
  .why-inner { grid-template-columns: 1.12fr .88fr; align-items: center; }
}

/* ---------- Survey (the #1 action) ---------- */
.section-survey { background: var(--coral); color: var(--ink); }
.survey-panel {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5.5vw, 52px);
  box-shadow: 0 24px 54px -30px rgba(25, 50, 60, .5);
  max-width: 880px; margin-inline: auto;
}
.survey-panel > * + * { margin-top: 16px; }
.survey-panel .display-lg { margin-top: 12px; }
.survey-panel .btn-xl { margin-top: 24px; }

/* What the survey actually measures */
.factors {
  display: grid; gap: 8px 22px; margin-top: 18px;
  grid-template-columns: 1fr;
  font-size: .96rem; color: var(--muted);
}
@media (min-width: 560px) { .factors { grid-template-columns: 1fr 1fr; } }
.factors li { position: relative; padding-left: 24px; }
.factors li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sea);
}

.goal { margin-top: 30px; padding-top: 24px; border-top: 2px dashed rgba(25, 50, 60, .2); }
.goal-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.goal-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  background: var(--teal-deep); color: var(--cream); padding: 4px 10px; border-radius: 999px;
}
.goal-value { font-weight: 800; font-stretch: 105%; font-size: 1.04rem; }
.goal-track {
  position: relative; height: 10px; margin-top: 14px;
  border-radius: 999px; background: var(--tint);
  border: 1px solid rgba(25, 50, 60, .14);
}
.goal-marker {
  position: absolute; right: -2px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-deep); border: 3px solid var(--mustard);
}
.goal-note { margin-top: 12px; font-size: .87rem; color: var(--muted); }

/* ---------- Membership ---------- */
.membership-inner { display: grid; gap: clamp(28px, 5vw, 46px); }
.membership-copy > * + * { margin-top: 16px; }

.check-list {
  display: grid; gap: 10px; margin-top: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .check-list { grid-template-columns: repeat(2, 1fr); } }
.check-list li { position: relative; padding-left: 28px; font-size: .98rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--sea);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.check-list-light li::before { background: var(--mustard); }

.founding-card {
  background: var(--teal-deep); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4.5vw, 36px);
  align-self: start;
}
.founding-card > * + * { margin-top: 16px; }
.founding-card p { color: var(--on-teal); font-size: 1rem; }
.badge {
  display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink); background: var(--mustard);
  padding: 6px 12px; border-radius: 999px;
}
.founding-note {
  border-left: 3px solid var(--mustard); padding-left: 14px;
  color: var(--cream) !important; font-size: .96rem !important;
}
.founding-card .btn { margin-top: 22px; }

@media (min-width: 940px) {
  .membership-inner { grid-template-columns: 1.05fr .95fr; align-items: start; gap: 52px; }
}

/* ---------- Adult experience (the moodier band) ---------- */
.adult-inner { display: grid; gap: clamp(28px, 5vw, 48px); }
.adult-copy > * + * { margin-top: 16px; }
.adult-list {
  display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px;
}
.adult-list li {
  border: 1px solid var(--line-light); border-radius: 999px;
  padding: 8px 15px; font-size: .92rem; font-weight: 600;
  color: var(--cream);
  background: rgba(255, 255, 255, .06);
}
.adult-note {
  margin-top: 22px; padding: 14px 16px;
  border-left: 3px solid var(--coral);
  font-size: .92rem; color: var(--on-teal-2); max-width: 56ch;
}
.adult-art { display: flex; flex-direction: column; align-items: center; }
.adult-art svg { width: min(100%, 480px); }
@media (min-width: 900px) {
  .adult-inner { grid-template-columns: 1.02fr .98fr; align-items: center; }
}

/* Figure caption used wherever concept imagery appears */
.concept-caption {
  margin-top: 12px; font-size: .8rem; letter-spacing: .02em;
  color: var(--on-teal-2); text-align: center;
}
.section-cream .concept-caption, .section-tint .concept-caption { color: var(--muted); }

/* ---------- Interest form ---------- */
.interest-inner { display: grid; gap: clamp(28px, 5vw, 48px); }
.interest-copy > * + * { margin-top: 16px; }

.form-card {
  background: var(--panel); color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4.5vw, 34px);
  box-shadow: var(--shadow);
}
.field-row { display: grid; gap: 16px; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 18px; border: 0; padding: 0; }
.field label, .field legend {
  display: block; font-weight: 700; font-size: .92rem; margin-bottom: 7px; padding: 0;
}
.req { color: var(--coral-text); }
.opt { font-weight: 500; color: var(--muted); }

.field input[type="text"],
.field input[type="email"] {
  width: 100%; padding: 14px 15px; font: inherit; font-size: 1rem;
  background: #fff; color: var(--ink);
  border: 2px solid rgba(25, 50, 60, .18); border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus {
  outline: none; border-color: var(--teal-deep);
  box-shadow: 0 0 0 4px rgba(5, 102, 141, .16);
}
.field input[aria-invalid="true"] { border-color: var(--coral-text); background: #FFF6F3; }
.field-short { max-width: 190px; }

.chip-group { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; margin: 0; }
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span {
  display: inline-block; padding: 10px 15px;
  border: 2px solid rgba(25, 50, 60, .18); border-radius: 999px;
  font-size: .92rem; font-weight: 600; background: #fff;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
}
.chip input:checked + span { background: var(--teal-deep); color: var(--cream); border-color: var(--teal-deep); }
.chip input:focus-visible + span { outline: 3px solid var(--teal-deep); outline-offset: 2px; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--tint); border-radius: 14px; padding: 15px 16px;
  font-size: .95rem; margin-block: 6px 20px; cursor: pointer;
}
.consent input { width: 22px; height: 22px; flex: none; margin: 1px 0 0; accent-color: var(--teal-deep); cursor: pointer; }

.form-fineprint { margin-top: 14px; font-size: .84rem; color: var(--muted); text-align: center; }
.form-error {
  margin-top: 14px; padding: 12px 14px; border-radius: 12px;
  background: #FDECE6; color: #8E3517; font-size: .92rem; font-weight: 600;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success { text-align: center; padding: clamp(16px, 3.5vw, 30px) 0; }
.form-success > * + * { margin-top: 14px; }
.success-emoji { font-size: 3rem; display: block; line-height: 1; }
.form-success p { color: var(--muted); max-width: 40ch; margin-inline: auto; }

@media (min-width: 940px) {
  .interest-inner { grid-template-columns: .92fr 1.08fr; align-items: start; gap: 52px; }
}

/* ---------- Final CTA ---------- */
.final-cta { background: var(--cream); color: var(--ink); text-align: center; position: relative; overflow: hidden; }
.final-inner { position: relative; }
.final-sub {
  margin-top: 16px; font-size: clamp(1.1rem, 3.2vw, 1.45rem); font-weight: 700; color: var(--muted);
}
.final-cta .cta-row { margin-top: 28px; }
.final-cta .btn { width: 100%; }
@media (min-width: 560px) { .final-cta .btn { width: auto; } }
.final-star {
  width: 42px; height: 42px; margin: 0 auto 18px; color: var(--mustard);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(246, 241, 231, .74);
  padding-block: clamp(36px, 6vw, 58px);
  font-size: .91rem;
}
.footer-inner > * + * { margin-top: 14px; }
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-stretch: 104%; font-size: 1.05rem; color: var(--cream);
}
.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-about { max-width: 56ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-links a { color: var(--mustard); text-decoration: none; font-weight: 700; }
.footer-links a:hover { text-decoration: underline; }
.footer-legal { font-size: .79rem; color: rgba(246, 241, 231, .55); max-width: 70ch; }
.footer-year { display: inline-block; margin-left: 4px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 241, 231, .96);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .26s ease;
}
.sticky-cta.is-visible { transform: none; }
@media (min-width: 640px) { .sticky-cta { display: none; } }

/* ---------- Scroll reveal (fade only — the slide was doing too much) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .sticky-cta, .marquee, .hero-shape { display: none !important; }
  body { background: #fff; color: #000; }
}


/* ---------- Movement · Community · Play ----------
   The conceptual spine of the project. Deliberately three short lines,
   not a branded "pillars" framework. */
.pillars {
  display: grid; gap: 20px;
  margin-top: clamp(26px, 4vw, 36px);
  padding-block: clamp(24px, 4vw, 32px);
  border-block: 2px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.pillar-word {
  display: block;
  font-size: clamp(1.15rem, 3vw, 1.4rem); font-weight: 800; font-stretch: 106%;
  letter-spacing: .04em; text-transform: uppercase; color: var(--teal-deep);
}
.pillars li:nth-child(2) .pillar-word { color: var(--coral-text); }
.pillars li:nth-child(3) .pillar-word { color: #8A6410; }
.pillar-note { margin-top: 6px; font-size: .95rem; color: var(--muted); }

/* ---------- Why Kitsap stat cards ---------- */
.stat-grid { display: grid; gap: 14px; margin-top: clamp(28px, 5vw, 40px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.stat-block {
  border: 1px solid var(--line-light); border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  padding: 22px 22px 24px;
}
.stat-figure {
  display: block; line-height: 1;
  font-size: clamp(2.4rem, 7vw, 3.1rem); font-weight: 800; font-stretch: 108%;
  letter-spacing: -.02em;
  /* Lightened for the deep-teal background: the brand mustard, sea green and
     coral are all too dark against it to clear AA at this size. */
  color: #F5D68C;
}
.stat-block:nth-child(2) .stat-figure { color: #8FE9DD; }
.stat-block:nth-child(3) .stat-figure { color: #FFD6C6; }
.stat-copy { display: block; margin-top: 12px; font-size: .97rem; color: var(--on-teal); }
.stat-sources { margin-top: 18px; font-size: .8rem; color: rgba(220, 232, 236, .72); }
.stat-sources a { color: var(--mustard); }
.why-caveat {
  margin-top: 26px; padding-left: 14px;
  border-left: 3px solid var(--mustard);
  font-size: .97rem; color: var(--on-teal); max-width: 60ch;
}

/* ---------- Who's behind this ---------- */
.whois-inner { display: grid; gap: clamp(26px, 5vw, 46px); }
.whois-copy > * + * { margin-top: 15px; }
.whois-copy .body-lg { max-width: 58ch; }
.signature {
  margin-top: 22px; font-weight: 800; font-stretch: 104%;
  font-size: 1.05rem; color: var(--teal-deep);
}
.signature small { display: block; font-weight: 600; font-size: .85rem; color: var(--muted); letter-spacing: .01em; }

.portrait {
  align-self: start;
  border: 2px dashed rgba(5, 102, 141, .3);
  border-radius: var(--radius-lg);
  background: var(--panel);
  aspect-ratio: 4 / 5;
  display: grid; justify-items: center; align-content: center; gap: 14px;
  padding: 24px; text-align: center;
  max-width: 360px; width: 100%; margin-inline: auto;
}
.portrait svg { width: 56px; height: 56px; opacity: .5; }
.portrait p { font-size: .88rem; color: var(--muted); max-width: 22ch; }
@media (min-width: 900px) {
  .whois-inner { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); align-items: start; }
}

/* ---------- Adult experience additions ---------- */
.adult-point {
  margin-top: 22px; padding-left: 14px;
  border-left: 3px solid var(--mustard);
  font-size: 1rem; color: var(--cream); max-width: 56ch;
}
