/* =========================================================
   MATT BAUER SINGS GARTH BROOKS  --  Option 3: Stadium Modern
   Design language reminiscent of garthbrooks.com:
   warm near-black, signature ember orange, ghosted giant
   wordmark, bold condensed marquee type, stage-light glow.
   Original throughout. No GB logo, fonts, or imagery used.
   ========================================================= */

:root {
  --ink:        #0d0a08;
  --ink-2:      #15100b;
  --ink-3:      #1d160f;
  --line:       #2c2218;
  --bone:       #f4efe6;
  --bone-dim:   #b3a690;
  --bone-faint: #6f6452;

  --ember:        #e8731f;
  --ember-bright: #ff9038;
  --ember-deep:   #b1480c;
  --ember-glow:   rgba(232, 115, 31, 0.5);

  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body:    'Archivo', system-ui, -apple-system, sans-serif;
  --mono:    'Spline Sans Mono', ui-monospace, 'SFMono-Regular', monospace;

  --max: 1180px;
  --bleed: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.16, 0.84, 0.24, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }

body {
  font-family: var(--body);
  font-size: 17px; line-height: 1.6;
  color: var(--bone); background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}

/* faint global grain + vignette for cinematic cohesion */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(130% 100% at 50% 0%, transparent 60%, rgba(0,0,0,0.55) 100%);
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.28; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='150' height='150'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body > *, main { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

a { color: var(--ember); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--ember-bright); }
img, audio { max-width: 100%; display: block; }

.skip-link { position: absolute; top: -50px; left: 0; background: var(--ember); color: var(--ink);
  padding: 10px 16px; z-index: 400; font-family: var(--mono); font-size: 13px; font-weight: 600; }
.skip-link:focus { top: 0; }
::selection { background: var(--ember); color: var(--ink); }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 300; background: transparent; pointer-events: none; }
.progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--ember-deep), var(--ember), var(--ember-bright));
  box-shadow: 0 0 12px var(--ember-glow); transition: width 0.1s linear; }

