/* slaytlive.com — "Screening Room" site system (2026-08)
   Dark, cinematic, quiet. Register B grounds; Fraunces display; sage accent.
   Single-theme by design: every surface painted explicitly. */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/fraunces-latin.woff2) format('woff2');
}

:root {
  /* warm paper ground; deep forest accent; ink text.
     "paper" = foreground/ink here; "ground/base/raised" = light surfaces. */
  --ground: #f7f5f1;
  --base: #fdfbf7;
  --raised: #efece6;
  --paper: #26231f;
  --muted: rgba(38, 35, 31, 0.66);
  --faint: rgba(38, 35, 31, 0.44);
  --hairline: rgba(38, 35, 31, 0.14);
  --hairline-strong: rgba(38, 35, 31, 0.26);
  --sage: #3e6b52;
  --sage-deep: #2f5440;
  --sage-soft: rgba(62, 107, 82, 0.10);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --r: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ground);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 580;
  letter-spacing: -0.012em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(42px, 6.4vw, 84px); font-variation-settings: 'opsz' 100; }
h2 { font-size: clamp(30px, 4.2vw, 52px); font-variation-settings: 'opsz' 72; margin-bottom: 18px; }
h3 { font-size: clamp(21px, 2.4vw, 27px); font-variation-settings: 'opsz' 40; line-height: 1.15; margin-bottom: 10px; }
.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 18px;
}
.label.quiet { color: var(--faint); }
p { margin: 0 0 14px; max-width: 62ch; }
.dek { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.lead { font-size: 16.5px; color: var(--muted); max-width: 60ch; }
.small { font-size: 13.5px; color: var(--muted); }
a { color: var(--sage); text-decoration: none; }
a:hover { color: var(--paper); }
strong { font-weight: 600; color: var(--paper); }
::selection { background: var(--sage-soft); }

/* ---------- chrome ---------- */
.nav-bar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-in { display: flex; align-items: center; gap: 28px; padding: 15px 24px; }
.brand {
  font-family: var(--serif); font-weight: 600; font-size: 21px;
  color: var(--paper); text-decoration: none; margin-right: auto;
  letter-spacing: 0;
}
.brand span { color: var(--sage); }
.nav-links { display: flex; gap: 26px; font-size: 13.5px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a.on { color: var(--paper); }
@media (max-width: 760px) {
  .nav-in { flex-wrap: wrap; row-gap: 10px; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
}

.btn {
  display: inline-block; font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--paper); color: var(--ground); }
.btn-primary:hover { background: #000; color: #f7f5f1; }
.btn-ghost { border-color: var(--hairline-strong); color: var(--paper); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

/* ---------- structure ---------- */
section.band { padding: clamp(56px, 8vw, 104px) 0; border-bottom: 1px solid var(--hairline); }
.hero { padding: clamp(72px, 10vw, 128px) 0 clamp(48px, 6vw, 72px); }
.cta-row { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; align-items: center; }

.panel {
  background: var(--base);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
}

/* quiet stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.stats > div { background: var(--ground); padding: 26px 22px 28px; }
.stats .v { font-family: var(--serif); font-weight: 580; font-size: 30px; letter-spacing: -0.01em; }
.stats .n { font-size: 13px; line-height: 1.55; color: var(--muted); margin-top: 8px; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* ledger rows (promises, answers) */
.rows { border-top: 1px solid var(--hairline); }
.row2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); border-bottom: 1px solid var(--hairline); }
.row2 > div { padding: 20px 26px 20px 0; }
.row2 > div + div { padding: 20px 0 20px 26px; border-left: 1px solid var(--hairline); }
@media (max-width: 760px) {
  .row2 { grid-template-columns: 1fr; }
  .row2 > div { padding: 16px 0 4px; }
  .row2 > div + div { padding: 0 0 18px; border-left: 0; }
}
.row2 .t { font-family: var(--serif); font-weight: 580; font-size: 19px; line-height: 1.2; }
.row2 .k { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-top: 7px; }
.row2 .b { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* product shots */
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 30px; }
@media (max-width: 860px) { .shots { grid-template-columns: 1fr; } }
.shot { display: block; text-decoration: none; color: inherit; }
.shot img, .screen img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r);
}
.shot:hover img { border-color: var(--sage); }
.shot .cap { font-size: 13px; line-height: 1.55; margin-top: 12px; color: var(--muted); }
.shot .cap strong { color: var(--paper); }
.screen { display: block; }
.screen .cap { font-size: 13px; margin-top: 12px; color: var(--faint); }

/* statement panel (replaces the red poster) */
.statement {
  background: var(--base);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.statement .in { padding: clamp(56px, 8vw, 96px) 24px; max-width: 1080px; margin: 0 auto; }
.statement h2 { max-width: 24ch; }
.statement .keyline { width: 44px; height: 3px; background: var(--sage); border-radius: 2px; margin-bottom: 26px; }

/* doors */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 860px) { .doors { grid-template-columns: 1fr; } }
.door {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--base); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: 26px 24px 24px; text-decoration: none; color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.door:hover { border-color: var(--sage); }
.door .who { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.door h3 { margin: 2px 0 0; }
.door p { font-size: 14px; color: var(--muted); margin: 0; }
.door .go { margin-top: auto; padding-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--sage); }
.door:hover .go { color: var(--paper); }

/* keyboard specimen */
kbd {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  background: var(--paper); color: var(--ground);
  padding: 3px 8px; border-radius: 5px;
}

/* journey map (who does what, per stage) */
.journey { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--r); background: var(--base); margin-top: 30px; }
.jgrid { display: grid; grid-template-columns: 92px repeat(6, minmax(150px, 1fr)); min-width: 1010px; }
.jgrid > div { padding: 13px 14px; border-bottom: 1px solid var(--hairline); border-right: 1px solid var(--hairline); font-size: 12.5px; line-height: 1.45; color: var(--muted); }
.jgrid > div:nth-child(7n) { border-right: 0; }
.jgrid .jh { background: var(--raised); font-weight: 600; color: var(--paper); font-size: 12px; }
.jgrid .jh .n { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em; color: var(--sage); margin-bottom: 3px; }
.jgrid .jl { font-weight: 600; color: var(--paper); font-size: 12px; background: var(--raised); display: flex; align-items: center; }
.jgrid .off { color: var(--hairline-strong); }
.jgrid .hot { background: var(--sage-soft); color: var(--paper); }
.jgrid > div:nth-last-child(-n+7) { border-bottom: 0; }

/* filmstrip (comprehensive screens grid) */
.strip3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
@media (max-width: 960px) { .strip3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .strip3 { grid-template-columns: 1fr; } }
.strip3 .wide { grid-column: 1 / -1; }
.stepno { font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 8px; }

/* footer */
footer { padding: 40px 0 56px; }
.foot-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--faint); }
.foot-grid a { color: var(--muted); }
.foot-grid a:hover { color: var(--paper); }
.foot-notice { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--hairline); font-size: 12.5px; color: var(--faint); max-width: none; }
