/* ==================================================================
   Zinvorex — design system
   Night sky, sepia photography, copper rules, letterspaced type.
   ================================================================== */

:root {
  --ink:        #08070a;
  --ink-1:      #0d0c10;
  --ink-2:      #131117;
  --ink-3:      #1b1820;
  --line:       rgba(201, 138, 63, 0.22);
  --line-soft:  rgba(239, 231, 220, 0.10);

  --copper:     #c98a3f;
  --copper-dim: #8f6230;
  --gold:       #e6bd7c;
  --gold-hi:    #f5dcae;

  --cream:      #efe7dc;
  --muted:      #a1968b;
  --muted-2:    #756b63;

  --good:       #6fbf8b;
  --warn:       #d98b5f;

  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --wrap: 1180px;
  --gutter: clamp(1.2rem, 4vw, 3rem);
  --radius: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Film grain over the entire document — the reference screenshot is heavily
   textured, and a single fixed overlay is cheaper than textured assets. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.30;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--gold); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-hi); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 820px; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--copper);
  color: #12100e;
  padding: 0.7rem 1.2rem;
  z-index: 1200;
  font-weight: 700;
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------ */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 0.8rem;
  color: var(--cream);
}

.eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1rem;
  display: block;
}

.section-title {
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.serif-line {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.lede {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 66ch;
}

p { margin: 0 0 1.1rem; }

.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.rule::before, .rule::after {
  content: '';
  height: 1px;
  width: 46px;
  background: linear-gradient(90deg, transparent, var(--copper-dim));
}
.rule::after { background: linear-gradient(90deg, var(--copper-dim), transparent); }

/* ------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border: 1px solid var(--copper-dim);
  border-radius: var(--radius);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
}
.btn:hover {
  background: rgba(201, 138, 63, 0.12);
  border-color: var(--copper);
  color: var(--gold-hi);
  transform: translateY(-1px);
}

.btn--solid {
  background: linear-gradient(135deg, #c98a3f, #a06a2c);
  border-color: transparent;
  color: #14100b;
}
.btn--solid:hover {
  background: linear-gradient(135deg, #e0a253, #b87c36);
  color: #14100b;
}

.btn--ghost { border-color: var(--line-soft); color: var(--muted); }
.btn--ghost:hover { color: var(--cream); border-color: var(--muted-2); background: rgba(255,255,255,0.04); }

.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.62rem; letter-spacing: 0.2em; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------------
   Age badge
   ------------------------------------------------------------------ */

.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 0.45rem;
  border: 1.5px solid #d1584f;
  border-radius: 50%;
  color: #f0857c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(209, 88, 79, 0.10);
  flex: none;
}
.age--sm { min-width: 27px; height: 27px; font-size: 0.6rem; }
.age--lg { min-width: 56px; height: 56px; font-size: 1rem; border-width: 2px; }

/* ------------------------------------------------------------------
   Header
   ------------------------------------------------------------------ */

.topbar {
  background: #100d12;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 34px;
  padding-block: 0.35rem;
}
.topbar__warn { display: flex; align-items: center; gap: 0.6rem; }
.topbar__warn strong { color: #f0857c; font-weight: 700; }
.topbar__links { display: flex; gap: 1.2rem; }
.topbar__links a { color: var(--muted-2); }
.topbar__links a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(8, 7, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(8, 7, 10, 0.97);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
}

.brandmark { display: flex; align-items: center; gap: 0.75rem; }

.brandmark__name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
}
.brandmark__sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  text-transform: none;
  font-weight: 400;
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding-block: 0.4rem;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--copper);
  transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--gold); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }

