:root {
    --forest-950: #10251e;
    --forest-900: #183229;
    --forest-800: #244a3c;
    --forest-700: #356454;
    --sage: #93a898;
    --moss: #bbc8a8;
    --clay: #c9744d;
    --clay-dark: #a85535;
    --cream: #f4f0e6;
    --paper: #fbf9f3;
    --ink: #18221e;
    --muted: #69736d;
    --line: rgba(24, 50, 41, .16);
    --serif: "Marcellus", Georgia, serif;
    --sans: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
a { color: inherit; }
.skip-link { position: fixed; top: .8rem; left: 50%; z-index: 100; padding: .75rem 1rem; border-radius: 999px; background: white; transform: translate(-50%, -200%); }
.skip-link:focus { transform: translate(-50%, 0); }

.site-header { position: fixed; top: 0; left: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.15rem clamp(1.2rem, 4vw, 4.5rem); color: white; transition: padding .3s, background .3s, color .3s, box-shadow .3s; }
.site-header.scrolled { padding-block: .75rem; background: rgba(251, 249, 243, .94); color: var(--forest-950); box-shadow: 0 8px 36px rgba(22, 41, 34, .08); backdrop-filter: blur(18px); }
.brand { display: inline-flex; gap: .75rem; align-items: center; text-decoration: none; }
.brand-mark { display: grid; width: 2.8rem; height: 2.8rem; flex: 0 0 auto; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.brand-mark svg { width: 1.85rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.2; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; letter-spacing: .02em; }
.brand-copy small { margin-top: .38rem; opacity: .66; font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; gap: clamp(1.2rem, 2.6vw, 2.5rem); align-items: center; font-size: .8rem; font-weight: 600; }
.main-nav a { position: relative; text-decoration: none; }
.main-nav a:not(.nav-cta)::after { position: absolute; bottom: -.4rem; left: 0; width: 100%; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .72rem 1rem; border: 1px solid rgba(255, 255, 255, .45); border-radius: 999px; }
.scrolled .nav-cta { border-color: var(--line); }
.menu-toggle { display: none; width: 2.6rem; height: 2.6rem; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; }
.menu-toggle span { display: block; width: 1rem; height: 1px; margin: .28rem auto; background: currentColor; transition: transform .25s; }

.hero { position: relative; display: flex; align-items: flex-end; min-height: max(700px, 100svh); padding: 10rem clamp(1.25rem, 6.5vw, 7.5rem) clamp(6rem, 11vh, 8.5rem); overflow: hidden; color: white; background: var(--forest-950); }
.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 27, 21, .92) 0%, rgba(10, 28, 22, .58) 48%, rgba(10, 24, 19, .18) 78%), linear-gradient(0deg, rgba(7, 22, 17, .52), transparent 45%); }
.hero-grain { position: absolute; inset: 0; opacity: .12; pointer-events: none; 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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; width: min(49rem, 74%); }
.eyebrow { display: flex; gap: .75rem; align-items: center; margin: 0 0 1.5rem; color: var(--clay); font-size: .67rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { width: 2.25rem; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(255,255,255,.7); }
.hero h1 { max-width: 48rem; margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 400; letter-spacing: -.045em; line-height: .96; text-wrap: balance; }
.hero-lead { max-width: 40rem; margin: 1.7rem 0 0; color: rgba(255,255,255,.76); font-size: clamp(.98rem, 1.4vw, 1.12rem); line-height: 1.75; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; margin-top: 2rem; }
.button { display: inline-flex; gap: 2rem; align-items: center; justify-content: center; min-height: 3.4rem; padding: .85rem 1.15rem  .85rem 1.4rem; border: 0; border-radius: 999px; font-size: .82rem; font-weight: 700; text-decoration: none; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--forest-950); }
.button-light:hover { background: white; }
.hero-link { padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 600; text-decoration: none; }
.altitude-card { position: absolute; right: clamp(1.25rem, 6.5vw, 7.5rem); bottom: clamp(6rem, 11vh, 8.5rem); z-index: 2; display: grid; width: 10rem; padding: 1.15rem; border: 1px solid rgba(255,255,255,.32); border-radius: 50% 50% .25rem .25rem; aspect-ratio: 1/1.2; align-content: center; text-align: center; backdrop-filter: blur(7px); }
.altitude-card span { color: rgba(255,255,255,.62); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
.altitude-card strong { margin: .35rem 0 .15rem; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.altitude-card small { color: rgba(255,255,255,.62); font-size: .6rem; line-height: 1.4; }
.scroll-cue { position: absolute; right: 2.2rem; bottom: 2.2rem; z-index: 3; display: grid; width: 2.6rem; height: 2.6rem; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; place-items: center; }
.scroll-cue span { width: .5rem; height: .5rem; border-right: 1px solid white; border-bottom: 1px solid white; transform: rotate(45deg) translate(-1px,-1px); }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6.5vw, 7.5rem); }
.section-kicker { display: flex; gap: .8rem; align-items: center; margin-bottom: clamp(3.2rem, 6vw, 5.5rem); color: var(--muted); }
.section-kicker span { display: grid; width: 2.1rem; height: 2.1rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .62rem; }
.section-kicker p { margin: 0; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.intro-heading h2, .section-title-row h2, .history-copy h2, .location h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5.2vw, 5.8rem); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.section-title-row h2 em { color: var(--clay); font-weight: 400; }
.intro-copy { padding-bottom: .45rem; }
.intro-copy > p { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.12rem); line-height: 1.85; }
.intro-copy a { display: inline-flex; gap: 2rem; margin-top: 1.6rem; padding-bottom: .45rem; border-bottom: 1px solid var(--forest-900); font-size: .8rem; font-weight: 700; text-decoration: none; }
.intro-visual { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(15rem, .6fr); margin-top: clamp(4rem, 8vw, 7rem); }
.intro-visual figure { height: clamp(27rem, 52vw, 45rem); margin: 0; overflow: hidden; }
.intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.place-note { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem, 4vw, 4rem); background: var(--moss); }
.place-note > span { margin-bottom: auto; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.place-note strong { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 400; line-height: 1.08; }
.place-note p { margin: 1.2rem 0 0; color: rgba(24,34,30,.66); font-size: .82rem; line-height: 1.7; }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 clamp(1.25rem, 6.5vw, 7.5rem) clamp(5rem, 9vw, 8rem); background: var(--paper); }
.fact { position: relative; padding: 2.3rem clamp(1rem, 3vw, 2.4rem); border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact > span { position: absolute; top: .8rem; right: 1rem; color: var(--muted); font-size: .58rem; }
.fact strong { display: block; font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3.2rem); font-weight: 400; }
.fact p { margin: .5rem 0 0; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.announcements { background: var(--cream); }
.section-title-row { display: grid; grid-template-columns: 1fr minmax(16rem, 25rem); gap: 4rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-title-row > p { margin: 0 0 .35rem; color: var(--muted); line-height: 1.75; }
.announcement-list { border-top: 1px solid var(--line); }
.announcement-card { position: relative; display: grid; grid-template-columns: minmax(8rem, .28fr) 1fr auto; gap: clamp(1rem, 4vw, 4rem); padding: 2rem 0; border-bottom: 1px solid var(--line); transition: padding .3s, background .3s; }
.announcement-card:hover { padding-inline: 1.2rem; background: rgba(255,255,255,.45); }
.announcement-meta { display: flex; gap: 1.5rem; align-items: start; color: var(--muted); font-size: .68rem; }
.announcement-meta > span { color: var(--clay); font-family: var(--serif); font-size: 1rem; }
.announcement-card h3 { margin: .2rem 0 .65rem; font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.2rem); font-weight: 400; }
.announcement-card div > p:last-child { max-width: 48rem; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.pin { display: inline-flex; margin: 0 0 .35rem; color: var(--clay); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.announcement-arrow { align-self: center; font-size: 1.35rem; }
.empty-state { padding: 3rem; border: 1px dashed var(--line); color: var(--muted); text-align: center; }

.history { display: grid; grid-template-columns: 1fr 1fr; min-height: 780px; background: var(--forest-900); color: white; }
.history-image { position: relative; min-height: 680px; overflow: hidden; }
.history-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,26,20,.5), transparent 55%); content: ""; }
.history-image img { width: 100%; height: 100%; object-fit: cover; }
.history-year { position: absolute; bottom: 3rem; left: 3rem; z-index: 2; display: grid; font-family: var(--serif); font-size: clamp(4rem, 7vw, 7rem); line-height: .8; }
.history-year small { margin-top: 1rem; font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.history-copy { align-self: center; padding: clamp(4rem, 8vw, 8rem); }
.history-copy .section-kicker { margin-bottom: 4rem; color: rgba(255,255,255,.55); }
.history-copy > p:not(.eyebrow) { margin: 1.7rem 0 0; color: rgba(255,255,255,.68); line-height: 1.9; }
.timeline { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.14); }
.timeline div { display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.timeline strong { color: var(--clay); font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.timeline span { color: rgba(255,255,255,.7); font-size: .82rem; line-height: 1.55; }
.source-link { display: inline-block; margin-top: 2rem; padding-bottom: .35rem; border-bottom: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.72); font-size: .75rem; text-decoration: none; }

.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; }
.gallery-item { position: relative; grid-column: span 4; height: clamp(20rem, 36vw, 34rem); padding: 0; overflow: hidden; border: 0; background: var(--cream); cursor: zoom-in; text-align: left; }
.gallery-item:nth-child(5n+1), .gallery-item:nth-child(5n+4) { grid-column: span 7; }
.gallery-item:nth-child(5n+2), .gallery-item:nth-child(5n+5) { grid-column: span 5; }
.gallery-item:nth-child(5n+3) { grid-column: span 12; height: clamp(22rem, 44vw, 39rem); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,24,18,.78), transparent 48%); content: ""; opacity: .85; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item > span { position: absolute; right: 1.4rem; bottom: 1.3rem; left: 1.4rem; z-index: 2; display: flex; justify-content: space-between; align-items: end; color: white; }
.gallery-item strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.gallery-item small { color: rgba(255,255,255,.68); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.location { background: var(--cream); }
.location-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 36rem; overflow: hidden; background: var(--clay); color: white; }
.location-card > div:first-child { padding: clamp(3rem, 7vw, 6.5rem); }
.location-card h2 { margin-bottom: 1.6rem; }
.location-card p:not(.eyebrow) { max-width: 36rem; margin: 0 0 2rem; color: rgba(255,255,255,.75); line-height: 1.8; }
.map-art { position: relative; min-height: 27rem; overflow: hidden; background: #d48660; }
.map-art::before, .map-art::after { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; }
.map-art::before { width: 24rem; height: 24rem; top: -7rem; right: -6rem; }
.map-art::after { width: 15rem; height: 15rem; bottom: -5rem; left: -4rem; }
.map-art svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(255,255,255,.38); stroke-width: 1.5; }
.map-art circle:first-of-type { fill: white; stroke: none; }
.map-pulse { stroke: rgba(255,255,255,.45); animation: pulse 2.4s infinite; transform-origin: 329px 151px; }
.map-label { position: absolute; top: 39%; left: 66%; display: grid; font-family: var(--serif); font-size: 1.25rem; }
.map-label small { margin-top: .25rem; font-family: var(--sans); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

.site-footer { display: grid; grid-template-columns: .8fr 1.2fr .8fr; gap: 3rem; align-items: center; padding: 4rem clamp(1.25rem, 6.5vw, 7.5rem) 2rem; background: var(--forest-950); color: white; }
.footer-brand { display: flex; gap: .9rem; align-items: center; }
.footer-brand strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.footer-brand p { margin: .3rem 0 0; color: rgba(255,255,255,.48); font-size: .65rem; }
.site-footer blockquote { max-width: 33rem; margin: 0 auto; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.8rem); line-height: 1.45; text-align: center; }
.footer-contact { display: grid; gap: .5rem; justify-content: end; color: rgba(255,255,255,.6); font-size: .7rem; text-align: right; }
.footer-contact a { text-underline-offset: .3rem; }
.copyright { grid-column: 1/-1; margin: 2.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: .62rem; text-align: center; }