/* ---------- Marquee strip ---------- */
.strip { background: var(--ember); color: var(--ink); overflow: hidden; white-space: nowrap; border-bottom: 1px solid rgba(13,10,8,0.25); }
.strip-track { display: inline-flex; align-items: center; padding: 8px 0; font-family: var(--mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; animation: slide 34s linear infinite; }
.strip-track span { padding: 0 18px; }
.strip-track i { font-style: normal; opacity: 0.55; font-size: 9px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px var(--bleed); background: rgba(13, 10, 8, 0.72);
  backdrop-filter: saturate(150%) blur(14px); -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 13px; color: var(--bone); }
.brand:hover { color: var(--bone); }
.brand-badge { color: var(--ember); display: inline-flex; flex: 0 0 auto; }
.badge-arc { fill: currentColor; font-family: var(--mono); font-weight: 600; }
.badge-mono { fill: currentColor; font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; }
.brand-words { display: flex; flex-direction: column; line-height: 1.05; }
.brand-words strong { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: 0.01em; text-transform: uppercase; }
.brand-words em { font-family: var(--mono); font-style: normal; font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ember); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bone-dim); }
.nav-links a:hover { color: var(--bone); }
.nav-cta { color: var(--ember) !important; border: 1px solid var(--ember); padding: 7px 16px; }
.nav-cta:hover { background: var(--ember); color: var(--ink) !important; }
@media (max-width: 720px) { .brand-words { display: none; } .nav-links { gap: 16px; } .nav-links a:not(.nav-cta) { display: none; } }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: calc(100vh - 96px); display: flex; flex-direction: column; justify-content: center;
  padding: clamp(60px, 10vh, 130px) var(--bleed) clamp(80px, 12vh, 150px); overflow: hidden;
  background: radial-gradient(120% 80% at 50% -10%, #241408 0%, transparent 55%),
              radial-gradient(90% 70% at 80% 110%, #2a1206 0%, transparent 50%), var(--ink);
  border-bottom: 1px solid var(--line); }

/* cursor-tracked stage spotlight */
.spotlight { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.4s var(--ease);
  background: radial-gradient(280px 280px at var(--mx, 50%) var(--my, 30%), rgba(255,144,56,0.16), transparent 70%); }
.hero:hover .spotlight { opacity: 1; }

.stage-lights { position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(40% 90% at 18% -20%, var(--ember-glow), transparent 60%),
              radial-gradient(36% 80% at 82% -15%, rgba(255,144,56,0.28), transparent 60%);
  opacity: 0.5; filter: blur(8px); animation: flicker 9s ease-in-out infinite alternate; }
@keyframes flicker { 0%{opacity:.42} 50%{opacity:.58} 100%{opacity:.48} }

.ghost { position: absolute; left: 50%; top: 46%; transform: translate(-50%, calc(-50% + var(--py, 0px)));
  font-family: var(--display); font-weight: 900; font-size: clamp(180px, 42vw, 680px); line-height: 0.8; letter-spacing: -0.03em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(244, 239, 230, 0.05); text-stroke: 1.5px rgba(244, 239, 230, 0.05);
  white-space: nowrap; z-index: 0; user-select: none; will-change: transform; }
.ghost-book { color: rgba(232,115,31,0.04); -webkit-text-stroke: 1.5px rgba(232,115,31,0.06); }

.grain { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23g)' opacity='0.5'/></svg>"); }

.hero-inner { position: relative; z-index: 5; max-width: var(--max); margin: 0 auto; width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ember); margin: 0 0 28px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 12px var(--ember); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.stack { margin: 0; display: flex; flex-direction: column; }
.stack .ln { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: 0.86; letter-spacing: -0.01em; }
.ln-name { font-size: clamp(52px, 11vw, 150px); color: var(--bone); }
.ln-sings { display: flex; align-items: center; gap: 22px; font-weight: 500; font-size: clamp(20px, 3vw, 40px);
  color: var(--ember); letter-spacing: 0.16em; margin: 10px 0 6px; text-transform: lowercase; font-style: italic; }
.ln-sings .hair { height: 2px; background: var(--ember); flex: 1; max-width: 160px; opacity: 0.6; }
.ln-garth { font-size: clamp(60px, 13.5vw, 200px); color: var(--ember); text-shadow: 0 0 60px rgba(232,115,31,0.25); }

.lede { max-width: 60ch; margin: 34px 0 0; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; color: var(--bone-dim); }
.lede em { color: var(--bone); font-style: italic; }

.format-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; }
.fmt { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bone-dim); border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px; transition: border-color .2s var(--ease), color .2s var(--ease); }
.fmt:hover { border-color: var(--ember); color: var(--bone); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 0; }

.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 30px; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.25s var(--ease); }
.btn span { transition: transform 0.2s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn-ember { background: var(--ember); color: var(--ink); }
.btn-ember:hover { background: var(--ember-bright); color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 34px -8px var(--ember-glow); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }

.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 5; width: 26px; height: 42px;
  border: 1.5px solid var(--line); border-radius: 100px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--ember); animation: drop 1.8s ease-in-out infinite; }
@keyframes drop { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(14px);opacity:0} 100%{opacity:0} }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

/* ---------- Section heads ---------- */
.kicker { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-dim); margin: 0 0 20px; }
.kicker .num { color: var(--ember); }
.kicker-ember { color: var(--ember); } .kicker-ember .num { color: var(--bone-dim); }
h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: 0.92; letter-spacing: -0.005em;
  margin: 0; font-size: clamp(34px, 5.5vw, 76px); color: var(--bone); }

