/* =========================================================
   CHAMAKA INSIGHTS — Premium Gold Edition
   Deep navy + rich gold duality. Luxury editorial authority.
   Display: Fraunces · Body: Inter · Data/Mono: JetBrains Mono
   ========================================================= */

:root {
  /* ---- Gold color system ---- */
  --gold:        #C9A84C;   /* primary gold */
  --gold-bright: #E8C96B;   /* highlight gold */
  --gold-deep:   #A07830;   /* pressed/dark gold */
  --gold-glow:   rgba(201,168,76,0.18);
  --gold-line:   rgba(201,168,76,0.22);

  /* ---- Ink / dark base ---- */
  --ink:         #0A0D14;
  --ink-soft:    #141824;
  --ink-mid:     #1E2433;

  /* ---- Paper / light base ---- */
  --paper:       #FAFAF7;
  --paper-dim:   #F0EDE4;
  --paper-warm:  #EAE4D6;

  /* ---- Neutrals ---- */
  --stone:       #8A8070;
  --stone-light: #B8B0A0;
  --stone-dark:  #5A5448;

  /* ---- Lines ---- */
  --line:        rgba(10,13,20,0.10);
  --line-on-ink: rgba(201,168,76,0.15);

  /* ---- Type ---- */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', monospace;

  /* ---- Type scale ---- */
  --step-1: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --step0:  clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --step1:  clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  --step2:  clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --step3:  clamp(2rem, 1.6rem + 1.6vw, 2.9rem);
  --step4:  clamp(2.5rem, 1.9rem + 2.6vw, 4rem);
  --step5:  clamp(3rem, 2rem + 4vw, 5.4rem);

  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* =========================================================
   TICKER — scrolling performance-stats strip
   ========================================================= */
.ticker {
  background: var(--ink-soft);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-on-ink);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 36s linear infinite;
  padding: 9px 0;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--stone-light);
  white-space: nowrap;
}
.ticker__item strong { color: var(--gold); font-weight: 600; }
.ticker__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  box-shadow: 0 0 6px var(--gold);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,0.90);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px -8px rgba(10,13,20,0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand__gem {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  box-shadow: 0 2px 8px var(--gold-glow);
  flex-shrink: 0;
}
.brand__mark { color: var(--gold); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--stone-dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); margin: 5px 0;
  transition: all 0.25s var(--ease);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s, color 0.22s;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 4px 20px -6px rgba(201,168,76,0.50);
}
.btn--gold:hover {
  box-shadow: 0 8px 28px -6px rgba(201,168,76,0.65);
}

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--ghost-on-ink {
  background: transparent;
  border-color: var(--line-on-ink);
  color: var(--paper);
}
.btn--ghost-on-ink:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); color: var(--gold); }

.btn--sm { padding: 9px 18px; font-size: 0.82rem; }

/* =========================================================
   HERO — layered parallax
   ========================================================= */
.hero {
  position: relative;
  padding: 120px 28px 160px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

/* Parallax layer 1 — deep background gradient */
.hero__layer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--ink);
  z-index: 0;
}

/* Parallax layer 2 — grid lines */
.hero__layer-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-on-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-on-ink) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: 1;
  mask-image: linear-gradient(to bottom, black 30%, transparent 90%);
}

/* Parallax layer 3 — floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  top: -160px; right: -80px;
  background: radial-gradient(circle at 40% 40%, rgba(201,168,76,0.22), transparent 65%);
  filter: blur(1px);
}
.hero__orb--2 {
  width: 300px; height: 300px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle at 60% 60%, rgba(201,168,76,0.12), transparent 65%);
}
.hero__orb--3 {
  width: 200px; height: 200px;
  top: 40%; left: 35%;
  background: radial-gradient(circle, rgba(232,201,107,0.08), transparent 70%);
}

/* Parallax layer 4 — decorative floating dots */
.hero__dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: dot-float 6s var(--ease) infinite;
  will-change: transform, opacity;
}
@keyframes dot-float {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  background: rgba(201,168,76,0.08);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: var(--step5);
  max-width: 16ch;
  margin-bottom: 0.3em;
  color: var(--paper);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: var(--step1);
  color: var(--stone-light);
  max-width: 46ch;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.65;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line-on-ink);
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.stat__num {
  font-family: var(--font-mono);
  font-size: var(--step2);
  font-weight: 600;
  color: var(--paper);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__num span { color: var(--gold); }
.stat__label { font-size: 0.80rem; color: var(--stone-light); letter-spacing: 0.02em; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section { padding: 100px 28px; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--dim { background: var(--paper-dim); }
.section--warm { background: var(--paper-warm); }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.section__kicker {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: block;
}
.section--ink .section__kicker { color: var(--gold); }
.section__title { font-size: var(--step3); max-width: 16ch; }
.section--ink .section__title { color: var(--paper); }
.section__desc { color: var(--stone); max-width: 42ch; font-size: var(--step0); }

/* =========================================================
   POST CARDS — premium hover effect
   ========================================================= */
.post-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.post-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: -1;
  padding: 1px;
}
.post-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px -16px rgba(10,13,20,0.18), 0 0 0 1px var(--gold-line);
  border-color: var(--gold-line);
}
.post-card:hover::before { opacity: 1; }

.post-card__media {
  aspect-ratio: 16/10;
  background: var(--ink-soft);
  overflow: hidden;
  position: relative;
}
.post-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.96) saturate(0.9);
}
.post-card:hover .post-card__media img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
}
.post-card__media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ink-mid), var(--ink-soft));
  color: var(--gold);
  font-size: 2.5rem;
}
.post-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10,13,20,0.75);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-line);
}

