/* ============================================================================
   MUFFIN MAGAZINE, SHARED STYLES
   Blend: #1 Bold Editorial structure + #8 Retro Riso attitude, executed with
   #4 Playful Pop softness (pill buttons, soft shadows, rounded cards).
   Palette is the DECIDED one (not the punchier mockup hex).
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Decided palette (single source of truth) */
  --navy: #1d2b4a;
  --orange: #e8923c;
  --cream: #faf6ef;
  --ink: #22293b;

  /* Derived tints/shades for depth (kept close to the decided four) */
  --navy-deep: #16213a;
  --orange-soft: #f0a862;
  --cream-2: #f2ebdd;
  --line: rgba(29, 43, 74, 0.16);
  --line-light: rgba(250, 246, 239, 0.22);

  /* Softness: generous radii + soft drop shadows (from #4, softened) */
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 24px rgba(29, 43, 74, 0.14);
  --shadow-card: 0 14px 34px rgba(29, 43, 74, 0.16);
  --shadow-pop: 0 6px 0 0 var(--navy);

  --maxw: 1180px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

/* ---------------------------------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; line-height: 1; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 16px; top: 16px; z-index: 200;
  background: var(--orange); color: var(--navy-deep);
  padding: 10px 18px; font-weight: 700; border-radius: var(--radius-pill);
}

/* Visible focus for keyboard users everywhere */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------------
   3. BUTTONS (pill + soft shadow, borrowed from #4, softer)
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.12s ease, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn:active { transform: translateY(2px); }

.btn--orange {
  background: var(--orange); color: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: var(--shadow-soft);
}
.btn--orange:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.btn--navy {
  background: var(--navy); color: var(--cream);
  border-color: var(--navy-deep);
  box-shadow: var(--shadow-soft);
}
.btn--navy:hover { background: var(--orange); color: var(--navy-deep); border-color: var(--navy-deep); }

.btn--cream {
  background: var(--cream); color: var(--navy-deep); border-color: var(--navy-deep);
}
.btn--cream:hover { background: var(--orange); }

.btn--ghost {
  background: transparent; color: var(--navy-deep); border-color: var(--navy-deep);
}
.btn--ghost:hover { background: var(--navy-deep); color: var(--cream); }

/* Ghost on dark backgrounds */
.btn--ghost-light {
  background: transparent; color: var(--cream); border-color: var(--cream);
}
.btn--ghost-light:hover { background: var(--cream); color: var(--navy-deep); }

/* Disabled / "coming soon" state (used when a link constant is not yet set) */
.btn[aria-disabled="true"], .btn.is-disabled {
  opacity: 0.55; cursor: not-allowed; box-shadow: none;
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
   4. HEADER / NAV  (shared, identical markup on all pages)
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 3px solid var(--orange);
}
.site-header .nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.wordmark {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.4rem, 3.4vw, 1.75rem);
  color: var(--cream); letter-spacing: -0.01em; line-height: 1;
}
.wordmark .dot { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.55em 1em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  color: var(--cream);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.nav-links a:hover { background: rgba(250, 246, 239, 0.12); }
.nav-links a[aria-current="page"] {
  background: var(--orange); color: var(--navy-deep);
}
.nav-links a.cta {
  background: var(--orange); color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.nav-links a.cta:hover { background: var(--cream); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent; border: 2px solid var(--cream);
  color: var(--cream); border-radius: var(--radius-sm);
  padding: 8px 10px; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--navy-deep);
    border-bottom: 3px solid var(--orange);
    padding: 12px 24px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7em 1em; }
}

/* ---------------------------------------------------------------------------
   5. SECTION SCAFFOLDING  (#1's numbered editorial heads)
   ------------------------------------------------------------------------- */
section { padding: clamp(3rem, 7vw, 5rem) 0; }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  border-bottom: 2px solid currentColor;
  padding-bottom: 18px; margin-bottom: 38px;
}
.sec-head__left { display: flex; align-items: flex-start; gap: 18px; }
.sec-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 0.8; color: var(--orange);
}
.sec-kicker {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; opacity: 0.7; margin-bottom: 8px;
}
.sec-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 0.98; letter-spacing: -0.01em;
}
.sec-note { max-width: 34ch; font-size: 0.95rem; opacity: 0.82; }

/* Tone helpers for sections on dark vs light grounds */
.on-navy { background: var(--navy); color: var(--cream); }
.on-cream { background: var(--cream); color: var(--ink); }

