/* ==========================================================================
   The Unreasonable Why — unreasonablewhy.com
   Mobile-first. Brand tokens sampled from the printed cover (do not retune).
   Self-hosted fonts: no third-party request in the critical path.
   ========================================================================== */

/* ---------- fonts (self-hosted, latin subset, variable where possible) ---- */
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/Fraunces-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/Fraunces-var-italic.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('/fonts/Archivo-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Black';
  src: url('/fonts/ArchivoBlack.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ------------------------------------------------------- */
:root {
  --gold: #C38326;
  --gold-deep: #A86E1C;
  --sienna: #622B10;
  --ink: #111214;
  --ink-70: #4a4b4f;
  --cream: #F5EFE3;
  --cream-2: #EDE3D0;
  --paper: #FBF7EF;
  --glow: #F2C14E;
  --rule: #d9cdb6;

  --font-display: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
  --font-body: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-util: 'Archivo', system-ui, 'Helvetica Neue', Arial, sans-serif;

  --bd-w: 2px;
  --bd: var(--bd-w) solid var(--ink);
  --radius: 3px;
  --offset-sm: 6px 6px 0 var(--sienna);
  --offset: 10px 10px 0 var(--sienna);

  --wrap: 1140px;
  --measure: 34rem;      /* reading column */
  --nav-h: 60px;
  --gap: clamp(1.5rem, 5vw, 3.5rem);
}

/* ---------- reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-size: clamp(1.02rem, 0.98rem + 0.22vw, 1.14rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;          /* belt-and-braces against rogue overflow */
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--sienna); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }
strong { font-weight: 600; }
::selection { background: var(--sienna); color: var(--cream); }

h1, h2, h3, h4 { line-height: 1.08; font-weight: 400; text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.section-dark :focus-visible, .hero :focus-visible, .site-footer :focus-visible { outline-color: var(--glow); }

/* ---------- layout helpers ---------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2.4rem); }
.section { padding-block: clamp(2.75rem, 8vw, 5.5rem); }
.section-cream { background: var(--cream); }
.section-cream-2 { background: var(--cream-2); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-gold { background: var(--gold); color: var(--ink); }
.section-dark a { color: var(--glow); }
.section-dark h2, .section-dark h3 { color: var(--cream); }

.skip-link {
  position: absolute; left: .6rem; top: -100px;
  background: var(--ink); color: var(--glow);
  font-family: var(--font-util); font-weight: 600; letter-spacing: .08em;
  padding: .7rem 1.1rem; border-radius: var(--radius); z-index: 200;
  transition: top .18s;
}
.skip-link:focus { top: .6rem; }

/* ---------- type utilities ---------------------------------------------- */
.eyebrow {
  font-family: var(--font-util);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: .2em; font-size: .74rem; color: var(--sienna);
}
.eyebrow--light { color: var(--glow); }

.h1 { font-family: var(--font-display); font-size: clamp(2.1rem, 8.5vw, 4rem); letter-spacing: -.01em; }
.h2 { font-family: var(--font-display); font-size: clamp(1.65rem, 5.6vw, 2.7rem); letter-spacing: -.005em; }
.h3 { font-family: var(--font-util); font-weight: 600; font-size: clamp(1.15rem, 3.4vw, 1.45rem); line-height: 1.25; }

.lede { font-size: clamp(1.12rem, 1rem + .7vw, 1.4rem); line-height: 1.55; color: var(--ink); }
.muted { color: var(--ink-70); }
.section-dark .muted { color: #b9b3a6; }

.pullquote {
  font-size: clamp(1.35rem, 1.1rem + 1.6vw, 2rem);
  line-height: 1.32; font-style: italic;
}
.epigraph {
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem; font-style: italic; color: var(--sienna);
  margin-block: 1.6rem;
}
.epigraph cite { display: block; font-style: normal; font-family: var(--font-util); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .55rem; color: var(--ink-70); }

/* ---------- buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  min-height: 48px;                    /* mobile tap target */
  padding: .8rem 1.4rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-util); font-weight: 600;
  font-size: .95rem; letter-spacing: .02em;
  text-decoration: none; border: var(--bd); border-radius: var(--radius);
  box-shadow: var(--offset-sm);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  cursor: pointer;
}
.btn:hover { color: var(--btn-fg); transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--sienna); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--sienna); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); box-shadow: none; transform: none; }
.section-dark .btn--ghost { --btn-fg: var(--cream); border-color: var(--cream); }
.section-dark .btn--ghost:hover { --btn-bg: var(--cream); --btn-fg: var(--ink); }
.btn--lg { min-height: 54px; padding: .95rem 1.7rem; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* ---------- nav ---------------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,239,.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: var(--bd-w) solid var(--ink);
}
.nav-inner {
  max-width: var(--wrap); margin-inline: auto;
  padding-inline: clamp(1.1rem, 5vw, 2.4rem);
  min-height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  font-family: var(--font-util); font-weight: 600;
  font-size: .84rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; line-height: 1.2;
}
.brand strong { color: var(--gold-deep); font-weight: 900; }