.header__side { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  margin: 3.5px auto;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ------------------------------------------------------------------
   Night sky + skyline (the signature of the reference design)
   ------------------------------------------------------------------ */

.nightsky {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 50% 0%, #1a1620 0%, #0d0b11 45%, #060508 100%);
  overflow: hidden;
}

/* Warm horizon glow so the silhouette reads as a silhouette. */
.hero.nightsky {
  background:
    radial-gradient(78% 42% at 50% 98%, rgba(214,152,78,0.42) 0%, rgba(150,100,52,0.22) 34%, rgba(70,46,26,0.08) 58%, rgba(0,0,0,0) 78%),
    radial-gradient(120% 90% at 50% 0%, #1a1620 0%, #0d0b11 45%, #060508 100%);
}

/* Dense field of small stars, tiled. */
.nightsky::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cg fill='%23fff'%3E%3Ccircle cx='14' cy='31' r='.7'/%3E%3Ccircle cx='58' cy='12' r='.5'/%3E%3Ccircle cx='97' cy='44' r='.8'/%3E%3Ccircle cx='131' cy='19' r='.5'/%3E%3Ccircle cx='168' cy='38' r='.7'/%3E%3Ccircle cx='206' cy='9' r='.6'/%3E%3Ccircle cx='240' cy='47' r='.5'/%3E%3Ccircle cx='31' cy='73' r='.6'/%3E%3Ccircle cx='76' cy='92' r='.8'/%3E%3Ccircle cx='113' cy='66' r='.5'/%3E%3Ccircle cx='152' cy='87' r='.6'/%3E%3Ccircle cx='189' cy='71' r='.5'/%3E%3Ccircle cx='226' cy='95' r='.7'/%3E%3Ccircle cx='9' cy='118' r='.5'/%3E%3Ccircle cx='48' cy='139' r='.7'/%3E%3Ccircle cx='88' cy='122' r='.5'/%3E%3Ccircle cx='126' cy='146' r='.6'/%3E%3Ccircle cx='163' cy='128' r='.8'/%3E%3Ccircle cx='201' cy='151' r='.5'/%3E%3Ccircle cx='247' cy='131' r='.6'/%3E%3Ccircle cx='23' cy='176' r='.6'/%3E%3Ccircle cx='63' cy='195' r='.5'/%3E%3Ccircle cx='104' cy='172' r='.7'/%3E%3Ccircle cx='141' cy='199' r='.5'/%3E%3Ccircle cx='179' cy='181' r='.6'/%3E%3Ccircle cx='218' cy='204' r='.8'/%3E%3Ccircle cx='253' cy='185' r='.5'/%3E%3Ccircle cx='17' cy='228' r='.7'/%3E%3Ccircle cx='55' cy='247' r='.5'/%3E%3Ccircle cx='95' cy='231' r='.6'/%3E%3Ccircle cx='134' cy='252' r='.5'/%3E%3Ccircle cx='172' cy='237' r='.7'/%3E%3Ccircle cx='212' cy='255' r='.5'/%3E%3Ccircle cx='244' cy='222' r='.6'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.nightsky::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1.2px 1.2px at 27% 42%, rgba(255,244,222,0.7), transparent),
    radial-gradient(1.6px 1.6px at 41% 12%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px   at 55% 33%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.7px 1.7px at 68% 20%, rgba(255,238,208,0.8), transparent),
    radial-gradient(1.1px 1.1px at 79% 47%, rgba(255,255,255,0.65), transparent),
    radial-gradient(1.5px 1.5px at 89% 15%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px   at 8%  56%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.3px 1.3px at 33% 63%, rgba(255,247,230,0.6), transparent),
    radial-gradient(1px 1px   at 62% 58%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.4px 1.4px at 95% 62%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.2px 1.2px at 18% 30%, rgba(255,255,255,0.5), transparent);
  animation: twinkle 7s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.55; }
  to   { opacity: 1; }
}

.skyline {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(140px, 26vh, 250px);
  z-index: 2;
  color: #000;
  pointer-events: none;
}
.skyline svg { width: 100%; height: 100%; display: block; }

/* ------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */

/* The bottom padding only has to clear the skyline (max 250px); anything
   beyond that is empty sky between the buttons and the rooftops. */
