/* ═══════════════════════════════════════════════════════════
   Harvard Technology Services — Production Stylesheet
   ─────────────────────────────────────────────────────────── */

:root {
  --navy: #1A2640;
  --navy-soft: #2a3a5c;
  --gold: #C9A84C;
  --gold-deep: #a48838;
  --cream: #F6EEDC;
  --cream-warm: #efe4cc;
  --paper: #FBF7EF;
  --ink: #1a1f2c;
  --ink-soft: #4a5266;
  --rule: rgba(26, 38, 64, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

/* ───── NAVIGATION ───── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-mark { color: var(--gold); margin-right: 4px; }

.nav {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover, .nav a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* ───── SHARED ───── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.center { justify-content: center; }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover { background: var(--cream); color: var(--navy); }

.btn-arrow {
  font-family: serif;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }

.cta-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ───── HERO ───── */
.hero {
  padding: 120px 48px 100px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 48px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 1100px;
  margin-bottom: 48px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.hero-sub {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ───── SUB-HERO (cream block) ───── */
.sub-hero {
  background: var(--cream);
  padding: 100px 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.sub-hero-inner { max-width: 920px; margin: 0 auto; }

.sub-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.sub-hero p {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 680px;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-top: 48px;
  max-width: 600px;
}

/* ───── OUTCOMES (3-col grid) ───── */
.outcomes { padding: 120px 48px; background: var(--paper); }

.outcomes-inner { max-width: 1280px; margin: 0 auto; }

.outcomes-header { margin-bottom: 80px; max-width: 720px; }

.outcomes-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.outcome {
  padding: 56px 32px 56px 0;
  border-right: 1px solid var(--rule);
}

.outcome:last-child { border-right: none; padding-right: 0; }
.outcome:not(:first-child) { padding-left: 32px; }

.outcome-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.outcome-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.outcome-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ───── CREDIBILITY BAND ───── */
.credibility {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 48px;
  text-align: center;
}

.credibility-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.credibility-text em { color: var(--gold); font-style: italic; }

.credibility-credentials {
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ───── CLOSING CTA ───── */
.closing { padding: 140px 48px; background: var(--paper); text-align: center; }

.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 32px;
  letter-spacing: -0.015em;
}

.closing p {
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ───── PAGE TITLES ───── */
.page-hero { padding: 120px 48px 80px; background: var(--paper); }
.page-hero-inner { max-width: 920px; margin: 0 auto; }

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.page-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.page-intro {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 24px;
}

/* ───── ABOUT BODY ───── */
.about-body { padding: 60px 48px 100px; background: var(--paper); }

.about-body-inner { max-width: 720px; margin: 0 auto; }

.about-body p {
  font-size: 21px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-body p.lead::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 86px;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--navy);
}

/* ───── WORKING MODEL ───── */
.working-model {
  background: var(--cream);
  padding: 100px 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.working-model-inner { max-width: 920px; margin: 0 auto; }

.working-model h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.working-model p {
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 720px;
}

.pricing-callout {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--paper);
  border-left: 2px solid var(--gold);
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  color: var(--ink);
  max-width: 720px;
}

.pricing-callout strong { color: var(--navy); font-weight: 600; }

/* ───── FOUNDER ───── */
.founder { padding: 120px 48px; background: var(--paper); }

.founder-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.founder-portrait {
  width: 200px;
  height: 240px;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
}

.founder h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.founder-role {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}

.founder p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
}

.credentials {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--navy);
  text-transform: uppercase;
}

.credentials span { color: var(--gold); margin: 0 8px; }

/* ───── LAYERS (What I Do) ───── */
.layers { padding: 40px 48px 100px; background: var(--paper); }

.layers-inner { max-width: 920px; margin: 0 auto; }

.layer {
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.layer-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
}

.layer-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.layer-content > p {
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 32px;
}

.layer-output {
  background: var(--cream);
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
}

.layer-output-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.layer-output p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
}

/* ───── TIMELINE ───── */
.timeline {
  background: var(--navy);
  color: var(--cream);
  padding: 120px 48px;
}

.timeline-inner { max-width: 1080px; margin: 0 auto; }

.timeline h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}

.timeline h2 em { color: var(--gold); font-style: italic; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.phase {
  padding: 40px 32px 0 0;
  border-top: 1px solid rgba(246, 238, 220, 0.2);
  border-right: 1px solid rgba(246, 238, 220, 0.2);
}

.phase:last-child { border-right: none; padding-right: 0; }
.phase:not(:first-child) { padding-left: 32px; }

.phase-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.phase-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}

.phase-body {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(246, 238, 220, 0.75);
}

/* ───── ARTICLES LIST ───── */
.articles-list { padding: 40px 48px 120px; background: var(--paper); }

.articles-list-inner { max-width: 920px; margin: 0 auto; }

.article-card {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 48px;
  align-items: start;
  cursor: pointer;
  transition: padding-left 0.3s ease;
}

.article-card:hover { padding-left: 24px; }

.article-card:last-child { border-bottom: 1px solid var(--rule); }

.article-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  padding-top: 8px;
}