/* ---------- THE ACT ---------- */
.band { padding: clamp(72px, 11vw, 130px) var(--bleed); max-width: var(--max); margin: 0 auto; }
.band-head { margin-bottom: clamp(44px, 6vw, 72px); }
.band-head h2 { max-width: 18ch; }
.band-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
@media (max-width: 860px) { .band-grid { grid-template-columns: 1fr; gap: 44px; } }
.band-prose .lead-p { font-size: clamp(20px, 2vw, 26px); line-height: 1.45; color: var(--bone); margin: 0 0 22px; font-weight: 500; }
.band-prose p { color: var(--bone-dim); margin: 0 0 18px; max-width: 52ch; }
.format-cards { display: flex; flex-direction: column; gap: 14px; }
.fcard { border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; background: linear-gradient(180deg, var(--ink-2), var(--ink));
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.fcard:hover { border-color: var(--ember); transform: translateX(6px); }
.fcard-feature { border-color: rgba(232,115,31,0.4); background: linear-gradient(180deg, #1c1209, var(--ink)); }
.fcard-tag { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ember); }
.fcard h3 { font-family: var(--display); font-weight: 700; font-size: 28px; text-transform: uppercase; letter-spacing: 0.01em; margin: 8px 0 8px; color: var(--bone); }
.fcard p { margin: 0; font-size: 15.5px; color: var(--bone-dim); }

/* ---------- REPERTOIRE ---------- */
.songs { padding: clamp(72px, 11vw, 130px) var(--bleed); max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.songs-head { margin-bottom: clamp(40px, 6vw, 64px); }
.setlist { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: clamp(28px, 5vw, 80px); }
@media (max-width: 620px) { .setlist { columns: 1; } }
.setlist li { display: flex; align-items: baseline; gap: 16px; padding: 15px 4px; border-bottom: 1px solid var(--line);
  break-inside: avoid; transition: padding 0.2s var(--ease); }
.setlist li:hover { padding-left: 12px; }
.setlist li:hover .track-name { color: var(--ember); }
.track-no { font-family: var(--mono); font-size: 12px; color: var(--bone-faint); flex: 0 0 auto; width: 22px; }
.track-name { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.2vw, 27px); text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--bone); transition: color 0.2s var(--ease); }
.songs-note { font-family: var(--mono); font-size: 13.5px; color: var(--bone-dim); margin: 36px 0 0; max-width: 64ch; line-height: 1.7; }

/* ---------- ROOTS / INFLUENCES ---------- */
.roots { padding: clamp(72px, 11vw, 130px) var(--bleed); max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.roots-intro { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; color: var(--bone-dim); max-width: 60ch; margin: 0 0 clamp(40px, 6vw, 64px); }
.roots-sub { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ember); margin: 0 0 22px; }

/* the cover lineage */
.lineage { margin: 0 0 clamp(48px, 7vw, 84px); }
.lineage-list { list-style: none; margin: 0; padding: 0; }
.lineage-list li { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 18px; padding: 18px 4px;
  border-bottom: 1px solid var(--line); transition: padding 0.2s var(--ease); }
.lineage-list li:hover { padding-left: 12px; }
.lineage-list li:hover .lin-song { color: var(--ember); }
.lin-song { font-family: var(--display); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--bone); transition: color 0.2s var(--ease); }
.lin-arrow { color: var(--ember); font-size: 18px; transform: translateY(-1px); }
.lin-orig { font-family: var(--body); font-style: italic; font-size: clamp(16px, 1.5vw, 20px); color: var(--bone-dim); }
.lin-tag { margin-left: auto; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ember); border: 1px solid rgba(232,115,31,0.45); border-radius: 100px; padding: 4px 11px; align-self: center; }
@media (max-width: 560px) { .lin-tag { margin-left: 0; } }

/* the influence grid */
.inf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
@media (max-width: 700px) { .inf-grid { grid-template-columns: 1fr; gap: 32px; } }
.inf-col { border-top: 2px solid var(--ember); padding-top: 18px; }
.inf-cat { display: block; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bone-dim); margin: 0 0 14px; }
.inf-col ul { list-style: none; margin: 0; padding: 0; }
.inf-col li { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.1vw, 26px); text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--bone); padding: 7px 0; transition: color 0.2s var(--ease), transform 0.2s var(--ease); cursor: default; }
.inf-col li:hover { color: var(--ember); transform: translateX(5px); }

/* ---------- LISTEN ---------- */
.listen { padding: clamp(72px, 11vw, 130px) var(--bleed); max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.listen-note { font-family: var(--mono); font-size: 13.5px; color: var(--bone-dim); margin: 0 0 36px; }
.tracks { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.track-card { display: flex; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 24px;
  background: linear-gradient(180deg, var(--ink-2), var(--ink)); position: relative; overflow: hidden; transition: border-color .25s var(--ease); }
.track-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ember); }
.track-card.playing { border-color: rgba(232,115,31,0.45); }
.track-body { flex: 1; min-width: 0; }