/* ---------------------------------------------------------------------------
   6. FOOTER  (shared, identical on all pages)
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep); color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 3px solid var(--orange);
}
.foot-top {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: end;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 34px;
}
.foot-big {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 8vw, 5rem); line-height: 0.9;
  letter-spacing: -0.02em;
}
.foot-big em { font-style: italic; color: var(--orange); }
.foot-contact .email {
  display: inline-block; margin-bottom: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--orange-soft);
  border-bottom: 2px solid var(--orange-soft);
}
.foot-contact .email:hover { color: var(--cream); border-color: var(--cream); }
.foot-contact p { color: rgba(250, 246, 239, 0.72); font-size: 0.92rem; max-width: 38ch; }

.foot-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 22px; font-size: 0.8rem; color: rgba(250, 246, 239, 0.6);
}
.foot-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-bottom a:hover { color: var(--orange-soft); }

@media (min-width: 780px) {
  .foot-top { grid-template-columns: 1.4fr 1fr; }
}

/* ---------------------------------------------------------------------------
   7. HERO  (#1 structure: minimal text; advert-video placeholder block)
   ------------------------------------------------------------------------- */
.hero {
  background: var(--navy); color: var(--cream);
  position: relative; overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 14px; margin-bottom: 30px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--orange-soft);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center;
}
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 10vw, 6rem); line-height: 0.86;
  letter-spacing: -0.02em; text-transform: uppercase;
}
.hero__title .line2 { color: var(--orange); display: block; }
.hero__tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 3vw, 1.7rem); line-height: 1.25;
  margin-top: 22px; max-width: 26ch;
  border-left: 3px solid var(--orange); padding-left: 16px;
}
.hero__blurb {
  font-size: 1rem; color: rgba(250, 246, 239, 0.82);
  max-width: 46ch; margin-top: 20px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Advert 16:9 placeholder block (swaps to iframe/video with one content edit) */
.advert {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--orange);
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(232,146,60,0.22), transparent 60%),
    var(--navy-deep);
  box-shadow: var(--shadow-card);
}
.advert iframe, .advert video { width: 100%; height: 100%; border: 0; display: block; }
.advert__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 24px;
  background-size: cover; background-position: center;
}
.advert__playmark {
  width: 66px; height: 66px; border-radius: 50%;
  border: 3px solid var(--orange); display: grid; place-items: center;
  background: rgba(29,43,74,0.55);
}
.advert__playmark svg { width: 26px; height: 26px; }
.advert__caption {
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--orange-soft);
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}

/* ---------------------------------------------------------------------------
   8. SPOTLIGHT  (full-bleed, hover/focus overlay, fade-in-on-scroll)
   ------------------------------------------------------------------------- */
.spotlight {
  position: relative; padding: 0;
  border-bottom: 3px solid var(--orange);
}
.spotlight__stage {
  position: relative; width: 100%;
  min-height: 62vh; height: 62vh; max-height: 760px;
  overflow: hidden;
  background: var(--navy-deep);
}
.spotlight__media { position: absolute; inset: 0; }
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }
.spotlight__media svg { width: 100%; height: 100%; }

/* Overlay: hidden-ish by default, revealed on hover/focus (and always on touch) */
.spotlight__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(24px, 5vw, 56px);
  background: linear-gradient(to top, rgba(22,33,58,0.85) 0%, rgba(22,33,58,0.35) 45%, rgba(22,33,58,0) 78%);
  opacity: 0; transition: opacity 0.35s ease;
}
.spotlight__stage:hover .spotlight__overlay,
.spotlight__stage:focus-within .spotlight__overlay,
.spotlight__overlay.always-on { opacity: 1; }

.spotlight__label {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--orange-soft); margin-bottom: 8px;
}
.spotlight__name {
  font-family: var(--font-display); font-weight: 900; color: var(--cream);
  font-size: clamp(2rem, 6vw, 4rem); line-height: 0.95;
}
.spotlight__note {
  color: rgba(250,246,239,0.85); font-weight: 600; margin-top: 6px;
}

/* The "purchase a copy" bar under the photo */
.spotlight__action {
  background: var(--navy); color: var(--cream);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 24px;
}
.spotlight__action p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); margin: 0;
}

/* Fade-in-on-scroll (disabled under prefers-reduced-motion, see section 12) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------------
   9. SUGGESTIONS  (polls + idea box), the heart, on cream
   ------------------------------------------------------------------------- */
.suggest { background: var(--cream); }
.suggest .sec-head { color: var(--ink); }

