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

:root {
  --gold:  #C9A84C;
  --dark:  #0C0C0C;
  --ink:   #E6E1D6;
  --muted: #7A7670;
  --rule:  rgba(230,225,214,0.12);
  --max:   720px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Playfair Display', Georgia, serif;
  background: var(--dark);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

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

/* ── WRAP ─────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── TOP BAR ──────────────────────────────── */
.top-bar {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-date,
.top-bar-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── MASTHEAD ─────────────────────────────── */
.masthead {
  padding: 52px 0 40px;
  text-align: center;
  border-bottom: 2px solid var(--ink);
}
.masthead-link { text-decoration: none; }
.masthead-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
  text-transform: uppercase;
}
.masthead-name span {
  color: #ffffff;
  letter-spacing: 0.1em;
}
.masthead-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* ── NAV ──────────────────────────────────── */
.nav-strip { border-bottom: 1px solid var(--rule); }
.nav-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  min-height: 44px;
}
.nav-strip a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  padding: 10px 0;
}
.nav-strip a:hover { color: var(--ink); }
.nav-strip .nav-subscribe {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 5px 14px;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-strip .nav-subscribe:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── SECTION LABEL ────────────────────────── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── LEAD STORY ───────────────────────────── */
.lead-section { padding: 52px 0 0; }
.lead-story { padding-bottom: 40px; border-bottom: 1px solid var(--rule); }
.lead-story-link { display: block; }
.lead-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.lead-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
  transition: opacity 0.15s;
}
.lead-story-link:hover .lead-title { opacity: 0.75; }
.lead-title em { font-style: italic; color: var(--gold); }
.lead-excerpt {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(230,225,214,0.7);
  margin-bottom: 20px;
  max-width: 600px;
}
.lead-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lead-meta-tag {
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10px;
}

/* ── ARTICLE LIST ─────────────────────────── */
.article-list { padding: 40px 0 0; }
.article-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.15s;
}
.article-item:hover { opacity: 0.7; }
.article-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  padding-top: 4px;
  text-align: right;
}
.article-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.article-kicker span { color: var(--gold); }
.article-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
}
.article-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── PULL QUOTE ───────────────────────────── */
.pull-quote {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
  margin: 48px 0 0;
  text-align: center;
}
.pull-quote-text {
  font-size: clamp(17px, 3vw, 22px);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto 12px;
}
.pull-quote-attr {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── TOPICS ───────────────────────────────── */
.topics-section { padding: 48px 0; border-top: 1px solid var(--rule); }
.topics-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.topic-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  transition: all 0.2s;
}
.topic-tag:hover { color: var(--gold); border-color: rgba(201,168,76,0.4); }

/* ── SUBSCRIBE ────────────────────────────── */
.subscribe-section {
  padding: 52px 0;
  border-top: 2px solid var(--ink);
  margin-top: 48px;
}
.subscribe-section h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}
.subscribe-section h2 em { font-style: italic; color: var(--gold); }
.subscribe-section > p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.subscribe-form {
  display: flex;
  max-width: 440px;
}
.subscribe-form input {
  flex: 1;
  background: rgba(230,225,214,0.06);
  border: 1px solid var(--rule);
  border-right: none;
  color: var(--ink);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
}
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form input:focus { border-color: rgba(201,168,76,0.5); }
.subscribe-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.subscribe-form button:hover { opacity: 0.85; }
.subscribe-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.subscribe-note a { color: var(--muted); }

/* ── FOOTER ───────────────────────────────── */
footer {
  border-top: 2px solid var(--ink);
  padding: 36px 0 48px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
}
.footer-brand-name span { color: #fff; letter-spacing: 0.1em; }
.footer-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ── POST TEMPLATE ────────────────────────── */
.post-wrap { padding-top: 52px; }
.post-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.post-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.post-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.post-meta-tag { color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.post-content {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(230,225,214,0.85);
}
.post-content h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.post-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
}
.post-content p { margin-bottom: 24px; }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol {
  margin: 0 0 24px 24px;
}
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--ink);
}
.post-content img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
}
.post-content pre {
  background: rgba(230,225,214,0.06);
  border: 1px solid var(--rule);
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
  font-family: 'Courier New', monospace;
  font-size: 13px;
}
.post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule); }
.post-back {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.post-back:hover { color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 600px) {
  .top-bar-tagline { display: none; }
  .footer-top { flex-direction: column; gap: 20px; }
  .footer-links { gap: 16px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { border-right: 1px solid var(--rule); border-bottom: none; }
}

/* ── SHARE BAR ────────────────────────────── */
.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 48px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.post-share-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.post-share-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(230,225,214,0.07);
  border: 1px solid var(--rule);
  padding: 7px 14px;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.post-share-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ── COMMENTS ─────────────────────────────── */
.post-comments {
  margin: 40px 0 0;
}
