/* Rhythmethod — public website */
:root {
  --ink: #0d0d0e;
  --ink-2: #151517;
  --ink-3: #1f1f22;
  --line: #2c2c30;
  --paper: #f4f0e8;
  --paper-dim: #b9b4aa;
  --muted: #8a867e;
  --amber: #e08a4b;          /* sampled from the turntable artwork, as in the CRM */
  --amber-light: #f2b688;
  --amber-ink: #1a0f06;
  --radius: 6px;
  --wrap: 1240px;
  --display: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--ink); color: var(--paper);
  font: 16px/1.6 var(--body); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.02; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.sr, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { position: fixed; top: 8px; left: 8px; z-index: 100; background: var(--amber); color: var(--amber-ink); padding: 8px 14px; border-radius: var(--radius); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
@media (min-width: 720px) { .wrap { padding: 0 32px; } }

/* ── Logo (white on transparent, 858×151) ────────────────────── */
.logo { display: block; height: 24px; width: auto; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font: 600 15px/1 var(--body); padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent; text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: var(--amber-ink); }
.btn-primary:hover { background: var(--amber-light); }
.btn-outline { border-color: rgba(244,240,232,.35); color: var(--paper); background: transparent; }
.btn-outline:hover { border-color: var(--paper); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.arrow::after { content: '→'; transition: transform .2s; }
.arrow:hover::after { transform: translateX(3px); }

/* ── Header ───────────────────────────────────────────────────── */
#site-header { position: sticky; top: 0; z-index: 50; transition: background .25s, border-color .25s; border-bottom: 1px solid transparent; }
#site-header.scrolled, body:not(.has-hero) #site-header { background: rgba(13,13,14,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.header-in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.home-link { text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--paper-dim); position: relative; padding: 6px 0; }
.site-nav > a:hover, .site-nav > a[aria-current] { color: var(--paper); }
.site-nav > a[aria-current]::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--amber); }
.nav-toggle { display: none; }

.login { position: relative; }
.login-menu { position: absolute; right: 0; top: calc(100% + 10px); width: 260px; background: var(--ink-3); border: 1px solid var(--line); border-radius: 10px; padding: 6px; box-shadow: 0 20px 50px rgba(0,0,0,.5); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: .18s; }
.login.open .login-menu { opacity: 1; visibility: visible; transform: none; }
.login-menu a { display: block; padding: 10px 12px; border-radius: 6px; text-decoration: none; }
.login-menu a:hover, .login-menu a:focus-visible { background: rgba(224,138,75,.12); }
.login-menu strong { display: block; font-size: 14.5px; }
.login-menu span { display: block; font-size: 12.5px; color: var(--muted); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: none; border: 0; cursor: pointer; padding: 10px; }
  .nav-toggle span:not(.sr) { height: 2px; background: var(--paper); transition: .2s; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid var(--line); padding: 8px 16px 20px; display: none; }
  .nav-open .site-nav { display: flex; }
  .nav-open { background: var(--ink) !important; }
  .site-nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; color: var(--paper); }
  .site-nav > a[aria-current]::after { display: none; }
  .login { margin-top: 16px; }
  .login-btn { display: none; }
  .login-menu { position: static; width: auto; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.has-hero #site-header { margin-bottom: -68px; }
.hero { position: relative; min-height: min(94vh, 880px); display: flex; align-items: flex-end; padding: 140px 0 80px; overflow: hidden; isolation: isolate; background: var(--ink); }
.hero > .wrap { width: 100%; }
/* The photo's subject (tonearm) sits right of centre, so anchor it right and
   shade the left where the copy sits. */
.hero-bg { position: absolute; inset: 0; z-index: -2; background: url('img/turntable.jpg') 70% 40% / cover no-repeat; transform: scale(1.04); animation: drift 26s ease-in-out infinite alternate; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(13,13,14,.92) 0%, rgba(13,13,14,.7) 38%, rgba(13,13,14,.15) 70%, rgba(13,13,14,.05) 100%),
              linear-gradient(180deg, rgba(13,13,14,.55) 0%, transparent 22%, transparent 70%, var(--ink) 100%); }