.nav-toggle {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-right: -8px;
  background: transparent; border: 0; cursor: pointer; color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 24px; height: 2px; background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after  { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

.nav-links {
  list-style: none; padding: 0;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-bottom: var(--bd-w) solid var(--ink);
  display: grid; gap: 0;
  max-height: 0; overflow: hidden; visibility: hidden;
  transition: max-height .25s ease, visibility 0s .25s;
}
.nav-links[data-open="true"] { max-height: 80vh; overflow-y: auto; visibility: visible; transition: max-height .25s ease; }
.nav-links a {
  display: block; padding: .95rem clamp(1.1rem, 5vw, 2.4rem);
  font-family: var(--font-util); font-weight: 500; font-size: 1rem;
  color: var(--ink); text-decoration: none;
  border-top: 1px solid var(--rule);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--cream); color: var(--sienna); }
.nav-links a[aria-current="page"] { font-weight: 600; box-shadow: inset 3px 0 0 var(--gold); }
.nav-links .nav-cta { padding: 1rem clamp(1.1rem, 5vw, 2.4rem) 1.3rem; border-top: 1px solid var(--rule); }
/* `.nav-links a` (0,1,1) out-specifies `.btn` (0,1,0), so the button's own
   colour has to be restated here or the CTA renders ink-on-ink. */
.nav-links .nav-cta a { border: var(--bd); color: var(--btn-fg); background: var(--btn-bg); }
.nav-links .nav-cta a:hover { color: var(--btn-fg); }

@media (min-width: 62rem) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static; display: flex; align-items: center; gap: .3rem;
    max-height: none; visibility: visible; overflow: visible;
    background: transparent; border-bottom: 0; transition: none;
  }
  .nav-links a { padding: .5rem .7rem; border-top: 0; font-size: .92rem; border-radius: var(--radius); }
  .nav-links a[aria-current="page"] { background: transparent; box-shadow: inset 0 -2px 0 var(--gold); }
  .nav-links .nav-cta { padding: 0 0 0 .6rem; border-top: 0; }
  .nav-links .nav-cta a { padding: .6rem 1.1rem; min-height: 42px; box-shadow: 4px 4px 0 var(--sienna); background: var(--ink); color: var(--paper); }
}

/* ---------- hero --------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--gold); color: var(--ink); border-bottom: var(--bd-w) solid var(--ink); }
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(2.5rem, 9vw, 5rem) clamp(1.1rem, 5vw, 2.4rem) clamp(2.5rem, 8vw, 4.5rem);
  display: grid; gap: clamp(2rem, 7vw, 3rem);
}
/* "Unreasonable" is 12 characters of Archivo Black — it is the widest word on
   the site and it sets the ceiling here. Measured: 11vw keeps it inside the
   gutters from 320px up. Do not raise the vw term without re-checking at 320. */
.hero-title { font-family: var(--font-display); font-size: clamp(2rem, 11vw, 6rem); line-height: .94; letter-spacing: -.025em; }
.hero-title .line-2 { display: block; color: var(--sienna); }
.hero-sub { font-size: clamp(1.1rem, 4.4vw, 1.5rem); font-style: italic; margin-top: 1rem; max-width: 26ch; }
.hero-eyebrow { color: var(--sienna); }

.hero-cover { position: relative; justify-self: center; max-width: 300px; width: 72%; }
.hero-cover img { width: 100%; border: var(--bd); box-shadow: var(--offset); }
.hero-badge {
  position: absolute; top: -14px; right: -14px; z-index: 3;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--ink); color: var(--glow); border: var(--bd-w) solid var(--sienna);
  display: grid; place-content: center; text-align: center; line-height: 1;
  font-family: var(--font-util);
}
.hero-badge b { font-size: 1.7rem; font-weight: 900; display: block; }
.hero-badge span { font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }

@media (min-width: 52rem) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .hero-cover { width: 100%; max-width: 340px; justify-self: end; }
}

