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

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

:root {
  --ink:        #0D0D0F;
  --ink-soft:   #1E1E22;
  --mist:       #555558;
  --silver:     #A0A0A8;
  --paper:      #F5F3EE;
  --white:      #FAFAF8;
  --gold:       #B8935A;
  --gold-light: #E8D5B5;
  --gold-pale:  #F6F0E6;
  --teal:       #2D6A5F;
  --teal-light: #A8C8BF;
  --teal-pale:  #EBF4F1;
  --d1: #B8935A;
  --d2: #2D6A5F;
  --d3: #7B9E87;
  --d4: #A0856C;
  --d5: #8A7BA8;
  --serif: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --sans:  'Noto Sans KR', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  font-family: var(--sans);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.d1 { transition-delay: 0.05s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.19s; }
.revealed  { opacity: 1; transform: none; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,243,238,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(199,199,204,0.5);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 300;
  color: var(--ink); letter-spacing: 0.02em;
  display: flex; align-items: baseline; gap: 0.5rem;
  text-decoration: none;
}
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400;
  color: var(--mist); letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em;
  color: var(--white); background: var(--ink);
  border: none; border-radius: 1px;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--ink-soft); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 190;
  background: var(--paper);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem; padding-top: 4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem; font-weight: 300; letter-spacing: 0.12em;
  color: var(--ink); text-decoration: none;
}
.mobile-nav .mn-cta {
  margin-top: 0.5rem;
  background: var(--ink); color: var(--white);
  padding: 0.75rem 2rem; font-size: 0.82rem;
}

/* ══════════════════════════════
   PAGE HERO
══════════════════════════════ */
.nl-hero {
  background: var(--ink);
  padding: 9rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.nl-hero-left {}
.nl-eyebrow {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.nl-hero-title {
  font-family: var(--serif);
  font-size: 3.2rem; font-weight: 300; line-height: 1.15;
  color: var(--white); letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.nl-hero-title em { font-style: italic; color: var(--gold); }
.nl-hero-sub {
  font-size: 0.9rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 440px; margin-bottom: 2.5rem;
}
.nl-hero-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 1.5rem;
  padding-bottom: 0.5rem;
}
.nl-stats {
  display: flex; gap: 3rem;
}
.nl-stat-num {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.nl-stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
}

/* ══════════════════════════════
   SUBSCRIBE BAND
══════════════════════════════ */
.subscribe-band {
  background: var(--gold-pale);
  border-bottom: 0.5px solid var(--gold-light);
  padding: 2.5rem 3rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.sb-left {}
.sb-title {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.25rem;
}
.sb-sub {
  font-size: 0.8rem; font-weight: 300;
  color: var(--mist);
}
.sb-right {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.sb-badge {
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--gold); border: 0.5px solid var(--gold);
  padding: 0.25rem 0.75rem; border-radius: 1px;
}
.btn-subscribe {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--ink); color: var(--white);
  border: none; border-radius: 1px;
  padding: 0.75rem 1.75rem;
  font-family: var(--sans); font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--ink-soft); }

/* ══════════════════════════════
   DOMAIN HUB NAV
══════════════════════════════ */
.domain-hub-nav {
  background: var(--white);
  border-bottom: 0.5px solid rgba(199,199,204,0.5);
  padding: 0 3rem;
  display: flex; gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.domain-hub-nav::-webkit-scrollbar { display: none; }

.dhn-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.77rem; font-weight: 400; letter-spacing: 0.08em;
  color: var(--silver);
  border: none; border-bottom: 2px solid transparent;
  background: none; cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.dhn-tab:hover { color: var(--ink); }
.dhn-tab.active { color: var(--ink); border-bottom-color: var(--ink); }
.dhn-tab[data-domain="all"].active { border-bottom-color: var(--gold); color: var(--gold); }
.dhn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════
   MAIN LAYOUT
══════════════════════════════ */
.nl-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

/* ══════════════════════════════
   DOMAIN HUB SECTION
══════════════════════════════ */
.section-domain-hub {
  margin-bottom: 5rem;
}
.sh-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(199,199,204,0.5);
}
.sh-title {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 300;
  color: var(--ink);
}
.sh-title em { font-style: italic; color: var(--gold); }
.sh-count {
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--silver);
}

