/* ═══════════════════════════════════════════════════════
   ISHANI SINGH — v3
   Warm Smoky Grey · Ember Gold · 1917 Cinematic Theme
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Barlow+Condensed:wght@300;400;500;600;700&family=Barlow:wght@300;400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  /* 1917-exact warm greys — pulled from the screenshot */
  --grey-900: #1c1a17;   /* near-black — only for text on light bg */
  --grey-800: #2e2b26;   /* darkest bg panel */
  --grey-700: #3d3a34;   /* dark panel */
  --grey-600: #524e46;   /* mid-dark */
  --grey-500: #6b6660;   /* muted border */
  --grey-400: #8a857c;   /* lighter border */
  --grey-300: #b0aa9e;   /* muted text */
  --grey-200: #ccc5b8;   /* secondary text */
  --grey-100: #e2ddd5;   /* light text */
  --grey-50:  #f0ebe3;   /* near-white warm */

  /* Page background — warm smoky grey like the 1917 site */
  --bg-page:    #3a3630;  /* main page bg — warm dark grey, NOT black */
  --bg-section: #322f2a;  /* alternate section */
  --bg-card:    #403c36;  /* card bg — slightly lighter */
  --bg-card2:   #464039;  /* hover card */
  --bg-panel:   #2c2924;  /* darker panel */
  --bg-hero:    #28251f;  /* hero area, slightly darker */

  /* Ember gold — exact from 1917 site */
  --gold:       #c8860a;
  --gold-light: #e8a030;
  --gold-pale:  #f0c060;
  --gold-dim:   #7a5206;
  --rust:       #b84018;

  /* Text */
  --text-primary:   #f0ebe3;  /* warm near-white */
  --text-secondary: #ccc5b8;  /* warm grey */
  --text-muted:     #8a857c;  /* muted */
  --text-gold:      #e8a030;  /* gold labels */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w: 1200px;
  --art-w:  760px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 600;
  color: var(--text-primary);
}

p { color: var(--text-secondary); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200,134,10,0.2);
  background: rgba(40, 37, 31, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.nav__logo span { color: var(--gold-light); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-300);
  transition: color 0.3s var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold-pale); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-hero);
}

/* Hero background image effect using gradient layers — simulates smoky battlefield */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 65% 65%, rgba(180,60,20,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 40%, rgba(200,134,10,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(40,35,28,0.6) 0%, transparent 55%),
    linear-gradient(165deg, #1a1813 0%, #2a2520 35%, #322c24 60%, #1e1b15 100%);
}

/* Dust/grain texture using SVG filter */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Large decorative "I" letterform — like "1917" in the 1917 site */
.hero__giant-letter {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--font-display);
  font-size: clamp(300px, 42vw, 580px);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,134,10,0.12);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* Thin horizontal rules — like the 1917 site's dividing lines */
.hero__rule {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 2%, rgba(200,134,10,0.18) 20%, rgba(200,134,10,0.18) 80%, transparent 98%);
  pointer-events: none;
}

/* Vertical accent line — 1917 style */
.hero__vline {
  position: absolute;
  top: 0; bottom: 0;
  left: 44%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, rgba(200,134,10,0.1) 30%, rgba(200,134,10,0.1) 70%, transparent 95%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 68px;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.9s var(--ease) 0.2s both;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.15em;
  max-width: 680px;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}
.hero__title strong {
  font-weight: 700;
  font-style: normal;
  display: block;
}
.hero__title em {
  color: var(--gold-pale);
  font-style: italic;
}

.hero__subtitle {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-top: 2rem;
  margin-bottom: 2.8rem;
  max-width: 480px;
  line-height: 1.9;
  animation: fadeUp 0.9s var(--ease) 0.6s both;
}

/* 1917-style CTA button — dashed border, gold fill slide */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 1.1rem 2.4rem;
  border: 1px dashed rgba(200,134,10,0.6);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s;
  animation: fadeUp 0.9s var(--ease) 0.8s both;
}
.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-102%);
  transition: transform 0.45s var(--ease);
}
.hero__cta:hover::before { transform: translateX(0); }
.hero__cta:hover { color: #1a1510; border-color: var(--gold); }
.hero__cta > * { position: relative; z-index: 1; }

.cta-arrow {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.cta-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.hero__cta:hover .cta-arrow { width: 30px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.8rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
  animation: fadeUp 1s var(--ease) 1.2s both;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out 1.5s infinite;
}

/* ── SECTION ─────────────────────────────────────── */
.section {
  padding: 7rem 0;
  position: relative;
}
.section--alt { background: var(--bg-section); }

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200,134,10,0.18);
}

