@charset "utf-8";
/* ==========================================================================
   FitBeat — "Every session has a beat."
   Athletic-editorial design system. Hand-authored, no build step.
   ========================================================================== */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url('/assets/fonts/bricolage-grotesque-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/spline-sans-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- tokens ---------- */
:root {
  --ink: #0b1622;
  --ink-2: #122032;
  --ink-3: #1b2e44;
  --bone: #f4f0e8;
  --bone-2: #ffffff;
  --line: #ddd5c7;
  --pulse: #56c7e8;      /* the accent — FitBeat kit light blue (on ink) */
  --pulse-mid: #2496c4;  /* large/bold accents + graphics on bone & white */
  --pulse-deep: #16719a; /* small text, links & icons on light grounds (AA) */
  --steel: #8ca0b4;
  --slate: #4a5568;
  --snow: #f2f7fa;       /* near-white text on ink — cool, matches the kit blue */

  /* context-resolved accent roles: light grounds by default, re-pointed on ink */
  --accent-txt: var(--pulse-deep);
  --accent-gfx: var(--pulse-mid);
  --focus: var(--pulse-deep);

  --display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --mono: 'Spline Sans Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --page: 1280px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --sec: clamp(4.5rem, 9vw, 8.5rem);
  --r: 4px;
  --shadow-1: 0 1px 2px rgba(11, 22, 34, .06), 0 8px 24px -12px rgba(11, 22, 34, .12);
  --shadow-2: 0 2px 4px rgba(11, 22, 34, .07), 0 22px 48px -18px rgba(11, 22, 34, .22);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* dark grounds: the accent brightens to the kit light blue */
.band-ink, .nav, .nav__drawer, .hero, .marquee, .foot, .info-panel, .vframe {
  --accent-txt: var(--pulse);
  --accent-gfx: var(--pulse);
  --focus: var(--pulse);
}
/* ...and light surfaces nested inside them go back to the darker blues */
.nav__panel, .ph__pill {
  --accent-txt: var(--pulse-deep);
  --accent-gfx: var(--pulse-mid);
  --focus: var(--pulse-deep);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -.025em; line-height: 1.02; }
p { margin: 0 0 1.1em; }
figure, figcaption, blockquote, dl, dd { margin: 0; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
strong, b { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

::selection { background: var(--pulse); color: var(--ink); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--pulse); color: var(--ink); padding: .8rem 1.2rem;
  font-family: var(--mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
}
.skip:focus { left: .5rem; top: .5rem; }

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

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { width: 100%; max-width: 820px; margin-inline: auto; padding-inline: var(--gut); }
.wrap-mid { width: 100%; max-width: 1040px; margin-inline: auto; padding-inline: var(--gut); }

section { position: relative; }
.sec { padding-block: var(--sec); }
.sec-sm { padding-block: clamp(3rem, 6vw, 5rem); }

.band-bone { background: var(--bone); }
.band-white { background: var(--bone-2); }
.band-ink { background: var(--ink); color: var(--bone); }
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: var(--snow); }
.band-ink a:not(.btn) { color: var(--snow); }
.band-ink .lead, .band-ink .lead-lg, .band-ink .muted, .band-ink .fine,
.band-ink .price__u, .band-ink .small { color: var(--steel); }
.hairline-top { border-top: 1px solid var(--line); }
.hairline-bottom { border-bottom: 1px solid var(--line); }
.band-ink.hairline-top, .band-ink.hairline-bottom { border-color: var(--ink-3); }

/* ---------- type scale ---------- */
.d1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.9rem, 8.4vw, 7.1rem); line-height: .95; letter-spacing: -.035em; }
.d2 { font-family: var(--display); font-weight: 800; font-size: clamp(2.25rem, 5.4vw, 4.1rem); line-height: 1; letter-spacing: -.032em; }
.d3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 3.1vw, 2.4rem); line-height: 1.08; letter-spacing: -.025em; }
.d4 { font-family: var(--display); font-weight: 700; font-size: clamp(1.22rem, 1.9vw, 1.5rem); line-height: 1.2; letter-spacing: -.018em; }

.lead { font-size: clamp(1.09rem, 1.5vw, 1.32rem); line-height: 1.55; color: var(--slate); }
.lead-lg { font-size: clamp(1.18rem, 1.9vw, 1.6rem); line-height: 1.45; color: var(--slate); }
.muted { color: var(--slate); }
.small { font-size: .93rem; }
.fine { font-size: .84rem; color: var(--slate); }

