/* ==========================================================================
   Semoran Skateway — design system
   Concept: "the floor at night." Near-black violet ground, disco-light neons
   pulled from the logo and pushed to full confidence. Kid energy lives in the
   visuals; parent clarity lives in the information architecture.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Ground — the dark rink floor */
  --ink:      #0D0A14;
  --ink-2:    #16121F;
  --ink-3:    #211B2E;
  --ink-line: #322943;

  /* Light ground — used wherever a parent reads facts (hours, prices) */
  --cream:    #FFF8EE;
  --cream-2:  #F6ECDC;
  --cream-line:#E4D5BF;

  /* Disco lights — sampled from the logo, saturated up */
  --hot:      #FF2E6B;  /* logo ring rose  #DC4E6D — accents, borders, kickers */
  /* Filled buttons need a deeper pink: white on --hot is only 3.59:1, which
     fails AA for button-sized text. This is 4.85:1 and still reads as brand. */
  --hot-deep: #DE1454;
  --amber:    #FFAE2B;  /* logo ring gold  #F1B143 */
  --acid:     #E8FF3D;  /* logo yellow     #FFFF80 */
  --electric: #4D8CFF;  /* site periwinkle #A3C7FF */
  --orchid:   #C77DFF;  /* site orchid     #E1BBF2 */

  /* Text */
  --on-dark:      #FFF8EE;
  --on-dark-mute: #B9AECB;
  --on-light:      #150F1E;
  --on-light-mute: #5C5069;

  /* Type */
  --display: "Gabarito", "Trebuchet MS", system-ui, sans-serif;
  --body:    "Figtree", "Helvetica Neue", Arial, sans-serif;
  --mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Space + shape */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1240px;
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto is load-bearing: the width/height attributes on every img set
   a used height, so max-width alone squeezes the width and keeps the full
   intrinsic height. That rendered the 750x750 award badges at 164x750. */
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }

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

.skip {
  position: absolute; left: -9999px;
  background: var(--acid); color: var(--on-light);
  padding: .75rem 1.25rem; border-radius: var(--r-sm);
  font-weight: 700; z-index: 999;
}
.skip:focus { left: 1rem; top: 1rem; }

.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Typography ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 1.6rem + 6.2vw, 6.5rem); }
h2 { font-size: clamp(2rem, 1.35rem + 3.2vw, 3.75rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.9rem); }

p { text-wrap: pretty; }

/* Small uppercase label — the editorial counterweight to the chunky display */
.kicker {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
}
.kicker--hot   { color: var(--hot); }
.kicker--elec  { color: var(--electric); }
.kicker--dark  { color: var(--on-light-mute); }

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

