/* ==========================================================================
   BE MY POWER — bemypower.co.uk
   Design system + layout. Mobile-first.
   --------------------------------------------------------------------------
   Colour palette (from the logo and the book cover)
     Deep navy      #0F1E33   main dark
     Navy 2         #1B3352   dark sections
     Steel blue     #3E5C7E   secondary
     Soft blue      #C9D6E5   light accents
     Sky wash       #EDF2F7   light section background
     Off white      #FAF8F5   page background
     Warm sand      #EFE7DB   paper section background
     Gold accent    #C8A96A   very small accents only
     Ink            #24303F   body text
   Typography
     Headings: Fraunces (serif)
     Body:     Inter (sans-serif)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  --navy:        #0F1E33;
  --navy-2:      #1B3352;
  --steel:       #3E5C7E;
  --steel-light: #56718F;   /* darkened so small text stays above 4.5:1 */
  --soft-blue:   #C9D6E5;
  --sky:         #EDF2F7;
  --offwhite:    #FAF8F5;
  --sand:        #EFE7DB;
  --sand-deep:   #E2D6C4;
  --gold:        #C8A96A;   /* decorative use only (borders, dots, dark backgrounds) */
  --gold-ink:    #8A6B2E;   /* readable gold for text on light backgrounds */
  --ink:         #24303F;
  --ink-soft:    #4B5A6B;
  --white:       #FFFFFF;

  --ff-head: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --fs-base: 1.0625rem;   /* 17px — readable for older eyes */

  --maxw: 1180px;
  --maxw-narrow: 760px;

  --space-section: 4.5rem;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(15, 30, 51, .07), 0 6px 18px rgba(15, 30, 51, .05);
  --shadow-md: 0 4px 12px rgba(15, 30, 51, .08), 0 18px 40px rgba(15, 30, 51, .08);

  --header-h: 72px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--offwhite);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 .6em;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.1rem, 6.2vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 4.4vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 2.2vw, 1.3rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--steel); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

ul, ol { margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.text-center { text-align: center; }

.section { padding-block: var(--space-section); }
.section__title { margin-bottom: .8em; }
.section__cta { margin-top: 2.5rem; }

.section--paper { background: var(--sand); }
.section--sky   { background: var(--sky); }
.section--deep  { background: var(--navy-2); color: var(--soft-blue); }
.section--deep h2, .section--deep h3 { color: var(--white); }
.section--deep a { color: var(--soft-blue); }
.section--deep a:hover { color: var(--white); }

.lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 62ch;
}
.lead.text-center { margin-inline: auto; }
.section--deep .lead { color: var(--soft-blue); }

.eyebrow {
  font-size: .775rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 .9rem;
}
.eyebrow--light { color: var(--gold); }

.fineprint {
  font-size: .925rem;
  color: var(--ink-soft);
  margin-top: 2rem;
}
.section--deep .fineprint, .section--sky .fineprint { color: var(--ink-soft); }

.grid-2 { display: grid; gap: 2.5rem; }

.br-lg { display: none; }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 52px;
  padding: .85rem 1.6rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-2); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15, 30, 51, .28);
}
.btn--ghost:hover { background: rgba(15, 30, 51, .06); color: var(--navy); border-color: var(--navy); }

.btn--sm { min-height: 44px; padding: .55rem 1.1rem; font-size: .925rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 30, 51, .09);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--navy);
}
.brand__mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand__tag {
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--steel-light);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 11px;
  background: transparent;
  border: 1.5px solid rgba(15, 30, 51, .2);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: .5rem 1.25rem 1.5rem;
  background: var(--offwhite);
  border-bottom: 1px solid rgba(15, 30, 51, .1);
  box-shadow: var(--shadow-md);
}
.nav.is-open { display: flex; }

.nav__list { list-style: none; }
.nav__list li + li { border-top: 1px solid rgba(15, 30, 51, .08); }
.nav__list a {
  display: block;
  padding: .95rem .25rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.nav__list a:hover { color: var(--steel); }
.nav__cta { margin-top: 1.1rem; align-self: flex-start; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: 3.25rem 4rem;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(201, 214, 229, .55) 0%, rgba(201, 214, 229, 0) 60%),
    linear-gradient(180deg, var(--offwhite) 0%, var(--sky) 100%);
  overflow: hidden;
}
.hero__inner { display: grid; gap: 2.75rem; }