.accent { color: var(--accent-txt); }
.d1 .accent, .d2 .accent, .d3 .accent, .d4 .accent, .price .accent { color: var(--accent-gfx); }
.outline-word {
  color: transparent;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--ink);
  paint-order: stroke fill;
}
@supports not (-webkit-text-stroke-width: 1px) {
  .outline-word { color: var(--slate); }
}
.band-ink .outline-word { -webkit-text-stroke-color: rgba(255, 255, 255, .55); }

.eyebrow {
  font-family: var(--mono); font-weight: 500; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--accent-txt);
  margin: 0 0 .9rem;
}

.mono { font-family: var(--mono); }
.kicker {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em; color: var(--slate);
}
.band-ink .kicker { color: var(--steel); }

.balance { text-wrap: balance; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

/* ---------- the motif: equalizer bars ----------
   Echoes the crest's skyline, which is really a row of EQ bars. One rhythm
   everywhere — short, tall, mid, tallest, short — so it reads as a motif.
   The SVGs are authored wider than any container and sliced, so bar width and
   spacing stay identical at every viewport instead of stretching. */
.eq { display: block; width: 100%; height: auto; overflow: hidden; }
.eq__b {
  fill: none; stroke: var(--accent-gfx); stroke-width: 5;
  stroke-linecap: round; vector-effect: non-scaling-stroke;
}
.eq--thin .eq__b { stroke-width: 4; }
.eq--mini { width: 46px; flex: none; }
.eq-divider { padding-block: clamp(2rem, 4vw, 3.25rem); }

@media (prefers-reduced-motion: no-preference) {
  /* bars start flat and beat their way up when scrolled into view */
  .eq__b { transform-origin: 0 100%; transform: scaleY(.14); }
  .eq.is-playing .eq__b { animation: eq-beat 1.15s var(--ease) 3 both; }
  .eq.is-playing .eq__b:nth-child(5n + 2) { animation-delay: .09s; }
  .eq.is-playing .eq__b:nth-child(5n + 3) { animation-delay: .18s; }
  .eq.is-playing .eq__b:nth-child(5n + 4) { animation-delay: .27s; }
  .eq.is-playing .eq__b:nth-child(5n + 5) { animation-delay: .36s; }
  @keyframes eq-beat {
    0%   { transform: scaleY(.14); }
    22%  { transform: scaleY(1.06); }
    48%  { transform: scaleY(.42); }
    72%  { transform: scaleY(.94); }
    100% { transform: scaleY(1); }
  }
}

/* the little BPM dot */
.bpm {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--steel);
}
.bpm::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-gfx); flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .bpm::before { animation: beat 1.9s var(--ease) infinite; }
  @keyframes beat {
    0%, 72%, 100% { transform: scale(1); opacity: 1; }
    78% { transform: scale(1.75); opacity: .55; }
    86% { transform: scale(1); opacity: 1; }
    92% { transform: scale(1.4); opacity: .7; }
  }
}

/* ---------- crest watermark ---------- */
.crest-mark {
  position: absolute; pointer-events: none; user-select: none;
  opacity: .045; filter: grayscale(1) brightness(3);
  width: min(58vw, 720px); aspect-ratio: 1;
  z-index: 0;
}
.crest-mark img { width: 100%; height: 100%; object-fit: contain; }
.crest-mark--tr { top: -14%; right: -12%; }
.crest-mark--bl { bottom: -22%; left: -14%; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--pulse);
  --btn-fg: var(--ink);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .85rem 1.7rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--body); font-size: .98rem; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(86, 199, 232, .6); }