/* spinning vinyl */
.vinyl { flex: 0 0 auto; width: 74px; height: 74px; border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, #0a0705 0 2px, #15100b 2px 4px); position: relative;
  box-shadow: inset 0 0 0 1px #000, 0 4px 14px rgba(0,0,0,0.5); }
.vinyl::after { content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(255,255,255,0.12), transparent 45%); }
.vinyl-label { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 26px; height: 26px; border-radius: 50%;
  background: var(--ember); color: var(--ink); display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 12px; z-index: 2; }
.track-card.playing .vinyl { animation: spin 3.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.track-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; gap: 12px; }
.track-tag { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ember); }
.track-len { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-faint); }
.track-card h3 { font-family: var(--display); font-weight: 700; font-size: 28px; text-transform: uppercase; margin: 0 0 12px; color: var(--bone); }

/* soundwave */
.wave { display: flex; align-items: flex-end; gap: 3px; height: 22px; margin: 0 0 14px; opacity: 0.4; transition: opacity .3s var(--ease); }
.wave i { flex: 1; background: var(--ember); border-radius: 2px; height: 30%; }
.track-card.playing .wave { opacity: 1; }
.track-card.playing .wave i { animation: eq 0.9s ease-in-out infinite; }
.wave i:nth-child(2n){ animation-delay: .15s } .wave i:nth-child(3n){ animation-delay: .3s }
.wave i:nth-child(4n){ animation-delay: .45s } .wave i:nth-child(5n){ animation-delay: .6s }
@keyframes eq { 0%,100%{ height: 25% } 50%{ height: 100% } }
.track-card audio { width: 100%; height: 36px; }
@media (prefers-reduced-motion: reduce) { .track-card.playing .vinyl, .track-card.playing .wave i { animation: none; } }

/* ---------- BOOK ---------- */
.book { position: relative; padding: clamp(72px, 11vw, 130px) var(--bleed); border-top: 1px solid var(--line); overflow: hidden;
  background: radial-gradient(80% 120% at 50% 0%, #1a1008, var(--ink)); }
.book-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.book-lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--bone-dim); margin: 0 0 40px; max-width: 56ch; }
.form { display: flex; flex-direction: column; gap: 20px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .f-row { grid-template-columns: 1fr; } }
.form label { display: flex; flex-direction: column; gap: 9px; }
.form label > span { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-dim); }
.form input, .form select, .form textarea { font-family: var(--body); font-size: 16px; color: var(--bone); background: var(--ink-2);
  border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--ember); background: var(--ink-3); box-shadow: 0 0 0 3px rgba(232,115,31,0.12); }
.form select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M0 0l6 8 6-8' fill='none' stroke='%23e8731f' stroke-width='1.6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px 8px; padding-right: 34px; }
.form textarea { resize: vertical; }
.form-alt { font-family: var(--mono); font-size: 13px; color: var(--bone-dim); text-align: center; margin: 14px 0 0; }

/* ---------- FOOTER ---------- */
.foot { border-top: 1px solid var(--line); padding: clamp(56px, 8vw, 90px) var(--bleed) 48px; text-align: center; background: var(--ink); }
.foot-top { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.foot-badge { color: var(--ember); }
.foot-name { font-family: var(--display); font-weight: 800; font-size: clamp(24px, 3vw, 34px); text-transform: uppercase; letter-spacing: 0.01em; color: var(--bone); margin: 4px 0 0; }
.foot-meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-dim); line-height: 2; margin: 0; }
.foot-meta a { color: var(--ember); }
.disclaimer { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-faint); max-width: 62ch; margin: 40px auto 18px; line-height: 1.8; }
.colophon { font-size: 13px; font-style: italic; color: var(--bone-faint); margin: 0; }

/* ---------- Hero load reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); animation: rise 0.9s var(--ease) forwards; }
.reveal[data-r="1"]{animation-delay:.05s} .reveal[data-r="2"]{animation-delay:.16s} .reveal[data-r="3"]{animation-delay:.28s}
.reveal[data-r="4"]{animation-delay:.40s} .reveal[data-r="5"]{animation-delay:.56s} .reveal[data-r="6"]{animation-delay:.68s}
.reveal[data-r="7"]{animation-delay:.80s} .reveal[data-r="8"]{animation-delay:1s}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ---------- Scroll reveal ---------- */
.r { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0ms); }
.r.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .r { opacity: 1 !important; transform: none !important; }
}
