/* Revival Brand Book — editorial, luxury, restrained */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --forest-deep: #0E1A14;
  --forest: #142420;
  --forest-mid: #1C2E28;
  --forest-line: #243731;
  --bronze: #B8893B;
  --bronze-soft: #C9A05E;
  --bronze-deep: #8C6628;
  --canvas: #ECE4D2;
  --canvas-soft: #DDD2BB;
  --sand: #C9B999;
  --ivory: #F5EFE0;
  --navy: #15243A;
  --ink: #0A100D;
  --muted: rgba(236, 228, 210, 0.55);
  --muted-strong: rgba(236, 228, 210, 0.78);
  --hairline: rgba(236, 228, 210, 0.14);
  --hairline-strong: rgba(236, 228, 210, 0.28);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: 'Inter', sans-serif;
  color: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

deck-stage section {
  width: 1920px;
  height: 1080px;
  background: var(--forest-deep);
  color: var(--canvas);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Page chrome — top/bottom rule lines & meta */
.chrome {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.chrome::before, .chrome::after {
  content: '';
  position: absolute;
  left: 80px;
  right: 80px;
  height: 1px;
  background: var(--hairline);
}
.chrome::before { top: 64px; }
.chrome::after { bottom: 64px; }

.meta {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 6;
}
.meta-tl { top: 36px; left: 80px; }
.meta-tr { top: 36px; right: 80px; }
.meta-bl { bottom: 36px; left: 80px; }
.meta-br { bottom: 36px; right: 80px; }

.bronze-dot { color: var(--bronze); }
.bronze-text { color: var(--bronze); }

/* Section markers */
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* Editorial typography */
.display {
  font-family: 'Lora', serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.serif { font-family: 'Lora', serif; }
.mono { font-family: 'JetBrains Mono', monospace; }

.italic { font-style: italic; }

/* Page body grid */
.page {
  position: absolute;
  inset: 120px 80px;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 24px;
}

.muted { color: var(--muted-strong); }
.dim { color: var(--muted); }

/* Cards / panels */
.panel {
  background: var(--forest);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 36px;
}

.panel-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Page-break light variant */
.light {
  background: var(--canvas) !important;
  color: var(--ink);
}
.light .meta, .light .eyebrow, .light .dim, .light .muted { color: rgba(10, 16, 13, 0.55); }
.light .chrome::before, .light .chrome::after { background: rgba(10, 16, 13, 0.14); }
.light .panel { background: var(--ivory); border-color: rgba(10, 16, 13, 0.12); }
.light .panel-title { color: rgba(10, 16, 13, 0.5); }

/* Bronze accent rule */
.bronze-rule {
  width: 48px;
  height: 2px;
  background: var(--bronze);
  display: block;
}

/* Links / nav */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.nav-row:first-child { border-top: 1px solid var(--hairline); }
.nav-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--bronze);
}
.nav-title {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 500;
}
.nav-page {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--muted);
}

/* Wordmark renderings — pure typographic placeholders */
.wm-classic {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
}

.kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Color swatch */
.swatch {
  border-radius: 2px;
  border: 1px solid var(--hairline);
}

/* Diagonal line pattern for placeholders */
.placeholder {
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(236,228,210,0.04) 0 1px,
      transparent 1px 14px
    );
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Quote */
.pullquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.005em;
}

/* Do / Don't */
.do-dont-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.tag-do { color: var(--bronze); }
.tag-dont { color: #C97A6E; }
