/* =============================================================
   FanBoards — centralized styles
   Framework-free. Palette mined from the brand color sheet.
   ============================================================= */

/* ---- Metric-matched fallback fonts ----
   Local Arial re-scaled to the brand fonts' metrics, so the text shown before
   the webfont swaps in occupies the same space → near-zero layout shift (CLS).
   size-adjust values measured in-browser against the loaded webfonts. */
@font-face {
  font-family: 'Plus Jakarta Fallback';
  src: local('Arial');
  size-adjust: 105.52%;
  ascent-override: 91.4%;
  descent-override: 25.8%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Fredoka Fallback';
  src: local('Arial');
  size-adjust: 98.69%;
  ascent-override: 96%;
  descent-override: 25%;
  line-gap-override: 0%;
}

/* ---- Design tokens ---- */
:root {
  /* Brand palette (from Colors sheet) */
  --yale-blue:    #08415C;
  --tomato:       #CC2936;
  --tomato-dark:  #9c1f28;
  --cotton-rose:  #EBBAB9;
  --pacific-cyan: #388697;
  --aquamarine:   #B5FFE1;

  /* Supporting */
  --cream:        #FFF7EE;
  --gold:         #FFC94D;
  --ink:          #1a1a1a;
  --muted:        #4a6b7a;
  --rose-wash:    #FBEDE9;
  --footer-muted: #B9D3DD;

  /* Type */
  --font-display: 'Fredoka', 'Fredoka Fallback', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', 'Plus Jakarta Fallback', system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap:      1200px;
  --gutter:    clamp(20px, 5vw, 48px);
  --radius-lg: 40px;
  --radius-md: 28px;
  --radius-sm: 16px;

  /* Elevation */
  --clay-card-shadow: 8px 8px 0 rgba(8, 65, 92, 0.1), 0 16px 32px rgba(8, 65, 92, 0.2);
  --clay-soft:        6px 6px 0 rgba(8, 65, 92, 0.08), 0 12px 24px rgba(8, 65, 92, 0.1);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--yale-blue);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Keeps aspect-ratio working even with width/height attrs on <img> */
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; text-wrap: balance; }

a { color: var(--yale-blue); }
a:hover { color: var(--tomato); }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Keep in-page anchor targets clear of the sticky header */
[id] { scroll-margin-top: 96px; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--yale-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font: 700 14px var(--font-body);
  text-decoration: none;
  z-index: 100;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; color: #fff; }

.wrap { max-width: var(--wrap); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Buttons (claymorphism) ---- */
.btn {
  display: inline-block;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: var(--tomato);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 6px 0 var(--tomato-dark), 0 14px 26px rgba(204, 41, 54, 0.35);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--tomato-dark), 0 18px 30px rgba(204, 41, 54, 0.4);
}
.btn--primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--tomato-dark), 0 6px 14px rgba(204, 41, 54, 0.3);
}
.btn--secondary {
  background: #fff;
  border: 2px solid var(--yale-blue);
  color: var(--yale-blue);
  padding: 14px 32px;
  font-size: 15px;
  box-shadow: 0 6px 0 rgba(8, 65, 92, 0.35), 0 14px 24px rgba(8, 65, 92, 0.18);
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(8, 65, 92, 0.35), 0 18px 28px rgba(8, 65, 92, 0.22);
}
.btn--secondary:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(8, 65, 92, 0.35), 0 6px 12px rgba(8, 65, 92, 0.16);
}
.btn--sm { padding: 12px 26px; font-size: 14px; }
.btn--on-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: none;
}
.btn--on-dark:hover { color: #fff; background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
/* Press responds faster than hover */
.btn:active { transition-duration: 90ms; }
.btn--on-dark:active { transform: translateY(1px); transition-duration: 90ms; }

/* ---- Announcement bar ---- */
.topbar {
  background: var(--yale-blue);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font: 600 13px/1.4 var(--font-body);
  letter-spacing: .02em;
}

/* ---- Header / nav ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px var(--gutter);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(8, 65, 92, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.brand__mark { height: 36px; width: auto; }
.brand__word {
  font: 700 25px var(--font-display);
  color: var(--ink);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}
.main-nav a:not(.btn) {
  font: 600 15px var(--font-body);
  text-decoration: none;
  color: var(--yale-blue);
  white-space: nowrap;
}
.main-nav a[aria-current="page"] { color: var(--tomato); font-weight: 700; }

/* ---- Generic section rhythm ---- */
.section { padding: clamp(48px, 8vw, 96px) var(--gutter); }
.section--tight { padding: 32px var(--gutter); }
.section--flush { padding: 8px 0; }
.section__eyebrow {
  display: block;
  font: 700 13px var(--font-body);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tomato);
}
.section__lead {
  font: 400 17px/1.6 var(--font-body);
  color: var(--muted);
  max-width: 560px;
  margin: 12px auto 0;
  text-wrap: pretty;
}
.section--center { text-align: center; }
.section__title { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.015em; }