/* floating doodles — decorative only, hidden from AT and on small screens */
.doodle-field { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; }
.doodle { position: absolute; width: var(--d-size); }
.doodle img { width: 100%; opacity: .85; }
@media (min-width: 52rem) {
  .doodle { animation: drift var(--d-dur, 16s) ease-in-out infinite alternate; }
}
@media (max-width: 51.99rem) { .doodle-field { display: none; } }
@keyframes drift {
  from { transform: translate(0,0) rotate(0); }
  to   { transform: translate(var(--d-x,14px), var(--d-y,-14px)) rotate(var(--d-rot,5deg)); }
}

/* ---------- ticker ------------------------------------------------------- */
.ticker { background: var(--ink); color: var(--cream); overflow: hidden; border-bottom: var(--bd-w) solid var(--ink); }
.ticker-track {
  display: flex; gap: 1.4rem; white-space: nowrap; width: max-content;
  padding-block: .75rem;
  font-family: var(--font-util); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  animation: marquee 26s linear infinite;
}
.ticker .dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- page header (interior pages) --------------------------------- */
.page-head { background: var(--cream); border-bottom: var(--bd-w) solid var(--ink); padding-block: clamp(2rem, 7vw, 3.5rem); }
.page-head .h1 { margin-top: .5rem; font-size: clamp(1.9rem, 7vw, 3.3rem); }
.page-head .lede { margin-top: 1.1rem; max-width: 48ch; }

/* breadcrumbs */
.crumbs { font-family: var(--font-util); font-size: .78rem; letter-spacing: .06em; color: var(--ink-70); }
.crumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs li:not(:last-child)::after { content: '/'; margin-left: .4rem; color: var(--rule); }
.crumbs a { color: var(--sienna); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- prose / reading column --------------------------------------- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 {
  font-family: var(--font-util); font-weight: 600;
  font-size: clamp(1.3rem, 4.2vw, 1.7rem); line-height: 1.22;
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--rule);
}
.prose h3 { font-family: var(--font-util); font-weight: 600; font-size: 1.1rem; margin-top: 1.9rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: .5rem; }
.prose blockquote {
  border-left: 3px solid var(--gold); padding-left: 1.1rem;
  font-style: italic; color: var(--sienna);
}
.prose hr { border: 0; border-top: 1px solid var(--rule); margin-block: 2.4rem; }
.prose .drop::first-letter {
  float: left; font-family: var(--font-display); font-size: 3.4rem;
  line-height: .82; padding: .1rem .5rem .1rem 0; color: var(--sienna);
}

/* answer-first block — the bit AI assistants lift */
.answer {
  background: var(--cream); border: var(--bd); border-radius: var(--radius);
  box-shadow: var(--offset-sm);
  padding: clamp(1.1rem, 4vw, 1.6rem);
  margin-block: 1.8rem;
}
.answer p { font-size: 1.06rem; line-height: 1.6; }
.answer > .eyebrow { display: block; margin-bottom: .6rem; }
.answer > * + * { margin-top: .8rem; }

/* key-takeaways list */
.takeaways { background: var(--paper); border: 1px dashed var(--gold-deep); border-radius: var(--radius); padding: clamp(1.1rem, 4vw, 1.5rem); }
.takeaways ul { padding-left: 1.15rem; margin-top: .7rem; }

/* ---------- cards / grids ------------------------------------------------ */
.grid { display: grid; gap: 1.1rem; }
@media (min-width: 40rem) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 58rem) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--2 { gap: 1.6rem; } }

.card {
  background: var(--paper); border: var(--bd); border-radius: var(--radius);
  padding: clamp(1.15rem, 4vw, 1.6rem);
  display: flex; flex-direction: column; gap: .6rem;
  box-shadow: var(--offset-sm);
  transition: transform .14s ease, box-shadow .14s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--sienna); color: inherit; }
.card h3 { color: var(--ink); }
.card p { font-size: .98rem; color: var(--ink-70); }
.card .card-more { margin-top: auto; font-family: var(--font-util); font-weight: 600; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--sienna); }
.section-cream .card { background: var(--paper); }
.card--num { position: relative; }
.card--num .num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep); line-height: 1; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { max-width: 46rem; }
.faq details {
  border-bottom: 1px solid var(--rule); padding-block: .3rem;
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding-block: 1.05rem; min-height: 48px;
  font-family: var(--font-util); font-weight: 600; font-size: 1.04rem; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; flex: none; font-weight: 400; font-size: 1.5rem; line-height: 1;
  color: var(--gold-deep); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding-bottom: 1.2rem; max-width: var(--measure); }