.btn:active { transform: translateY(0); }
.btn--ink { --btn-bg: var(--ink); --btn-fg: var(--snow); }
.btn--ink:hover { background: var(--ink-2); box-shadow: 0 10px 24px -12px rgba(11, 22, 34, .5); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--snow); box-shadow: none; border-color: var(--ink); }
.band-ink .btn--ghost { --btn-fg: var(--snow); border-color: rgba(255, 255, 255, .45); }
.band-ink .btn--ghost:hover { background: rgba(255, 255, 255, .12); color: var(--snow); border-color: var(--pulse); }
.btn--sm { min-height: 44px; padding: .6rem 1.25rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn .ico { width: 16px; height: 16px; flex: none; }

/* text link with pulse underline sweep */
.tlink {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 44px;
  font-weight: 600; text-decoration: none; color: var(--ink);
  background-image: linear-gradient(var(--accent-gfx), var(--accent-gfx));
  background-size: 0 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .3s var(--ease), color .2s var(--ease);
  padding-bottom: 2px;
}
.tlink:hover { background-size: 100% 2px; color: var(--accent-txt); }
.band-ink .tlink { color: var(--snow); }
.band-ink .tlink:hover { color: var(--snow); }
.tlink .ico { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.tlink:hover .ico { transform: translateX(3px); }

/* inline prose link */
.plink {
  color: var(--accent-txt); font-weight: 600; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: .18em;
}
.plink:hover { text-decoration-thickness: 2px; }
.band-ink .plink { color: var(--snow); text-decoration-color: var(--pulse); }

/* ---------- navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: var(--ink); border-bottom: 1px solid var(--ink-3);
  isolation: isolate;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 76px;
}
.nav__brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; flex: none;
  min-height: 44px; }
.nav__brand img { width: 38px; height: 38px; object-fit: contain; }
.nav__wordmark {
  font-family: var(--display); font-weight: 800; font-size: 1.28rem;
  letter-spacing: -.005em; text-transform: uppercase; color: var(--snow);
}
.nav__wordmark span { color: var(--pulse); }

.nav__menu { display: none; }
.nav__actions { display: none; }

@media (min-width: 1000px) {
  .nav__menu { display: flex; align-items: stretch; gap: .35rem; }
  .nav__actions { display: flex; align-items: center; gap: 1rem; }
  .nav__burger { display: none !important; }
}

.nav__item { position: relative; display: flex; align-items: stretch; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: 0 .95rem; min-height: 76px;
  font-family: var(--mono); font-size: .77rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .13em;
  color: rgba(255, 255, 255, .82); text-decoration: none;
  background: none; border: 0; cursor: pointer;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: .95rem; right: .95rem; bottom: 20px; height: 2px;
  background: var(--pulse); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover, .nav__link[aria-expanded='true'] { color: var(--snow); }
.nav__link:hover::after, .nav__link[aria-expanded='true']::after { transform: scaleX(1); }
.nav__link[aria-current='page'] { color: var(--snow); }
.nav__link[aria-current='page']::after { transform: scaleX(1); background: rgba(255, 255, 255, .32); }
.nav__chev { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.nav__link[aria-expanded='true'] .nav__chev { transform: rotate(180deg); }

.nav__panel {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  width: min(440px, calc(100vw - 2rem));
  background: var(--bone-2); color: var(--ink);
  border: 1px solid var(--line); border-radius: 6px;
  box-shadow: var(--shadow-2);
  padding: .55rem; opacity: 0; visibility: hidden;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item.is-open .nav__panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__panel a {
  display: grid; grid-template-columns: 34px 1fr; gap: .9rem;
  padding: .8rem .85rem; border-radius: 4px; text-decoration: none;
  transition: background-color .18s var(--ease);
}
.nav__panel a:hover { background: var(--bone); }
.nav__panel .np-ico {
  width: 34px; height: 34px; border-radius: 4px;
  background: var(--bone); color: var(--ink);
  display: grid; place-items: center;
}
.nav__panel a:hover .np-ico { background: var(--pulse); color: var(--ink); }
.nav__panel .np-ico svg { width: 17px; height: 17px; }
.nav__panel .np-name { font-weight: 600; font-size: .97rem; line-height: 1.3; }
.nav__panel .np-desc { font-size: .85rem; color: var(--slate); line-height: 1.4; margin-top: .15rem; }

.nav__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-right: -8px;
  background: none; border: 1px solid var(--ink-3); border-radius: 4px;
  color: var(--snow); cursor: pointer;
}
.nav__burger svg { width: 20px; height: 20px; }
.nav__burger .x { display: none; }
.nav__burger[aria-expanded='true'] .m { display: none; }
.nav__burger[aria-expanded='true'] .x { display: block; }

.nav__drawer {
  display: none;
  background: var(--ink); border-top: 1px solid var(--ink-3);
  max-height: calc(100vh - 76px); overflow-y: auto;
  padding-block: 1.5rem 2.5rem;
}
.nav__drawer.is-open { display: block; }
@media (min-width: 1000px) { .nav__drawer { display: none !important; } }
.nav__drawer > .wrap > * + * { margin-top: 1.4rem; }
.nav__drawer .dl-top {
  display: flex; align-items: center; min-height: 48px;
  font-family: var(--display); font-weight: 700; font-size: 1.55rem;
  color: var(--snow); text-decoration: none; letter-spacing: -.02em;
}
.nav__drawer .dl-sub { border-left: 2px solid var(--ink-3); padding-left: 1.1rem; margin-top: .9rem; }
.nav__drawer .dl-sub a {
  display: block; padding: .65rem 0; text-decoration: none; color: var(--snow);
  min-height: 44px;
}
.nav__drawer .dl-sub .np-name { font-weight: 600; }
.nav__drawer .dl-sub .np-desc { color: var(--steel); font-size: .87rem; }
.nav__drawer .dl-cta { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--ink-3); }

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: clip;
  background: var(--ink); color: var(--snow);
  display: grid; align-items: end;
  min-height: clamp(560px, 82vh, 860px);
  padding-block: clamp(4.5rem, 10vw, 8rem) clamp(3rem, 6vw, 4.5rem);
}
.hero--short { min-height: clamp(440px, 62vh, 620px); }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* brand film plays muted behind the hero; the poster stays as the LCP image
   and fades out only once the iframe has actually loaded. */
.hero__media img { transition: opacity .9s var(--ease); }
.hero__media.is-playing img { opacity: 0; }
/* the 1.4× oversize pushes YouTube's title/watermark chrome outside the crop */
.hero__video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 140vw; height: 78.75vw; min-width: 248.9vh; min-height: 140%;
  border: 0; pointer-events: none;
}
/* size-container cover crop: fill .hero__media whatever its ratio */
@supports (width: 1cqw) {
  .hero__media { container-type: size; }
  .hero__video {
    width: max(140cqw, 248.9cqh); height: max(78.75cqw, 140cqh);
    min-width: 0; min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img { transition: none; }
  .hero__media.is-playing img { opacity: 1; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 22, 34, .72) 0%, rgba(11, 22, 34, .38) 42%, rgba(11, 22, 34, .93) 100%),
    linear-gradient(90deg, rgba(11, 22, 34, .8) 0%, rgba(11, 22, 34, .22) 62%, rgba(11, 22, 34, .35) 100%);
}
.hero__scrim--center {
  background: linear-gradient(180deg, rgba(11, 22, 34, .68) 0%, rgba(11, 22, 34, .42) 45%, rgba(11, 22, 34, .9) 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero--center .hero__inner { text-align: center; }
.hero--center .hero__body, .hero--center .hero__ctas, .hero--center .hero__proof { margin-inline: auto; }
.hero__eyebrows {
  display: flex; align-items: center; flex-wrap: wrap; gap: .7rem;
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .17em; color: rgba(255, 255, 255, .72);
  margin-bottom: 1.5rem;
}
.hero--center .hero__eyebrows { justify-content: center; }
.hero__eyebrows .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--pulse); }
.hero h1 { color: var(--snow); max-width: 19ch; }
.hero--center h1 { max-width: 24ch; margin-inline: auto; }
.hero__rule { margin: clamp(1.4rem, 3vw, 2.1rem) 0 clamp(1.3rem, 2.5vw, 1.8rem); max-width: 560px; }
.hero--center .hero__rule { margin-inline: auto; }
.hero__body { max-width: 56ch; color: rgba(244, 240, 232, .9); font-size: clamp(1.06rem, 1.6vw, 1.32rem); line-height: 1.55; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: clamp(1.9rem, 3.5vw, 2.6rem); }
.hero--center .hero__ctas { justify-content: center; }
.hero__proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.6rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-family: var(--mono); font-size: .76rem; text-transform: uppercase;
  letter-spacing: .11em; color: rgba(255, 255, 255, .78);
}
.hero--center .hero__proof { justify-content: center; }
.hero__proof .sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .28); }
.hero__proof .stars { color: var(--pulse); letter-spacing: .05em; }

