/* brightstation.com — monochrome identity. Black, charcoal, white, grey. No blue anywhere. */

:root {
  color-scheme: light;
  /* palette: warm-neutral greys, chosen not defaulted */
  --ink: #0f0f0f;
  --coal: #1a1a19;
  --charcoal: #2a2a28;
  --slate: #575652;
  --ash: #8f8e89;
  --line: #d9d8d3;
  --mist: #ecebe6;
  --paper: #f4f3ef;
  --white: #ffffff;

  /* semantic */
  --bg: var(--white);
  --bg-paper: var(--paper);
  --bg-dark: var(--ink);
  --fg: var(--ink);
  --fg-muted: var(--slate);
  --fg-faint: var(--ash);
  --rule: var(--line);
  --rule-dark: #33322f;
  --fg-on-dark: #f2f1ec;
  --fg-on-dark-muted: #b3b2ac;
  --focus: #0f0f0f;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 48px);
  --step--1: 0.9rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.6rem;
  --step-3: clamp(1.9rem, 1.4rem + 2vw, 2.8rem);
  --step-4: clamp(2.4rem, 1.6rem + 4vw, 4.6rem);
  --step-5: clamp(2.8rem, 1.4rem + 7vw, 7.2rem);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #121211;
    --bg-paper: #191917;
    --bg-dark: #050505;
    --fg: #f2f1ec;
    --fg-muted: #b3b2ac;
    --fg-faint: #7f7e79;
    --rule: #2e2d2a;
    --rule-dark: #2a2926;
    --focus: #f2f1ec;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #121211;
  --bg-paper: #191917;
  --bg-dark: #050505;
  --fg: #f2f1ec;
  --fg-muted: #b3b2ac;
  --fg-faint: #7f7e79;
  --rule: #2e2d2a;
  --rule-dark: #2a2926;
  --focus: #f2f1ec;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: var(--fg-faint); text-underline-offset: 0.16em; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: currentColor; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; margin: 0; text-wrap: balance; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.mono { font-family: var(--font-mono); font-size: 0.92em; }
.select-all { user-select: all; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--white); padding: 8px 12px; z-index: 100; font-family: var(--font-display); }
.skip:focus { left: 8px; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 0.9rem;
}
.eyebrow a { text-decoration: none; }
.eyebrow a:hover { text-decoration: underline; }
.h2 { font-size: var(--step-3); margin-bottom: 1.2rem; }
.lede { font-size: var(--step-1); line-height: 1.45; color: var(--fg); max-width: 34em; margin-bottom: 0.6em; }
.section-note, .source, .evidence { font-family: var(--font-display); font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; max-width: 60ch; }
.num { font-family: var(--font-display); font-weight: 300; font-size: 0.9rem; letter-spacing: 0.08em; color: var(--fg-faint); margin: 0 0 0.6rem; font-variant-numeric: tabular-nums; }
.prose { max-width: 66ch; }
.prose p { margin-bottom: 1.1em; }
.prose h2 { font-size: var(--step-2); margin: 2.2rem 0 0.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose-dark { color: var(--fg-on-dark); }
.prose-dark p { font-size: var(--step-1); line-height: 1.5; }

/* ---------- wordmark: lowercase, two weights, the one element carried over from the original identity ---------- */
.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.wordmark span { font-weight: 300; }
.wordmark b { font-weight: 700; }

/* ---------- header ---------- */
.review-bar {
  background: var(--charcoal); color: var(--fg-on-dark-muted);
  font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-align: center; padding: 6px var(--gutter);
}
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20; background: var(--bg); border-bottom: 1px solid var(--rule); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.nav { display: flex; gap: clamp(0.8rem, 2vw, 1.6rem); font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; }
.nav a { text-decoration: none; padding: 0.4rem 0; border-bottom: 2px solid transparent; color: var(--fg-muted); }
.nav a:hover { color: var(--fg); }
.nav a[aria-current="page"] { color: var(--fg); border-bottom-color: var(--fg); }
.nav-toggle { display: none; font: inherit; font-family: var(--font-display); font-weight: 600; background: none; border: 1px solid var(--rule); color: var(--fg); padding: 0.45rem 0.9rem; cursor: pointer; }
@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--rule); padding: 0.4rem var(--gutter) 1rem; }
  .nav.open { display: flex; }
  .nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--rule); }
  .nav a[aria-current="page"] { border-bottom-color: var(--rule); font-weight: 700; }
}