.pull {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.4rem, 3.4vw, 2.2rem); line-height: 1.15;
  color: var(--navy); max-width: 22ch; margin-bottom: 34px;
}

.suggest__cols { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 900px) {
  .suggest__cols { grid-template-columns: 1.1fr 0.9fr; gap: 44px; }
}

.tier-label { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.tier-label .t-num {
  font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--orange);
}
.tier-label h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }

/* Poll rows: soft cards */
.poll {
  background: #fff;
  border: 2px solid var(--navy-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px 20px; margin-bottom: 16px;
}
.poll__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
}
.poll__label { font-weight: 700; font-size: 1.02rem; }
.vote-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--navy); color: var(--cream);
  border: 2px solid var(--navy-deep); border-radius: var(--radius-pill);
  padding: 0.5em 1.1em; cursor: pointer; white-space: nowrap; flex: none;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.vote-btn:hover { background: var(--orange); color: var(--navy-deep); }
.vote-btn:active { transform: scale(0.96); }
.vote-btn[aria-pressed="true"], .vote-btn.voted {
  background: var(--orange); color: var(--navy-deep);
}
.vote-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.bar {
  position: relative; height: 28px; border-radius: var(--radius-pill);
  background: var(--cream-2); border: 2px solid var(--navy-deep);
  overflow: hidden;
}
.bar__fill {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  border-radius: var(--radius-pill);
  background: repeating-linear-gradient(45deg, var(--orange) 0 12px, var(--orange-soft) 12px 24px);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bar__pct {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-weight: 700; font-size: 0.78rem; color: var(--navy-deep); z-index: 2;
}
.poll__total { font-size: 0.78rem; opacity: 0.65; margin-top: 8px; }
.poll-note { font-size: 0.8rem; opacity: 0.7; margin-top: 6px; }

/* Idea box: on navy for contrast */
.ideabox {
  background: var(--navy); color: var(--cream);
  border: 2px solid var(--navy-deep); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 26px;
}
.ideabox h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 6px;
}
.ideabox .lead { color: rgba(250,246,239,0.82); font-size: 0.95rem; margin-bottom: 20px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--orange-soft); margin-bottom: 8px;
}
.field label .opt { text-transform: none; letter-spacing: 0; opacity: 0.75; font-weight: 400; }
.field textarea, .field input[type="text"] {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  color: var(--navy-deep); background: var(--cream);
  border: 2px solid var(--navy-deep); border-radius: var(--radius-sm);
  padding: 12px 14px; resize: vertical;
}
.field textarea { min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(29,43,74,0.45); }

/* Honeypot: visually and programmatically hidden from humans, visible to bots */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.privacy-note {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.82rem; color: rgba(250,246,239,0.82);
  border-top: 1px solid var(--line-light);
  padding-top: 14px; margin-top: 4px;
}
.privacy-note svg { flex: none; margin-top: 2px; }
.ideabox .btn { margin-top: 18px; width: 100%; }
.form-msg {
  display: none; margin-top: 14px;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--orange-soft);
}
.form-msg.show { display: block; }
.form-msg.error { color: #ffb3a0; }

/* Turnstile widget slot (only shown when a site key is configured) */
.turnstile-slot { margin-top: 8px; }
.turnstile-slot:empty { display: none; }

/* ---------------------------------------------------------------------------
   10. SHOP PAGE
   ------------------------------------------------------------------------- */
.showcase { background: var(--cream); }
.showcase__grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 860px) {
  .showcase__grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
}
.cover {
  position: relative; aspect-ratio: 3 / 4; max-width: 360px; width: 100%;
  margin: 0 auto; border-radius: var(--radius);
  border: 2px solid var(--navy-deep); overflow: hidden;
  box-shadow: 14px 14px 0 var(--navy);
}
.cover img, .cover svg { width: 100%; height: 100%; object-fit: cover; }

.showcase__info .eyebrow {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.showcase__info h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1; margin-bottom: 12px;
}
.showcase__info .subhead { font-size: 1.05rem; opacity: 0.85; margin-bottom: 22px; }
.inside-list { list-style: none; margin: 0 0 26px; }
.inside-list li { position: relative; padding: 6px 0 6px 28px; font-weight: 500; }
.inside-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 15px; height: 15px; border-radius: 5px;
  background: var(--orange); border: 2px solid var(--navy-deep);
}