@keyframes drift { to { transform: scale(1.1) translate(-1.5%, 1%); } }
.hero-copy { max-width: 640px; }
.hero-logo { width: clamp(240px, 42vw, 540px); height: auto; filter: drop-shadow(0 4px 24px rgba(0,0,0,.45)); }
.hero-tag { font-size: clamp(12px, 1.2vw, 15px); letter-spacing: .3em; text-transform: uppercase; color: var(--paper-dim); margin: 16px 0 0 2px; }
.hero h1 { font-size: clamp(30px, 4.2vw, 56px); font-weight: 700; max-width: 17ch; margin-top: 40px; }
@media (max-width: 720px) {
  .hero { min-height: 0; padding-top: 110px; }
  .hero-bg { background-position: 72% 40%; }
  .hero::after { background: linear-gradient(180deg, rgba(13,13,14,.45) 0%, rgba(13,13,14,.7) 45%, rgba(13,13,14,.94) 75%, var(--ink) 100%); }
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-lede { max-width: 56ch; color: var(--paper-dim); font-size: clamp(16px, 1.3vw, 18px); margin: 18px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Page hero (inner pages) */
.page-hero { padding: 72px 0 36px; border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 85% -20%, rgba(224,138,75,.16), transparent 55%); }
.eyebrow { font: 600 12.5px/1 var(--body); letter-spacing: .22em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; display: block; }
.page-hero h1 { font-size: clamp(40px, 7vw, 84px); font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { max-width: 62ch; color: var(--paper-dim); margin-top: 18px; font-size: 17px; }

/* ── Sections ─────────────────────────────────────────────────── */
section { padding: 88px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; letter-spacing: -0.02em; }
.section-head p { color: var(--paper-dim); max-width: 50ch; margin: 12px 0 0; }
.link-more { color: var(--amber); text-decoration: none; font-weight: 600; white-space: nowrap; }
.link-more:hover { color: var(--amber-light); }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 30px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font: 800 clamp(30px, 3.6vw, 46px)/1 var(--display); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat span { color: var(--muted); font-size: 14px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* ── Release cards ────────────────────────────────────────────── */
.release-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 36px 24px; }
@media (max-width: 520px) { .release-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; } }
.release { min-width: 0; }
.sleeve { position: relative; aspect-ratio: 1; margin-bottom: 14px; }
.sleeve img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 3px; box-shadow: 0 10px 28px rgba(0,0,0,.45); background: var(--ink-3); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.disc { position: absolute; z-index: 1; top: 4%; bottom: 4%; left: 4%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--amber) 0 13%, #111 13.5% 15%, #0b0b0b 15.5%), repeating-radial-gradient(circle, #151515 0 1px, #0a0a0a 1px 3px); background-blend-mode: normal; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.release:hover .disc { transform: translateX(28%) rotate(40deg); }
.release:hover .sleeve img { transform: translateX(-4%); }
.sleeve.no-art { background: linear-gradient(135deg, var(--ink-3), #2a2019); border-radius: 3px; display: grid; place-items: center; }
.sleeve.no-art::before { content: attr(data-initials); position: relative; z-index: 2; font: 800 44px/1 var(--display); color: rgba(244,240,232,.18); }
.sleeve.no-art .disc { display: none; }
.release h3 { font-size: 17px; font-weight: 700; line-height: 1.2; letter-spacing: 0; overflow-wrap: anywhere; }
.release .artist { color: var(--paper-dim); margin: 4px 0 8px; font-size: 14.5px; overflow-wrap: anywhere; }
.tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0 0 4px; font-size: 12px; }
.tag { border: 1px solid var(--line); border-radius: 999px; padding: 2px 9px; color: var(--paper-dim); }
.date { color: var(--amber); font-weight: 600; margin-left: 2px; }
.label-line { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.skeleton .sleeve, .skeleton h3, .skeleton .artist { background: var(--ink-3); border-radius: 3px; animation: pulse 1.4s ease-in-out infinite; }
.skeleton h3 { width: 80%; } .skeleton .artist { width: 55%; }
@keyframes pulse { 50% { opacity: .5; } }

/* ── Label wall ───────────────────────────────────────────────── */
.label-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.label-cell { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; min-height: 170px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: background .25s; position: relative; }
.label-cell:hover { background: var(--ink-2); }
.label-cell h3 { font-size: 27px; font-weight: 800; letter-spacing: -0.01em; }
.label-cell p { color: var(--muted); font-size: 14px; margin: 0; }
.label-cell .count { font-size: 13px; color: var(--amber); font-weight: 600; }
.label-cell.major { min-height: 220px; background: linear-gradient(160deg, rgba(224,138,75,.10), transparent 60%); }
.label-cell.major h3 { font-size: clamp(34px, 4vw, 48px); }
.label-cell .kind { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--paper-dim); }
.label-cell::after { content: '→'; position: absolute; right: 22px; top: 22px; color: var(--muted); transition: .2s; }
.label-cell:hover::after { color: var(--amber); transform: translateX(3px); }

/* ── Split feature blocks ─────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split h2 { font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.split p { color: var(--paper-dim); font-size: 17px; }
.checks { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 12px; }
.checks li { padding-left: 30px; position: relative; }
.checks li::before { content: ''; position: absolute; left: 0; top: .5em; width: 16px; height: 8px; border-left: 2px solid var(--amber); border-bottom: 2px solid var(--amber); transform: rotate(-45deg) translateY(-3px); }
.band { background: var(--paper); color: var(--ink); }
.band p, .band .checks li { color: #3b3833; }
.band .btn-outline { color: var(--ink); border-color: rgba(13,13,14,.3); }
.band .btn-outline:hover { border-color: var(--ink); }
.band .eyebrow { color: #b8612a; }

.vinyl-art { position: relative; aspect-ratio: 1; max-width: 480px; justify-self: center; width: 100%; }
.vinyl-art .rec { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, var(--amber) 0 15%, #111 15.5% 16.5%, transparent 17%), repeating-radial-gradient(circle, #1a1a1a 0 1px, #0a0a0a 1px 3px); box-shadow: 0 30px 80px rgba(0,0,0,.35); animation: spin 12s linear infinite; }
.vinyl-art .rec::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 30deg, transparent 0 20%, rgba(255,255,255,.08) 25%, transparent 30% 70%, rgba(255,255,255,.06) 75%, transparent 80%); }
.vinyl-art .label-text { position: absolute; inset: 0; display: grid; place-items: center; font: 800 13px/1 var(--display); letter-spacing: .12em; color: var(--amber-ink); z-index: 2; }
@keyframes spin { to { transform: rotate(360deg); } }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; counter-reset: step; border-top: 1px solid var(--line); }
.step { padding: 28px 24px 28px 0; counter-increment: step; }
.step::before { content: '0' counter(step); display: block; font: 800 15px/1 var(--display); color: var(--amber); margin-bottom: 18px; letter-spacing: .1em; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--paper-dim); font-size: 15px; margin: 0; }

/* ── Filters / toolbar ────────────────────────────────────────── */
.toolbar { position: sticky; top: 68px; z-index: 20; background: rgba(13,13,14,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding: 14px 0; }
.toolbar-in { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.search { flex: 1 1 260px; position: relative; }
.search input { width: 100%; background: var(--ink-3); border: 1px solid var(--line); color: var(--paper); border-radius: 999px; padding: 11px 16px 11px 42px; font: 15px var(--body); }
.search input:focus { border-color: var(--amber); outline: none; }
.search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { background: transparent; color: var(--paper-dim); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font: 500 13.5px var(--body); cursor: pointer; transition: .15s; }
.chip:hover { color: var(--paper); border-color: var(--paper-dim); }
.chip[aria-pressed="true"] { background: var(--paper); color: var(--ink); border-color: var(--paper); }
select.chip { appearance: none; padding-right: 30px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%23b9b4aa' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right 12px center; }
select.chip option { background: var(--ink-3); color: var(--paper); }
.result-count { color: var(--muted); font-size: 14px; margin: 28px 0 22px; }

/* ── Artist directory ─────────────────────────────────────────── */
.az { display: flex; flex-wrap: wrap; gap: 2px; margin-top: 12px; }
.az a, .az span { min-width: 30px; text-align: center; padding: 5px 4px; font: 700 14px/1 var(--display); text-decoration: none; border-radius: 4px; color: var(--paper-dim); }
.az a:hover { background: var(--ink-3); color: var(--amber); }
.az span { color: #3d3b38; }
.letter-group { padding: 26px 0 8px; scroll-margin-top: 190px; }
.letter-group h2 { font-size: 64px; font-weight: 800; color: var(--amber); margin-bottom: 14px; line-height: 1; }
.artist-list { list-style: none; margin: 0; padding: 0; columns: 4 240px; column-gap: 32px; }
.artist-list li { break-inside: avoid; padding: 7px 0; border-bottom: 1px solid var(--ink-3); display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.artist-list .n { overflow-wrap: anywhere; }
.artist-list .l { color: var(--muted); font-size: 12px; white-space: nowrap; }
.artist-list .indie { color: var(--amber); }

/* ── Spotify playlist ─────────────────────────────────────────── */
.head-links { display: flex; gap: 24px; flex-wrap: wrap; }
.spotify-block { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: center; margin-top: 40px; padding: clamp(20px, 3vw, 32px); background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; }
.spotify-block[hidden] { display: none; }
.spotify-block h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; }
.spotify-block p { color: var(--paper-dim); }
.spotify-block iframe { width: 100%; border: 0; border-radius: 12px; min-width: 0; }
@media (max-width: 860px) { .spotify-block { grid-template-columns: 1fr; } }

/* ── Stockists ────────────────────────────────────────────────── */
.region-group { padding: 22px 0 18px; scroll-margin-top: 150px; }
.region-group h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 18px; display: flex; align-items: baseline; gap: 12px; }
.region-group h2 span { font: 600 14px var(--body); color: var(--amber); }
.store-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.store { background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s; min-width: 0; }
.store:hover { border-color: #45413b; }
.store h3 { font-size: 19px; font-weight: 700; line-height: 1.2; overflow-wrap: anywhere; }
.store address { font-style: normal; color: var(--paper-dim); font-size: 14.5px; line-height: 1.55; flex: 1; overflow-wrap: anywhere; }
.map-link { font-size: 13.5px; font-weight: 600; color: var(--amber); text-decoration: none; }
.map-link:hover { color: var(--amber-light); }

/* ── Forms ────────────────────────────────────────────────────── */
.form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; padding: clamp(20px, 3vw, 40px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { font-size: 13.5px; font-weight: 600; color: var(--paper-dim); padding: 0; }
.field input, .field textarea, .field select { background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); color: var(--paper); padding: 12px 14px; font: 15px var(--body); width: 100%; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--amber); outline: none; }
fieldset.field { border: 0; margin: 0; padding: 0; }
.type-pick { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
.type-pick label, .checkrow label { cursor: pointer; position: relative; }
.type-pick input, .checkrow input { position: absolute; opacity: 0; pointer-events: none; }
.type-pick span { display: block; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; color: var(--paper); font-weight: 600; font-size: 14.5px; transition: .15s; }
.type-pick small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.type-pick input:checked + span { border-color: var(--amber); background: rgba(224,138,75,.1); }
.type-pick input:focus-visible + span, .checkrow input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 2px; }
.checkrow { display: flex; gap: 8px; flex-wrap: wrap; }
.checkrow span { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 14px; color: var(--paper-dim); transition: .15s; }
.checkrow input:checked + span { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hp { position: absolute; left: -9999px; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.form-msg { font-size: 14.5px; }
.form-msg.err { color: #ff9b86; }
.form-ok { text-align: center; padding: 40px 10px; }
.form-ok h3 { font-size: 34px; margin-bottom: 12px; }
.form-ok p { color: var(--paper-dim); }

.contact-aside { display: grid; gap: 28px; align-content: start; }
.contact-aside h3 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); font-family: var(--body); font-weight: 600; margin-bottom: 8px; }
.contact-aside a { text-decoration: none; font-size: 20px; font-weight: 600; display: block; }
.contact-aside a:hover { color: var(--amber); }
.contact-aside p { color: var(--paper-dim); margin: 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; } }

.notice { border: 1px dashed var(--line); border-radius: 10px; padding: 28px; color: var(--paper-dim); text-align: center; }

/* ── Footer ───────────────────────────────────────────────────── */
#site-footer { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 56px; color: var(--paper-dim); font-size: 14.5px; }
.footer-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer-in { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
.footer-brand .logo { height: 26px; margin-bottom: 18px; }
.footer-brand p { max-width: 36ch; }
#site-footer h4 { font: 600 12px/1 var(--body); letter-spacing: .2em; text-transform: uppercase; color: var(--paper); margin-bottom: 16px; }
#site-footer a, #site-footer span { display: block; text-decoration: none; margin-bottom: 8px; overflow-wrap: anywhere; }
#site-footer a:hover { color: var(--amber); }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--line); margin-top: 40px; padding-top: 20px; padding-bottom: 28px; font-size: 13px; color: var(--muted); }
.footer-base span { margin: 0 !important; }

/* ── Motion ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Marquee of label names */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; white-space: nowrap; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; gap: 56px; animation: marquee 50s linear infinite; font: 800 clamp(24px, 3vw, 36px)/1 var(--display); letter-spacing: -0.01em; color: #5b5750; }
.marquee-track span:nth-child(odd) { color: var(--paper); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
