/* ===== WWII OBSCURA — Global Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Special+Elite&display=swap');

:root {
  --ink:        #1a1208;
  --paper:      #f5eed8;
  --aged:       #e8ddb8;
  --sepia:      #c2a459;
  --rust:       #8b3a2a;
  --olive:      #4a5240;
  --olive-lt:   #6b7560;
  --shadow:     rgba(26,18,8,0.35);
  --nav-bg:     #1e1c14;
  --accent:     #b8860b;
  --muted:      #6e5f3a;
  --card-bg:    #fdf8ec;
  --border:     #c2a459;
  --hero-h:     520px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
  background-image:
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ===== NAVIGATION ===== */
nav {
  background: var(--nav-bg);
  border-bottom: 3px solid var(--sepia);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}
.nav-brand {
  font-family: 'Special Elite', cursive;
  color: var(--sepia);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  padding: 0.8rem 0;
  text-decoration: none;
  white-space: nowrap;
}
.nav-brand span { color: var(--paper); }
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
nav ul li a {
  display: block;
  color: #c8bfa0;
  text-decoration: none;
  font-family: 'Special Elite', cursive;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 1.1rem 1rem;
  transition: color 0.2s, background 0.2s;
  border-bottom: 3px solid transparent;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--sepia);
  border-bottom-color: var(--sepia);
}

/* ===== HERO BANNER ===== */
.hero {
  position: relative;
  height: var(--hero-h);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #2a2018;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(60%) brightness(0.45) contrast(1.1);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,3,0.92) 0%, rgba(10,8,3,0.3) 55%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 2.5rem 3rem;
}
.hero-eyebrow {
  font-family: 'Special Elite', cursive;
  color: var(--sepia);
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--paper);
  line-height: 1.12;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.hero-content p {
  font-family: 'Libre Baskerville', serif;
  color: #c8bfa0;
  font-size: 1.05rem;
  max-width: 600px;
  font-style: italic;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 4rem 0;
}
.section + .section {
  border-top: 1px solid #d5c898;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .eyebrow {
  font-family: 'Special Elite', cursive;
  color: var(--muted);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--sepia);
  margin: 0.6rem auto 0;
}
.section-header p {
  margin-top: 1rem;
  color: var(--muted);
  font-style: italic;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--sepia);
  padding: 1.8rem;
  position: relative;
  box-shadow: 4px 4px 0 rgba(194,164,89,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0 rgba(194,164,89,0.3);
}
.card-tag {
  font-family: 'Special Elite', cursive;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.6rem;
  display: block;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  color: var(--ink);
}
.card p {
  font-size: 0.93rem;
  color: #3d3020;
  line-height: 1.72;
}
.card-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(194,164,89,0.18);
  line-height: 1;
  pointer-events: none;
}

/* ===== FEATURE STORY (large horizontal card) ===== */
.feature-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  box-shadow: 5px 5px 0 rgba(194,164,89,0.18);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.feature-story:hover { box-shadow: 8px 8px 0 rgba(194,164,89,0.3); }
.feature-story-label {
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}
.feature-story-label .icon {
  font-size: 2.5rem;
  filter: grayscale(1) brightness(1.8);
  margin-bottom: 0.3rem;
}
.feature-story-label .fs-tag {
  font-family: 'Special Elite', cursive;
  color: #c8bfa0;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.feature-story-label .fs-year {
  font-family: 'Playfair Display', serif;
  color: var(--sepia);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.feature-story-body {
  padding: 2rem 2.2rem;
  border-left: 3px solid var(--sepia);
}
.feature-story-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.feature-story-body p {
  font-size: 0.95rem;
  color: #3d3020;
  line-height: 1.8;
}
.feature-story-body .read-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Special Elite', cursive;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--rust);
  text-transform: uppercase;
  border-bottom: 1px solid var(--rust);
}