/* staggered word reveal */
@media (prefers-reduced-motion: no-preference) {
  html.js .stagger > span { display: inline-block; opacity: 0; transform: translateY(.42em); }
  html.js .stagger.is-in > span { animation: rise .72s var(--ease) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- video poster / click to play ---------- */
.vframe {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--ink-2); isolation: isolate;
}
.vframe--wide { aspect-ratio: 16 / 9; width: 100%; }
.vframe--tall { aspect-ratio: 9 / 16; width: 100%; max-width: 340px; margin-inline: auto; }
.vframe img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vframe__btn {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: grid; place-items: center; gap: 0;
  background: linear-gradient(180deg, rgba(11, 22, 34, .1) 0%, rgba(11, 22, 34, .55) 100%);
  border: 0; cursor: pointer; padding: 0;
}
.vframe__btn:hover .vframe__play { transform: scale(1.08); background: var(--pulse); color: var(--ink); }
.vframe__play {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(255, 255, 255, .93); color: var(--ink);
  display: grid; place-items: center;
  transition: transform .22s var(--ease), background-color .22s var(--ease), color .22s var(--ease);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, .6);
}
.vframe__play svg { width: 24px; height: 24px; margin-left: 3px; }
.vframe__label {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  font-family: var(--mono); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .14em; color: rgba(255, 255, 255, .9); text-align: left;
}