/* Shared card hover */
.clay-card { transition: transform .2s ease, box-shadow .2s ease; }
.clay-card:hover { transform: translateY(-6px); }

/* Scroll reveal (JS toggles .is-visible).
   Hidden state is gated behind .js so no-JS users always see the content. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---- Hero ---- */
.hero { padding: 32px var(--gutter) 16px; }
.hero__card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--yale-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 14px 14px 0 rgba(8, 65, 92, 0.12), 0 30px 60px rgba(8, 65, 92, 0.28);
}
.hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
}
.hero__eyebrow {
  font: 700 13px var(--font-body);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--aquamarine);
}
.hero__title {
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;   /* large display type wants negative tracking */
  color: #fff;
}
.hero__text {
  font: 400 clamp(16px, 2vw, 19px)/1.6 var(--font-body);
  color: var(--cotton-rose);
  margin: 0;
  max-width: 460px;
  text-wrap: pretty;         /* no orphan words */
}
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 12px; }
.hero__rating { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.hero__rating-text { font: 600 14px var(--font-body); color: #fff; }
.hero__media {
  padding: 20px;
  display: flex;
}
.hero__frame {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  aspect-ratio: 4 / 3;
}
/* Absolute so the img's width/height attrs can't stretch the aspect-ratio box */
.hero__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Hairline inset outline keeps the photo's edges crisp against the frame */
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(8, 65, 92, 0.12);
  pointer-events: none;
}

.stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; }

/* ---- Lifestyle band ---- */
.band {
  position: relative;
  height: 44vh;          /* reduced while bands are placeholders (was 70vh) */
  min-height: 300px;
  max-height: 460px;
  overflow: hidden;
}
.band__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px var(--gutter);
  background: linear-gradient(to top, rgba(8, 65, 92, 0.65), transparent);
}
.band__caption p { font: 600 22px var(--font-display); color: #fff; margin: 0; }

/* ---- Placeholder tiles (no real photo yet) ---- */
.ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pacific-cyan), var(--yale-blue));
  position: relative;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(181, 255, 225, 0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(204, 41, 54, 0.28), transparent 45%);
}
.ph > * { position: relative; z-index: 1; }
.ph__icon { font-size: 30px; line-height: 1; }
.ph__label { font: 600 16px var(--font-display); }
.ph__note {
  font: 600 11px var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}
/* Shorter while these are placeholders, so the empty stretch reads as deliberate.
   TODO: restore to ~70vh / min-height 420px once real lifestyle photos land. */
.ph--band { min-height: 300px; }

/* ---- How it works ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 56px auto 0;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font: 700 26px var(--font-display);
  box-shadow: inset 3px 3px 6px rgba(255,255,255,.25), inset -4px -4px 8px rgba(0,0,0,.2), 8px 10px 20px rgba(8,65,92,.3);
}
.step__num--1 { background: var(--yale-blue); }
.step__num--2 { background: var(--tomato); box-shadow: inset 3px 3px 6px rgba(255,255,255,.25), inset -4px -4px 8px rgba(0,0,0,.2), 8px 10px 20px rgba(204,41,54,.3); }
.step__num--3 { background: var(--pacific-cyan); box-shadow: inset 3px 3px 6px rgba(255,255,255,.25), inset -4px -4px 8px rgba(0,0,0,.2), 8px 10px 20px rgba(56,134,151,.35); }
.step h3 { font-size: 21px; }
.step p { margin: 0; max-width: 260px; font: 400 15px/1.6 var(--font-body); color: var(--muted); }

/* ---- Motto / quote ---- */
.quote {
  background: var(--pacific-cyan);
  border-radius: 36px;
  padding: 64px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 10px 10px 0 rgba(8,65,92,0.1), 0 24px 48px rgba(56,134,151,.3);
}
.quote p {
  font: 500 italic 26px/1.6 var(--font-body);
  color: #fff;
  max-width: 720px;
  margin: 0 auto 20px;
}
.quote cite {
  font: 700 13px var(--font-body);
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--aquamarine);
}