.hero {
  min-height: clamp(520px, 78vh, 700px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 8vh, 5rem) clamp(8rem, 19vh, 10.5rem);
  text-align: center;
}
.hero__inner { position: relative; z-index: 3; width: 100%; }

.hero__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.6rem;
}

/* Sepia photographic fill on the wordmark — the reference fills its display
   type with an image. Kept deliberately modest in size. */
.hero__title {
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  background-image:
    linear-gradient(115deg, #6b4a25 0%, #c98a3f 22%, #f0d3a3 42%, #b9782f 62%, #8a5c2a 82%, #d8a55f 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-family: var(--serif);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.62em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 1.6rem;
  padding-left: 0.62em;
}

.hero__byline { display: flex; justify-content: center; margin-bottom: 2rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2.2rem;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--copper); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(0.7rem, 2.2vh, 1.4rem);
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 0 14px #000, 0 0 6px #000;
}
.scroll-cue svg { margin: 0.5rem auto 0; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Compact hero for interior pages */
.pagehead {
  padding-block: clamp(3.2rem, 9vh, 5.5rem) clamp(3rem, 8vh, 4.5rem);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pagehead h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}
.pagehead .serif-line { margin-inline: auto; max-width: 64ch; }
.crumbs {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.4rem;
}
.crumbs a { color: var(--muted-2); }
.crumbs a:hover { color: var(--gold); }

/* ------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------ */

section { position: relative; }

.section {
  padding-block: clamp(2.8rem, 6vh, 4.5rem);
  background: var(--ink);
}
/* The bands only earn their padding if you can see where one ends and the
   next begins — at 2–5 RGB levels apart they read as one continuous void. */
.section--alt {
  background:
    linear-gradient(180deg, #0c0a12 0%, #16121f 50%, #0c0a12 100%);
  border-block: 1px solid rgba(255,255,255,0.075);
}
.section--deep {
  background: #040308;
  border-block: 1px solid rgba(255,255,255,0.05);
}

.section__head { margin-bottom: clamp(1.5rem, 3.2vh, 2.4rem); max-width: 74ch; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lede { margin-inline: auto; }

/* ------------------------------------------------------------------
   The Archive — interactive timeline
   ------------------------------------------------------------------ */

.chronicle { display: grid; grid-template-columns: 230px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }

.rail {
  position: relative;
  border-left: 1px solid rgba(201,138,63,0.18);
  padding-left: 0;
  align-self: start;
  position: sticky;
  top: 110px;
}
.rail__item {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0.85rem 0.6rem 0.85rem 1.7rem;
  cursor: pointer;
  color: var(--muted-2);
  font-family: var(--sans);
  transition: color 0.25s var(--ease);
}
.rail__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--copper-dim);
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.rail__item:hover { color: var(--cream); }
.rail__item.is-active { color: var(--gold); }
.rail__item.is-active::before {
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(201,138,63,0.16);
  transform: translateY(-50%) scale(1.15);
}
.rail__year {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.rail__label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: inherit;
  opacity: 0.75;
}

.chapter {
  display: none;
  animation: fade 0.5s var(--ease);
}
.chapter.is-active { display: block; }
@keyframes fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.chapter__frame {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(201,138,63,0.09), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, #14111a, #0c0a10);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
}
.chapter__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23c)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.chapter__marker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--copper);
  letter-spacing: 0.1em;
}
.chapter__title {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0.4rem 0 0.5rem;
}
.chapter__pin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.3rem;
}
.chapter__pin svg { color: var(--copper); }
.chapter__body { color: var(--muted); max-width: 68ch; }
.chapter__stat {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
}
.chapter__stat b {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1;
}
.chapter__stat span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.chapter__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

/* ------------------------------------------------------------------
   Brand cards
   ------------------------------------------------------------------ */

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.bcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #131019, #0b0910);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.bcard:hover { border-color: var(--line); transform: translateY(-3px); }

