@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Merriweather:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --pine: #071a13;
  --fern: #18382a;
  --gold: #e7b264;
  --paper: #f1ebdd;
  --paper-deep: #e7dfcf;
  --ink: #102219;
  --moss: #91a67f;
  --ember: #c9663d;
  --mist: #cad5c5;
  --white: #fffdf7;
  --serif: 'Merriweather', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --wrap: min(1380px, calc(100% - 96px));
  --shadow: 0 24px 70px rgba(7, 26, 19, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--pine); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
body.menu-open, body.calendar-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, summary { font: inherit; }
::selection { color: var(--pine); background: var(--gold); }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; padding: 10px 16px; color: var(--pine); background: var(--gold); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.grain { position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: .12; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E"); }
.fireflies { position: absolute; inset: 0 0 auto; height: 100vh; z-index: 3; pointer-events: none; overflow: hidden; }
.fireflies i { position: absolute; left: var(--x); top: var(--y); width: 3px; height: 3px; border-radius: 50%; background: #ffe3a2; box-shadow: 0 0 12px 3px rgba(255, 216, 124, .52); animation: drift var(--duration) ease-in-out var(--delay) infinite alternate; }
@keyframes drift { from { transform: translate(-8px, 6px); opacity: .1; } 45% { opacity: .95; } to { transform: translate(18px, -24px); opacity: .25; } }

.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; color: #2e5b43; font-size: .73rem; font-weight: 800; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow.gold { color: var(--gold); }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.65; }
h1, h2, h3 { margin: 0; font-family: var(--serif); text-wrap: balance; }
h2 { font-size: clamp(3.1rem, 6.2vw, 6.4rem); font-weight: 600; line-height: .94; letter-spacing: -.035em; }
h2 em { color: #2e7047; font-weight: 500; }
.dark-section h2 em, .archive-teaser h2 em, .archive-memory h2 em { color: var(--gold); }
p { text-wrap: pretty; }
.paper-section { position: relative; padding: 130px 0; background: var(--paper); }
.dark-section { position: relative; color: var(--white); background: var(--pine); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 16px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; font-size: .83rem; font-weight: 800; letter-spacing: .03em; line-height: 1.1; text-decoration: none; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button-gold { color: var(--pine); background: var(--gold); }
.button-gold:hover { background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.52); }
.button-outline-light:hover { color: var(--pine); background: var(--white); border-color: var(--white); }
.button-small { min-height: 42px; padding: 10px 18px; }
.button-large { min-height: 64px; padding-inline: 30px; }
.ticket-cta:not(.button-small):not(.hero-ticket-cta) { min-height: 60px; padding-inline: 28px; font-size: .9rem; }
.site-nav .ticket-cta.button-small { min-height: 48px; padding-inline: 20px; }
.button-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid currentColor; font-size: .79rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; }
.text-link.on-dark { color: var(--white); }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
[data-page-shell] { transition: opacity .16s ease; }
[data-page-shell][aria-busy="true"] { opacity: .82; }

@media (prefers-reduced-motion: reduce) {
  [data-page-shell] { transition: none; }
  .mobile-ticket { transition: none; }
}

.site-header { position: fixed; z-index: 100; top: 0; left: 0; display: flex; width: 100%; min-height: 82px; align-items: center; justify-content: flex-end; padding: 12px 44px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.13); transition: background .25s, min-height .25s, box-shadow .25s; }
.site-header.is-scrolled, .site-header.header-solid { min-height: 68px; background: rgba(7,26,19,.92); box-shadow: 0 12px 36px rgba(0,0,0,.14); backdrop-filter: blur(18px) saturate(130%); }
body.menu-open .site-header { background: var(--pine); box-shadow: none; backdrop-filter: none; }
.site-header > .brand { position: absolute; left: 50%; transform: translateX(-50%); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-header-lockup { gap: 10px; line-height: 1; }
.brand-header-lockup img { width: min(380px, 26vw); height: auto; }
.brand-header-lockup > small { color: var(--gold); font-size: .55rem; font-weight: 800; letter-spacing: .12em; white-space: nowrap; text-transform: uppercase; }
.brand-wordmark { gap: 10px; font-family: var(--sans); line-height: 1; }
.brand-wordmark > span { display: block; font-size: clamp(.8rem, 1vw, 1rem); font-weight: 800; letter-spacing: -.025em; white-space: nowrap; }
.brand-wordmark > small { margin: 0; color: var(--gold); font-size: .58rem; font-weight: 800; letter-spacing: .12em; white-space: nowrap; text-transform: uppercase; }
.brand-wordmark > small::before { margin-right: 10px; color: rgba(255,255,255,.52); content: '·'; }
.brand-mark { width: 46px; height: 46px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.brand strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav > a:not(.button) { position: relative; font-size: .75rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.site-nav > a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; color: inherit; background: none; border: 0; }

.hero { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); background: var(--pine); }
.hero-picture { position: absolute; inset: 0; display: block; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center top; transform: scale(1.35) translate3d(0, -12.8%, 0); transform-origin: center; will-change: transform; }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,12,.9) 0%, rgba(3,18,12,.52) 42%, rgba(3,18,12,.25) 68%, rgba(3,18,12,.66) 100%), linear-gradient(0deg, rgba(3,18,12,.86) 0%, transparent 55%); }
.hero-rings { position: absolute; top: 15%; right: -11vw; width: min(52vw, 800px); aspect-ratio: 1; border: 1px solid rgba(231,178,100,.23); border-radius: 50%; box-shadow: 0 0 0 78px rgba(231,178,100,.06), 0 0 0 160px rgba(231,178,100,.04), 0 0 0 260px rgba(231,178,100,.025); }
.hero-content { position: relative; z-index: 4; display: flex; min-height: 100svh; flex-direction: column; justify-content: flex-end; padding: 150px 0 70px; }
.hero-kicker { position: absolute; top: 145px; left: 0; font-size: .73rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-photo-year { position: absolute; top: 178px; left: 0; margin: 0; color: var(--gold); font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-logo { width: clamp(480px, 48vw, 700px); height: auto; align-self: center; margin: 0 0 18px; filter: drop-shadow(0 20px 38px rgba(3,18,12,.38)); }
.hero-ticket-row { display: flex; justify-content: center; margin-bottom: 32px; }
.hero-ticket-cta { min-height: 68px; padding-inline: 34px; font-size: 1rem; white-space: nowrap; }
.hero-bottom { display: grid; grid-template-columns: 240px minmax(260px, 550px) auto; align-items: end; gap: 42px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.28); }
.hero-bottom > p { margin: 0; color: rgba(255,255,255,.85); font-size: .98rem; }
.date-lockup { display: flex; align-items: center; gap: 20px; }
.date-lockup strong { color: var(--gold); font-family: var(--serif); font-size: 2.9rem; line-height: .78; }
.date-lockup span { font-size: .73rem; font-weight: 700; line-height: 1.55; text-transform: uppercase; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-caption { position: absolute; z-index: 4; right: 23px; bottom: 40%; font-size: .58rem; font-weight: 700; letter-spacing: .12em; opacity: .72; transform: rotate(90deg) translateX(100%); transform-origin: right bottom; text-transform: uppercase; }

.countdown-band { color: var(--pine); background: var(--gold); }
.countdown-inner { display: grid; min-height: 120px; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.countdown-inner p { margin: 0; }
.countdown-inner .eyebrow { display: block; margin: 0 0 5px; color: var(--pine); }
.countdown-inner strong { font-family: var(--serif); font-size: 1.6rem; line-height: 1; }
.countdown { display: grid; grid-template-columns: repeat(3, minmax(68px, auto)); gap: 24px; }
.countdown span { display: grid; gap: 7px; align-content: center; }
.countdown b { font-family: var(--serif); font-size: 3rem; font-variant-numeric: tabular-nums; line-height: .72; }
.countdown small { font-size: .62rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.countdown-inner > a { justify-self: end; }

.calendar-dialog { width: min(620px, calc(100% - 40px)); max-height: min(760px, calc(100dvh - 40px)); margin: auto; padding: 36px; color: var(--ink); background: var(--paper); border: 0; border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.calendar-dialog::backdrop { background: rgba(3,18,12,.78); backdrop-filter: blur(7px); }
.calendar-dialog[open] { animation: calendar-in .22s ease-out; }
@keyframes calendar-in { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.calendar-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.calendar-dialog-head h2 { max-width: 460px; font-size: clamp(2.7rem, 7vw, 4.5rem); line-height: .88; }
.calendar-close { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; padding: 0; color: var(--ink); background: transparent; border: 1px solid rgba(16,34,25,.28); border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.calendar-close:hover { color: var(--paper); background: var(--pine); }
.calendar-intro { max-width: 48ch; margin: 24px 0 28px; color: #4c5a50; }
.calendar-options { display: grid; gap: 10px; }
.calendar-option { display: grid; min-height: 76px; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; padding: 14px 18px; color: var(--ink); background: rgba(255,253,247,.72); border: 1px solid rgba(16,34,25,.18); border-radius: 12px; text-decoration: none; transition: border-color .2s, background .2s, transform .2s; }
.calendar-option:hover { background: var(--white); border-color: #45684f; transform: translateY(-1px); }
.calendar-option span { display: grid; gap: 2px; }
.calendar-option strong { font-family: var(--serif); font-size: 1.35rem; line-height: 1.1; }
.calendar-option small { color: #526257; font-size: .68rem; }
.calendar-option i { font-style: normal; }
.calendar-recommended { padding: 5px 8px; color: var(--paper); background: var(--pine); border-radius: 999px; font-size: .53rem; letter-spacing: .08em; text-transform: uppercase; }

.manifesto-grid { display: grid; grid-template-columns: 110px minmax(0, 1fr) 300px; align-items: start; gap: 60px; }
.section-marker { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; color: #54715e; }
.section-marker span { font-size: .72rem; font-weight: 800; }
.section-marker i { height: 1px; background: currentColor; }
.section-marker small { grid-column: 1 / -1; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.manifesto-copy { max-width: 850px; }
.manifesto-copy .lede { max-width: 680px; margin-top: 42px; }
.manifesto-note { margin-top: 90px; padding: 28px 0 0; border-top: 1px solid rgba(16,34,25,.3); }
.manifesto-note svg { width: 86px; margin-bottom: 16px; fill: none; stroke: #42644d; stroke-width: 1.3; }
.manifesto-note p { margin: 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.35; }

.lineup { overflow: hidden; background: var(--paper-deep); }
.lineup-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); align-items: center; gap: clamp(55px, 7vw, 110px); }
.campaign-art { position: relative; display: block; overflow: hidden; border-radius: 3px; box-shadow: var(--shadow); transform: rotate(-.65deg); }
.campaign-art::after { position: absolute; inset: 12px; border: 1px solid rgba(231,178,100,.34); content: ''; pointer-events: none; }
.campaign-art img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.lineup-copy h2 { margin-bottom: 42px; }
.lineup-list { margin: 0 0 42px; padding: 0; border-top: 1px solid rgba(16,34,25,.24); list-style: none; }
.lineup-list li { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; min-height: 68px; padding: 12px 0; border-bottom: 1px solid rgba(16,34,25,.2); }
.lineup-list span { display: flex; align-items: baseline; gap: 13px; }
.lineup-list strong { font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.85rem); font-weight: 600; line-height: 1; }
.lineup-list small { color: #4d705a; font-size: .59rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lineup-list time { color: #315b43; font-size: .7rem; font-weight: 800; letter-spacing: .1em; white-space: nowrap; }
.lineup-list .lineup-headliner strong { color: #8b4b31; }
.lineup-list .lineup-headliner small { color: #8b4b31; }

.headliner { display: grid; min-height: 950px; grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr); align-items: stretch; overflow: hidden; }
.headliner-image-wrap { position: relative; min-height: 820px; }
.headliner-image-wrap::after { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--pine) 100%), linear-gradient(0deg, rgba(7,26,19,.45), transparent 50%); content: ''; }
.headliner-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.image-credit { position: absolute; z-index: 2; bottom: 34px; left: 38px; padding: 8px 13px; color: var(--pine); background: var(--gold); border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.headliner-copy { position: relative; z-index: 2; align-self: center; max-width: 630px; padding: 100px 9vw 100px 7vw; }
.headliner-copy h2 { margin-bottom: 42px; font-size: clamp(5rem, 8vw, 8.6rem); }
.headliner-copy .lede { color: var(--mist); }
.headliner-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 45px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.headliner-meta span { display: grid; gap: 4px; padding: 18px 12px 18px 0; }
.headliner-meta small { color: var(--moss); font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.headliner-meta strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.vertical-word { position: absolute; right: -7px; bottom: 30px; margin: 0; color: rgba(255,255,255,.04); font-family: var(--serif); font-size: clamp(7rem, 12vw, 13rem); font-weight: 700; line-height: .75; writing-mode: vertical-rl; }

.section-heading { max-width: 880px; }
.section-heading .lede { max-width: 620px; margin-top: 36px; }
.day-trail { position: relative; max-width: 1040px; margin: 90px 0 0 auto; }
.day-trail::before { position: absolute; top: 12px; bottom: 12px; left: 160px; width: 1px; background: rgba(16,34,25,.25); content: ''; }
.trail-stop { position: relative; display: grid; grid-template-columns: 130px 1fr; gap: 60px; padding: 0 0 64px; }
.trail-stop:last-child { padding-bottom: 0; }
.trail-stop::before { position: absolute; top: 8px; left: 155px; width: 11px; height: 11px; background: var(--paper); border: 2px solid #41634c; border-radius: 50%; content: ''; }
.trail-time { color: #46664f; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.trail-stop h3 { font-size: clamp(2rem, 3.5vw, 3.6rem); }
.trail-stop p { max-width: 630px; margin: 12px 0 0; color: #4c5a50; }
.trail-stop:nth-child(even) { margin-left: 12%; }
.experience-field-notes { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: 18px; margin: 110px 0 0; }
.field-note-photo { overflow: hidden; aspect-ratio: 5 / 4; background: var(--fern); border-radius: 4px; box-shadow: var(--shadow); }
.field-note-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9); transition: filter .35s, transform .5s; }
.field-note-photo:hover img { filter: saturate(1); transform: scale(1.018); }
.field-note-photo-dance { transform: translateY(46px); }
.field-note-photo-dance img { object-position: 38% center; }
.experience-field-notes figcaption { grid-column: 1 / -1; margin-top: 38px; color: #536057; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.experience-field-notes figcaption span { margin-right: 12px; color: #315b43; }

.place { display: grid; min-height: 900px; grid-template-columns: 1.1fr .9fr; align-items: stretch; }
.place-photo { min-height: 720px; overflow: hidden; }
.place-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; filter: saturate(.82) contrast(1.03); }
.place-copy { align-self: center; max-width: 650px; padding: 100px 8vw; }
.place-copy h2 { margin-bottom: 40px; }
.place-copy > p:not(.eyebrow) { color: var(--mist); font-size: 1.08rem; }
.place-copy address { margin: 38px 0; padding-left: 22px; border-left: 2px solid var(--gold); color: var(--white); font-family: var(--serif); font-size: 1.5rem; font-style: normal; line-height: 1.35; }

.archive-teaser { position: relative; display: flex; min-height: 820px; align-items: flex-end; overflow: hidden; color: var(--white); background: #020c08; }
.archive-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .76; }
.archive-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,18,12,.92) 0%, rgba(4,18,12,.55) 48%, rgba(4,18,12,.25)), linear-gradient(0deg, rgba(4,18,12,.86), transparent 70%); }
.archive-teaser-copy { position: relative; z-index: 2; padding-bottom: 90px; }
.archive-teaser-copy h2 { max-width: 950px; }
.archive-teaser-copy > p:not(.eyebrow) { max-width: 580px; margin: 30px 0; color: var(--mist); }

.plan-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.plan-list { border-top: 1px solid rgba(16,34,25,.25); }
.plan-list article { display: grid; grid-template-columns: 50px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid rgba(16,34,25,.2); }
.plan-list article > span { color: #53715d; font-size: .66rem; font-weight: 800; }
.plan-list h3 { font-size: 1.75rem; }
.plan-list p { margin: 5px 0 0; color: #536057; }

.faq { padding: 130px 0; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.2); }
details { border-bottom: 1px solid rgba(255,255,255,.18); }
summary { display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary::after { color: var(--gold); font-family: var(--sans); font-size: 1.3rem; content: '+'; }
details[open] summary::after { content: '−'; }
details p { max-width: 680px; margin: -5px 0 28px; color: var(--mist); }
details a { color: var(--gold); }

.final-cta { color: var(--pine); background: var(--gold); }
.final-cta-inner { display: grid; min-height: 560px; align-content: center; justify-items: center; text-align: center; }
.final-cta .eyebrow { color: var(--pine); }
.final-cta h2 em { color: var(--pine); }
.final-cta .button { margin-top: 42px; color: var(--white); background: var(--pine); }
.final-cta .button:hover { color: var(--pine); background: var(--white); }

.site-footer { padding: 80px 0 24px; color: var(--white); background: #04120d; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; }
.footer-brand { margin-bottom: 22px; }
.footer-logo { width: 170px; }
.footer-grid p { max-width: 300px; color: #91a69a; }
.footer-grid h3 { margin-bottom: 18px; font-family: var(--sans); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin: 4px 0; color: #bdc9c1; font-size: .81rem; text-decoration: none; }
.footer-grid > div:first-child > a:not(.brand), .footer-grid span { color: #bdc9c1; font-size: .81rem; text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 70px; padding-top: 20px; color: #82958a; border-top: 1px solid rgba(255,255,255,.13); font-size: .65rem; }
.archive-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.archive-footer a { color: var(--mist); font-size: .82rem; font-weight: 700; }
.mobile-ticket { display: none; }

.music-control { position: fixed; z-index: 110; bottom: 24px; left: 24px; display: grid; max-width: min(320px, calc(100vw - 48px)); gap: 8px; }
.music-toggle { display: inline-flex; min-height: 48px; align-items: center; gap: 10px; padding: 10px 18px 10px 11px; color: var(--white); background: rgba(7,26,19,.94); border: 1px solid rgba(231,178,100,.52); border-radius: 999px; box-shadow: 0 12px 36px rgba(0,0,0,.24); font-size: .72rem; font-weight: 800; line-height: 1.2; cursor: pointer; backdrop-filter: blur(14px); transition: color .2s, background .2s, transform .2s; }
.music-toggle:hover { color: var(--pine); background: var(--gold); transform: translateY(-2px); }
.music-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.music-toggle:disabled { cursor: wait; opacity: .72; }
.music-note { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; color: var(--pine); background: var(--gold); border-radius: 50%; font-size: .9rem; }
.is-playing .music-note { color: var(--gold); background: var(--fern); }
.music-status { max-width: 260px; margin: 0; padding: 7px 10px; color: var(--white); background: rgba(7,26,19,.94); border-radius: 6px; font-size: .67rem; line-height: 1.4; }
.music-status:empty { display: none; }

/* Archive */
.archive-page { background: var(--paper); }
.archive-hero { position: relative; display: flex; min-height: 92svh; align-items: flex-end; overflow: hidden; color: var(--white); background: #0c1c13; }
.archive-hero-bg { position: absolute; inset: 0; }
.archive-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: saturate(.78); }
.archive-hero-bg::after { position: absolute; inset: 0; background: linear-gradient(0deg, #0b1b12 0%, transparent 60%); content: ''; }
.archive-hero-content { position: relative; z-index: 2; padding-bottom: 90px; }
.archive-hero h1 { font-size: clamp(5rem, 11vw, 10rem); font-weight: 600; line-height: .82; letter-spacing: -.045em; }
.archive-hero h1 span, .archive-hero h1 em { display: block; }
.archive-hero h1 em { color: var(--gold); font-weight: 500; }
.archive-hero-content > p:not(.eyebrow) { max-width: 570px; margin: 40px 0 0; color: var(--mist); font-size: 1.1rem; }
.archive-stamp { position: absolute; right: 0; bottom: 95px; display: flex; width: 190px; height: 190px; align-items: center; justify-content: center; gap: 12px; border: 1px solid rgba(231,178,100,.65); border-radius: 50%; transform: rotate(8deg); }
.archive-stamp b { color: var(--gold); font-family: var(--serif); font-size: 4rem; line-height: 1; }
.archive-stamp span { font-size: .66rem; font-weight: 800; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.archive-back { position: absolute; z-index: 3; right: 32px; bottom: 32px; font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.archive-film-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 90px; }
.film-frame { margin: 0; padding: 13px; background: #faf6ed; box-shadow: var(--shadow); transform: rotate(1deg); }
.film-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--pine); }
.film-frame figcaption { padding: 12px 5px 3px; color: #647067; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.archive-lineup { padding: 130px 0; }
.section-heading.on-dark { color: var(--white); }
.archive-collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 270px; gap: 18px; margin-top: 75px; }
.archive-collage figure { position: relative; margin: 0; overflow: hidden; background: var(--fern); }
.archive-collage .collage-tall { grid-row: span 2; }
.archive-collage .collage-wide { grid-column: span 2; }
.archive-collage img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: filter .35s, transform .5s; }
.archive-collage figure:hover img { filter: saturate(1); transform: scale(1.025); }
.archive-collage figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: end; justify-content: space-between; gap: 10px; padding: 38px 18px 16px; background: linear-gradient(transparent, rgba(4,18,12,.92)); }
.archive-collage strong { font-family: var(--serif); font-size: 1.45rem; }
.archive-collage span { color: var(--gold); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.archive-field-notes { overflow: hidden; background: var(--paper-deep); }
.archive-field-notes-heading { display: grid; grid-template-columns: 1fr minmax(320px, .75fr); align-items: end; gap: 80px; }
.archive-field-notes-heading > p { max-width: 560px; margin: 0 0 8px; color: #536057; }
.field-journal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 18px; margin-top: 75px; }
.field-journal-grid figure { position: relative; margin: 0; overflow: hidden; background: var(--fern); border-radius: 3px; }
.field-journal-grid .field-journal-wide { grid-column: span 2; }
.field-journal-grid .field-journal-tall { grid-row: span 2; }
.field-journal-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: filter .35s, transform .5s; }
.field-journal-grid figure:hover img { filter: saturate(1); transform: scale(1.02); }
.field-journal-grid figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 44px 16px 14px; color: var(--white); background: linear-gradient(transparent, rgba(4,18,12,.86)); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field-journal-caption { margin: 24px 0 0; color: #536057; font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.schedule-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.schedule-list { position: relative; margin: 0; padding: 0; list-style: none; }
.schedule-list::before { position: absolute; top: 15px; bottom: 15px; left: 72px; width: 1px; background: rgba(16,34,25,.22); content: ''; }
.schedule-list li { position: relative; display: grid; grid-template-columns: 72px 1fr; gap: 28px; padding-bottom: 36px; }
.schedule-list li::before { position: absolute; top: 8px; left: 67px; width: 9px; height: 9px; background: var(--paper); border: 2px solid #4b6b54; border-radius: 50%; content: ''; }
.schedule-list time { color: #496650; font-size: .69rem; font-weight: 800; }
.schedule-list strong { display: block; font-family: var(--serif); font-size: 1.7rem; line-height: 1.05; }
.schedule-list span { display: block; margin-top: 7px; color: #5b675e; font-size: .8rem; }
.archive-memory { display: grid; min-height: 820px; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--pine); }
.archive-memory > img { width: 100%; height: 100%; object-fit: cover; }
.archive-memory-copy { align-self: center; max-width: 680px; padding: 90px 8vw; }
.archive-memory-copy p:not(.eyebrow) { margin: 34px 0; color: var(--mist); }

/* Legal and policy pages */
.legal-page { background: var(--paper); }
.legal-main { min-height: 70vh; padding: 180px 0 110px; }
.legal-wrap { width: min(760px, calc(100% - 40px)); margin-inline: auto; }
.legal-wrap h1 { margin-bottom: 30px; color: var(--ink); font-size: clamp(4rem, 9vw, 7rem); font-weight: 600; line-height: .88; letter-spacing: -.05em; }
.legal-wrap .legal-lede { margin-bottom: 60px; color: #31473a; font-family: var(--serif); font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.35; }
.legal-wrap h2 { margin: 54px 0 14px; color: var(--ink); font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: -.02em; }
.legal-wrap p { color: #45544a; }
.legal-wrap a:not(.button) { color: #245d3a; font-weight: 700; }

/* Ticket checkout */
.ticket-page { color: var(--white); background: var(--pine); }
.ticket-main { min-height: 100vh; padding: 156px 0 120px; background: radial-gradient(circle at 82% 8%, rgba(231,178,100,.16), transparent 34%), var(--pine); }
.ticket-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: end; gap: 80px; }
.ticket-intro h1 { color: var(--white); font-size: clamp(4.5rem, 9vw, 8.4rem); font-weight: 600; line-height: .82; letter-spacing: -.05em; }
.ticket-intro h1 em { color: var(--gold); font-weight: 500; }
.ticket-facts { display: grid; margin: 0; border-top: 1px solid rgba(255,255,255,.2); }
.ticket-facts div { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.ticket-facts dt { color: var(--moss); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.ticket-facts dd { margin: 0; color: var(--white); font-family: var(--serif); font-size: 1.05rem; line-height: 1.4; }
.ticket-checkout { margin-top: 100px; padding: clamp(28px, 5vw, 64px); color: var(--ink); background: var(--paper); border-radius: 6px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.ticket-checkout-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); align-items: end; gap: 70px; margin-bottom: 38px; }
.ticket-checkout-heading h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.ticket-checkout-heading > p { max-width: 47ch; margin: 0; color: #45544a; }
.ticket-widget-shell { width: 100%; min-height: 704px; overflow: hidden; background: var(--white); border: 1px solid rgba(16,34,25,.14); border-radius: 4px; }
.ticket-widget-shell.is-local-preview { min-height: 0; }
.ticket-widget { width: 100%; min-height: 650px; overflow: hidden; }
.ticket-widget iframe { display: block; width: 100% !important; max-width: 100%; border: 0; }
.ticket-status { margin: 0; padding: 14px 18px; color: #3f5548; background: var(--paper-deep); font-size: .75rem; font-weight: 700; }
.ticket-status.is-error { color: #6e2f1f; background: #f3ddd4; }
.ticket-status.is-complete { color: #17492d; background: #dce9df; }
.ticket-noscript { padding: 18px; }
.ticket-fallback { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 28px; }
.ticket-fallback p { margin: 0; color: #536057; }
.ticket-policy-note { margin: 30px 0 0; color: #536057; font-size: .82rem; }
.ticket-policy-note a { color: #245d3a; font-weight: 800; }

@media (max-width: 1100px) {
  :root { --wrap: min(100% - 56px, 980px); }
  .site-header { padding-inline: 28px; }
  .site-nav { gap: 18px; }
  .hero-bottom { grid-template-columns: 210px 1fr; }
  .hero-actions { grid-column: 2; }
  .manifesto-grid { grid-template-columns: 80px 1fr; }
  .manifesto-note { grid-column: 2; max-width: 500px; margin-top: 20px; }
  .lineup-grid { grid-template-columns: 1fr 1fr; gap: 55px; }
  .headliner { grid-template-columns: 1fr 1fr; }
  .headliner-copy { padding-inline: 5vw; }
  .place-copy { padding-inline: 5vw; }
  .plan-grid, .faq-grid, .archive-film-grid, .schedule-grid { gap: 65px; }
  .archive-collage { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .ticket-intro, .ticket-checkout-heading { gap: 44px; }
}

@media (max-width: 1600px) {
  .site-header { min-height: 68px; padding-inline: 18px; }
  .brand-header-lockup img { width: min(320px, 50vw); }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; }
  .menu-toggle span { width: 24px; height: 1px; background: currentColor; transform-origin: center; transition: opacity .2s, transform .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .site-nav { position: fixed; z-index: 99; inset: 0; display: flex; width: 100%; height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: clamp(16px, 3vh, 24px); padding: calc(96px + env(safe-area-inset-top)) 30px calc(110px + env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; visibility: hidden; color: var(--white); background: var(--pine); opacity: 0; transform: translateY(-10px); transition: opacity .25s, transform .25s, visibility .25s; -webkit-overflow-scrolling: touch; }
  .site-nav.is-open { visibility: visible; background: var(--pine); opacity: 1; transform: none; }
  .site-nav > a:not(.button) { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; line-height: 1; }
  .site-nav .ticket-cta { width: min(100%, 360px); min-height: 56px; margin-top: 8px; }
}

@media (max-width: 820px) {
  :root { --wrap: min(100% - 36px, 720px); }
  .grain { opacity: .07; }
  .hero-image { transform: none; }
  .hero-content { padding-bottom: 42px; }
  .hero-kicker { top: 112px; }
  .hero-photo-year { top: 155px; }
  .hero-logo { width: min(78vw, 500px); margin-bottom: 22px; }
  .hero-ticket-row { margin-bottom: 48px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 25px; }
  .hero-actions { grid-column: 1; flex-wrap: wrap; }
  .hero-caption { display: none; }
  .countdown-inner { grid-template-columns: 1fr auto; min-height: 140px; }
  .countdown-inner > a { grid-column: 1 / -1; justify-self: start; margin-top: -25px; }
  .countdown { gap: 18px; }
  .countdown b { font-size: 2.3rem; }
  .paper-section, .faq, .archive-lineup { padding-block: 90px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-note, .manifesto-copy { grid-column: 1; }
  .section-marker { width: 180px; }
  .lineup-grid { grid-template-columns: 1fr; }
  .campaign-art { width: min(100%, 680px); margin-inline: auto; transform: none; }
  .headliner { grid-template-columns: 1fr; }
  .headliner-image-wrap { min-height: 70svh; }
  .headliner-image-wrap::after { background: linear-gradient(0deg, var(--pine), transparent 45%); }
  .headliner-copy { padding: 10px 24px 90px; }
  .headliner-meta { grid-template-columns: 1fr 1fr; }
  .headliner-meta span:last-child { grid-column: 1 / -1; }
  .vertical-word { display: none; }
  .day-trail { margin-top: 65px; }
  .day-trail::before { left: 103px; }
  .trail-stop, .trail-stop:nth-child(even) { grid-template-columns: 78px 1fr; gap: 40px; margin-left: 0; }
  .trail-stop::before { left: 98px; }
  .experience-field-notes { margin-top: 85px; }
  .place { grid-template-columns: 1fr; }
  .place-photo { min-height: 55svh; }
  .place-copy { padding: 80px 24px; }
  .archive-teaser { min-height: 740px; }
  .plan-grid, .faq-grid, .archive-film-grid, .schedule-grid { grid-template-columns: 1fr; gap: 65px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .archive-stamp { right: 0; bottom: 50px; width: 130px; height: 130px; }
  .archive-stamp b { font-size: 3rem; }
  .archive-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .archive-collage .collage-wide { grid-column: span 2; }
  .archive-field-notes-heading { grid-template-columns: 1fr; gap: 30px; }
  .field-journal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .field-journal-grid .field-journal-wide { grid-column: span 2; }
  .archive-memory { grid-template-columns: 1fr; }
  .archive-memory > img { height: 60svh; }
  .ticket-intro, .ticket-checkout-heading { grid-template-columns: 1fr; }
  .ticket-intro { gap: 56px; }
  .ticket-checkout-heading { gap: 22px; }
  .ticket-fallback { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  :root { --wrap: calc(100% - 28px); }
  .home-page { padding-bottom: 64px; }
  h2 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .brand-header-lockup { gap: 7px; }
  .brand-header-lockup img { width: min(230px, 58vw); }
  .brand-header-lockup > small { font-size: .43rem; letter-spacing: .08em; }
  .brand-wordmark { display: grid; justify-items: center; gap: 4px; text-align: center; }
  .brand-wordmark > span { font-size: .72rem; }
  .brand-wordmark > small { font-size: .5rem; letter-spacing: .1em; }
  .brand-wordmark > small::before { display: none; }
  .brand strong { font-size: 1.08rem; }
  .legal-page .site-header .button { width: 46px; min-height: 46px; padding: 0; font-size: 0; }
  .legal-page .site-header .button::before { content: '←'; font-size: 1rem; }
  .hero { min-height: 900px; }
  .hero-image { object-position: center top; }
  .hero-content { min-height: 900px; }
  .hero-kicker { max-width: 240px; line-height: 1.5; }
  .hero-photo-year { top: 168px; max-width: 250px; line-height: 1.45; }
  .hero-logo { width: min(82vw, 360px); margin-bottom: 20px; }
  .hero-ticket-row { margin-bottom: 42px; }
  .hero-ticket-cta { width: min(100%, 320px); min-height: 60px; padding-inline: 24px; }
  .hero-bottom > p { font-size: .88rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .countdown-inner { display: block; padding: 24px 0; }
  .countdown { width: 100%; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0 18px; }
  .countdown span { gap: 8px; }
  .countdown-inner > a { margin: 0; }
  .countdown small { font-size: .57rem; }
  .calendar-dialog { width: 100%; max-width: none; max-height: calc(100dvh - 24px); margin: auto 0 0; padding: 28px 18px calc(84px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; }
  .calendar-dialog-head h2 { font-size: 3.1rem; }
  .calendar-option { min-height: 72px; padding: 12px 14px; }
  .calendar-recommended { grid-column: 2; grid-row: 1; }
  .manifesto-note { margin-top: 0; }
  .campaign-art img { aspect-ratio: 9 / 16; }
  .lineup-list span { display: grid; gap: 3px; }
  .headliner-image-wrap { min-height: 520px; }
  .headliner-copy h2 { font-size: 5.2rem; }
  .headliner-meta { grid-template-columns: 1fr; }
  .headliner-meta span:last-child { grid-column: auto; }
  .day-trail::before { left: 10px; }
  .trail-stop, .trail-stop:nth-child(even) { grid-template-columns: 1fr; gap: 8px; padding-left: 36px; }
  .trail-stop::before { left: 5px; }
  .trail-time { margin-bottom: 3px; }
  .experience-field-notes { grid-template-columns: 1fr; gap: 14px; margin-top: 70px; }
  .field-note-photo-dance { transform: none; }
  .experience-field-notes figcaption { grid-column: 1; margin-top: 8px; line-height: 1.6; }
  .archive-teaser-copy { padding-bottom: 60px; }
  .archive-teaser-copy h2 { font-size: 3.6rem; }
  .plan-list article { grid-template-columns: 34px 1fr; }
  .faq-grid { gap: 45px; }
  summary { min-height: 72px; font-size: 1.2rem; }
  .final-cta-inner { min-height: 480px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .mobile-ticket { position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: flex; min-height: 72px; height: calc(72px + env(safe-area-inset-bottom)); align-items: center; justify-content: space-between; padding: 9px 16px calc(9px + env(safe-area-inset-bottom)); color: var(--pine); background: var(--gold); text-decoration: none; box-shadow: 0 -8px 30px rgba(0,0,0,.15); transform: translateY(110%); transition: transform .3s ease; }
  .mobile-ticket.is-visible { transform: translateY(0); }
  body.menu-open .mobile-ticket { transform: translateY(110%); }
  .mobile-ticket span { font-size: .58rem; font-weight: 800; letter-spacing: .08em; }
  .mobile-ticket strong { font-size: .86rem; white-space: nowrap; }
  .music-control { bottom: calc(14px + env(safe-area-inset-bottom)); left: 14px; max-width: calc(100vw - 28px); }
  .music-control.has-mobile-ticket { bottom: calc(84px + env(safe-area-inset-bottom)); }
  .music-toggle { min-height: 46px; max-width: 100%; }
  .archive-hero { min-height: 780px; }
  .archive-hero h1 { font-size: clamp(4rem, 20vw, 6.5rem); }
  .archive-stamp { display: none; }
  .archive-back { right: 18px; bottom: 18px; }
  .archive-collage { display: block; }
  .archive-collage figure { height: 380px; margin-bottom: 14px; }
  .field-journal-grid { display: block; }
  .field-journal-grid figure { height: 360px; margin-bottom: 14px; }
  .schedule-list::before { left: 58px; }
  .schedule-list li { grid-template-columns: 58px 1fr; gap: 22px; }
  .schedule-list li::before { left: 53px; }
  .archive-memory-copy { padding: 70px 22px; }
  .legal-main { padding: 135px 0 80px; }
  .ticket-page .site-header .button { width: 46px; min-height: 46px; padding: 0; font-size: 0; }
  .ticket-page .site-header .button::before { content: '\2190'; font-size: 1rem; }
  .ticket-main { padding: 126px 0 80px; }
  .ticket-intro h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .ticket-facts div { grid-template-columns: 62px 1fr; gap: 16px; }
  .ticket-checkout { width: calc(100% - 20px); margin-top: 64px; padding: 22px 10px 30px; }
  .ticket-checkout-heading, .ticket-fallback, .ticket-policy-note { margin-inline: 8px; }
  .ticket-widget-shell { min-height: 704px; }
  .ticket-fallback .button { width: 100%; padding-inline: 14px; text-align: center; }
}

@media (max-width: 380px) {
  .brand-header-lockup { gap: 6px; }
  .brand-header-lockup img { width: 40vw; }
  .brand-header-lockup > small { font-size: .4rem; letter-spacing: .06em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .fireflies { display: none; }
  .music-toggle { transform: none !important; }
}