.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--light { background: var(--cream); color: var(--on-light); }
.section--raised { background: var(--ink-2); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head p { max-width: 46ch; color: var(--on-dark-mute); }
.section--light .section-head p { color: var(--on-light-mute); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.6rem;
  border-radius: var(--r-pill);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--hot {
  background: var(--hot-deep);
  color: #fff;
  box-shadow: 0 6px 0 #96002F;
}
.btn--hot:hover { box-shadow: 0 8px 0 #96002F; }
.btn--hot:active { box-shadow: 0 3px 0 #96002F; }

.btn--acid {
  background: var(--acid);
  color: var(--on-light);
  box-shadow: 0 6px 0 #A8BC00;
}
.btn--acid:hover { box-shadow: 0 8px 0 #A8BC00; }
.btn--acid:active { box-shadow: 0 3px 0 #A8BC00; }

.btn--ghost {
  border: 2px solid var(--ink-line);
  color: var(--on-dark);
}
.btn--ghost:hover { border-color: var(--acid); background: rgba(232,255,61,.07); }

.section--light .btn--ghost {
  border-color: var(--cream-line);
  color: var(--on-light);
}
.section--light .btn--ghost:hover { border-color: var(--on-light); background: rgba(0,0,0,.04); }

/* External-link marker — every third-party handoff is flagged before the tap.
   U+2197 has an emoji presentation, so iOS and Android render it as a colour
   glyph unless U+FE0E (text presentation selector) follows it. Written as CSS
   escapes rather than literal characters: that keeps the stylesheet pure ASCII,
   which matters because entity-encoding a literal glyph here would print
   "&#8599;" as text — CSS strings don't decode HTML entities. */
.ext::after {
  content: "\2197\FE0E";
  font-variant-emoji: text;
  font-size: .85em;
  opacity: .75;
}

/* --- Alert bar ------------------------------------------------------------ */
.alert {
  background: var(--amber);
  color: var(--on-light);
  font-size: .9375rem;
  font-weight: 600;
  text-align: center;
  padding: .7rem var(--gut);
}
.alert a { font-weight: 800; text-underline-offset: 3px; }

@media (max-width: 620px) {
  .alert { font-size: .8125rem; line-height: 1.45; padding-block: .55rem; }
}

/* --- Header --------------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,10,20,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.hdr__in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
}
/* Logo lockup — roundel mark + cream wordmark, so the brand type survives
   on a dark ground. The mark alone carries the brand on narrow screens. */
.lockup { display: inline-flex; align-items: center; gap: .6rem; }
.lockup__mark { height: 38px; width: auto; flex: 0 0 auto; }
.lockup__word { height: 19px; width: auto; }

.hdr__logo { flex: 0 0 auto; text-decoration: none; }

@media (max-width: 340px) {
  .lockup__word { display: none; }
}

.nav { margin-left: auto; }
.nav__cta { display: none; }
.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.6vw, 1.75rem);
}
.nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  color: var(--on-dark);
  padding: .4rem 0;
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--acid); }
.nav a[aria-current="page"]::after { background: var(--acid); }

.hdr__cta { flex: 0 0 auto; padding: .7rem 1.25rem; font-size: .95rem; }

.burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  border: 2px solid var(--ink-line);
  align-items: center;
  justify-content: center;
}
/* Three bars built from one element plus its pseudo-elements, so the top and
   bottom can rotate into an X while the middle fades out. The previous
   box-shadow version drew bars that couldn't be transformed independently. */
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
}
.burger span { position: relative; transition: background-color .18s var(--ease); }
.burger span::before,
.burger span::after {
  content: "";
  position: absolute; left: 0;
  transition: transform .26s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top:  6px; }

.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px)  rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }
.burger[aria-expanded="true"] { border-color: var(--acid); }

@media (max-width: 940px) {
  .nav { display: none; }
  .hdr__cta { display: none; }
  .burger { display: flex; }
  .nav.is-open {
    display: block;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--ink-line);
    padding: 1rem var(--gut) 1.75rem;
  }
  .nav.is-open ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav.is-open a {
    display: block;
    position: relative;
    padding: .9rem 0 .9rem .95rem;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--ink-line);
    transition: color .18s var(--ease), padding-left .18s var(--ease);
  }
  /* The desktop underline is hidden here; an accent bar that slides in from the
     left reads better in a stacked list. :active covers touch, where :hover
     either never fires or sticks after the tap. */
  .nav.is-open a::after { display: none; }
  .nav.is-open a::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 3px; height: 58%;
    border-radius: 2px;
    background: var(--hot);
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
    transition: transform .2s var(--ease);
  }
  .nav.is-open a:hover,
  .nav.is-open a:focus-visible { color: var(--acid); padding-left: 1.35rem; }
  .nav.is-open a:active { color: var(--acid); background: rgba(232,255,61,.08); }
  .nav.is-open a:hover::before,
  .nav.is-open a:focus-visible::before,
  .nav.is-open a:active::before,
  .nav.is-open a[aria-current="page"]::before { transform: translateY(-50%) scaleY(1); }
  .nav.is-open a[aria-current="page"] { padding-left: 1.35rem; }

  .nav.is-open .nav__cta { display: block; margin-top: 1.25rem; }
  .nav.is-open .nav__cta a {
    border-bottom: 0;
    text-align: center;
    justify-content: center;
    font-size: 1.05rem;
  }
}