.bcard__rank {
  position: absolute;
  top: 0; left: 0;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, #c98a3f, #8f6230);
  color: #12100b;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.bcard__logo {
  height: 132px;
  display: grid;
  place-items: center;
  padding: 2.4rem 1.6rem 1.4rem;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201,138,63,0.14), transparent 70%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bcard__logo img { max-height: 56px; width: auto; object-fit: contain; }
/* Source artwork ships with a wide margin; a short, wide crop box trims it. */
.bcard__logo img.is-light,
.review-hero__logo img.is-light {
  width: 220px;
  height: 52px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.review-hero__logo img.is-light { width: 260px; height: 62px; }

.bcard__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.bcard__name {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.2rem;
}
.bcard__strap {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted-2);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.score {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.score__num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.01em;
}
.score__num small { font-size: 0.75rem; color: var(--muted-2); font-weight: 600; }
.stars { display: flex; gap: 2px; color: var(--copper); }
.score__label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.licence-chip {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid var(--copper-dim);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  padding: 0.8rem 0.95rem;
  margin-bottom: 1.1rem;
  font-size: 0.74rem;
  color: var(--muted);
}
.licence-chip dt {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.licence-chip dd { margin: 0; color: var(--cream); font-size: 0.8rem; }
.licence-chip a { word-break: break-word; font-size: 0.72rem; }

.taglist { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.tag {
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
}
.tag--good { color: var(--good); border-color: rgba(111,191,139,0.3); }

.bcard__actions { margin-top: auto; display: grid; gap: 0.6rem; grid-template-columns: 1fr 1fr; }

.bcard__small {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  line-height: 1.6;
  margin: 0.9rem 0 0;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------
   Criteria / feature grids
   ------------------------------------------------------------------ */

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.2rem; }
/* Four columns for the scoring model, whose panel count divides by four —
   at three columns the last row is left half empty and reads as a black hole. */
.grid-3--wide { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.4rem; }
.grid-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }

.panel {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  padding: 1.5rem;
  transition: border-color 0.3s var(--ease);
}
.panel:hover { border-color: var(--line); }
.panel h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.6rem;
}
.panel p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.panel__index {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--copper);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.panel__weight {
  float: right;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
}

/* Score bars */
.bars { display: grid; gap: 0.9rem; }
.bar__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.bar__top b { color: var(--gold); font-size: 0.82rem; letter-spacing: 0; }
.bar__track {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
/* Same rule as .reveal: the served width stands on its own, and only
   animates up from zero when JS is there to do the animating. */
.bar__fill {
  height: 100%;
  width: var(--fill, 0);
  border-radius: 100px;
  background: linear-gradient(90deg, var(--copper-dim), var(--gold));
  transition: width 1.1s var(--ease);
}
.js-reveal .bar__fill { width: 0; }

/* ------------------------------------------------------------------
   Review page
   ------------------------------------------------------------------ */

.review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.review-hero__logo {
  display: grid;
  place-items: center;
  height: 150px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: radial-gradient(70% 110% at 50% 0%, rgba(201,138,63,0.16), rgba(255,255,255,0.02));
  margin-bottom: 1.4rem;
  padding: 1.4rem;
}
.review-hero__logo img { max-height: 74px; width: auto; }

.sticky-cta {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #16121c, #0a0810);
  padding: 1.5rem;
}
.sticky-cta h3 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.factlist { margin: 0; display: grid; gap: 0.55rem; }
.factlist div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
}
.factlist div:last-child { border-bottom: 0; padding-bottom: 0; }
.factlist dt { color: var(--muted-2); letter-spacing: 0.04em; }
.factlist dd { margin: 0; color: var(--cream); text-align: right; font-weight: 600; }

.proscons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.pc {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: rgba(255,255,255,0.015);
}
.pc h3 {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pc--pro h3 { color: var(--good); }
.pc--con h3 { color: var(--warn); }
.pc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.pc li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pc li::before {
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
}
.pc--pro li::before { content: '+'; color: var(--good); }
.pc--con li::before { content: '–'; color: var(--warn); }

/* Vertical story timeline used on review + about pages */
.vtimeline { position: relative; padding-left: 2.2rem; }
.vtimeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--copper-dim), transparent);
}
.vtimeline__item { position: relative; padding-bottom: 2rem; }
.vtimeline__item:last-child { padding-bottom: 0; }
.vtimeline__item::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: 8px;
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 1px solid var(--copper);
  background: var(--ink);
}
.vtimeline__year {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
}
.vtimeline__item h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0.35rem 0 0.5rem;
}
.vtimeline__item p { color: var(--muted); margin: 0; font-size: 0.94rem; }