.domain-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(199,199,204,0.4);
  border: 0.5px solid rgba(199,199,204,0.4);
}
.dhg-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.dhg-card:hover { background: var(--paper); }
.dhg-num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300;
  line-height: 1; margin-bottom: 1rem;
  opacity: 0.25;
}
.dhg-dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-bottom: 1rem;
}
.dhg-name {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.3rem;
}
.dhg-en {
  font-size: 0.65rem; letter-spacing: 0.14em;
  color: var(--silver); margin-bottom: 1rem;
  text-transform: uppercase;
}
.dhg-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 1.7;
  color: var(--mist);
}
.dhg-count {
  margin-top: 1.5rem;
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--silver);
}
.dhg-arrow {
  margin-top: 1rem;
  font-size: 0.8rem; color: var(--silver);
  transition: transform 0.2s, color 0.2s;
}
.dhg-card:hover .dhg-arrow {
  transform: translateX(3px);
  color: var(--gold);
}

/* ══════════════════════════════
   ARCHIVE SECTION
══════════════════════════════ */
.section-archive {
  margin-bottom: 5rem;
}
.archive-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1.5rem; flex-wrap: wrap;
}
.at-left {
  display: flex; align-items: center; gap: 1rem;
}
.at-title {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 300;
  color: var(--ink);
}
.at-title em { font-style: italic; color: var(--gold); }
.at-right {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--mist); background: transparent;
  border: 0.5px solid rgba(199,199,204,0.6);
  border-radius: 1px; cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
  background: var(--ink); color: var(--white);
  border-color: var(--ink);
}

/* Archive List */
.archive-list {
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 0.5px solid rgba(199,199,204,0.5);
}
.archive-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem; align-items: start;
  padding: 1.75rem 0;
  border-bottom: 0.5px solid rgba(199,199,204,0.3);
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
}
.archive-item:hover { background: rgba(245,243,238,0.5); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }
.ai-issue {
  font-family: var(--serif);
  font-size: 0.75rem; font-weight: 300; letter-spacing: 0.06em;
  color: var(--silver); padding-top: 0.2rem;
}
.ai-issue-num {
  font-size: 1.6rem; font-weight: 300; line-height: 1;
  color: var(--ink); margin-bottom: 0.15rem;
}
.ai-body {}
.ai-domain-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 1px;
  margin-bottom: 0.6rem;
}
.ai-title {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 400; line-height: 1.3;
  color: var(--ink); margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.ai-subtitle {
  font-size: 0.82rem; font-weight: 300; line-height: 1.65;
  color: var(--mist); margin-bottom: 0.75rem;
}
.ai-meta {
  display: flex; gap: 1rem; align-items: center;
}
.ai-date {
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--silver);
}
.ai-read {
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--silver);
}
.ai-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.75rem;
  padding-top: 0.2rem;
}
.ai-arrow {
  font-size: 1.1rem; color: var(--silver);
  transition: transform 0.2s, color 0.2s;
}
.archive-item:hover .ai-arrow {
  transform: translateX(3px);
  color: var(--gold);
}
.ai-featured-badge {
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--gold); border: 0.5px solid var(--gold);
  padding: 0.15rem 0.5rem;
}

/* Empty state */
.archive-empty {
  padding: 4rem 0;
  text-align: center;
  color: var(--silver);
  font-size: 0.85rem; font-weight: 300;
}
.archive-empty-icon {
  font-size: 2rem; margin-bottom: 1rem; opacity: 0.4;
}

