/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0c2461;
  --navy-mid:  #1a3a8f;
  --gold:      #c9a84c;
  --gold-light:#e8d08a;
  --cream:     #f0f5ff;
  --warm-gray: #e4eeff;
  --text:      #1e3254;
  --text-muted:#5b7aa8;
  --white:     #ffffff;
  --border:    #c0d4f0;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(12,36,97,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.nav__logo:hover { text-decoration: none; color: var(--gold-light); }

.nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}

.nav__links a {
  color: #cbd5e1;
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--gold);
  background: rgba(201,168,76,.1);
  text-decoration: none;
}

.nav__toggle { display: none; background: none; border: none; cursor: pointer; color: var(--gold); font-size: 1.4rem; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0c2461 0%, #1a4a9e 60%, #0d3280 100%);
  color: var(--white);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__cross {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto 36px;
  position: relative;
}
.hero__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-light); text-decoration: none; color: var(--navy); }
.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--navy); text-decoration: none; }

/* ── Section Utilities ────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section--cream { background: var(--cream); }
.section--warm  { background: var(--warm-gray); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #94a3b8; }

.section__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.section__lead  { font-size: 1.1rem; color: var(--text-muted); max-width: 680px; margin-bottom: 48px; line-height: 1.8; }

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(440px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card__title { font-size: 1.2rem; margin-bottom: 10px; }
.card__text  { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }
.card__link  { display: inline-block; margin-top: 16px; font-size: .9rem; font-weight: 600; color: var(--gold); }

/* ── Article / Page Content ───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0c2461 0%, #1a4a9e 100%);
  padding: 72px 24px 56px;
  text-align: center;
}
.page-hero__label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero__title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.page-hero__sub   { color: #94a3b8; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.article { max-width: 780px; margin: 0 auto; padding: 64px 24px; }
.article h2 { font-size: 1.8rem; margin: 48px 0 16px; padding-top: 8px; border-top: 2px solid var(--gold); display: inline-block; }
.article h3 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--navy-mid); }
.article p  { margin-bottom: 20px; color: #374151; }
.article ul, .article ol { margin: 16px 0 24px 24px; }
.article li { margin-bottom: 8px; color: #374151; }
.article blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy-mid);
}
.article blockquote cite { display: block; margin-top: 8px; font-style: normal; font-size: .88rem; font-weight: 600; color: var(--gold); }

/* ── Pull Quote ───────────────────────────────────────────────────────────── */
.pull-quote {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin: 48px 0;
  text-align: center;
  position: relative;
}
.pull-quote::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 6rem; color: var(--gold); position: absolute; top: -20px; left: 24px; line-height: 1; opacity: .4; }
.pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.3rem; line-height: 1.6; color: var(--white); margin-bottom: 12px; }
.pull-quote cite { font-size: .88rem; color: var(--gold); font-weight: 600; }

/* ── Evidence Box ─────────────────────────────────────────────────────────── */
.evidence-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.evidence-box__title { font-size: 1rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.evidence-box ul { margin: 0; padding-left: 20px; }
.evidence-box li { margin-bottom: 6px; font-size: .95rem; }

/* ── Scholar Cards ────────────────────────────────────────────────────────── */
.scholar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.scholar__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.scholar__name  { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.scholar__title { font-size: .85rem; color: var(--gold); margin-bottom: 8px; }
.scholar__bio   { font-size: .92rem; color: var(--text-muted); }

/* ── Stats / Data ─────────────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.stat {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.stat__number { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); font-weight: 700; }
.stat__label  { font-size: .88rem; color: var(--text-muted); margin-top: 6px; }

/* ── Rebuttal Box ─────────────────────────────────────────────────────────── */
.rebuttal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rebuttal__objection {
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  font-weight: 600;
  font-size: .95rem;
}
.rebuttal__objection::before { content: '✦ Objection: '; color: var(--gold); }
.rebuttal__answer { padding: 20px 24px; font-size: .95rem; line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: #94a3b8;
  padding: 56px 24px 32px;
  text-align: center;
}
.footer__logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; }
.footer__tagline { font-size: .92rem; margin-bottom: 32px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 32px; list-style: none; }
.footer__links a { color: #94a3b8; font-size: .88rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold); text-decoration: none; }
.footer__copy { font-size: .82rem; color: #475569; border-top: 1px solid #1e293b; padding-top: 24px; margin-top: 24px; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .nav__inner { position: relative; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .scholar { flex-direction: column; }
  .pull-quote { padding: 32px 24px; }
  .article h2 { font-size: 1.5rem; }
}

/* ── Images ───────────────────────────────────────────────────────────────── */
.article-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 32px 0;
  object-fit: cover;
  max-height: 460px;
  box-shadow: var(--shadow);
}

figure {
  margin: 40px 0;
}
figcaption {
  text-align: center;
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.img-grid figure { margin: 0; }
.img-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero--img {
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(26,48,84,.82) 100%);
}
.page-hero--img > * { position: relative; }

/* ── Impact / Stat highlight ──────────────────────────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.impact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.impact-card__icon { font-size: 2rem; margin-bottom: 12px; }
.impact-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.impact-card__text { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ── Attack / Warning box ─────────────────────────────────────────────────── */
.warning-box {
  background: #fff8f0;
  border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.warning-box__title { font-size: .9rem; font-weight: 700; color: #92400e; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }

/* ── Home Collage ─────────────────────────────────────────────────────────── */
.collage { overflow: hidden; line-height: 0; }
.collage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 220px;
  gap: 4px;
}
.collage-item { margin: 0; overflow: hidden; position: relative; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.collage-item:hover img { transform: scale(1.06); }
.collage-item--tall { grid-row: span 2; }
.collage-item--wide { grid-column: span 2; }
.collage-item__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(12,36,97,.75));
  color: #fff; font-size: .78rem; font-weight: 600;
  padding: 20px 12px 10px; letter-spacing: .06em; text-transform: uppercase;
}
@media (max-width: 600px) {
  .collage-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .collage-item--tall { grid-row: span 1; }
  .collage-item--wide { grid-column: span 2; }
}

/* ── Hero Collage Wallpaper ───────────────────────────────────────────────── */
.hero--collage {
  position: relative;
  padding: 0;
  background: none;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-collage-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
}
.hero-collage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,36,97,.87) 0%, rgba(10,28,85,.83) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 90px;
  width: 100%;
}
@media (max-width: 600px) {
  .hero-collage-bg { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
  .hero--collage { min-height: 520px; }
}