.faq .faq-a > * + * { margin-top: .8rem; }

/* ---------- forms -------------------------------------------------------- */
.news-form { max-width: 34rem; }
.news-row { display: grid; gap: .7rem; }
@media (min-width: 34rem) { .news-row { grid-template-columns: 1fr auto; } }
.news-row input[type="email"] {
  width: 100%; min-height: 54px; padding: .85rem 1rem;
  font-family: var(--font-util); font-size: 1rem;   /* >=16px stops iOS zoom-on-focus */
  background: var(--paper); color: var(--ink);
  border: var(--bd); border-radius: var(--radius);
}
.news-row input::placeholder { color: #9a948a; }
.news-note { font-family: var(--font-util); font-size: .8rem; color: var(--ink-70); margin-top: .7rem; }
.section-dark .news-note { color: #b9b3a6; }
/* Prose stays first in the DOM so the answer block leads the page for readers
   and retrieval; the form sits beside it once there is room, under it if not.
   No CSS `order` reversal — it would put the visual first element last in the
   tab order. */
.contact-grid { display: grid; gap: clamp(2.2rem, 6vw, 3rem); align-items: start; }
@media (min-width: 58rem) { .contact-grid { grid-template-columns: 1fr .9fr; } }
.contact-form { max-width: 40rem; }
.contact-form .field { display: grid; gap: .45rem; }
.contact-form .field + .field, .field-row + .field { margin-top: 1.1rem; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 40rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.contact-form label {
  font-family: var(--font-util); font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-70);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .85rem 1rem;
  font-family: var(--font-util); font-size: 1rem;   /* >=16px stops iOS zoom-on-focus */
  background: var(--paper); color: var(--ink);
  border: var(--bd); border-radius: var(--radius);
}
.contact-form input, .contact-form select { min-height: 54px; }
.contact-form textarea { resize: vertical; min-height: 9rem; line-height: 1.5; }
.contact-form ::placeholder { color: #9a948a; }
.contact-form :focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.form-status { font-family: var(--font-util); font-size: .9rem; margin-top: .7rem; min-height: 1.2em; }
.form-status[data-state="ok"] { color: #1c7a4a; }
.form-status[data-state="err"] { color: #b3261e; }
.section-dark .form-status[data-state="ok"] { color: #7fd6a6; }

/* ---------- author ------------------------------------------------------- */
.author-grid { display: grid; gap: 1.6rem; }
@media (min-width: 46rem) { .author-grid { grid-template-columns: 190px 1fr; align-items: start; gap: 2.4rem; } }
.author-photo {
  aspect-ratio: 1; display: grid; place-items: center;
  background: var(--gold); color: var(--sienna);
  border: var(--bd); border-radius: var(--radius); box-shadow: var(--offset-sm);
  max-width: 190px;
}

/* ---------- next / prev -------------------------------------------------- */
.pager { display: grid; gap: .9rem; margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid var(--rule); }
@media (min-width: 40rem) { .pager { grid-template-columns: 1fr 1fr; } }
.pager a { display: block; text-decoration: none; padding: 1rem 1.1rem; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paper); }
.pager a:hover { border-color: var(--ink); }
.pager .dir { display: block; font-family: var(--font-util); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-70); }
.pager .t { display: block; font-weight: 600; margin-top: .25rem; color: var(--ink); }
.pager .next { text-align: right; }

/* ---------- CTA band ----------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band p { max-width: 52ch; margin-inline: auto; margin-top: 1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- coming soon -------------------------------------------------- */
.soon-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-util); font-weight: 600; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--ink); color: var(--glow);
  padding: .45rem .85rem; border-radius: 100px;
}
.soon-list { list-style: none; padding: 0; display: grid; gap: .9rem; margin-top: 1.6rem; }
.soon-list li { border-left: 3px solid var(--gold); padding: .3rem 0 .3rem 1rem; }
.soon-list .t { font-family: var(--font-util); font-weight: 600; display: block; }
.soon-list .d { color: var(--ink-70); font-size: .96rem; }

/* ---------- footer ------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(2.5rem, 7vw, 4rem); }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--glow); text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 46rem) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.4rem; } }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand strong { color: var(--gold); }
.footer-brand p { margin-top: .8rem; font-size: .95rem; color: #b9b3a6; max-width: 30ch; }
.footer-col h3 { font-family: var(--font-util); font-weight: 600; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.footer-col ul { list-style: none; padding: 0; margin-top: .9rem; display: grid; gap: .55rem; }
.footer-col a { font-size: .96rem; }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid #2b2c30;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-family: var(--font-util); font-size: .8rem; color: #8d887f;
}

/* ---------- misc --------------------------------------------------------- */
.vh { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.cover-inline { max-width: 210px; border: var(--bd); box-shadow: var(--offset-sm); }
.meta-list { list-style: none; padding: 0; display: grid; gap: .5rem; font-family: var(--font-util); font-size: .93rem; }
.meta-list dt, .meta-list .k { color: var(--ink-70); }
dl.meta-list { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.1rem; }
dl.meta-list dt { font-weight: 600; }

/* ---------- press kit ---------------------------------------------------- */
.facts { display: grid; grid-template-columns: 1fr; gap: .25rem 1.4rem; margin-top: 1.6rem; max-width: 46rem; }
@media (min-width: 34rem) { .facts { grid-template-columns: 12rem 1fr; } }
.facts dt { font-family: var(--font-util); font-weight: 600; font-size: .82rem;
            letter-spacing: .1em; text-transform: uppercase; color: var(--sienna); padding-top: .55rem; }
.facts dd { margin: 0; padding-bottom: .55rem; border-bottom: 1px solid var(--rule); }
@media (min-width: 34rem) { .facts dt { border-bottom: 1px solid var(--rule); padding-bottom: .55rem; } }
.facts--dark dt { color: var(--glow); border-color: #2b2c30; }
.facts--dark dd { border-color: #2b2c30; }

.copyblock { border-left: 3px solid var(--gold); padding: .2rem 0 .2rem 1.2rem; margin-top: 2rem; max-width: 60ch; }
.copyblock h3 { font-family: var(--font-util); font-weight: 600; font-size: .8rem;
                letter-spacing: .14em; text-transform: uppercase; color: var(--sienna); }
.copyblock p { margin-top: .7rem; }

.note { color: var(--ink-70); font-size: .98rem; margin-top: 1rem; }
.section-dark .note { color: #b9b3a6; }

.assets { display: grid; gap: .9rem; margin-top: 1.8rem; align-content: start;
          grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
a.asset { display: flex; flex-direction: column; gap: .35rem; text-decoration: none; color: inherit;
          background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius);
          padding: .6rem; transition: border-color .14s ease, transform .14s ease; }
a.asset:hover { border-color: var(--ink); transform: translateY(-2px); color: inherit; }
 /* square wells: the kit mixes 4:5 cards, 2:3 covers and a 2.6:1 banner, and
    a square letterboxes all three without any one dominating the grid */
.asset-pic { display: grid; place-items: center; background: var(--ink);
             border-radius: 2px; aspect-ratio: 1/1; overflow: hidden; }
.asset-pic img { width: 100%; height: 100%; object-fit: contain; }
.asset-t { font-family: var(--font-util); font-weight: 600; font-size: .84rem; line-height: 1.25; margin-top: .3rem; }
.asset-m { font-family: var(--font-util); font-size: .72rem; color: var(--ink-70); line-height: 1.35; }
.asset-m .lnk { text-decoration: underline; }

.swatches { display: grid; gap: .8rem; margin-top: 1.6rem;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
.sw { font-family: var(--font-util); font-size: .8rem; }
.sw span { display: block; height: 62px; border-radius: var(--radius); border: 1px solid rgba(245,239,227,.25); }
.sw b { display: block; margin-top: .5rem; font-weight: 600; }
.sw code { font-size: .74rem; color: #b9b3a6; }

.warn { background: var(--paper); border: var(--bd); border-left-width: 6px; border-radius: var(--radius);
        padding: clamp(1rem, 4vw, 1.4rem); margin: 1.6rem 0 2rem; max-width: 62rem; font-size: .98rem; }
.warn strong { display: block; margin-bottom: .5rem; }
.asset-dl { display: flex; gap: .4rem; margin-top: .35rem; }
.asset-dl a { flex: 1; text-align: center; text-decoration: none;
  font-family: var(--font-util); font-weight: 600; font-size: .72rem; letter-spacing: .08em;
  padding: .45rem .3rem; min-height: 32px; display: grid; place-items: center;
  border: 1px solid var(--rule); border-radius: 2px; color: var(--sienna); }
.asset-dl a:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