/* shorts row */
.shorts {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.short-card { display: flex; flex-direction: column; gap: .9rem; }
.short-card .short-meta .n { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.short-card .short-meta .q { color: var(--slate); font-size: .93rem; line-height: 1.45; margin-top: .2rem; }
.band-ink .short-card .short-meta .q { color: var(--steel); }

/* generic embed shell */
.embed {
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: var(--bone-2);
}
.embed iframe { width: 100%; border: 0; display: block; }
.embed__head {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.embed__ph {
  display: grid; place-items: center; min-height: 320px; padding: 2rem;
  text-align: center; color: var(--slate); font-family: var(--mono);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
}

/* ---------- editorial section header ---------- */
.shead { display: grid; gap: 1rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.shead__top {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .17em;
}
.shead__idx { color: var(--accent-txt); }
.shead__rule { flex: 1; height: 1px; background: var(--line); }
.band-ink .shead__rule { background: var(--ink-3); }
.shead__label { color: var(--slate); }
.band-ink .shead__label { color: var(--steel); }
.shead h2 { max-width: 26ch; }
.shead__sub { max-width: 62ch; }
.shead--center { justify-items: center; text-align: center; }
.shead--center h2, .shead--center .shead__sub { margin-inline: auto; }
.shead--center .shead__top { width: 100%; max-width: 560px; }

/* ---------- editorial split (asymmetric, alternating) ---------- */
.split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .split--wide-media { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .split--flip > :first-child { order: 2; }
  .split--top { align-items: start; }
}
.split__media { position: relative; }

/* bleed one edge to the viewport on desktop */
@media (min-width: 1100px) {
  .bleed-r { margin-right: calc((100vw - min(var(--page), 100vw)) / -2 - var(--gut)); }
  .bleed-l { margin-left: calc((100vw - min(var(--page), 100vw)) / -2 - var(--gut)); }
}

/* ---------- duotone photo treatment ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--ink-2); isolation: isolate;
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, rgba(11, 22, 34, .3) 0%, rgba(11, 22, 34, 0) 45%, rgba(11, 22, 34, .28) 100%);
  mix-blend-mode: multiply;
}
.ph--flat::after { display: none; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--3x4 { aspect-ratio: 3 / 4; }
.ph--1x1 { aspect-ratio: 1; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--16x10 { aspect-ratio: 16 / 10; }
.ph--tall { aspect-ratio: 5 / 7; }
.ph__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2.4rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(11, 22, 34, .82));
  color: var(--snow); font-family: var(--mono); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .14em;
}
.ph__pill {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .42rem .85rem; border-radius: 999px;
  background: rgba(255, 255, 255, .94); color: var(--ink);
  font-family: var(--mono); font-size: .7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
}
.ph__pill svg { width: 14px; height: 14px; color: var(--pulse-deep); }

.photo-grid { display: grid; gap: clamp(.7rem, 1.5vw, 1rem); }
.photo-grid--2 { grid-template-columns: repeat(2, 1fr); }
.photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .photo-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- cards ---------- */
.grid { display: grid; gap: clamp(1.15rem, 2.4vw, 1.9rem); }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
.g4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .g2, .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) {
  .g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.card {
  position: relative;
  background: var(--bone-2); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  display: flex; flex-direction: column; gap: .8rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.band-white .card { background: var(--bone); }
.band-ink .card { background: var(--ink-2); border-color: var(--ink-3); color: var(--bone); }
.card__idx {
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .16em; color: var(--accent-txt);
}
.card__ico {
  width: 44px; height: 44px; border-radius: 4px; flex: none;
  background: var(--bone); color: var(--ink); display: grid; place-items: center;
  border: 1px solid var(--line);
}
.band-white .card__ico { background: var(--bone-2); }
.band-ink .card__ico { background: var(--ink-3); border-color: transparent; color: var(--snow); }
.card__ico svg { width: 21px; height: 21px; }
.card__ico { font-family: var(--mono); font-size: .8rem; }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 1.24rem; letter-spacing: -.018em; line-height: 1.2; }
.card p { color: var(--slate); font-size: .98rem; margin: 0; }
.band-ink .card p { color: var(--steel); }
.card__foot { margin-top: auto; padding-top: .4rem; }

.card--link { text-decoration: none; color: inherit; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: color-mix(in srgb, var(--accent-gfx) 45%, var(--line)); }
.card__eq { margin-top: .2rem; opacity: .85; }
.card--hover:hover .card__eq { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  /* the card's own bars sit at full height until the card is hovered */
  .card__eq .eq__b { transform: scaleY(1); }
  .card--hover:hover .card__eq .eq__b { animation: eq-beat .85s var(--ease) infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .card--hover:hover { transform: none; }
}

/* offering card with photo */
.ocard { padding: 0; overflow: hidden; }
.ocard .ph { border-radius: 0; }
.ocard__body { padding: clamp(1.4rem, 2.4vw, 1.9rem); display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ticks li { display: grid; grid-template-columns: 18px 1fr; gap: .6rem; margin: 0; font-size: .95rem; line-height: 1.45; }
.ticks svg { width: 16px; height: 16px; margin-top: .3rem; color: var(--accent-txt); }
.ticks--x svg { color: var(--slate); }

/* ---------- beat counter stats ---------- */
.stats { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat { display: grid; gap: .35rem; }
.stat__n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.6rem, 5.2vw, 4rem); line-height: .9; letter-spacing: -.04em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.band-ink .stat__n { color: var(--snow); }
.stat__n .u { color: var(--accent-gfx); }
.stat__l {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .15em; color: var(--slate);
}
.band-ink .stat__l { color: var(--steel); }
.stat--sep { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.band-ink .stat--sep { border-color: var(--ink-3); }

/* price block */
.price {
  display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap;
  font-family: var(--display); font-weight: 800; letter-spacing: -.035em;
}
.price__v { font-size: clamp(2.5rem, 5vw, 3.6rem); line-height: .9; }
.price__u { font-family: var(--mono); font-weight: 500; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--slate); }
.price__old { font-size: 1.1rem; color: var(--slate); text-decoration: line-through; font-family: var(--body); font-weight: 400; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink); color: var(--bone);
  border-block: 1px solid var(--ink-3);
  overflow: hidden; padding-block: 1.05rem;
  --marquee-dur: 42s;
}
.marquee__track {
  display: flex; width: max-content; gap: 0;
  font-family: var(--mono); font-size: .8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .22em; white-space: nowrap;
}
.marquee__track > span { padding-right: 0; }
.marquee em { font-style: normal; color: var(--pulse); padding-inline: .85rem; }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: slide var(--marquee-dur) linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  @keyframes slide { to { transform: translateX(-50%); } }
}

/* ---------- timeline (retreat itinerary — pulse line is the spine) ---------- */
.tl { position: relative; display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }
.tl::before {
  content: ''; position: absolute; left: 21px; top: 14px; bottom: 14px; width: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(180deg,
    var(--accent-gfx) 0 8px, transparent 8px 15px);
}
@media (min-width: 720px) { .tl::before { left: 27px; } }
.tl__item { position: relative; padding-left: 62px; }
@media (min-width: 720px) { .tl__item { padding-left: 76px; } }
.tl__dot {
  position: absolute; left: 7px; top: 20px; width: 30px; height: 30px; border-radius: 8px;
  background: var(--bone); border: 2px solid var(--accent-gfx); display: grid; place-items: center;
  font-family: var(--mono); font-size: .72rem; font-weight: 500; color: var(--accent-txt);
  z-index: 1;
}
@media (min-width: 720px) { .tl__dot { left: 13px; } }
.band-white .tl__dot { background: var(--bone-2); }
.band-ink .tl__dot { background: var(--ink); }

/* ---------- details / accordion ---------- */
.acc { display: grid; gap: .7rem; }
details.qa {
  background: var(--bone-2); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.band-white details.qa { background: var(--bone); }
.band-ink details.qa { background: var(--ink-2); border-color: var(--ink-3); }
details.qa[open] { border-color: color-mix(in srgb, var(--accent-gfx) 50%, var(--line)); box-shadow: var(--shadow-1); }
details.qa > summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem clamp(1.1rem, 2vw, 1.5rem);
  min-height: 56px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: 1.06rem;
  letter-spacing: -.012em; line-height: 1.35;
  transition: background-color .18s var(--ease);
}
details.qa > summary::-webkit-details-marker { display: none; }
details.qa > summary:hover { background: color-mix(in srgb, var(--accent-gfx) 8%, transparent); }
.qa__sign {
  flex: none; width: 24px; height: 24px; margin-top: 1px;
  position: relative; color: var(--accent-txt);
}
.qa__sign::before, .qa__sign::after {
  content: ''; position: absolute; left: 4px; right: 4px; top: 11px; height: 2px;
  background: currentColor; transition: transform .22s var(--ease);
}
.qa__sign::after { transform: rotate(90deg); }
details.qa[open] .qa__sign::after { transform: rotate(0); }
.qa__body {
  padding: 0 clamp(1.1rem, 2vw, 1.5rem) 1.35rem;
  color: var(--slate); font-size: .99rem;
}
.band-ink .qa__body { color: var(--steel); }
.qa__body > *:first-child { margin-top: .2rem; }
.qa__note { font-size: .84rem; font-style: italic; color: var(--slate); opacity: .85; margin-top: .8rem; }

/* ---------- tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: .4rem; padding: .4rem; background: var(--bone-2); border: 1px solid var(--line); border-radius: 999px; }
.band-ink .tabs { background: var(--ink-2); border-color: var(--ink-3); }
.tabs button {
  appearance: none; border: 0; background: none; cursor: pointer;
  padding: .7rem 1.3rem; min-height: 44px; border-radius: 999px;
  font-family: var(--mono); font-size: .76rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em; color: var(--slate);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.band-ink .tabs button { color: var(--steel); }
.tabs button:hover { color: var(--ink); }
.band-ink .tabs button:hover { color: var(--snow); }
.tabs button[aria-selected='true'] { background: var(--ink); color: var(--snow); }
.band-ink .tabs button[aria-selected='true'] { background: var(--pulse); color: var(--ink); }
[role='tabpanel'][hidden] { display: none; }

/* ---------- pills / badges ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .95rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bone-2);
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink);
}
.band-white .pill { background: var(--bone); }
.band-ink .pill { background: rgba(255, 255, 255, .07); border-color: var(--ink-3); color: var(--snow); }
.pill svg { width: 14px; height: 14px; color: var(--accent-txt); }
.pill--accent { background: var(--pulse); border-color: var(--pulse); color: var(--ink); }
a.pill { min-height: 44px; text-decoration: none; transition: background-color .2s var(--ease), border-color .2s var(--ease); }
a.pill:hover { border-color: var(--accent-gfx); }
.pill--accent svg { color: var(--ink); }

.status { display: inline-flex; align-items: center; gap: .4rem; padding: .28rem .7rem; border-radius: 999px; font-family: var(--mono); font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.status svg { width: 12px; height: 12px; }
.status--available { background: #e7f4ec; color: #17603a; }
.status--pending { background: #f0ece2; color: #6a5a3c; }
.status--taken { background: #e8e4db; color: #4a5568; }

/* ---------- notes / callouts ---------- */
.note {
  border: 1px solid var(--line); border-left: 3px solid var(--accent-gfx);
  background: var(--bone-2); border-radius: 4px;
  padding: 1.15rem 1.35rem;
}
.band-white .note { background: var(--bone); }
.band-ink .note { background: var(--ink-2); border-color: var(--ink-3); border-left-color: var(--accent-gfx); }
.note h4 { font-family: var(--display); font-size: 1.02rem; font-weight: 700; margin-bottom: .35rem; }
.note p { font-size: .95rem; color: var(--slate); margin: 0; }
.band-ink .note p { color: var(--steel); }

.quote {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--bone-2); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.4rem, 2.4vw, 2.1rem);
}
.band-white .quote { background: var(--bone); }
.band-ink .quote { background: var(--ink-2); border-color: var(--ink-3); }
.quote__stars { color: var(--accent-txt); font-size: .9rem; letter-spacing: .16em; }
.quote__text { font-size: 1.02rem; line-height: 1.6; color: var(--ink); margin: 0; }
.band-ink .quote__text { color: var(--bone); }
.quote__who { margin-top: auto; }
.quote__name { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.quote__meta { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; color: var(--slate); margin-top: .2rem; }
.band-ink .quote__meta { color: var(--steel); }

/* ---------- final CTA band ---------- */
.cta-band { position: relative; overflow: clip; text-align: center; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band .lead-lg { max-width: 52ch; margin-inline: auto; margin-top: 1.4rem; }
.cta-band .hero__ctas { justify-content: center; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); } }
.info-panel {
  background: var(--ink); color: var(--bone); border-radius: 6px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  position: relative; overflow: clip; isolation: isolate;
}
.info-panel h2, .info-panel h3 { color: var(--snow); }
.info-panel .lead, .info-panel .muted, .info-panel .fine { color: var(--steel); }
.info-panel .kicker { color: var(--steel); }
.info-panel .accent { color: var(--pulse); }
.info-panel .btn--ghost { --btn-fg: var(--snow); border-color: rgba(255, 255, 255, .45); }
.info-panel .btn--ghost:hover { background: rgba(255, 255, 255, .12); color: var(--snow); }
.info-panel .socials a { border-color: var(--ink-3); }
.info-panel dl { margin: 0; display: grid; gap: 1.5rem; }
.info-panel dt {
  font-family: var(--mono); font-size: .7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .16em; color: var(--pulse);
  margin-bottom: .3rem;
}
.info-panel dd { margin: 0; font-size: 1.06rem; }
.info-panel dd a { color: var(--snow); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .3);
  display: inline-flex; align-items: center; min-height: 40px; }
.info-panel dd a:hover { border-bottom-color: var(--pulse); }
.chip {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: color-mix(in srgb, var(--pulse) 16%, var(--bone-2));
  border: 1px solid color-mix(in srgb, var(--pulse-mid) 50%, transparent);
  color: var(--pulse-deep);
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.chip svg { width: 14px; height: 14px; }

/* ---------- footer ---------- */
.foot {
  background: var(--ink); color: var(--bone);
  position: relative; overflow: clip; isolation: isolate;
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}
.foot .wrap { position: relative; z-index: 1; }
.foot__top { display: grid; gap: clamp(2.25rem, 5vw, 4rem); }
@media (min-width: 860px) { .foot__top { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); } }
.foot__brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none;
  margin-bottom: 1.1rem; min-height: 46px; }