/* ══════════════════════════════
   FEATURED ISSUE (Latest)
══════════════════════════════ */
.featured-issue {
  background: var(--ink);
  padding: 3rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem; align-items: end;
}
.fi-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.fi-title {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; line-height: 1.2;
  color: var(--white); margin-bottom: 0.75rem;
}
.fi-title em { font-style: italic; color: var(--gold); }
.fi-sub {
  font-size: 0.85rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.5); max-width: 480px;
}
.fi-meta {
  display: flex; gap: 1.5rem; margin-top: 1.25rem;
}
.fi-meta-item {
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.fi-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 1rem;
}
.fi-issue-num {
  font-family: var(--serif);
  font-size: 4rem; font-weight: 300; line-height: 1;
  color: rgba(255,255,255,0.08);
}
.btn-read-issue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 1px;
  padding: 0.75rem 1.5rem;
  font-family: var(--sans); font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s;
}
.btn-read-issue:hover { opacity: 0.85; }

/* ══════════════════════════════
   ISSUE DETAIL VIEW
══════════════════════════════ */
.issue-detail { display: none; }
.issue-detail.active { display: block; }

.issue-nav-bar {
  display: flex; align-items: center;
  gap: 1rem; margin-bottom: 2.5rem;
}
.btn-back-list {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: none; cursor: pointer;
  font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--mist); padding: 0;
  transition: color 0.2s;
}
.btn-back-list:hover { color: var(--ink); }

.issue-header {
  border-bottom: 0.5px solid rgba(199,199,204,0.5);
  padding-bottom: 2.5rem; margin-bottom: 3rem;
}
.ih-issue-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.ih-issue-num {
  font-family: var(--serif); font-size: 0.9rem; font-weight: 300;
  color: var(--silver); letter-spacing: 0.06em;
}
.ih-domain-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem; border-radius: 1px;
}
.ih-title {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 300; line-height: 1.15;
  color: var(--ink); margin-bottom: 0.75rem;
}
.ih-title em { font-style: italic; color: var(--gold); }
.ih-subtitle {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: var(--mist); max-width: 600px;
}
.ih-meta-row {
  display: flex; gap: 2rem; margin-top: 1.25rem;
}
.ihm-item { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--silver); }

.issue-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
}
.issue-content {}
.issue-sidebar {}

/* Issue content sections */
.ic-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(199,199,204,0.3);
}
.ic-section:last-child { border-bottom: none; }
.ic-section-label {
  font-size: 0.68rem; letter-spacing: 0.18em;
  color: var(--silver); text-transform: uppercase;
  margin-bottom: 1rem;
}
.ic-section-title {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400; line-height: 1.3;
  color: var(--ink); margin-bottom: 1rem;
}
.ic-section-body {
  font-size: 0.88rem; font-weight: 300; line-height: 1.9;
  color: var(--mist);
}
.ic-section-body p { margin-bottom: 1rem; }
.ic-section-body strong { font-weight: 500; color: var(--ink); }

.ic-question-block {
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.ic-question-label {
  font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.ic-question-text {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 400; line-height: 1.5;
  color: var(--ink);
}

.ic-briefs {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.ic-brief {
  display: grid; grid-template-columns: 8px 1fr;
  gap: 0.75rem; align-items: start;
}
.ic-brief-dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: 0.45rem; flex-shrink: 0;
}
.ic-brief-content {}
.ic-brief-domain {
  font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--silver); margin-bottom: 0.2rem;
}
.ic-brief-text {
  font-size: 0.85rem; font-weight: 300; line-height: 1.7;
  color: var(--mist);
}
.ic-brief-insight {
  font-size: 0.8rem; font-weight: 300; line-height: 1.6;
  color: var(--ink); font-style: italic;
  margin-top: 0.4rem; padding-left: 0.75rem;
  border-left: 1.5px solid var(--gold-light);
}

.ic-cta-block {
  background: var(--teal-pale);
  border: 0.5px solid var(--teal-light);
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.ic-cta-label {
  font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--teal); margin-bottom: 0.5rem;
}
.ic-cta-text {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 400; line-height: 1.5;
  color: var(--ink); margin-bottom: 1rem;
}
.btn-cta-diag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal); color: var(--white);
  border: none; border-radius: 1px;
  padding: 0.65rem 1.5rem;
  font-family: var(--sans); font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s;
}
.btn-cta-diag:hover { opacity: 0.85; }