.section__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.6rem;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1;
}
.section__title strong { font-weight: 700; font-style: normal; }

.section__view-all {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(200,134,10,0.4);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s, border-color 0.3s;
}
.section__view-all:hover { color: var(--gold-pale); border-color: var(--gold-pale); }

/* ── CARDS GRID ──────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
  background: rgba(200,134,10,0.12);
}
@media (max-width: 980px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.card:hover { background: var(--bg-card2); }

/* Gold bottom bar reveal */
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold-light), var(--gold-dim));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover::after { transform: scaleX(1); }

.card__art {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.card--featured .card__art { aspect-ratio: 3/2; }

.card__art svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__art svg { transform: scale(1.05); }

.card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  transition: color 0.3s;
}
.card--featured .card__title { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.card:hover .card__title { color: var(--gold-pale); }

.card__excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.card__meta {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,134,10,0.12);
  margin-top: auto;
}
.card__meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex-shrink: 0;
}

/* ── ABOUT STRIP ─────────────────────────────────── */
.about-strip {
  background: var(--bg-panel);
  border-top: 1px solid rgba(200,134,10,0.18);
  border-bottom: 1px solid rgba(200,134,10,0.18);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,134,10,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 780px) { .about-strip__inner { grid-template-columns: 1fr; gap: 3rem; } }

.about-strip__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.about-strip__eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold-light); display: block; flex-shrink: 0; }

.about-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.05;
}
.about-strip__heading strong { font-weight: 700; font-style: normal; display: block; }

.about-strip__body { display: flex; flex-direction: column; gap: 1.2rem; }
.about-strip__body p { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; }

.about-strip__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.role-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-200);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(200,134,10,0.25);
  transition: border-color 0.3s, color 0.3s;
}
.role-tag:hover { border-color: var(--gold-light); color: var(--gold-pale); }

/* ── LIST GRID ───────────────────────────────────── */
.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(200,134,10,0.1);
}
@media (max-width: 660px) { .list-grid { grid-template-columns: 1fr; } }

.list-item {
  background: var(--bg-card);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}
.list-item:hover { background: var(--bg-card2); }

.list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold-light);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.list-item:hover::before { transform: scaleY(1); }

.list-item__art {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  border: 1px solid rgba(200,134,10,0.2);
  overflow: hidden;
  background: var(--bg-panel);
}

.list-item__info { flex: 1; min-width: 0; }
.list-item__tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}
.list-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  transition: color 0.3s;
}
.list-item:hover .list-item__title { color: var(--gold-pale); }
.list-item__pub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 0.45rem;
}

/* ── ARTICLE HERO ────────────────────────────────── */
.article-hero {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background: var(--bg-hero);
}
.article-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 40% 70%, rgba(180,60,20,0.12) 0%, transparent 60%),
    linear-gradient(165deg, #1a1813 0%, #2a2520 50%, #201d18 100%);
}
.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--art-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

.article-hero__tag {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.article-hero__tag::before { content: ''; width: 36px; height: 1px; background: var(--gold-light); display: block; flex-shrink: 0; }

.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.article-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--grey-200);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
.article-hero__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.article-hero__author {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.article-hero__date {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--grey-300);
}
.article-hero__pub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(200,134,10,0.35);
}

/* Article body */
.article-body {
  background: var(--bg-page);
  padding: 5rem 0 7rem;
  border-top: 1px solid rgba(200,134,10,0.18);
}
.article-body__inner {
  max-width: var(--art-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.article-body__inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: 1.6em;
  font-weight: 300;
}
.article-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 3em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(200,134,10,0.18);
}
.article-body__inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-pale);
  margin: 2.5em 0 0.7em;
}
.article-body__inner blockquote {
  border-left: 2px solid var(--gold);
  padding: 1.2rem 2rem;
  margin: 2.5em 0;
  background: rgba(200,134,10,0.05);
}
.article-body__inner blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
}
.poem-stanza {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 2.1;
  color: var(--text-secondary);
  padding: 1.5rem 2rem;
  border-left: 2px solid rgba(200,134,10,0.35);
  background: rgba(200,134,10,0.04);
  margin: 2em 0;
}
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(200,134,10,0.12);
  margin-top: 5rem;
  border-top: 1px solid rgba(200,134,10,0.18);
  padding-top: 3.5rem;
}
.article-nav__item {
  background: var(--bg-card);
  padding: 1.8rem;
  transition: background 0.3s;
}
.article-nav__item:hover { background: var(--bg-card2); }
.article-nav__label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.article-nav__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.article-nav__title:hover { color: var(--gold-pale); }
.article-nav__item--next { text-align: right; }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  padding: 160px 0 6rem;
  border-bottom: 1px solid rgba(200,134,10,0.18);
  background: var(--bg-hero);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
}
.page-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.page-hero__eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold-light); display: block; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.page-hero__title strong { font-weight: 700; font-style: normal; }
.page-hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-top: 1.2rem;
}