/* ---------- bands ---------- */
.band { padding-block: clamp(3rem, 7vw, 6rem); }
.band-light { background: var(--bg); }
.band-paper { background: var(--bg-paper); }
.band-dark { background: var(--bg-dark); color: var(--fg-on-dark); }
.band-dark .eyebrow { color: var(--fg-on-dark-muted); }
.band-dark .section-note { color: var(--fg-on-dark-muted); }
.band-dark a { text-decoration-color: var(--fg-on-dark-muted); }
.band-dark .btn-ghost { color: var(--fg-on-dark); border-color: var(--fg-on-dark-muted); }
.band-dark .h2 { color: var(--fg-on-dark); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.section-head .h2 { margin-bottom: 0; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(3.5rem, 9vw, 8rem) clamp(3rem, 6vw, 5rem); background: var(--bg-dark); color: var(--fg-on-dark); }
.hero-h { font-size: var(--step-5); font-weight: 600; letter-spacing: -0.03em; line-height: 0.98; font-variation-settings: "wdth" 92; margin-bottom: clamp(2rem, 5vw, 3.6rem); }
.hero-h span { display: block; }
.hero-h .hero-h2 { color: var(--fg-on-dark-muted); font-weight: 300; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; border-top: 1px solid var(--rule-dark); padding-top: 2rem; }
.hero-lede { font-size: var(--step-2); line-height: 1.3; max-width: 26em; margin: 0; font-weight: 400; }
.hero-sub { color: var(--fg-on-dark-muted); font-size: var(--step-0); max-width: 40em; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; align-items: center; margin: 1.4rem 0 0; }
@media (max-width: 760px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em;
  padding: 0.8rem 1.3rem; text-decoration: none; border: 1px solid currentColor; background: var(--fg-on-dark); color: var(--ink);
  transition: background .15s, color .15s;
}
.hero .btn { background: var(--fg-on-dark); color: var(--ink); border-color: var(--fg-on-dark); }
.band-light .btn, .band-paper .btn { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn:hover { filter: brightness(0.9); }
.btn-ghost, .hero .btn-ghost, .band-light .btn-ghost, .band-paper .btn-ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn-ghost:hover { background: rgba(127,127,127,0.12); filter: none; }
.more { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.more::after { content: " →"; font-weight: 400; }
.more:hover { text-decoration: underline; }

/* ---------- three-column ---------- */
.three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
@media (max-width: 860px) { .three { grid-template-columns: 1fr; } }
.activity, .principle, .route { border-top: 1px solid var(--rule); padding-top: 1.2rem; }
.band-dark .principle { border-top-color: var(--rule-dark); }
.activity h3, .principle h3, .route h2 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.activity p, .principle p, .route p { color: var(--fg-muted); }
.band-dark .principle p { color: var(--fg-on-dark-muted); }

/* ---------- narrative ---------- */
.narrative { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: clamp(1.5rem, 4vw, 4rem); }
@media (max-width: 860px) { .narrative { grid-template-columns: 1fr; } }

/* ---------- ledger: one row per business, not cards ---------- */
.ledger { list-style: none; border-top: 1px solid var(--rule); }
.ledger-row { border-bottom: 1px solid var(--rule); }
.ledger-link {
  display: grid; grid-template-columns: 7.5rem 9rem minmax(0, 1.2fr) minmax(0, 2fr) auto;
  gap: 1.2rem 1.6rem; align-items: center; padding: 1.1rem 0; text-decoration: none; transition: background .15s;
}
.ledger-link:hover { background: rgba(127,127,127,0.07); }
.ledger-years { font-family: var(--font-display); font-size: 0.85rem; color: var(--fg-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ledger-logo img { width: 100%; max-width: 8.5rem; max-height: 2.2rem; object-fit: contain; object-position: left center; filter: var(--logo-filter, none); }
.ledger-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.2; }
.ledger-name small { display: block; font-weight: 400; color: var(--fg-muted); font-size: 0.82rem; margin-top: 0.2rem; }
.ledger-desc { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.4; }
.ledger-link:not(:has(.ledger-desc)) { grid-template-columns: 7.5rem 9rem minmax(0, 1fr) auto; }
@media (max-width: 900px) {
  .ledger-link, .ledger-link:not(:has(.ledger-desc)) { grid-template-columns: 6rem minmax(0, 1fr) auto; }
  .ledger-logo { display: none; }
  .ledger-desc { grid-column: 2 / -1; }
}
@media (max-width: 520px) {
  .ledger-link, .ledger-link:not(:has(.ledger-desc)) { grid-template-columns: 1fr auto; }
  .ledger-years { grid-column: 1 / -1; }
  .ledger-desc { grid-column: 1 / -1; }
}
/* logo tone: our PNGs are ink-on-transparent; in dark mode invert them to pale */
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --logo-filter: invert(1) brightness(0.92); } }
:root[data-theme="dark"] { --logo-filter: invert(1) brightness(0.92); }
.company-logo, .inline-logo { filter: var(--logo-filter, none); }

/* ---------- status labels ---------- */
.status {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border: 1px solid currentColor; white-space: nowrap; justify-self: end; line-height: 1;
}
.status-current { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.status-former { color: var(--fg-muted); }
.status-exited { color: var(--fg-muted); border-style: dashed; }
.status-historical { color: var(--fg-faint); }

/* ---------- panels (home lower section) ---------- */
.two-up { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
@media (max-width: 860px) { .two-up { grid-template-columns: 1fr; } }
.panel { border-top: 1px solid var(--rule); padding-top: 1.4rem; }
.panel p { color: var(--fg-muted); }
.inline-logo { width: 180px; height: auto; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.5rem; margin: 1.4rem 0 0.8rem; }
.facts div { border-top: 1px solid var(--rule); padding-top: 0.6rem; }
.facts dt { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); }
.facts dd { margin: 0.25rem 0 0; font-family: var(--font-display); font-weight: 600; font-size: 1rem; line-height: 1.3; color: var(--fg); font-variant-numeric: tabular-nums; }
.facts dd small { display: block; font-weight: 400; font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.2rem; }
.facts-stack { grid-template-columns: 1fr; gap: 0.8rem; }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }
.panel-founder { display: grid; grid-template-columns: 11rem minmax(0, 1fr); gap: 1.5rem; }
.founder-photo img { filter: grayscale(1); aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 520px) { .panel-founder { grid-template-columns: 1fr; } .founder-photo { max-width: 14rem; } }

/* ---------- page head ---------- */
.page-head { padding-block: clamp(2.8rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem); background: var(--bg); border-bottom: 1px solid var(--rule); }
.page-head h1 { font-size: var(--step-4); letter-spacing: -0.025em; margin-bottom: 1rem; font-variation-settings: "wdth" 95; }
.page-head-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: end; }
.aside { font-family: var(--font-display); font-size: 0.86rem; color: var(--fg-muted); border-left: 2px solid var(--rule); padding-left: 1rem; line-height: 1.55; }
.aside p { margin: 0; }
@media (max-width: 860px) { .page-head-grid { grid-template-columns: 1fr; align-items: start; } }

/* ---------- company pages ---------- */
.company-head .company-title { display: flex; align-items: center; gap: 1rem 1.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.company-head .company-title h1 { margin-bottom: 0; }
.company-logos { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; margin-top: 2rem; }
.company-logo { max-height: 3rem; width: auto; }
.meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.4rem 2rem; margin: 0; }
.meta-grid dt { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 0.35rem; }
.meta-grid dd { margin: 0; font-size: 0.98rem; line-height: 1.45; }
.company-body { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 900px) { .company-body { grid-template-columns: 1fr; } }
.company-side { position: sticky; top: 84px; }
@media (max-width: 900px) { .company-side { position: static; } }
.side-h { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600; margin: 0 0 1rem; }
.timeline { list-style: none; border-top: 1px solid var(--rule); }
.timeline li { display: grid; grid-template-columns: 6.2rem minmax(0, 1fr); gap: 0.8rem; padding: 0.65rem 0; border-bottom: 1px solid var(--rule); font-size: 0.92rem; line-height: 1.4; }
.timeline time { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; color: var(--fg-muted); font-variant-numeric: tabular-nums; padding-top: 0.15em; }
.timeline-wide li { grid-template-columns: 7rem minmax(0, 1fr); font-size: 0.98rem; }
.clipping { margin: 2rem 0 0; }
.clipping a { display: block; }
.clipping img { width: 100%; max-height: 22rem; object-fit: cover; object-position: top; border: 1px solid var(--rule); filter: grayscale(1) contrast(1.05); background: var(--bg-paper); }
.clipping figcaption { font-family: var(--font-display); font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.5rem; line-height: 1.45; }
.pager { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; padding-block: 2rem 3rem; border-top: 1px solid var(--rule); font-family: var(--font-display); font-weight: 600; }
.pager a { text-decoration: none; }
.pager a small { display: block; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 0.2rem; }
.pager-next { text-align: right; }
.pager-all { text-align: center; }
@media (max-width: 520px) { .pager { grid-template-columns: 1fr 1fr; } .pager-all { display: none; } }

/* ---------- approach ---------- */
.contrib { list-style: none; border-top: 1px solid var(--rule); max-width: 62rem; }
.contrib li { display: grid; grid-template-columns: 4rem minmax(0, 1fr); gap: 1rem 2rem; padding: 2rem 0; border-bottom: 1px solid var(--rule); }
.contrib .num { font-size: 1.4rem; margin: 0; }
.contrib h2 { font-size: var(--step-2); margin-bottom: 0.7rem; }
.contrib p { max-width: 62ch; }
.contrib .evidence { margin: 0.6rem 0 0; }
@media (max-width: 520px) { .contrib li { grid-template-columns: 1fr; gap: 0.4rem; } }
.statement { max-width: 46rem; }
.statement p { font-size: var(--step-1); line-height: 1.45; }

/* ---------- impact ---------- */
.impact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
@media (max-width: 860px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-grid .section-note { margin-top: 1.2rem; }

/* ---------- founder ---------- */
.founder-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr); gap: clamp(1.5rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; } .portrait { max-width: 22rem; } }
.portrait { margin: 0; }
.portrait img { filter: grayscale(1); }
.portrait figcaption { font-family: var(--font-display); font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.5rem; }
.founder-cta { border-top: 1px solid var(--rule); margin-top: 2.2rem; padding-top: 1.4rem; }
.founder-cta h2 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.founder-cta p { color: var(--fg-muted); }
.recognition { list-style: none; border-top: 1px solid var(--rule); }
.recognition li { padding: 0.9rem 0; border-bottom: 1px solid var(--rule); display: grid; gap: 0.2rem; }
.recognition strong { font-family: var(--font-display); font-weight: 600; }
.recognition span { color: var(--fg-muted); font-size: 0.95rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(1.5rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.email-line { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin-bottom: 2rem; }
.copy { font: inherit; font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; background: none; border: 1px solid var(--rule); color: var(--fg); padding: 0.3rem 0.6rem; cursor: pointer; }
.copy:hover { border-color: var(--fg); }
.company-lines { font-style: normal; display: grid; gap: 0.25rem; margin-bottom: 0.8rem; font-size: 0.95rem; }
.contact-form { display: grid; gap: 1.1rem; }
.hp { position: absolute; left: -9999px; }
.field { display: grid; gap: 0.35rem; }
.field label { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: 0.7rem 0.8rem; border: 1px solid var(--rule); background: var(--bg); color: var(--fg); border-radius: 0; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--fg); outline: none; }
.field textarea { resize: vertical; min-height: 9rem; }
.field.invalid input, .field.invalid textarea { border-color: var(--fg); box-shadow: inset 3px 0 0 var(--fg); }
.form-actions { margin: 0; }
.form-status { font-family: var(--font-display); font-size: 0.9rem; min-height: 1.4em; margin: 0; }
.form-status.error { font-weight: 600; }
.form-notice { font-family: var(--font-display); font-size: 0.82rem; color: var(--fg-muted); border: 1px dashed var(--rule); padding: 0.7rem 0.9rem; margin: 0; }
button[disabled] { opacity: 0.6; cursor: wait; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-dark); color: var(--fg-on-dark-muted); padding-top: clamp(2.5rem, 5vw, 4rem); font-family: var(--font-display); font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .wordmark { color: var(--fg-on-dark); margin-bottom: 1rem; }
.footer-about p { max-width: 42ch; line-height: 1.5; }
.footer-note { font-size: 0.78rem; color: #8a8984; }
.footer-h { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8a8984; margin: 0 0 0.7rem; font-weight: 600; }
.footer-h + ul + .footer-h { margin-top: 1.4rem; }
.site-footer ul { list-style: none; display: grid; gap: 0.4rem; }
.site-footer a { color: var(--fg-on-dark); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--rule-dark); padding-block: 1.1rem; font-size: 0.75rem; color: #8a8984; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
@media print { .site-header, .site-footer, .review-bar, .pager, .nav-toggle { display: none; } .band { padding-block: 1rem; } }