/* --- Ticker (preserved motion vocabulary, disciplined) --------------------- */
.ticker {
  --tick-bg: var(--acid);
  --tick-fg: var(--on-light);
  background: var(--tick-bg);
  color: var(--tick-fg);
  overflow: hidden;
  border-block: 3px solid var(--ink);
  padding-block: .65rem;
}
.ticker--hot { --tick-bg: var(--hot); --tick-fg: #fff; }

.ticker__track {
  display: flex;
  width: max-content;
  animation: tick 38s linear infinite;
}
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track { animation-play-state: paused; }

.ticker__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1rem, .9rem + .5vw, 1.35rem);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.ticker__group span { display: inline-flex; align-items: center; gap: 2.5rem; }
.ticker__group span::after { content: "\25CF"; font-size: .5em; opacity: .55; }

@keyframes tick {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* --- Wave divider --------------------------------------------------------- */
.wave { display: block; width: 100%; height: clamp(40px, 5vw, 72px); }
.wave path { fill: currentColor; }

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.section--light .card {
  background: #fff;
  border-color: var(--cream-line);
}

/* Photo slot — placeholders now, real photography on swap-in.
   Aspect + object-fit are already correct so the swap is a src change. */
.photo {
  position: relative;
  background:
    radial-gradient(120% 90% at 25% 15%, rgba(255,46,107,.5), transparent 60%),
    radial-gradient(110% 90% at 80% 85%, rgba(77,140,255,.5), transparent 60%),
    linear-gradient(140deg, var(--ink-3), var(--ink-2));
  overflow: hidden;
  isolation: isolate;
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,248,238,.16) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo__note {
  position: absolute;
  inset-inline: 0; bottom: 0;
  padding: .6rem .9rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,248,238,.72);
  background: linear-gradient(transparent, rgba(13,10,20,.85));
}

/* --- Tags ----------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag--special  { background: rgba(255,46,107,.16); color: #FF80A8; }
.tag--holiday  { background: rgba(255,174,43,.16); color: var(--amber); }
.tag--competition { background: rgba(77,140,255,.18); color: #8FB6FF; }
.tag--field_trip  { background: rgba(199,125,255,.16); color: var(--orchid); }
.tag--party_promo { background: rgba(232,255,61,.14); color: var(--acid); }

.section--light .tag--special  { background: rgba(255,46,107,.14); color: #C4004B; }
.section--light .tag--holiday  { background: rgba(255,174,43,.2);  color: #8A5600; }
.section--light .tag--competition { background: rgba(77,140,255,.16); color: #1B4FB8; }
.section--light .tag--field_trip  { background: rgba(199,125,255,.18); color: #6B2E9E; }
.section--light .tag--party_promo { background: rgba(168,188,0,.2); color: #5A6600; }

/* ==========================================================================
   Shared components — events + session grid.
   Used by Home, Skating Times, and Events, so they live here rather than
   in any one page stylesheet.
   ========================================================================== */

/* --- Events grid ---------------------------------------------------------- */
.evt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 980px) { .evt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .evt-grid { grid-template-columns: minmax(0, 1fr); } }

.evt {
  display: flex;
  flex-direction: column;
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.evt:hover { transform: translateY(-4px); border-color: var(--hot); }

/* The lead event runs full width and turns horizontal — it should read as a
   different kind of thing from the three that follow it. */
.evt--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  border-color: var(--hot);
}
.evt--featured .evt__media { flex: 0 0 46%; aspect-ratio: auto; }
.evt--featured .evt__body { padding: clamp(1.5rem, 3vw, 2.5rem); justify-content: center; }
.evt--featured h3 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.9rem); }
.evt--featured .evt__summary { font-size: 1.05rem; max-width: 42ch; }

@media (max-width: 780px) {
  .evt--featured { flex-direction: column; }
  .evt--featured .evt__media { flex: 0 0 auto; aspect-ratio: 16 / 9; }
}

.evt__media {
  position: relative;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
}

.evt__date {
  position: absolute;
  top: .9rem; left: .9rem;
  background: var(--acid);
  color: var(--on-light);
  padding: .4rem .8rem;
  border-radius: var(--r-pill);
  font-family: var(--display);
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: -.01em;
}

.evt__body {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: .7rem;
  padding: 1.4rem;
  flex: 1;
}
.evt__body h3 { letter-spacing: -.025em; }
.evt__summary { color: var(--on-dark-mute); font-size: .95rem; }

