/* ==========================================================================
   Mindful Productions — schools site
   Rebuilt 2026-08-12 in Ally's own brand: aubergine, magenta, violet, gold.
   Bold and theatrical, not restrained. One stylesheet, no framework, no build.
   ========================================================================== */

:root {
  /* Ground — deep aubergine reads richer and more theatrical than flat black */
  --void:    #12061C;
  --plum:    #24093A;
  --plum-lt: #35104F;

  /* Brand */
  --magenta:      #EC1E79;
  --magenta-deep: #C2135F;
  --violet:       #7C2FD6;
  --violet-deep:  #5B1DA6;
  --gold:         #FFC53D;

  /* Light */
  --paper: #FFFFFF;
  --cream: #FAF6FC;
  --mist:  #F1E9F7;
  --rule:  #E2D5EC;

  --ink:      #1B0E28;
  --ink-soft: #4A3A57;
  --ink-mute: #7C6C88;

  --measure: 66ch;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 6px;
  --radius-lg: 14px;

  --shadow-md: 0 10px 30px rgba(18, 6, 28, .13);
  --shadow-lg: 0 24px 60px rgba(18, 6, 28, .28);
  --glow: 0 0 0 1px rgba(236, 30, 121, .35), 0 12px 40px rgba(236, 30, 121, .25);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: "Public Sans", ui-sans-serif, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, .95rem + .2vw, 1.075rem); line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: "Anton", "Public Sans", sans-serif;
  font-weight: 400; line-height: .98; letter-spacing: -.005em;
  text-transform: uppercase; margin: 0 0 .45em; text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 1.5rem + 5.2vw, 5.6rem); }
h2 { font-size: clamp(2rem, 1.3rem + 3.1vw, 3.75rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem); }
h4 { font-family: inherit; font-weight: 700; font-size: 1.05rem; margin: 0 0 .5rem; }

p { margin: 0 0 1.15em; max-width: var(--measure); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a { color: var(--magenta-deep); text-underline-offset: .18em; }
a:hover { color: var(--violet-deep); }

.eyebrow {
  font-size: .8rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--magenta); margin: 0 0 1.1rem;
}
.lede { font-size: clamp(1.1rem, 1rem + .55vw, 1.4rem); line-height: 1.5; color: var(--ink-soft); }
.hl { color: var(--magenta); }
.hl-gold { color: var(--gold); }

/* ---------- Layout ---------- */