.foot__brand img { width: 42px; height: 42px; object-fit: contain; }
.foot__brand .nav__wordmark { font-size: 1.4rem; }
.foot__tag { color: var(--steel); max-width: 34ch; }
.foot h4 {
  font-family: var(--mono); font-weight: 500; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .17em; color: var(--pulse);
  margin-bottom: 1.15rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.foot ul a { color: rgba(244, 240, 232, .82); text-decoration: none; font-size: .97rem; }
.foot ul a:hover { color: var(--snow); }
.foot address { font-style: normal; color: rgba(244, 240, 232, .82); font-size: .97rem; display: grid; gap: .6rem; }
.foot address a { color: inherit; text-decoration: none; display: inline-flex; align-items: center;
  min-height: 44px; }
.foot address a:hover { color: var(--snow); }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 4px;
  border: 1px solid var(--ink-3); display: grid; place-items: center;
  color: rgba(244, 240, 232, .85);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.socials a:hover { background: var(--pulse); border-color: var(--pulse); color: var(--ink); }
.socials svg { width: 19px; height: 19px; }
.foot__bar {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.75rem;
  border-top: 1px solid var(--ink-3);
  display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em;
  color: var(--steel);
}
.foot__bar a { color: var(--steel); text-decoration: none; }
.foot__bar a:hover { color: var(--snow); }

/* ---------- reveal (gated on .js so content is never hidden without JS) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  html.js .reveal.is-in { opacity: 1; transform: none; }
  .reveal--d1 { transition-delay: .07s; }
  .reveal--d2 { transition-delay: .14s; }
  .reveal--d3 { transition-delay: .21s; }
}

/* ---------- misc utilities ---------- */
.stack { display: grid; gap: 1.1rem; }
.stack-lg { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }
.row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .6rem; }
.mt-2 { margin-top: 1.2rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.nowrap { white-space: nowrap; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-bullets { padding-left: 1.15em; }
.list-bullets li { margin-bottom: .5em; }
.list-bullets li::marker { color: var(--accent-txt); }

.table-plain { width: 100%; border-collapse: collapse; }
.table-plain th, .table-plain td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
.table-plain thead th {
  font-family: var(--mono); font-size: .7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .14em; color: var(--slate);
}
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.sticky-side { position: sticky; top: 100px; }
@media (max-width: 899px) { .sticky-side { position: static; } }

/* rail: image strip that scrolls on small screens */
.rail { display: grid; gap: 1rem; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); overflow-x: auto; padding-bottom: .5rem; }
@media (min-width: 900px) { .rail { grid-auto-columns: 1fr; overflow: visible; } }

/* 404 */
.err { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.err .code { margin-bottom: 0; font-family: var(--display); font-weight: 800; font-size: clamp(6rem, 22vw, 15rem); line-height: .82; letter-spacing: -.05em; color: var(--accent-gfx); }

/* carousel dots — small visual, 44px hit area */
.cdot {
  appearance: none; border: 0; background: none; cursor: pointer;
  width: 34px; height: 44px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.cdot span {
  display: block; width: 8px; height: 8px; border-radius: 999px;
  background: var(--line); transition: width .2s var(--ease), background-color .2s var(--ease);
}
.cdot[aria-current='true'] span { width: 24px; background: var(--accent-gfx); }