.music-player { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 18; display: flex; gap: .85rem; align-items: center; min-width: 15rem; padding: .72rem .72rem .72rem 1rem; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(16,37,30,.92); color: white; box-shadow: 0 15px 45px rgba(11,27,21,.24); backdrop-filter: blur(14px); }
#youtube-player { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: .01; pointer-events: none; }
.music-equalizer { display: flex; gap: 2px; align-items: end; width: 1.2rem; height: 1.15rem; }
.music-equalizer i { width: 2px; height: 35%; background: var(--clay); animation: equalize .8s ease-in-out infinite alternate; }
.music-equalizer i:nth-child(2) { height: 80%; animation-delay: -.5s; }
.music-equalizer i:nth-child(3) { height: 55%; animation-delay: -.2s; }
.music-equalizer i:nth-child(4) { height: 95%; animation-delay: -.7s; }
.music-player.paused .music-equalizer i { animation-play-state: paused; height: 25%; }
@keyframes equalize { to { height: 100%; } }
.music-copy { display: grid; flex: 1; }
.music-copy small { color: rgba(255,255,255,.48); font-size: .52rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.music-copy strong { margin-top: .12rem; font-size: .68rem; font-weight: 600; }
.music-player button { display: grid; width: 2.45rem; height: 2.45rem; padding: 0; border: 0; border-radius: 50%; background: var(--clay); color: white; cursor: pointer; place-items: center; }
.music-player button svg { width: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.music-player .play-icon { display: none; }
.music-player.paused .play-icon { display: block; }
.music-player.paused .pause-icon { display: none; }
.music-player.needs-action { animation: nudge 1s ease-in-out 2; }
@keyframes nudge { 50% { transform: translateY(-7px); } }

.lightbox { width: min(92vw, 1100px); max-width: none; padding: 0; overflow: visible; border: 0; background: transparent; color: white; }
.lightbox::backdrop { background: rgba(5,15,11,.92); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox p { margin: .8rem 0 0; font-family: var(--serif); font-size: 1.1rem; text-align: center; }
.lightbox button { position: absolute; top: -3rem; right: 0; width: 2.5rem; height: 2.5rem; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: white; font-size: 1.6rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
    .menu-toggle { display: block; z-index: 2; }
    .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; gap: 1.6rem; justify-content: center; background: var(--forest-950); color: white; font-family: var(--serif); font-size: 1.8rem; transform: translateX(100%); transition: transform .35s; }
    .menu-open .main-nav { transform: translateX(0); }
    .menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
    .menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
    .nav-cta { font-family: var(--sans); font-size: .8rem; }
    .hero-content { width: min(42rem, 82%); }
    .intro-grid, .section-title-row { grid-template-columns: 1fr; gap: 2rem; }
    .intro-copy { max-width: 38rem; }
    .facts { grid-template-columns: repeat(2, 1fr); }
    .fact:nth-child(2) { border-right: 0; }
    .history { grid-template-columns: 1fr; }
    .history-image { min-height: 70vw; }
    .history-copy { padding: 5rem clamp(1.25rem, 8vw, 5rem); }
    .location-card { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .site-footer blockquote { grid-column: 1/-1; grid-row: 1; }
}

@media (max-width: 680px) {
    .site-header { padding-inline: 1rem; }
    .hero { align-items: flex-end; min-height: 780px; padding: 8rem 1.2rem 5rem; background-position: 55% center; }
    .hero-shade { background: linear-gradient(0deg, rgba(7,24,18,.94), rgba(8,25,19,.28) 80%); }
    .hero-content { width: 100%; }
    .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: .8rem; }
    .altitude-card { top: 7.5rem; right: 1.2rem; bottom: auto; width: 7.2rem; }
    .altitude-card strong { font-size: 1.55rem; }
    .scroll-cue { display: none; }
    .section { padding: 5rem 1.2rem; }
    .section-kicker { margin-bottom: 3rem; }
    .intro-visual { grid-template-columns: 1fr; }
    .intro-visual figure { height: 29rem; }
    .place-note { min-height: 20rem; }
    .facts { padding: 0 1.2rem 5rem; }
    .fact { padding: 1.7rem .8rem; }
    .fact strong { font-size: 1.7rem; }
    .announcement-card { grid-template-columns: 1fr auto; gap: 1.2rem; }
    .announcement-meta { grid-column: 1/-1; }
    .announcement-arrow { grid-column: 2; grid-row: 2; }
    .history-image { min-height: 105vw; }
    .history-year { bottom: 1.8rem; left: 1.2rem; }
    .history-copy { padding: 4.5rem 1.2rem; }
    .gallery-grid { display: block; }
    .gallery-item, .gallery-item:nth-child(n) { width: 100%; height: 28rem; margin-bottom: 1rem; }
    .location { padding-inline: 0; }
    .location-card > div:first-child { padding: 4rem 1.2rem; }
    .site-footer { grid-template-columns: 1fr; padding: 4rem 1.2rem 1.5rem; text-align: center; }
    .footer-brand { justify-content: center; }
    .site-footer blockquote { grid-column: auto; grid-row: auto; }
    .footer-contact { justify-content: center; text-align: center; }
    .copyright { grid-column: auto; }
    .music-player { right: .75rem; bottom: .75rem; min-width: 0; }
    .music-copy { display: none; }
}

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