/* ============================================
   THE CULTURE REVIEW — Master Stylesheet
   Premium editorial e-magazine
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #1a1a2e;
  --navy-light: #24243e;
  --cream: #f5f0eb;
  --burgundy: #8b1a3a;
  --burgundy-light: #a8224a;
  --gold: #c4a45a;
  --gold-light: #d4b76a;
  --gold-muted: rgba(196, 164, 90, 0.12);
  --text-primary: #3a3a4e;
  --text-secondary: #5e5e72;
  --text-tertiary: #8a8a9e;
  --white: #ffffff;
  --card-shadow: 0 1px 3px rgba(26, 26, 46, 0.06), 0 4px 12px rgba(26, 26, 46, 0.04);
  --card-shadow-hover: 0 4px 12px rgba(26, 26, 46, 0.1), 0 8px 24px rgba(26, 26, 46, 0.06);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1200px;
  --prose-width: 68ch;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.serif { font-family: 'Cormorant Garamond', 'Georgia', serif; }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.prose {
  max-width: var(--prose-width);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   HEADER / MASTHEAD
   ============================================ */
.masthead {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.masthead-top {
  padding: 28px 24px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.masthead-brand {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.masthead-brand span {
  color: var(--gold);
}

.masthead-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 8px;
}

.masthead-date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.masthead-thesis {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
}

.nav-link.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 1px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 64px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 6px;
}

.section-byline {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
}

.section-banner {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

/* ============================================
   LEAD STORY
   ============================================ */
.lead-story {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 64px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 40%, #1a1a2e 70%, #16213e 100%);
  overflow: hidden;
}

.lead-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(139, 26, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 164, 90, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.lead-story::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 100%);
  pointer-events: none;
}

.lead-story .container {
  position: relative;
  z-index: 2;
}

.lead-category {
  display: inline-block;
  padding: 5px 14px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 20px;
}

.lead-headline {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  max-width: 800px;
  margin-bottom: 16px;
}

.lead-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lead-author {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.lead-author strong {
  color: var(--gold);
  font-weight: 600;
}

.lead-date {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.lead-excerpt {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin-bottom: 24px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}

.read-more:hover {
  gap: 14px;
}

.read-more::after {
  content: '→';
  font-size: 1.1em;
}

/* ============================================
   EDITOR'S NOTE
   ============================================ */
.editors-note {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 40px 48px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--card-shadow);
}

.editors-note::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 164, 90, 0.04) 0%, transparent 60%);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  pointer-events: none;
}

.editors-note-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.editors-note-badge::before {
  content: '✦';
  font-size: 0.9em;
}