.post-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card__meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--stone);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  letter-spacing: 0.02em;
}
.post-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.2s;
}
.post-card:hover .post-card__title { color: var(--gold-deep); }
.post-card__excerpt {
  color: var(--stone);
  font-size: 0.90rem;
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.6;
}
.post-card__readmore {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease), color 0.2s;
}
.post-card:hover .post-card__readmore { gap: 10px; color: var(--gold); }
.post-card__readmore svg { flex-shrink: 0; }

/* Featured card — spans 2 cols */
.post-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.post-card--featured .post-card__media { aspect-ratio: auto; height: 100%; }
.post-card--featured .post-card__title { font-size: 1.6rem; }
.post-card--featured .post-card__body { padding: 32px; }
@media (max-width: 760px) {
  .post-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .post-card--featured .post-card__media { aspect-ratio: 16/10; }
}

/* =========================================================
   CATEGORY PILLS
   ========================================================= */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto 52px;
}
.cat-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--stone-dark);
  transition: all 0.22s var(--ease);
  letter-spacing: 0.02em;
}
.cat-pill:hover, .cat-pill.is-active {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

/* =========================================================
   FUNNEL — 3-stage signature element
   ========================================================= */
.funnel {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.funnel__stage {
  background: var(--ink-mid);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}
.funnel__stage:hover { background: var(--ink-soft); }
.funnel__stage::before {
  content: attr(data-stage);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.funnel__stage h3 { color: var(--paper); font-size: 1.25rem; margin-bottom: 12px; }
.funnel__stage p { color: var(--stone-light); font-size: 0.9rem; margin: 0; line-height: 1.65; }
.funnel__stage::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.funnel__stage:hover::after { opacity: 1; }
@media (max-width: 760px) { .funnel { grid-template-columns: 1fr; } }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink-mid) 100%);
  border: 1px solid var(--line-on-ink);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.14), transparent 65%);
  top: -120px; right: -80px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 20%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 65%);
  pointer-events: none;
}
.cta-band__title { color: var(--paper); font-size: var(--step2); max-width: 20ch; margin-bottom: 10px; }
.cta-band__sub { color: var(--stone-light); max-width: 42ch; margin: 0; font-size: 0.95rem; line-height: 1.65; }
@media (max-width: 760px) { .cta-band { padding: 44px 32px; flex-direction: column; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--stone-light);
  padding: 80px 28px 36px;
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-on-ink);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__brand-gem {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-radius: 5px;
  flex-shrink: 0;
}
.footer__desc { font-size: 0.88rem; max-width: 32ch; line-height: 1.75; color: var(--stone); }
.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.88rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--stone);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: #25D366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px -8px rgba(37,211,102,0.6);
  transition: transform 0.28s var(--ease-bounce), box-shadow 0.28s;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px -8px rgba(37,211,102,0.7);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   MOBILE NAV
   ========================================================= */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 200;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { color: var(--paper); font-size: 1.1rem; }
  .hero { padding: 72px 20px 100px; }
  .section { padding: 72px 20px; }
}

/* =========================================================
   ARTICLE / SINGLE POST
   ========================================================= */
.article-hero {
  background: var(--ink);
  padding: 80px 28px 0;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.10), transparent);
}
.article-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}
.article-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.article-hero__title {
  font-size: var(--step4);
  color: var(--paper);
  margin-bottom: 24px;
  line-height: 1.06;
}
.article-hero__meta {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--stone-light);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.article-hero__meta span { color: var(--gold); }

.article-featured-img {
  max-width: 860px;
  margin: 0 auto -56px;
  position: relative;
  z-index: 3;
  padding: 0 28px;
}
.article-featured-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 64px -16px rgba(10,13,20,0.4);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px 100px;
}
.article__body {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.article__body h2 {
  font-size: 1.75rem;
  margin-top: 2.4em;
  color: var(--ink);
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--line);
}
.article__body h3 { font-size: 1.3rem; margin-top: 2em; color: var(--ink); }
.article__body p { margin: 0 0 1.5em; }
.article__body ul, .article__body ol { margin: 0 0 1.5em; padding-left: 1.6em; }
.article__body li { margin-bottom: 0.6em; }
.article__body img { border-radius: var(--radius-sm); margin: 2.5em 0; }
.article__body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 28px;
  margin: 2.5em 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.28rem;
  color: var(--ink);
  background: var(--paper-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article__body code {
  font-family: var(--font-mono);
  background: var(--paper-dim);
  border: 1px solid var(--line);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.88em;
}
.article__body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

.inline-cta {
  background: linear-gradient(135deg, var(--ink-soft), var(--ink-mid));
  border: 1px solid var(--line-on-ink);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin: 3.5em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.inline-cta p { margin: 0; font-weight: 600; font-size: 1rem; color: var(--paper); max-width: 38ch; }

/* =========================================================
   EMPTY STATES
   ========================================================= */
.empty-state { text-align: center; padding: 120px 28px; }
.empty-state h2 { font-size: var(--step3); margin-bottom: 14px; }
.empty-state p { color: var(--stone); margin-bottom: 32px; }

/* =========================================================
   GOLD DIVIDER
   ========================================================= */
.gold-divider {
  max-width: var(--container);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