.hero__title { margin-bottom: .55em; }
.hero__lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34em; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.9rem;
}
.hero__note {
  margin-top: 1.6rem;
  font-size: .9rem;
  color: var(--steel-light);
}

.hero__visual { display: grid; justify-items: center; gap: 1.5rem; }

.hero__emblem {
  position: relative;
  width: min(240px, 62vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero__emblem::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  border: 1px solid rgba(62, 92, 126, .22);
}
.hero__emblem::after {
  content: "";
  position: absolute;
  inset: -28%;
  border-radius: 50%;
  border: 1px solid rgba(62, 92, 126, .12);
}
.hero__emblem img { width: 100%; filter: drop-shadow(0 20px 38px rgba(15, 30, 51, .18)); }

.hero__quote {
  margin: 0;
  max-width: 30rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, .78);
  border-left: 3px solid var(--gold);
  border-radius: 4px var(--radius) var(--radius) 4px;
  box-shadow: var(--shadow-sm);
}
.hero__quote blockquote { margin: 0; }
.hero__quote p {
  font-family: var(--ff-head);
  font-size: 1.06rem;
  font-style: italic;
  color: var(--navy);
}

.hero__pitchline {
  position: absolute;
  left: 50%;
  bottom: -140px;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  border: 1px solid rgba(62, 92, 126, .16);
  border-radius: 50%;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   7. SWAP LIST ("instead of / try")
   -------------------------------------------------------------------------- */
.swap-list { list-style: none; display: grid; gap: 1rem; margin-top: 2.75rem; }

.swap {
  display: grid;
  gap: .75rem;
  align-items: stretch;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(15, 30, 51, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.swap__side p {
  margin: 0;
  font-family: var(--ff-head);
  font-size: 1.06rem;
  color: var(--navy);
}
.swap__side--from p { color: var(--ink-soft); }
.swap__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .35rem;
  color: var(--steel-light);
}
.swap__side--to .swap__label { color: var(--gold-ink); }

.swap__arrow {
  align-self: center;
  justify-self: start;
  width: 26px;
  height: 26px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: .75;
  margin-left: 4px;
}

/* --------------------------------------------------------------------------
   8. PRESSURE SECTION
   -------------------------------------------------------------------------- */
.callout-quote {
  margin: 1.6rem 0 0;
  padding-left: 1.15rem;
  border-left: 3px solid var(--gold);
  font-family: var(--ff-head);
  font-size: 1.14rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy);
}
.section--deep .callout-quote { color: var(--white); }

.hear-panel {
  display: grid;
  gap: 1.1rem;
}
.hear-col {
  padding: 1.5rem 1.4rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 214, 229, .2);
  border-radius: var(--radius-lg);
}
.hear-col--child {
  background: rgba(200, 169, 106, .1);
  border-color: rgba(200, 169, 106, .38);
}
.hear-col__title {
  font-size: .78rem;
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft-blue);
  margin-bottom: 1rem;
}
.hear-col--child .hear-col__title { color: var(--gold); }
.hear-col ul { list-style: none; display: grid; gap: .65rem; }
.hear-col li {
  font-family: var(--ff-head);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--soft-blue);
  padding-left: 1rem;
  position: relative;
}
.hear-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
}
.hear-col--child li { color: #F3E6CD; }

.reflect-box {
  margin-top: 3rem;
  padding: 2rem 1.6rem;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(200, 169, 106, .4);
  border-radius: var(--radius-lg);
}
.reflect-box__title {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.reflect-box p {
  font-family: var(--ff-head);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.45;
  color: var(--white);
  max-width: 46ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   9. CARDS
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: 1.15rem;
  margin-top: 3rem;
}
.card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15, 30, 51, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__title { margin-bottom: .5em; }
.card p { color: var(--ink-soft); font-size: 1rem; }

/* --------------------------------------------------------------------------
   10. TICK LIST
   -------------------------------------------------------------------------- */
.tick-list { list-style: none; display: grid; gap: .85rem; }
.tick-list li {
  position: relative;
  padding-left: 2.1rem;
  font-size: 1.05rem;
  line-height: 1.55;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 15px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.tick-list--compact { margin-top: 1.6rem; }
.tick-list--compact li { font-size: 1rem; }

/* --------------------------------------------------------------------------
   11. FOR YOUNG ATHLETES
   -------------------------------------------------------------------------- */
.player-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
.player-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(62, 92, 126, .16);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.player-item:hover { transform: translateX(4px); border-color: var(--steel); }
.player-item__num {
  flex: 0 0 auto;
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-blue);
  min-width: 2.2rem;
}
.player-item p {
  margin: 0;
  font-family: var(--ff-head);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: var(--navy);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   12. TEN SMALL SHIFTS
   -------------------------------------------------------------------------- */
.shifts {
  list-style: none;
  counter-reset: shift;
  display: grid;
  gap: 1.1rem;
  margin-top: 3rem;
}
.shift {
  counter-increment: shift;
  position: relative;
  padding: 1.5rem 1.4rem 1.5rem 3.9rem;
  background: var(--white);
  border: 1px solid rgba(15, 30, 51, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.shift::before {
  content: counter(shift, decimal-leading-zero);
  position: absolute;
  left: 1.4rem;
  top: 1.5rem;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-ink);
  line-height: 1.3;
}
.shift__title { margin-bottom: .35em; }
.shift p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* --------------------------------------------------------------------------
   13. PRODUCTS
   -------------------------------------------------------------------------- */
.product { display: grid; gap: 2.5rem; align-items: center; }
.product__media { display: grid; place-items: center; }

.product__cover {
  width: min(340px, 82%);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(15, 30, 51, .22);
  transform: rotate(-1.2deg);
}

.product__subtitle {
  font-family: var(--ff-head);
  font-size: 1.16rem;
  font-style: italic;
  color: var(--steel);
  margin-top: -.3rem;
  margin-bottom: 1.2rem;
}
.product__actions { margin-top: 2rem; }

.plate-stack {
  position: relative;
  width: min(340px, 82%);
  aspect-ratio: 3 / 4;
}
.plate {
  position: absolute;
  width: 78%;
  background: var(--white);
  border: 1px solid rgba(15, 30, 51, .12);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(15, 30, 51, .16);
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3 / 4;
}
.plate--back  { top: 0;   left: 0;    transform: rotate(-6deg); }
.plate--mid   { top: 6%;  right: 0;   transform: rotate(5deg); }
.plate--front { bottom: 0; left: 11%; transform: rotate(-1deg); z-index: 2; }

/* --------------------------------------------------------------------------
   14. STORY
   -------------------------------------------------------------------------- */
.section--story { padding-block: 5rem; }
.story { text-align: center; }
.story p {
  font-family: var(--ff-head);
  font-size: clamp(1.08rem, 2.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--soft-blue);
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: 1.4em;
}
.story__close {
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(200, 169, 106, .35);
  color: var(--white) !important;
  font-size: clamp(1.2rem, 3.2vw, 1.55rem) !important;
}
.story__close em { color: var(--gold); font-style: italic; }

/* --------------------------------------------------------------------------
   15. ABOUT
   -------------------------------------------------------------------------- */
.about-notes {
  padding: 1.9rem 1.6rem;
  background: var(--sky);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 92, 126, .14);
}
.about-notes__title {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.1rem;
}
.about-notes ul { list-style: none; display: grid; gap: .9rem; }
.about-notes li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.about-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   16. NEWSLETTER
   -------------------------------------------------------------------------- */
.newsletter {
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15, 30, 51, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.nl-form { margin-top: 2rem; }
.nl-form__row { display: grid; gap: 1.1rem; }

.field { display: grid; gap: .4rem; }
.field label { font-size: .95rem; font-weight: 600; color: var(--navy); }
.field input[type="text"],
.field input[type="email"] {
  min-height: 52px;
  padding: .7rem .95rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--offwhite);
  border: 1.5px solid rgba(15, 30, 51, .18);
  border-radius: 10px;
}
.field input:focus { border-color: var(--steel); background: var(--white); }
.field input[aria-invalid="true"] { border-color: #A6462F; }

.field--consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .7rem;
  margin-top: 1.4rem;
}
.field--consent input { width: 22px; height: 22px; margin-top: .28rem; accent-color: var(--navy); }
.field--consent label { font-size: .925rem; font-weight: 400; color: var(--ink-soft); line-height: 1.55; }

.nl-form button { margin-top: 1.6rem; }

.nl-form__status {
  margin: 1rem 0 0;
  font-size: .95rem;
  text-align: center;
  min-height: 1.4em;
}
.nl-form__status.is-ok    { color: #2C6B4F; font-weight: 600; }
.nl-form__status.is-error { color: #A6462F; font-weight: 600; }

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq { margin-top: 2.5rem; border-top: 1px solid rgba(15, 30, 51, .12); }
.faq__item { border-bottom: 1px solid rgba(15, 30, 51, .12); }
.faq__item h3 { margin: 0; font-size: 1rem; }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 60px;
  padding: 1.15rem .25rem;
  font-family: var(--ff-head);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: var(--navy);
  background: none;
  border: 0;
  cursor: pointer;
}
.faq__q:hover { color: var(--steel); }

.faq__icon {
  flex: 0 0 auto;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }

.faq__a { padding: 0 .25rem 1.4rem; }
.faq__a p { color: var(--ink-soft); max-width: 66ch; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: var(--soft-blue);
  padding-block: 3.5rem 2rem;
  font-size: .975rem;
}
.footer-grid { display: grid; gap: 2.25rem; }

.footer-brand__mark { width: 54px; height: 54px; margin-bottom: .9rem; }
.footer-brand__name {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 .5rem;
}
.footer-brand__desc { color: rgba(201, 214, 229, .82); max-width: 34ch; }

.footer-col__title {
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: .7rem; }
.footer-col a { color: var(--soft-blue); text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 214, 229, .18);
}
.footer-disclaimer {
  font-size: .9rem;
  color: rgba(201, 214, 229, .78);
  max-width: 70ch;
}
.footer-legal {
  font-size: .82rem;
  color: rgba(201, 214, 229, .6);
  max-width: 82ch;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   19. REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   20. BREAKPOINTS
   -------------------------------------------------------------------------- */

/* ---- 560px and up ---- */
@media (min-width: 35em) {
  .swap {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.25rem;
    padding: 1.4rem 1.6rem;
  }
  .swap__arrow {
    justify-self: center;
    transform: rotate(-45deg);
    width: 22px;
    height: 22px;
    margin-left: 0;
  }
  .newsletter { padding: 2.75rem 2.5rem; }
  .nl-form__row { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

/* ---- 720px and up (tablet) ---- */
@media (min-width: 45em) {
  :root { --space-section: 5.5rem; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
  .shifts { grid-template-columns: repeat(2, 1fr); }
  .player-list { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 3rem; }
  .hero__visual { justify-items: center; }
  .hear-panel { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
  .product { grid-template-columns: .85fr 1.15fr; gap: 3rem; }
  .product--reverse .product__media { order: 2; }
  .product--reverse .product__body { order: 1; }
  .grid-2--wide { grid-template-columns: 1.25fr .9fr; gap: 3rem; }
}

/* ---- 960px and up (laptop) ---- */
@media (min-width: 60em) {
  :root { --space-section: 6.5rem; --header-h: 82px; }

  .br-lg { display: inline; }

  .nav-toggle { display: none; }
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.9rem;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav__list { display: flex; gap: 1.7rem; }
  .nav__list li + li { border-top: 0; }
  .nav__list a { padding: .35rem 0; font-size: .975rem; }
  .nav__cta { margin-top: 0; align-self: center; }
  .brand__mark { width: 48px; height: 48px; }

  .hero { padding-block: 4.5rem 5.5rem; }
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .hero__quote { justify-self: center; }
  .section--story { padding-block: 7rem; }
}

/* ---- 1280px and up (large screens) ---- */
@media (min-width: 80em) {
  :root { --fs-base: 1.09rem; --maxw: 1240px; }
  .section--story { padding-block: 8rem; }
}

/* --------------------------------------------------------------------------
   21. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .card:hover, .player-item:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   22. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .hero__actions, .nl-form, .site-footer { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 1rem; page-break-inside: avoid; }
}