/* ---- Board cards (Home preview + Boards grid) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: var(--wrap);
  margin: 48px auto 0;
}
.card-grid--wide { max-width: 1240px; gap: 28px; }
.board-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  position: relative;
}
.board-card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--clay-card-shadow);
}
.board-card h3 { font-size: 18px; }
.board-card__desc { font: 400 13px var(--font-body); color: var(--muted); margin: 0; }
.board-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.board-card__price { font: 700 15px var(--font-body); font-variant-numeric: tabular-nums; }
.board-card__price--lg { font-size: 14px; color: var(--muted); }
.tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--tomato);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font: 700 11px var(--font-body);
}
.pill-action {
  background: var(--yale-blue);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font: 700 13px var(--font-body);
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(8,65,92,0.35);
  transition: transform .2s ease;
}
.pill-action:hover { color: #fff; transform: translateY(-2px); }
.pill-action:active { transform: translateY(1px); transition-duration: 90ms; }
/* Playful rotations, flattened on hover */
.rot-a { transform: rotate(-1.5deg); }
.rot-b { transform: rotate(1.2deg); }
.rot-c { transform: rotate(-1deg); }
.rot-d { transform: rotate(1.5deg); }
.rot-e { transform: rotate(-1.2deg); }
.rot-f { transform: rotate(1deg); }
.clay-card.rot-a:hover, .clay-card.rot-b:hover, .clay-card.rot-c:hover,
.clay-card.rot-d:hover, .clay-card.rot-e:hover, .clay-card.rot-f:hover {
  transform: translateY(-6px) rotate(0deg);
}

/* ---- Testimonials ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 48px auto 0;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 8px 8px 0 rgba(8,65,92,0.08), 0 16px 32px rgba(8,65,92,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial p { font: 400 15px/1.7 var(--font-body); color: var(--yale-blue); margin: 0; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font: 700 14px var(--font-body);
  flex: none;
}
.avatar--blue { background: var(--yale-blue); }
.avatar--red  { background: var(--tomato); }
.avatar--cyan { background: #2f6e7c; } /* darker than --pacific-cyan to clear 4.5:1 white-on-fill */
.testimonial__name { font: 700 14px var(--font-body); }
.testimonial__role { font: 400 13px var(--font-body); color: var(--muted); }

/* ---- Guarantees strip ---- */
.guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.guarantee { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.guarantee__badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--aquamarine);
  color: var(--yale-blue);
  display: flex; align-items: center; justify-content: center;
  font: 700 20px var(--font-display);
  box-shadow: inset 2px 2px 4px rgba(255,255,255,.5), inset -3px -3px 6px rgba(0,0,0,.08), 6px 8px 16px rgba(8,65,92,.18);
}
.guarantee span:last-child { font: 600 14px var(--font-body); }