.wrap { width: min(1200px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { width: min(820px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }

.dark { background: var(--void); color: #E4D8EE; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark p { color: #C4B2D4; }
/* :not(.btn) matters — a bare `.dark a` rule out-specifies .btn-gold and paints
   the label gold on a gold pill, i.e. invisible. Same trap as the blockquote. */
.dark a:not(.btn) { color: var(--gold); }
.dark blockquote { color: #fff; }

.plum { background: linear-gradient(160deg, var(--plum) 0%, var(--void) 100%); color: #E4D8EE; }
.plum h2, .plum h3 { color: #fff; } .plum p { color: #C4B2D4; }

.cream { background: var(--cream); }

.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.wide-l { grid-template-columns: 1.15fr .85fr; } }
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (min-width: 760px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ---------- Header ---------- */

/* NEVER change `position` between the base and .solid states. absolute is out of
   flow and sticky is in flow, so toggling between them made the header claim ~80px
   of layout, shifted every section below it, pushed the hero back into view, and
   un-toggled itself — a feedback loop that flickered at the impact bar. Fixed in
   both states means nothing ever reflows; .solid changes paint only. The border is
   declared here and only recoloured below, for the same reason. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding-block: 1.1rem;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.solid {
  background: rgba(18,6,28,.92);
  backdrop-filter: blur(12px); border-bottom-color: rgba(255,255,255,.1);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.brand { margin-right: auto; display: block; }
.brand img { width: 138px; filter: brightness(0) invert(1); }

.nav { display: none; gap: 1.6rem; align-items: center; }
@media (min-width: 1060px) { .nav { display: flex; } }
.nav a {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #E4D8EE; text-decoration: none; padding-block: .35rem;
  border-bottom: 2px solid transparent; transition: color .18s, border-color .18s;
}
.nav a:hover { color: #fff; border-bottom-color: var(--magenta); }

.nav-toggle { margin-left: auto; }
@media (min-width: 1060px) { .nav-toggle { display: none; } }
.nav-toggle summary {
  list-style: none; cursor: pointer; padding: .6rem .95rem; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--radius);
  font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.nav-toggle summary::-webkit-details-marker { display: none; }
.nav-panel {
  position: absolute; left: 0; right: 0; top: 100%; background: var(--void);
  padding: 1rem var(--gutter) 1.75rem; box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--magenta);
}
.nav-panel a {
  display: block; padding: .8rem 0; color: #fff; text-decoration: none;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
  font-family: inherit; font-size: .88rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s, background-color .18s, color .18s;
}
.btn-primary { background: var(--magenta); color: #fff; box-shadow: 0 8px 24px rgba(236,30,121,.35); }
.btn-primary:hover { background: var(--magenta-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(236,30,121,.45); }
.btn-gold { background: var(--gold); color: var(--void); }
.btn-gold:hover { transform: translateY(-2px); color: var(--void); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }
.btn-dark { border-color: var(--ink); color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* ==========================================================================
   HERO — cross-fading stills standing in for show footage, testimonials
   flying in over the top. Swapping the stills for <video> needs no layout change.
   ========================================================================== */

.hero { position: relative; min-height: min(100svh, 900px); display: flex; align-items: flex-end; background: var(--void); overflow: hidden; }

.hero-bg { position: absolute; inset: 0; }
.hero-bg .frame {
  position: absolute; inset: 0; opacity: 0;
  animation: heroFade 56s infinite;
}
/* Seven full-screen frames held on their own GPU layers by `will-change` was seven
   layers alive for the life of the page. Let the browser manage them instead. */
.hero-bg.paused .frame,
.hero-bg.paused .frame img { animation-play-state: paused; }
/* 7 frames × 8s each = a 56s cycle. Adding or removing a frame means changing the
   duration here AND the percentages in heroFade/kenburns — one slot is 100/n %. */
.hero-bg .frame img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 56s infinite; }
.hero-bg .frame:nth-child(1), .hero-bg .frame:nth-child(1) img { animation-delay: 0s; }
.hero-bg .frame:nth-child(2), .hero-bg .frame:nth-child(2) img { animation-delay: 8s; }
.hero-bg .frame:nth-child(3), .hero-bg .frame:nth-child(3) img { animation-delay: 16s; }
.hero-bg .frame:nth-child(4), .hero-bg .frame:nth-child(4) img { animation-delay: 24s; }
.hero-bg .frame:nth-child(5), .hero-bg .frame:nth-child(5) img { animation-delay: 32s; }
.hero-bg .frame:nth-child(6), .hero-bg .frame:nth-child(6) img { animation-delay: 40s; }
.hero-bg .frame:nth-child(7), .hero-bg .frame:nth-child(7) img { animation-delay: 48s; }

@keyframes heroFade {
  0%      { opacity: 0; }
  2.14%   { opacity: 1; }   /* 1.2s fade in */
  14.29%  { opacity: 1; }   /* holds to 8s   */
  16.43%  { opacity: 0; }   /* out by 9.2s   */
  100%    { opacity: 0; }
}
@keyframes kenburns {
  0%      { transform: scale(1.02); }
  16.43%  { transform: scale(1.13); }
  100%    { transform: scale(1.13); }
}

/* Stage-light grade: turns dim hall footage into something theatrical */
.hero-grade {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 68% 34%, rgba(236,30,121,.30) 0%, transparent 62%),
    radial-gradient(70% 60% at 18% 68%, rgba(124,47,214,.34) 0%, transparent 60%),
    linear-gradient(180deg, rgba(18,6,28,.80) 0%, rgba(18,6,28,.22) 30%, rgba(18,6,28,.78) 72%, var(--void) 100%),
    linear-gradient(90deg, rgba(18,6,28,.82) 0%, rgba(18,6,28,.20) 58%, transparent 100%);
}

.hero-inner { position: relative; z-index: 3; width: 100%; padding-block: 8rem clamp(2.5rem,5vw,4rem); }
.hero-grid { display: grid; gap: 2rem; align-items: end; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.15fr .85fr; } }

.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 4px 40px rgba(18,6,28,.55); }
.hero .lede { color: #E4D8EE; max-width: 46ch; }
.hero .eyebrow { color: var(--gold); }

/* Flying testimonial cards */
.flyers { position: relative; min-height: 260px; display: none; }
@media (min-width: 1000px) { .flyers { display: block; } }
.flyer {
  position: absolute; right: 0; top: 0; width: min(360px, 100%);
  background: rgba(255,255,255,.97); color: var(--ink);
  border-radius: var(--radius-lg); padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-lg); opacity: 0;
  border-left: 5px solid var(--magenta);
  animation: fly 42s infinite cubic-bezier(.2,.8,.3,1);
}
/* 7 cards × 6s each = a 42s cycle, edge colour cycling magenta → violet → gold. */
.flyer:nth-child(1) { animation-delay: 0s;  }
.flyer:nth-child(2) { animation-delay: 6s;  border-left-color: var(--violet); }
.flyer:nth-child(3) { animation-delay: 12s; border-left-color: var(--gold); }
.flyer:nth-child(4) { animation-delay: 18s; border-left-color: var(--magenta); }
.flyer:nth-child(5) { animation-delay: 24s; border-left-color: var(--violet); }
.flyer:nth-child(6) { animation-delay: 30s; border-left-color: var(--gold); }
.flyer:nth-child(7) { animation-delay: 36s; border-left-color: var(--magenta); }
.flyer q { display: block; font-size: 1.06rem; line-height: 1.45; font-weight: 500; quotes: "\201C" "\201D"; }
.flyer cite { display: block; margin-top: .7rem; font-style: normal; font-size: .8rem; font-weight: 700;
              letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }

@keyframes fly {
  0%      { opacity: 0; transform: translateX(115%) rotate(2.5deg); }
  2.29%   { opacity: 1; transform: translateX(0) rotate(0deg); }
  12%     { opacity: 1; transform: translateX(0) rotate(0deg); }
  14.29%  { opacity: 0; transform: translateX(-14%) rotate(-1.5deg); }
  100%    { opacity: 0; transform: translateX(115%) rotate(2.5deg); }
}

/* Mobile: stack quietly instead of flying */
.flyers-mobile { display: grid; gap: .75rem; margin-top: 2.25rem; }
@media (min-width: 1000px) { .flyers-mobile { display: none; } }
.flyers-mobile .m-quote {
  background: rgba(255,255,255,.12); border-left: 4px solid var(--magenta);
  border-radius: var(--radius); padding: .9rem 1.1rem; color: #fff; font-size: .95rem;
}
.flyers-mobile cite { display: block; font-style: normal; font-size: .75rem; color: #C4B2D4; margin-top: .35rem; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg .frame { animation: none; opacity: 0; }
  .hero-bg .frame:first-child { opacity: 1; }
  .hero-bg .frame img { animation: none; }
  .flyer { animation: none; opacity: 1; position: static; margin-bottom: .75rem; }
  /* Stacked static, all seven would run the hero off the screen — show three. */
  .flyer:nth-child(n+4) { display: none; }
}

/* ---------- Impact bar ---------- */

.impact { background: linear-gradient(100deg, var(--magenta) 0%, var(--violet) 100%); color: #fff; }
.impact .wrap { padding-block: clamp(1.75rem, 3vw, 2.5rem); }
.impact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .impact-grid { grid-template-columns: repeat(4,1fr); } }
.impact .k {
  font-family: "Anton", sans-serif; text-transform: uppercase; font-size: clamp(1.15rem,1rem+.7vw,1.6rem);
  line-height: 1; margin-bottom: .3rem; letter-spacing: .01em;
}
.impact .v { font-size: .92rem; color: rgba(255,255,255,.88); line-height: 1.4; }

/* ---------- Voices ---------- */

.bubbles { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .bubbles { grid-template-columns: repeat(2,1fr); } }
.bubble {
  position: relative; border-radius: var(--radius-lg); padding: 1.6rem 1.7rem 1.75rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
}
.bubble::after {
  content: ""; position: absolute; left: 2.2rem; bottom: -13px;
  border: 13px solid transparent; border-top-color: rgba(255,255,255,.06); border-bottom: 0;
}
.bubble .who {
  font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 1.15rem;
  letter-spacing: .02em; margin-bottom: .5rem;
}
.bubble q { font-size: 1.05rem; line-height: 1.45; color: #E4D8EE; font-style: italic; }
.b-critic  .who { color: var(--magenta); }
.b-enc     .who { color: var(--gold); }
.b-motiv   .who { color: #6FE3C4; }
.b-procr   .who { color: #8FB4FF; }

/* ---------- Show bands ---------- */

.show-band { padding-block: clamp(2.5rem, 5vw, 4rem); }
.show-band .split { align-items: center; }
@media (min-width: 900px) { .show-band.flip .art { order: 2; } }
.show-art {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(-1.1deg); transition: transform .45s cubic-bezier(.2,.8,.3,1);
}
.show-band.flip .show-art { transform: rotate(1.1deg); }
.show-art:hover { transform: rotate(0deg) scale(1.015); }
.show-art img { width: 100%; }

.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.pills li {
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .45rem .85rem; border-radius: 999px;
  background: rgba(236,30,121,.14); color: var(--magenta); border: 1px solid rgba(236,30,121,.3);
}
.dark .pills li, .plum .pills li { background: rgba(255,255,255,.09); color: #EFD9F5; border-color: rgba(255,255,255,.2); }
.show-no {
  font-family: "Anton", sans-serif; font-size: clamp(3rem,7vw,5.5rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 2px rgba(236,30,121,.5); margin-bottom: .35rem;
}

/* ---------- Video block ---------- */

.videoblock { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.videoblock img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.videoblock::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(124,47,214,.35), rgba(18,6,28,.75));
}
.play {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  border: 0; background: none; cursor: pointer; color: #fff;
}
.play span {
  width: clamp(72px, 9vw, 108px); aspect-ratio: 1; border-radius: 50%;
  background: var(--magenta); display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(236,30,121,.55); animation: pulse 2.6s infinite;
}
.play span::before {
  content: ""; border-style: solid; border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff; margin-left: 6px;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(236,30,121,.55); }
  70%  { box-shadow: 0 0 0 28px rgba(236,30,121,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,30,121,0); }
}
.play-label {
  position: absolute; bottom: 1.5rem; left: 0; right: 0; z-index: 2; text-align: center;
  color: #fff; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem;
}
@media (prefers-reduced-motion: reduce) { .play span { animation: none; } }

/* ---------- Steps ---------- */

.steps { counter-reset: s; display: grid; gap: 1.5rem; margin-top: 2rem; }
.step { position: relative; padding-left: 4.25rem; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: -.15rem;
  font-family: "Anton", sans-serif; font-size: 2.35rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold);
}
.step h4 { color: #fff; margin-bottom: .25rem; }
.step p { font-size: .97rem; margin: 0; }

/* ---------- Curves ---------- */

.curve { display: block; width: 100%; height: clamp(48px, 6vw, 96px); }
.curve-top { margin-bottom: -1px; }
.curve-bot { margin-top: -1px; }

/* ---------- Report mock ---------- */

.report-mock {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.75rem; transform: rotate(-1.4deg); border-top: 6px solid var(--magenta);
}
.report-mock .rm-h { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 1.1rem; margin-bottom: .15rem; }
.report-mock .rm-s { font-size: .78rem; color: var(--ink-mute); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.rm-row { display: grid; grid-template-columns: 1fr auto; gap: .75rem; align-items: center; padding: .55rem 0; border-bottom: 1px dashed var(--rule); font-size: .87rem; }
.rm-row:last-child { border-bottom: 0; }
.rm-bar { width: 96px; height: 8px; border-radius: 99px; background: var(--mist); position: relative; overflow: hidden; }
.rm-bar i { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, var(--violet), var(--magenta)); border-radius: 99px; }

/* ---------- Big quote ---------- */

.bigquote { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.bigquote > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bigquote::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(36,9,58,.95) 0%, rgba(124,47,214,.86) 55%, rgba(236,30,121,.78) 100%);
}
.bigquote-in { position: relative; z-index: 2; padding: clamp(2rem, 6vw, 4.5rem); }
.bigquote blockquote {
  margin: 0 0 1.5rem; color: #fff; font-size: clamp(1.25rem, 1rem + 1.5vw, 2.2rem);
  line-height: 1.32; font-weight: 500;
}
.bigquote .attrib { color: #F2DCEF; font-size: .95rem; }
.bigquote .attrib strong { display: block; color: #fff; font-family: "Anton", sans-serif;
  text-transform: uppercase; font-size: 1.15rem; letter-spacing: .02em; margin-bottom: .1rem; }

/* ---------- Crest wall ---------- */

.crests { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: clamp(1.5rem,3vw,2.75rem); align-items: center; }
.crests img { max-height: 84px; width: auto; margin-inline: auto; transition: transform .25s; }
.crests img:hover { transform: scale(1.09); }

/* ---------- Frameworks ---------- */

.frameworks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.frameworks li {
  font-size: .84rem; color: var(--ink-soft); background: #fff;
  border: 1px solid var(--rule); padding: .45rem .85rem; border-radius: 999px;
}

/* ---------- Facts ---------- */

.facts { display: grid; gap: 1px; background: rgba(255,255,255,.16); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px)  { .facts { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .facts { grid-template-columns: repeat(4,1fr); } }
.fact { background: var(--void); padding: 1.4rem 1.5rem; }
.fact dt { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .45rem; }
.fact dd { margin: 0; font-size: .95rem; color: #C4B2D4; line-height: 1.5; }

/* ---------- Footer ---------- */

.site-footer { background: var(--void); color: #A895B8; padding-block: clamp(3rem,6vw,4.5rem) 2rem; font-size: .94rem; border-top: 3px solid var(--magenta); }
.site-footer h4 { color: #fff; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #C4B2D4; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-bottom { margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; font-size: .85rem; color: #7C6C88; }

/* ---------- Utility ---------- */

.skip { position: absolute; left: -9999px; background: var(--magenta); color: #fff; padding: .75rem 1.25rem; z-index: 100; }
.skip:focus { left: .5rem; top: .5rem; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.center { text-align: center; } .center p { margin-inline: auto; }
.mt { margin-top: clamp(2rem,4vw,3.25rem); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* A section ending in a decorative curve must not add padding beneath it,
   or the section colour reappears as a band below the curve. */
.ends-in-curve { padding-bottom: 0; }

/* Duration note under the impact strip. Small on purpose: a coordinator needs to
   know it fits a period, not an exact runtime, and no exact runtime is claimed. */
.impact-note {
  margin: 1.5rem 0 0; font-size: .84rem; line-height: 1.5;
  color: rgba(255,255,255,.62); max-width: 62ch;
}