/* ===== PULLQUOTE ===== */
.pullquote {
  border-left: 5px solid var(--sepia);
  padding: 1.2rem 2rem;
  margin: 2.5rem 0;
  background: rgba(194,164,89,0.08);
}
.pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.65;
}
.pullquote cite {
  display: block;
  margin-top: 0.6rem;
  font-family: 'Special Elite', cursive;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ===== TRIVIA ITEMS ===== */
.trivia-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px dashed #c8b87a;
  align-items: flex-start;
}
.trivia-item:last-child { border-bottom: none; }
.trivia-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--sepia);
  line-height: 1;
  min-width: 3rem;
  text-align: right;
  flex-shrink: 0;
  opacity: 0.7;
}
.trivia-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.trivia-body p {
  font-size: 0.93rem;
  color: #3d3020;
  line-height: 1.75;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sepia), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--sepia);
  border-radius: 50%;
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--sepia);
}
.timeline-date {
  font-family: 'Special Elite', cursive;
  font-size: 0.78rem;
  color: var(--rust);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.timeline-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.timeline-item p {
  font-size: 0.9rem;
  color: #3d3020;
  line-height: 1.75;
}

/* ===== STAT STRIP ===== */
.stat-strip {
  background: var(--nav-bg);
  border-top: 3px solid var(--sepia);
  border-bottom: 3px solid var(--sepia);
  padding: 2.5rem 0;
}
.stat-strip .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--sepia);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-family: 'Special Elite', cursive;
  font-size: 0.72rem;
  color: #c8bfa0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-family: 'Special Elite', cursive;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--olive);
  color: #c8bfa0;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.badge-rust { background: var(--rust); color: #fdf8ec; }
.badge-sepia { background: var(--sepia); color: var(--ink); }

/* ===== FULL-WIDTH DIVIDER ===== */
.divider {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--sepia);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  opacity: 0.6;
}

/* ===== FOOTER ===== */
footer {
  background: var(--nav-bg);
  color: #8a7d60;
  padding: 2.5rem 0;
  text-align: center;
  border-top: 3px solid var(--sepia);
  font-family: 'Special Elite', cursive;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
footer a { color: var(--sepia); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
footer p { margin-top: 0.5rem; opacity: 0.6; }

/* ===== TWO-COLUMN PROSE ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--olive);
  color: #e8ddb8;
  padding: 2rem;
  margin: 2rem 0;
}
.highlight-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--sepia);
  margin-bottom: 0.8rem;
}
.highlight-box p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== HERO PERSON ===== */
.hero-person {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 6px solid var(--sepia);
  margin-bottom: 2.5rem;
  box-shadow: 4px 4px 0 rgba(194,164,89,0.18);
}
.hero-person-avatar {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--sepia);
}
.hero-person-info .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.hero-person-info .role {
  font-family: 'Special Elite', cursive;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.hero-person-info p {
  font-size: 0.93rem;
  line-height: 1.78;
  color: #3d3020;
}

/* ===== PAGE TITLE BAND ===== */
.page-title-band {
  background: var(--nav-bg);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 3px solid var(--sepia);
  position: relative;
  overflow: hidden;
}
.page-title-band::after {
  content: attr(data-bg-text);
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(194,164,89,0.06);
  letter-spacing: -0.03em;
  white-space: nowrap;
  pointer-events: none;
}
.page-title-band .eyebrow {
  font-family: 'Special Elite', cursive;
  color: var(--sepia);
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.page-title-band h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--paper);
  line-height: 1.15;
}
.page-title-band p {
  color: #8a7d60;
  font-style: italic;
  margin-top: 0.7rem;
  max-width: 620px;
  font-size: 0.97rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-story { grid-template-columns: 1fr; }
  .feature-story-label { flex-direction: row; padding: 1.2rem; }
  .hero-person { flex-direction: column; }
  .nav-inner { padding: 0 1rem; }
  nav ul li a { padding: 0.9rem 0.6rem; font-size: 0.74rem; }
  .hero-content { padding: 2rem 1.5rem; }
  .container { padding: 0 1.2rem; }
  .section { padding: 2.8rem 0; }
  .stat-strip .container { gap: 1.5rem; }
}