/* Sidebar */
.issue-sidebar {}
.sidebar-subscribe {
  background: var(--ink);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.ss-label {
  font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--gold); margin-bottom: 0.75rem;
}
.ss-title {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 300; line-height: 1.4;
  color: var(--white); margin-bottom: 0.5rem;
}
.ss-sub {
  font-size: 0.78rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.45); margin-bottom: 1.25rem;
}
.ss-btn {
  display: block; text-align: center;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 1px;
  padding: 0.7rem 1.25rem;
  font-family: var(--sans); font-size: 0.75rem;
  font-weight: 400; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s;
}
.ss-btn:hover { opacity: 0.85; }

.sidebar-related {
  border: 0.5px solid rgba(199,199,204,0.5);
  padding: 1.5rem;
}
.sr-label {
  font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--silver); margin-bottom: 1rem;
}
.sr-items { display: flex; flex-direction: column; gap: 1rem; }
.sr-item {
  cursor: pointer; padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(199,199,204,0.3);
  text-decoration: none; display: block;
}
.sr-item:last-child { border-bottom: none; padding-bottom: 0; }
.sr-item-tag {
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--silver); margin-bottom: 0.3rem;
}
.sr-item-title {
  font-family: var(--serif); font-size: 0.95rem; font-weight: 400;
  color: var(--ink); line-height: 1.3;
  transition: color 0.2s;
}
.sr-item:hover .sr-item-title { color: var(--gold); }

/* ══════════════════════════════
   NEWSLETTER COMING SOON (no issues yet)
══════════════════════════════ */
.nl-coming-soon {
  text-align: center; padding: 5rem 2rem;
  border: 0.5px solid rgba(199,199,204,0.4);
  background: var(--white);
  margin-bottom: 3rem;
}
.ncs-icon {
  font-size: 3rem; margin-bottom: 1.5rem; opacity: 0.3;
}
.ncs-title {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 300; line-height: 1.3;
  color: var(--ink); margin-bottom: 0.75rem;
}
.ncs-sub {
  font-size: 0.85rem; font-weight: 300; line-height: 1.8;
  color: var(--mist); max-width: 400px; margin: 0 auto 2rem;
}
.ncs-first-issue {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--silver);
  border-top: 0.5px solid rgba(199,199,204,0.5);
  padding-top: 1.5rem; margin-top: 0.5rem;
}
.ncs-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--ink-soft);
  padding: 3rem 3rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 300;
  color: var(--white); letter-spacing: 0.02em;
  display: flex; align-items: baseline; gap: 0.5rem;
  text-decoration: none;
}
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-size: 0.78rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35); text-decoration: none;
  transition: color 0.2s; cursor: pointer;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy {
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .nl-hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 8rem 2rem 4rem; }
  .nl-hero-right { align-items: flex-start; }
  .domain-hub-grid { grid-template-columns: repeat(3, 1fr); }
  .issue-body { grid-template-columns: 1fr; }
  .issue-sidebar { order: -1; }
  .sidebar-subscribe, .sidebar-related { max-width: 480px; }
}

@media (max-width: 600px) {
  nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nl-hero { padding: 7rem 1.25rem 3rem; }
  .nl-hero-title { font-size: 2.2rem; }
  .nl-stats { gap: 2rem; }

  .subscribe-band {
    flex-direction: column; align-items: flex-start;
    padding: 2rem 1.25rem;
  }
  .sb-right { flex-direction: row; }

  .domain-hub-nav { padding: 0 1.25rem; }
  .nl-main { padding: 3rem 1.25rem; }

  .domain-hub-grid { grid-template-columns: 1fr 1fr; }
  .dhg-card { padding: 1.5rem 1rem; }

  .archive-item { grid-template-columns: 60px 1fr; }
  .ai-right { display: none; }

  .featured-issue { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .fi-right { align-items: flex-start; }
  .fi-issue-num { font-size: 3rem; }

  .ih-title { font-size: 1.8rem; }
  .issue-body { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 1rem 1.5rem; }
}
