/* ═══════════════════════════════════
   TOKENS
═══════════════════════════════════ */
:root {
  --bg:         #f7f4ef;
  --bg-alt:     #eeebe3;
  --bg-card:    #ffffff;
  --dark:       #141008;
  --dark-soft:  #1e1810;
  --text:       #2a2215;
  --muted:      #6b6050;
  --divider:    #ddd8cc;
  --gold:       #b8870f;
  --gold-lt:    #d4a82a;
  --gold-pale:  #f5e8c0;
  --war:        #8b1f1f;
  --war-lt:     #c0392b;
  --peace:      #1a5040;
  --peace-lt:   #27ae60;
  --nav-h:      64px;
  --max-w:      1200px;
  --prose-w:    760px;
  --ff-h:       'Playfair Display', Georgia, serif;
  --ff-b:       'Lora', Georgia, serif;
  --ff-ui:      'DM Sans', system-ui, sans-serif;
  --r:          10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 600; color: var(--dark); }

/* ═══════════════════════════════════
   READING PROGRESS
═══════════════════════════════════ */
#pgbar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 200;
  transition: width 0.08s linear;
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px; gap: 32px;
  background: rgba(247,244,239,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  z-index: 100;
}

.nav-brand {
  font-family: var(--ff-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.nav-brand span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex; gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }

/* ─── Hamburger menu ─── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════
   AD SLOTS
═══════════════════════════════════ */
.ad-wrap {
  display: flex; justify-content: center; align-items: center;
  padding: 28px 32px;
}
.ad-slot {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  border: 1px dashed var(--divider);
  border-radius: 8px;
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ad-728  { width: 100%; max-width: 728px; height: 90px; }
.ad-300  { width: 300px; height: 250px; }

/* ═══════════════════════════════════
   SECTION SHELL
═══════════════════════════════════ */
section { padding: 88px 32px; }
.wrap    { max-width: var(--max-w); margin: 0 auto; }
.prose   { max-width: var(--prose-w); margin: 0 auto; }

.section-label {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.section-label::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  height: 1px; width: 0%;
  background: var(--gold);
  transition: width 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.section-label.drawn::after { width: 100%; }

h2 {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h3 {
  font-family: var(--ff-h);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin: 40px 0 14px;
}

p { font-size: 1.05rem; color: var(--text); line-height: 1.85; margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════
   PULLQUOTE
═══════════════════════════════════ */
.pull {
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 22px 32px;
  margin: 36px 0;
}
.pull p {
  font-family: var(--ff-h);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════
   DEFINITION BOX
═══════════════════════════════════ */
.def-box {
  background: var(--dark);
  border-radius: 16px;
  padding: 48px 52px;
  margin: 36px 0;
}
.def-label {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.def-box p {
  font-size: 1.2rem;
  color: rgba(240,236,224,0.82);
  margin: 0;
  line-height: 1.72;
}

/* ═══════════════════════════════════
   TWO-COL LAYOUT
═══════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col + .two-col { margin-top: 72px; }

/* ═══════════════════════════════════
   FLASHPOINT CARDS
═══════════════════════════════════ */
.flashpoints {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  margin: 32px 0 40px;
}
.fp-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--r);
  border-top: 3px solid var(--gold);
  padding: 22px;
}
.fp-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
}
.fp-title {
  font-family: var(--ff-ui); font-size: 0.88rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.fp-desc {
  font-family: var(--ff-ui); font-size: 0.78rem;
  color: var(--muted); line-height: 1.55;
}

/* ═══════════════════════════════════
   CONDITIONS LIST
═══════════════════════════════════ */
.conditions {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 28px 0;
}
.cond {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--r);
  padding: 18px 22px;
}
.cond-num {
  font-family: var(--ff-h); font-size: 1.25rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0; line-height: 1.4;
  min-width: 28px;
}
.cond-body { font-family: var(--ff-ui); font-size: 0.88rem; color: var(--text); line-height: 1.55; }
.cond-body strong { font-size: 0.92rem; display: block; margin-bottom: 3px; }

/* ═══════════════════════════════════
   TIMELINE BAR
═══════════════════════════════════ */
.timeline-bar {
  background: var(--dark);
  border-radius: 14px;
  padding: 32px 36px;
  margin: 36px 0;
}
.tbar-label {
  font-family: var(--ff-ui); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,236,224,0.4); margin-bottom: 20px;
}
.tbar-track {
  height: 10px; background: rgba(255,255,255,0.06);
  border-radius: 8px; overflow: hidden; margin-bottom: 12px;
}
.tbar-fill {
  height: 100%; border-radius: 8px;
  background: linear-gradient(90deg, var(--war-lt) 0%, #e53935 100%);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}
.tbar-labels {
  display: flex; justify-content: space-between;
  font-family: var(--ff-ui); font-size: 0.73rem;
}
.tbar-war   { color: var(--war-lt); font-weight: 600; }
.tbar-peace { color: rgba(240,236,224,0.4); }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-list { list-style: none; margin: 32px 0; }
details.faq-item { border-bottom: 1px solid var(--divider); }
details.faq-item:first-child { border-top: 1px solid var(--divider); }
summary.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 0;
  font-family: var(--ff-h); font-size: 1.08rem; font-weight: 600;
  color: var(--dark); cursor: pointer; user-select: none; list-style: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::marker { display: none; }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--divider); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--gold);
  transition: transform 0.3s ease;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body { padding-bottom: 22px; padding-right: 50px; }
.faq-body p { font-size: 1rem; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════
   QUOTES
═══════════════════════════════════ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.qmark {
  font-family: var(--ff-h); font-size: 4rem;
  color: var(--gold); line-height: 0.7;
  margin-bottom: 18px; display: block;
}
.qtext {
  font-family: var(--ff-b); font-size: 0.98rem; font-style: italic;
  color: rgba(240,236,224,0.75); line-height: 1.72; margin-bottom: 16px;
}
.qsource {
  font-family: var(--ff-ui); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}

/* ═══════════════════════════════════
   BOOKS / FURTHER READING
═══════════════════════════════════ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.book-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--r);
  padding: 22px;
  display: flex; gap: 18px; align-items: flex-start;
}
.book-spine {
  width: 52px; height: 72px; flex-shrink: 0;
  border-radius: 3px;
}
.book-title {
  font-family: var(--ff-h); font-size: 0.95rem; font-weight: 600;
  color: var(--dark); margin-bottom: 4px; line-height: 1.3;
}
.book-author {
  font-family: var(--ff-ui); font-size: 0.75rem;
  color: var(--muted); margin-bottom: 8px;
}
.book-desc {
  font-family: var(--ff-ui); font-size: 0.78rem;
  color: var(--muted); line-height: 1.5;
}

/* ═══════════════════════════════════
   CASES
═══════════════════════════════════ */
.cases-legend {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin: 20px 0 28px;
}
.leg {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-ui); font-size: 0.8rem;
  color: rgba(240,236,224,0.5);
}
.leg-dot { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}
.case-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  cursor: default;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.case-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.case-icon {
  width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; margin-top: 2px;
}
.case-icon.war   { background: rgba(139,31,31,0.55); border: 1px solid rgba(192,57,43,0.35); }
.case-icon.peace { background: rgba(26,80,64,0.55);  border: 1px solid rgba(39,174,96,0.35); }
.case-title {
  font-family: var(--ff-ui); font-size: 0.88rem; font-weight: 600;
  color: rgba(240,236,224,0.9); margin-bottom: 3px;
}
.case-period {
  font-family: var(--ff-ui); font-size: 0.73rem;
  color: rgba(240,236,224,0.38); margin-bottom: 7px;
}
.case-badge {
  display: inline-block;
  font-family: var(--ff-ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px;
}
.case-badge.war   { background: rgba(139,31,31,0.4);  color: #e57373; }
.case-badge.peace { background: rgba(26,80,64,0.4);   color: #81c784; }
.case-note {
  font-family: var(--ff-ui); font-size: 0.72rem;
  color: rgba(240,236,224,0.35); line-height: 1.45;
  margin-top: 5px;
}
.case-card.war-c:hover {
  border-color: rgba(192,57,43,0.45);
  box-shadow: 0 0 0 1px rgba(192,57,43,0.2), 0 12px 36px rgba(139,31,31,0.2);
}
.case-card.peace-c:hover {
  border-color: rgba(39,174,96,0.45);
  box-shadow: 0 0 0 1px rgba(39,174,96,0.2), 0 12px 36px rgba(26,80,64,0.2);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 52px 32px;
  text-align: center;
}
.footer-brand {
  font-family: var(--ff-h); font-size: 1.1rem; font-weight: 700;
  color: rgba(240,236,224,0.75); margin-bottom: 14px;
}
.footer-brand span { color: var(--gold); }
footer p {
  font-family: var(--ff-ui); font-size: 0.8rem;
  color: rgba(240,236,224,0.35); line-height: 1.7; margin: 0;
}
footer a { color: rgba(240,236,224,0.4); text-decoration: underline; }
footer a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   FADE-IN ANIMATIONS
═══════════════════════════════════ */
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade.in { opacity: 1; transform: none; }
.fade.fl { transform: translateX(-32px) translateY(0); }
.fade.fr { transform: translateX(32px) translateY(0); }
.fade.fs { transform: scale(0.92) translateY(0); }
.fade.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   HEADING REVEAL
═══════════════════════════════════ */
.h2-wrap  { overflow: hidden; display: block; }
.h2-inner {
  display: block;
  transform: translateY(64px) skewY(1.5deg);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1), opacity 0.9s ease;
}
.h2-wrap.revealed .h2-inner {
  transform: translateY(0) skewY(0);
  opacity: 1;
}

/* ═══════════════════════════════════
   SCROLL SPY
═══════════════════════════════════ */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  height: 1.5px; width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* ═══════════════════════════════════
   SHIMMER BAR
═══════════════════════════════════ */
@keyframes barShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.tbar-fill.shimmer {
  background: linear-gradient(90deg,
    #7a1515 0%, var(--war-lt) 35%,
    #ff7b6b 50%, var(--war-lt) 65%, #7a1515 100%);
  background-size: 300% auto;
  animation: barShimmer 1.8s ease-in-out 1 forwards;
}

/* ═══════════════════════════════════
   AMBIENT ORBS
═══════════════════════════════════ */
.amb-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbDrift ease-in-out infinite alternate;
}
@keyframes orbDrift {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.1); }
}

/* ═══════════════════════════════════
   COUNTER GLOW
═══════════════════════════════════ */
@keyframes numGlow {
  0%   { filter: none; }
  40%  { filter: drop-shadow(0 0 16px currentColor); }
  100% { filter: none; }
}
.stat-num.glowing { animation: numGlow 1.4s ease-out forwards; }

/* ═══════════════════════════════════
   PULLQUOTE SLIDE
═══════════════════════════════════ */
.pull.fl:not(.in) { opacity: 0; transform: translateX(-28px); }

/* ═══════════════════════════════════
   INTERACTIVE TIMELINE
═══════════════════════════════════ */
.timeline {
  position: relative;
  padding: 40px 0;
  max-width: var(--max-w);
  margin: 40px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
  transform: translateX(-50%);
}
.tl-node {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 16px 0;
  cursor: pointer;
}
.tl-node:nth-child(odd) { flex-direction: row-reverse; }
.tl-node:nth-child(odd) .tl-content { text-align: right; padding-right: 40px; padding-left: 0; }
.tl-node:nth-child(even) .tl-content { padding-left: 40px; }
.tl-content {
  width: 50%;
  padding: 0 20px;
}
.tl-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px; height: 16px;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 2px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tl-dot.war { background: var(--war); border-color: var(--war-lt); }
.tl-dot.peace { background: var(--peace); border-color: var(--peace-lt); }
.tl-node:hover .tl-dot {
  transform: translateX(-50%) scale(1.4);
}
.tl-node:hover .tl-dot.war { box-shadow: 0 0 16px rgba(192,57,43,0.5); }
.tl-node:hover .tl-dot.peace { box-shadow: 0 0 16px rgba(39,174,96,0.5); }
.tl-year {
  font-family: var(--ff-ui); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,236,224,0.35); margin-bottom: 4px;
}
.tl-title {
  font-family: var(--ff-ui); font-size: 0.9rem; font-weight: 600;
  color: rgba(240,236,224,0.85); margin-bottom: 4px;
}
.tl-result {
  font-family: var(--ff-ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px; display: inline-block;
}
.tl-result.war { background: rgba(139,31,31,0.4); color: #e57373; }
.tl-result.peace { background: rgba(26,80,64,0.4); color: #81c784; }
.tl-detail {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  font-family: var(--ff-ui); font-size: 0.78rem;
  color: rgba(240,236,224,0.45); line-height: 1.55;
}
.tl-node.open .tl-detail { max-height: 120px; margin-top: 8px; }
@media (max-width: 800px) {
  .timeline::before { left: 20px; }
  .tl-node, .tl-node:nth-child(odd) { flex-direction: row; }
  .tl-content, .tl-node:nth-child(odd) .tl-content { width: calc(100% - 50px); padding-left: 50px; padding-right: 0; text-align: left; }
  .tl-dot { left: 20px; }
}

/* ═══════════════════════════════════
   SOCIAL SHARE
═══════════════════════════════════ */
.share-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--divider);
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-ui); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--divider);
  background: var(--bg-card);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.share-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ═══════════════════════════════════
   RELATED ARTICLES
═══════════════════════════════════ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: var(--r);
  padding: 24px;
  transition: border-color 0.2s, transform 0.18s;
}
.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  text-decoration: none;
}
.related-card .rc-label {
  font-family: var(--ff-ui); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.related-card .rc-title {
  font-family: var(--ff-h); font-size: 1.05rem; font-weight: 600;
  color: var(--dark); line-height: 1.3; margin-bottom: 8px;
}
.related-card .rc-desc {
  font-family: var(--ff-ui); font-size: 0.78rem;
  color: var(--muted); line-height: 1.5;
}

/* ═══════════════════════════════════
   PAGE HERO (for sub-pages)
═══════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 64px) 32px 64px;
  text-align: center;
}
.page-hero .eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--ff-h);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #f0ece0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero .subtitle {
  font-family: var(--ff-b);
  font-size: 1.05rem;
  color: rgba(240,236,224,0.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 800px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(247,244,239,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--divider);
    padding: 16px 20px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--divider); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 0.85rem; }
  section { padding: 64px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .def-box { padding: 32px 28px; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 20px 48px; }
}
@media (max-width: 500px) {
  .flashpoints { grid-template-columns: 1fr 1fr; }
}