/* ---- Page hero (Boards / FAQ) ---- */
.page-hero { padding: 32px var(--gutter) 16px; }
.page-hero__card {
  background: var(--yale-blue);
  border-radius: var(--radius-lg);
  padding: 64px 48px 56px;
  text-align: center;
  box-shadow: 14px 14px 0 rgba(8,65,92,0.12), 0 30px 60px rgba(8,65,92,0.28);
}
.page-hero__eyebrow {
  font: 700 13px var(--font-body);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--aquamarine);
}
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); letter-spacing: -0.015em; color: #fff; margin: 12px 0; }
.page-hero p {
  font: 400 17px/1.6 var(--font-body);
  color: var(--cotton-rose);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Filter chips (Boards) ---- */
.filters {
  padding: 16px var(--gutter) 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.chip {
  background: #fff;
  color: var(--yale-blue);
  padding: 10px 22px;
  border-radius: 999px;
  font: 600 13px var(--font-body);
  box-shadow: 0 4px 0 rgba(8,65,92,0.12);
}
.chip--active {
  background: var(--yale-blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 0 rgba(8,65,92,0.35);
}

/* ---- Soft CTA box ---- */
.cta-box {
  background: var(--rose-wash);
  border-radius: 32px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(8,65,92,0.06);
}
.cta-box h2 { font-size: 28px; margin-bottom: 12px; }
.cta-box p { font: 400 16px var(--font-body); color: var(--muted); margin: 0 0 24px; }

/* ---- FAQ accordion ---- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 48px; }
.faq-group__title { font-size: 24px; color: var(--tomato); margin: 0 0 20px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(8,65,92,0.08), 0 12px 24px rgba(8,65,92,0.1);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: 600 16px var(--font-body);
  color: var(--yale-blue);
}
.faq-item__sign {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #F4E7E2;
  color: var(--yale-blue);
  display: flex; align-items: center; justify-content: center;
  font: 700 16px var(--font-body);
}
.faq-item__a {
  margin: 0;
  padding: 0 22px 20px;
  font: 400 15px/1.7 var(--font-body);
  color: var(--muted);
}
.faq-item[hidden] { display: block; } /* safety if JS off */
.faq-item__a[hidden] { display: none; }

/* ---- Photo tips (do / avoid) ---- */
.tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.tip {
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 6px 6px 0 rgba(8,65,92,0.06);
}
.tip--do { background: #F0FBF6; }
.tip--avoid { background: #FBEDEC; }
.tip__label { font: 700 14px var(--font-body); }
.tip--do .tip__label { color: #177a4d; }
.tip--avoid .tip__label { color: var(--tomato); }
.tip p { margin: 0; font: 400 14px/1.6 var(--font-body); color: var(--yale-blue); }

/* ---- Footer ---- */
.site-footer {
  background: var(--yale-blue);
  color: #fff;
  padding: 64px var(--gutter) 32px;
  border-radius: 48px 48px 0 0;
  margin-top: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: var(--wrap);
  margin: 0 auto 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand { gap: 16px; }
.footer-brand__lockup { display: flex; align-items: center; gap: 6px; }
.footer-brand__mark { height: 32px; width: auto; }
.footer-brand__word { font: 700 21px var(--font-display); color: #fff; }
.footer-brand p { font: 400 14px/1.6 var(--font-body); color: var(--footer-muted); margin: 0; max-width: 260px; }
.footer-social { display: flex; gap: 16px; flex-direction: row; }
.footer-social a { color: #fff; font: 600 13px var(--font-body); text-decoration: none; }
.footer-col__head {
  font: 700 13px var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--aquamarine);
}
.footer-col a { color: #fff; font: 400 14px var(--font-body); text-decoration: none; }
.footer-col a:hover { color: var(--aquamarine); }
.footer-col p { font: 400 14px var(--font-body); color: var(--footer-muted); margin: 0; }
.newsletter { display: flex; gap: 8px; }
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 999px;
  border: none;
  font: 400 14px var(--font-body);
}
.newsletter button {
  background: var(--tomato);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  font: 700 14px var(--font-body);
  cursor: pointer;
  box-shadow: 0 6px 0 var(--tomato-dark), 0 14px 26px rgba(204,41,54,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.newsletter button:hover { transform: translateY(-2px); }
.newsletter button:active { transform: translateY(1px); transition-duration: 90ms; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  text-align: center;
  font: 400 13px var(--font-body);
  color: var(--footer-muted);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero__card { grid-template-columns: 1fr; }
  .hero__media { order: -1; padding: 16px 16px 0; }
  .hero__frame { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  .site-header { justify-content: center; gap: 12px; }
  .main-nav ul { justify-content: center; gap: 18px; }
  .band { height: 40vh; }
  .quote { padding: 48px 28px; }
  .page-hero__card, .cta-box { padding: 40px 28px; }
  .topbar { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  /* Blanket safety net: neutralize all motion... */
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* ...but make sure reveal content is shown, not stuck hidden. */
  .js .reveal { opacity: 1; transform: none; }
}