.editors-note h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.editors-note p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.editors-note .note-byline {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ============================================
   RESEARCH DESK
   ============================================ */
.research-banner {
  background: linear-gradient(135deg, #3d2b1f 0%, #5a3e2b 40%, #4a3728 70%, #2d1f14 100%);
}

.research-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.research-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.research-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.research-card .card-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 10px;
}

.research-card h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.research-card .card-year {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.research-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   DATA POINT
   ============================================ */
.data-point {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.data-point::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196, 164, 90, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.data-stat {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.data-stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.data-context {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.data-source {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.data-byline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   FROM THE FIELD
   ============================================ */
.field-banner {
  background: linear-gradient(135deg, #4a3728 0%, #6b4f3a 40%, #8b6914 60%, #5a4230 100%);
}

.field-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.field-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.field-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.field-card h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.field-card .card-source {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.field-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.field-card .read-more {
  margin-top: 16px;
  font-size: 0.82rem;
}

/* ============================================
   THE WIDER LENS
   ============================================ */
.wider-lens-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.wider-main .field-card {
  margin-bottom: 24px;
}

.wider-sidebar {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  height: fit-content;
  position: sticky;
  top: 140px;
}

.wider-sidebar h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item .card-tag {
  margin-bottom: 8px;
  font-size: 0.6rem;
  padding: 2px 8px;
}

.sidebar-item h5 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
}

.sidebar-item .card-source {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

/* ============================================
   QUICK READS
   ============================================ */
.quick-reads-list {
  max-width: 760px;
  margin: 0 auto;
}

.quick-read-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition);
}

.quick-read-item:first-child {
  padding-top: 0;
}

.quick-read-item:last-child {
  border-bottom: none;
}

.quick-read-num {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
}

.quick-read-content h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}

.quick-read-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.quick-read-content .card-source {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */
.newsletter {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.newsletter h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.newsletter .social-proof {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.newsletter p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.subscribe-form input:focus {
  border-color: var(--gold);
}

.subscribe-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: var(--gold-light);
}

.subscribe-success {
  display: none;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 16px;
}

.subscribe-success.visible {
  display: block;
}

.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
}

/* ============================================
   EDITORIAL STANDARDS BAR
   ============================================ */
.standards-bar {
  background: rgba(26, 26, 46, 0.04);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.standards-bar p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.standards-bar strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  padding: 32px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.footer-publisher {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   PAGE: CONTRIBUTORS
   ============================================ */
.contributors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.contributor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.contributor-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.contributor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.contributor-info h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.contributor-title {
  font-size: 0.82rem;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 10px;
}

.contributor-bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contributor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contributor-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--cream);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   PAGE: ABOUT
   ============================================ */
.about-page {
  max-width: 760px;
  margin: 0 auto;
}

.about-page h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
  margin-top: 48px;
}

.about-page h2:first-child {
  margin-top: 0;
}

.about-page p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.about-page ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.about-page li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-page li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================
   PAGE: MONTHLY DEEP DIVE
   ============================================ */
.monthly-page {
  max-width: 760px;
  margin: 0 auto;
}

.monthly-hero {
  margin-bottom: 48px;
}

.monthly-hero .lead-category {
  margin-bottom: 16px;
}

.monthly-hero h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.monthly-hero .lead-meta {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.monthly-body h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.monthly-body h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.monthly-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.pull-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--burgundy);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.9rem;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.data-table th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) {
  background: rgba(196, 164, 90, 0.04);
}

/* ============================================
   PAGE: ARCHIVE
   ============================================ */
.archive-list {
  max-width: 760px;
  margin: 0 auto;
}

.archive-item {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.archive-item:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.archive-vol {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.archive-item h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.archive-date {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.archive-summary {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.archive-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

/* ============================================
   ARTICLE OVERLAY / EXPANDED VIEW
   ============================================ */
.article-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  overflow-y: auto;
}

.article-overlay.visible {
  display: block;
}

.article-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 210;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition);
}

.article-close:hover {
  box-shadow: var(--card-shadow-hover);
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 64px;
}

.article-content .lead-category {
  margin-bottom: 16px;
}

.article-content h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.article-content .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.article-content .article-meta .author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.article-content .article-meta .author-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.article-content .article-meta .article-date {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-body h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.article-body blockquote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--burgundy);
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
}

/* Share buttons */
.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  transition: background var(--transition), border-color var(--transition);
}

.share-btn:hover {
  background: var(--cream);
  border-color: rgba(0, 0, 0, 0.2);
}

/* ============================================
   VIEW WRAPPERS
   ============================================ */
.view {
  display: none;
}

.view.active {
  display: block;
}

.page-header {
  padding: 48px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}

.page-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
}

.animate-in.visible {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .wider-lens-layout {
    grid-template-columns: 1fr;
  }

  .wider-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .masthead-top {
    padding: 20px 16px 12px;
  }

  .masthead-brand {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
  }

  .masthead-tagline {
    font-size: 0.7rem;
  }

  .masthead-thesis {
    font-size: 0.9rem;
  }

  .hamburger {
    display: block;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 24px;
    text-align: left;
    width: 100%;
    border-bottom: none;
  }

  .nav-link.active {
    border-bottom: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .section {
    padding: 48px 0;
  }

  .lead-story {
    min-height: 420px;
    padding: 60px 0 48px;
  }

  .lead-headline {
    font-size: 1.8rem;
  }

  .editors-note {
    padding: 28px 24px;
    margin: 0 16px;
  }

  .field-cards {
    grid-template-columns: 1fr;
  }

  .research-cards {
    grid-template-columns: 1fr;
  }

  .contributors-grid {
    grid-template-columns: 1fr;
  }

  .contributor-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
  }

  .subscribe-form input {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

  .subscribe-form button {
    border-radius: var(--radius);
  }

  .container {
    padding: 0 16px;
  }

  .quick-read-item {
    flex-direction: column;
    gap: 4px;
  }

  .data-point {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .lead-headline {
    font-size: 1.5rem;
  }

  .masthead-brand {
    font-size: 1.1rem;
  }

  .share-buttons {
    flex-wrap: wrap;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .masthead,
  .newsletter,
  .site-footer,
  .share-buttons,
  .hamburger {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