/* ── FILTER PILLS ────────────────────────────────── */
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.pill {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-300);
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(200,134,10,0.2);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.pill:hover, .pill.active {
  color: var(--gold-pale);
  border-color: var(--gold-light);
  background: rgba(200,134,10,0.08);
}

/* ── ARTICLE LIST ────────────────────────────────── */
.pub-group-header { margin-top: 3.5rem; }
.pub-group-header h2 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.pub-group-header h2::after { content: ''; flex: 1; height: 1px; background: rgba(200,134,10,0.2); }

.article-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(200,134,10,0.1);
  align-items: start;
  cursor: pointer;
  transition: padding-left 0.3s var(--ease);
}
.article-list-item:hover { padding-left: 1rem; }
.article-list-item__category {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.article-list-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
  line-height: 1.2;
}
.article-list-item:hover .article-list-item__title { color: var(--gold-pale); }
.article-list-item__excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.article-list-item__date {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  text-align: right;
  white-space: nowrap;
  padding-top: 0.25rem;
}

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  padding: 4rem 0;
  align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-sidebar__portrait {
  width: 100%;
  aspect-ratio: 4/5;
  border: 1px solid rgba(200,134,10,0.2);
  background: var(--bg-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 1.8rem;
  position: relative;
  overflow: hidden;
}
.about-sidebar__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,134,10,0.06), transparent);
  pointer-events: none;
}
.about-sidebar__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.about-sidebar__tagline {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.about-content__section { margin-bottom: 3.5rem; }
.about-content__section-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.about-content__section-label::after { content: ''; flex: 1; height: 1px; background: rgba(200,134,10,0.2); }
.about-content p { font-size: 1rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 1em; }

.credential-card {
  padding: 1.4rem;
  border: 1px solid rgba(200,134,10,0.15);
  background: var(--bg-card);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.1rem;
  align-items: start;
  transition: border-color 0.3s, background 0.3s;
  margin-bottom: 0.8rem;
}
.credential-card:hover { border-color: rgba(200,134,10,0.4); background: var(--bg-card2); }
.credential-card__icon {
  width: 44px; height: 44px;
  background: rgba(200,134,10,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.credential-card__role {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.credential-card__org {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.credential-card__detail { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  padding: 4rem 0;
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info__title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  line-height: 1.05;
}
.contact-info p { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 1.8rem; }
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(200,134,10,0.18);
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: all 0.3s;
  margin-bottom: 0.7rem;
}
.contact-link-item:hover { border-color: var(--gold-light); color: var(--gold-pale); }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.form-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-300);
}
.form-input, .form-textarea {
  padding: 0.9rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid rgba(200,134,10,0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold-light); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-500); }

/* ── BUTTON ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px dashed rgba(200,134,10,0.6);
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  width: 100%;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-102%);
  transition: transform 0.45s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { color: #1a1510; }
.btn > * { position: relative; z-index: 1; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid rgba(200,134,10,0.18);
  padding: 3.5rem 0;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.footer__logo span { color: var(--gold-light); }
.footer__links { display: flex; gap: 2rem; list-style: none; }
.footer__links a {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__copy {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--grey-500);
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 50px; }
  50%       { opacity: 1; height: 70px; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 700px) {
  .nav { padding: 0 1.5rem; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(28,26,23,0.98);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.8rem;
    border-bottom: 1px solid rgba(200,134,10,0.2);
  }
  .nav__links.open { display: flex; }
  .hero__content { padding: 0 1.5rem; padding-top: 68px; }
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero__scroll { display: none; }
  .section { padding: 4.5rem 0; }
  .section__inner { padding: 0 1.5rem; }
  .page-hero__inner { padding: 0 1.5rem; }
  .footer__inner { flex-direction: column; text-align: center; gap: 1rem; }
  .article-nav { grid-template-columns: 1fr; }
  .about-grid { gap: 2rem; }
  .contact-grid { gap: 2.5rem; }
  .article-body__inner { padding: 0 1.5rem; }
  .article-hero__content { padding: 0 1.5rem; }
}