.evt__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 2rem;
  width: 100%;
  padding: .85rem 0;
  margin-top: auto;
  border-top: 1px solid var(--ink-line);
}
.evt__facts dt {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-bottom: .15rem;
}
.evt__facts dd { margin: 0; font-size: .95rem; }
.evt__facts dd strong { font-family: var(--display); font-weight: 800; font-size: 1.05rem; }

.events-home__more { margin-top: 2.5rem; text-align: center; }

.fallback {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: var(--on-dark-mute);
  border: 1px dashed var(--ink-line);
  border-radius: var(--r);
}
.section--light .fallback { color: var(--on-light-mute); border-color: var(--cream-line); }

.week__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1rem;
}

/* Three across, so each day card has room to breathe. Cards size to their own
   content rather than stretching to the tallest day in the row — a school-night
   card padded out to match Saturday reads as a rendering bug. */
.week__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
@media (max-width: 900px) { .week__grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .week__grid--three { grid-template-columns: minmax(0, 1fr); } }

.day {
  background: #fff;
  border: 1px solid var(--cream-line);
  border-radius: var(--r);
  padding: 1.25rem;
}
.day--today {
  border-color: var(--hot);
  box-shadow: 0 0 0 3px rgba(255,46,107,.14);
}
.day__name {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.15rem;
  padding-bottom: .8rem;
  margin-bottom: .5rem;
  border-bottom: 2px solid var(--cream-2);
}
.day__badge {
  background: var(--hot);
  color: #fff;
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: var(--r-pill);
}

.day__list { display: grid; gap: .1rem; }
.sesh {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .4rem .9rem;
  align-items: baseline;
  padding: .65rem 0;
  border-bottom: 1px solid var(--cream-2);
}
.sesh:last-child { border-bottom: 0; }

.sesh__time {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--on-light-mute);
  white-space: nowrap;
}
.sesh__tbd { font-style: italic; }
.sesh__name { font-family: var(--display); font-weight: 700; font-size: 1rem; line-height: 1.25; }
.sesh__desc { color: var(--on-light-mute); font-size: .88rem; margin-top: .2rem; }
.sesh__notes { color: var(--on-light-mute); font-size: .8rem; margin-top: .15rem; }
.sesh__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--on-light);
}



/* --- Page header (inner pages + 404) --------------------------------------
   Shared shell; each page supplies its own gradient via a --phead-glow layer.
   -------------------------------------------------------------------------- */
.phead {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.75rem, 6vw, 5rem) clamp(2.25rem, 4vw, 3.5rem);
  background: var(--phead-glow, radial-gradient(80% 90% at 12% 0%, rgba(255,174,43,.16), transparent 62%)), var(--ink);
}
.phead h1 { margin: .9rem 0 1.25rem; }
.phead__lede {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem);
  color: var(--on-dark-mute);
}
.phead__note { margin-top: 1rem; font-size: .92rem; color: var(--on-dark-mute); }
.phead__note a { text-underline-offset: 3px; }

/* Decorative lights, same vocabulary as the home hero. */
.phead__lights { position: absolute; inset: 0; pointer-events: none; }

/* --- CTA band -------------------------------------------------------------- */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}
.cta-band h2 { margin-bottom: .65rem; }
.cta-band p { max-width: 52ch; color: var(--on-dark-mute); }
.cta-band--light p { color: var(--on-light-mute); }
.cta-band .btn { flex: 0 0 auto; }

/* --- Footer --------------------------------------------------------------- */
.ftr {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
}
.ftr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 2.5rem;
}
.ftr h4 {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .9rem;
}
.ftr a { text-decoration: none; }
.ftr a:hover { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }
.ftr li { margin-bottom: .5rem; color: var(--on-dark-mute); }
.ftr__logo { margin-bottom: 1.1rem; }
.ftr__logo .lockup__mark { height: 34px; }
.ftr__logo .lockup__word { height: 17px; }
.ftr__legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-line);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--on-dark-mute);
}

/* --- Reduced motion — all decorative motion off, per brief §6.2 ------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ticker__track { animation: none !important; transform: none !important; }
  .pulse, .drift { animation: none !important; }
}