.verdict {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(201,138,63,0.10), rgba(0,0,0,0));
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.verdict .rule { margin-bottom: 1.2rem; }
.verdict p { color: var(--cream); font-size: 1rem; }

.tbl-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.86rem; }
th, td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
th {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(255,255,255,0.025);
  font-weight: 700;
}
td { color: var(--muted); }
td strong { color: var(--cream); }
tr:last-child td { border-bottom: 0; }

/* ------------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------------ */

.faq { display: grid; gap: 0.7rem; }
.faq__item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq__item.is-open { border-color: var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.1rem 1.3rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.faq__q:hover { color: var(--gold); }
.faq__sign {
  flex: none;
  width: 20px; height: 20px;
  position: relative;
}
.faq__sign::before, .faq__sign::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--copper);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq__sign::before { width: 12px; height: 1.5px; }
.faq__sign::after  { width: 1.5px; height: 12px; }
.faq__item.is-open .faq__sign::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
/* Collapsed only while JS is live to reopen them; otherwise the answers
   would be unreachable rather than merely closed. */
.faq__a {
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.js-reveal .faq__a { max-height: 0; }
.faq__a-inner {
  padding: 0 1.3rem 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------ */

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.25s var(--ease), background 0.25s;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: rgba(201,138,63,0.06);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--copper) 50%), linear-gradient(135deg, var(--copper) 50%, transparent 50%); background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { background: #14111a; }

.check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.82rem; color: var(--muted); }
.check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--copper); flex: none; }

.alert {
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  border: 1px solid;
}
.alert--ok { border-color: rgba(111,191,139,0.4); background: rgba(111,191,139,0.08); color: #b8e3c8; }
.alert--err { border-color: rgba(217,139,95,0.45); background: rgba(217,139,95,0.08); color: #efc0a4; }
.alert ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }

/* ------------------------------------------------------------------
   Legal / prose pages
   ------------------------------------------------------------------ */

.prose { color: var(--muted); font-size: 0.95rem; }
.prose h2 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  margin: 2.6rem 0 0.9rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.prose h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 1.6rem 0 0.6rem;
}
.prose ul, .prose ol { padding-left: 1.2rem; margin: 0 0 1.1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--cream); }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  margin-bottom: 2.4rem;
}

.toc {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2.4rem;
  background: rgba(255,255,255,0.015);
}
.toc h2 { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--copper); margin: 0 0 0.8rem; border: 0; padding: 0; }
.toc ol { margin: 0; padding-left: 1.1rem; columns: 2; column-gap: 2rem; }
.toc li { font-size: 0.82rem; margin-bottom: 0.35rem; }

/* ------------------------------------------------------------------
   Callouts
   ------------------------------------------------------------------ */

.callout {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(201,138,63,0.09), rgba(0,0,0,0));
  padding: 1.3rem 1.5rem;
}
.callout p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.callout strong { color: var(--cream); display: block; margin-bottom: 0.3rem; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.7rem; }

.helpline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.helpline a {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.3rem;
  display: block;
  transition: all 0.3s var(--ease);
  background: rgba(255,255,255,0.015);
}
.helpline a:hover { border-color: var(--line); background: rgba(201,138,63,0.06); transform: translateY(-2px); }
.helpline img { height: 30px; width: auto; margin-bottom: 0.9rem; opacity: 0.92; }
.helpline p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */

.site-footer {
  background: #050408;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: clamp(2.8rem, 7vh, 4.5rem);
  font-size: 0.85rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2.6rem;
}
.footer__grid h4 {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer__grid a { color: var(--muted); font-size: 0.82rem; }
.footer__grid a:hover { color: var(--gold); }
.footer__about p { color: var(--muted-2); font-size: 0.82rem; line-height: 1.7; }

.footer__orgs {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 3.4rem);
}
.footer__orgs a {
  display: inline-flex;
  align-items: center;
  opacity: 0.62;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__orgs a:hover { opacity: 1; transform: translateY(-2px); }
.footer__orgs img { height: 34px; width: auto; }

.footer__warning {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__warning p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-2);
  line-height: 1.7;
  flex: 1 1 320px;
}
.footer__warning strong { color: #f0857c; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  padding-block: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--gold); }
.footer__legal .sep { color: var(--muted-2); opacity: 0.5; }

.footer__base {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.4rem 2rem;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.72rem;
  line-height: 1.8;
}

/* ------------------------------------------------------------------
   Cookie consent
   ------------------------------------------------------------------ */

.cookiebar {
  position: fixed;
  left: clamp(0.8rem, 3vw, 1.6rem);
  right: clamp(0.8rem, 3vw, 1.6rem);
  bottom: clamp(0.8rem, 3vw, 1.6rem);
  z-index: 1000;
  max-width: 720px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(14, 12, 18, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  padding: 1.3rem 1.5rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.cookiebar.is-visible { transform: none; opacity: 1; }
.cookiebar[hidden] { display: none; }

.cookiebar__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}
.cookiebar__head h2 {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.cookiebar p { font-size: 0.82rem; color: var(--muted); margin: 0 0 1.1rem; }
.cookiebar__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookiebar__actions .btn { flex: 1 1 150px; }

/* ------------------------------------------------------------------
   Reveal on scroll
   ------------------------------------------------------------------ */

/* Visible by default. The hidden starting state applies only under
   .js-reveal, which boot.js sets and withdraws again if main.js never
   checks in — otherwise a blocked script leaves whole sections rendering
   as empty coloured bands at full height. */
.reveal {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-reveal .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(22px);
}

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */

@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .review-hero { grid-template-columns: 1fr; }
  .sticky-cta { position: static; }
  .chronicle { grid-template-columns: 1fr; }
  .rail {
    position: static;
    display: flex;
    overflow-x: auto;
    border-left: 0;
    border-bottom: 1px solid rgba(201,138,63,0.18);
    padding-bottom: 0.6rem;
    gap: 0.4rem;
    scrollbar-width: none;
  }
  .rail::-webkit-scrollbar { display: none; }
  .rail__item { flex: none; min-width: 168px; padding: 0.7rem 0.8rem 1.1rem; }
  .rail__item::before { left: 0.8rem; top: auto; bottom: -5px; transform: none; }
  .rail__item.is-active::before { transform: scale(1.15); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0b0910;
    padding: 5.2rem 1.4rem 2rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-102%);
    transition: transform 0.4s var(--ease);
    z-index: -1;
    max-height: 100vh;
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.72rem;
  }
  .nav a::after { display: none; }
  .topbar__links { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .bcard__actions { grid-template-columns: 1fr; }
  .hero__sub { letter-spacing: 0.34em; padding-left: 0.34em; }
  .footer__legal { justify-content: flex-start; }
  .grid-tiles { grid-template-columns: 1fr; }
  .hero__title { letter-spacing: 0.1em; }
  .review-hero__logo img { max-width: 100%; }
}

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

@media print {
  .site-header, .site-footer, .cookiebar, .scroll-cue, .topbar { display: none; }
  body { background: #fff; color: #000; }
}