/* Price / buy block */
.pricebox {
  background: #fff; border: 2px solid var(--navy-deep);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 30px; text-align: center; max-width: 520px; margin: 0 auto;
}
.pricebox .price {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 9vw, 5rem); line-height: 0.85; color: var(--navy);
}
.pricebox .price small { font-size: 0.3em; vertical-align: super; color: var(--orange); }
.pricebox .reassure { opacity: 0.82; margin: 12px 0 22px; }
.pricebox .micro { font-size: 0.8rem; opacity: 0.65; margin-top: 14px; }

/* How it works */
.how { background: var(--navy); color: var(--cream); }
.how .sec-head { color: var(--cream); }
.steps { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: rgba(250,246,239,0.06); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 24px;
}
.step .n {
  font-family: var(--font-display); font-weight: 900; font-size: 2rem;
  color: var(--orange); line-height: 1; margin-bottom: 10px;
}
.how__reassure { margin-top: 28px; max-width: 60ch; color: rgba(250,246,239,0.85); }
.how__coverage { margin-top: 12px; font-weight: 700; color: var(--orange-soft); }

/* Trust strip */
.trust { background: var(--cream); }
.trust__inner {
  background: #fff; border: 2px solid var(--navy-deep); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); padding: clamp(28px, 5vw, 46px); text-align: center;
}
.trust__inner h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 14px;
}
.trust__inner p { max-width: 60ch; margin: 0 auto 22px; opacity: 0.85; }

/* FAQ accordion */
.faq { background: var(--cream); }
.faq__item {
  background: #fff; border: 2px solid var(--navy-deep); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden;
}
.faq__q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
.faq__q .chev { transition: transform 0.2s ease; flex: none; }
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; }
.faq__a p { padding-bottom: 18px; opacity: 0.85; }
.faq__item.open .faq__a { max-height: 320px; }

/* Post-payment thank-you banner (?thanks=1) */
.thanks-banner {
  display: none; background: var(--orange); color: var(--navy-deep);
  text-align: center; padding: 16px 24px; font-weight: 700;
}
.thanks-banner.show { display: block; }

/* ---------------------------------------------------------------------------
   11. ABOUT PAGE
   ------------------------------------------------------------------------- */
.story { background: var(--cream); }
.story__lead {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.4rem, 3.6vw, 2.2rem); color: var(--navy);
  max-width: 24ch; margin-bottom: 28px; line-height: 1.15;
}
.prose { max-width: 62ch; }
.prose p { margin-bottom: 18px; font-size: 1.05rem; }
.prose .emphasis {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--navy);
}

.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: #fff; border: 2px solid var(--navy-deep); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); padding: 26px; text-align: center;
}
.avatar {
  width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%;
  border: 3px solid var(--navy-deep); overflow: hidden;
  display: grid; place-items: center;
  background: var(--orange); color: var(--navy-deep);
  font-family: var(--font-display); font-weight: 900; font-size: 2.4rem;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; margin-bottom: 4px; }
.team-card .role {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--navy); margin-bottom: 12px; min-height: 1em;
}
.team-card p { font-size: 0.95rem; opacity: 0.85; }

.contributors { background: var(--navy); color: var(--cream); }
.contributors .sec-head { color: var(--cream); }
.contrib-callout {
  background: rgba(250,246,239,0.06); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 26px; margin-bottom: 30px;
}
.contrib-callout h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; margin-bottom: 8px; }
.contrib-callout p { color: rgba(250,246,239,0.85); max-width: 56ch; margin-bottom: 16px; }
.contrib-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 620px) { .contrib-list { grid-template-columns: repeat(2, 1fr); } }
.contrib-item {
  background: rgba(250,246,239,0.05); border: 1px solid var(--line-light);
  border-radius: var(--radius-sm); padding: 14px 18px;
}
.contrib-item strong { font-family: var(--font-display); font-size: 1.1rem; }
.contrib-item span { display: block; font-size: 0.88rem; color: rgba(250,246,239,0.75); }
.contrib-empty {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--orange-soft); max-width: 44ch;
}

.closing { background: var(--cream); text-align: center; }
.closing h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; }
.closing p { max-width: 48ch; margin: 0 auto 26px; font-size: 1.1rem; opacity: 0.85; }
.closing .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.closing .signoff {
  margin-top: 28px; font-family: var(--font-display); font-style: italic; opacity: 0.75;
}

/* ---------------------------------------------------------------------------
   12. MOTION + RESPONSIVE GUARDS
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bar__fill { transition: none !important; }
}