.article-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.article-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.article-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

.article-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 8px;
  text-align: right;
}

.article-link::after {
  content: '  →';
  font-family: serif;
  font-size: 16px;
}

/* ───── CONTACT ───── */
.contact-body { padding: 40px 48px 100px; background: var(--paper); }

.contact-body-inner { max-width: 720px; margin: 0 auto; }

.contact-body p {
  font-size: 21px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-block {
  background: var(--cream);
  padding: 48px 56px;
  margin: 56px 0;
  border-left: 2px solid var(--gold);
}

.contact-block-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.contact-block-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
  word-break: break-word;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}

.contact-block-link:hover { color: var(--gold-deep); }

.contact-block p {
  font-size: 18px;
  margin: 0;
  color: var(--ink-soft);
}

/* ───── FOOTER ───── */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(246, 238, 220, 0.7);
}

.footer-credentials {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  .topbar-inner { padding: 18px 24px; }
  .nav { gap: 18px; }
  .nav a { font-size: 11px; letter-spacing: 0.08em; }
  .hero, .sub-hero, .outcomes, .credibility, .closing,
  .page-hero, .about-body, .working-model, .founder,
  .layers, .timeline, .articles-list, .contact-body {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .sub-hero, .outcomes, .credibility, .closing,
  .working-model, .founder, .timeline, .articles-list,
  .contact-body, .layers { padding-top: 60px; padding-bottom: 60px; }
  .page-hero { padding-top: 80px; padding-bottom: 40px; }
  .outcomes-grid, .timeline-grid { grid-template-columns: 1fr; }
  .outcome, .phase {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .outcome:not(:first-child), .phase:not(:first-child) { padding-left: 0; }
  .phase { border-bottom: 1px solid rgba(246, 238, 220, 0.2); }
  .phase:last-child { border-bottom: none; }
  .founder-inner, .layer, .article-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .layer-num { font-size: 72px; }
  .article-link { text-align: left; }
  .contact-block { padding: 32px 28px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
}

@media (max-width: 600px) {
  .nav { gap: 14px; }
  .nav a { font-size: 10px; }
  .hero-headline { font-size: 44px; }
  .page-title { font-size: 56px; }
  .pricing-callout { padding: 20px 24px; font-size: 17px; }
}

/* ───── ARTICLE PAGE ───── */
.article-hero {
  padding: 100px 48px 60px;
  background: var(--paper);
}

.article-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.article-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.article-deck {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 640px;
}

.article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-top: 40px;
}

.article-meta strong {
  color: var(--navy);
  font-weight: 600;
}

.article-body {
  padding: 60px 48px 80px;
  background: var(--paper);
}

.article-body-inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 64px 0 20px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin: 40px 0 16px;
}

.article-body p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
}

.article-body p.lead {
  font-size: 24px;
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin-bottom: 36px;
}

.article-body .section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 56px;
  margin-bottom: 16px;
}

.article-body blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 48px 0;
}

.article-body .marker {
  background: var(--cream);
  padding: 32px 36px;
  margin: 32px 0;
  border-left: 2px solid var(--gold);
}

.article-body .marker .marker-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.article-body .marker h3 {
  margin-top: 0;
  margin-bottom: 24px;
}

.article-body .year-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.article-body .year-grid .year-cell {
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.article-body .year-grid .year-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.article-body .year-grid p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 56px 0;
}

.article-pull {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 48px;
  text-align: center;
}

.article-pull-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}

.article-pull-text em {
  color: var(--gold);
  font-style: italic;
}

.article-pull-attribution {
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-cta {
  padding: 100px 48px;
  background: var(--paper);
  text-align: center;
}

.article-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.article-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.article-cta p {
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.article-nav {
  background: var(--cream);
  padding: 60px 48px;
  border-top: 1px solid var(--rule);
}

.article-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.article-nav-prev,
.article-nav-next {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s ease;
}

.article-nav-prev:hover { transform: translateX(-4px); }
.article-nav-next:hover { transform: translateX(4px); }

.article-nav-next {
  text-align: right;
}

.article-nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.article-nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .article-hero, .article-body, .article-pull,
  .article-cta, .article-nav {
    padding-left: 24px;
    padding-right: 24px;
  }
  .article-body .year-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .article-nav-inner { grid-template-columns: 1fr; gap: 32px; }
  .article-nav-next { text-align: left; }
}
