:root {
  --bg: #111111;
  --surface: #1c1c1c;
  --cream: #f0ebe1;
  --gold: #c8a45a;
  --muted: #7a7a7a;
  --fg: #f0ebe1;
  --fg-dim: #a8a49e;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid rgba(240,235,225,0.1);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-mark {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-brand-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }

/* HERO */
.hero {
  padding: 96px 48px 112px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,164,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 64px;
  font-weight: 300;
}
.hero-year {
  display: flex;
  align-items: baseline;
  gap: 24px;
  border-top: 1px solid rgba(240,235,225,0.12);
  padding-top: 32px;
}
.year-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.year-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.manifesto-attr {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.dash {
  color: var(--gold);
}

/* WHAT */
.what {
  padding: 96px 48px;
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.what-head {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}
.what-item {
  padding: 32px;
  border: 1px solid rgba(240,235,225,0.08);
  transition: border-color 0.3s ease;
}
.what-item:hover {
  border-color: rgba(200,164,90,0.3);
}
.what-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.what-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.what-item p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
  font-weight: 300;
}

/* ARCHIVE */
.archive {
  background: var(--surface);
  padding: 96px 48px;
}
.archive-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.archive-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  font-weight: 500;
}
.archive-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}
.archive-item {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.3s ease;
}
.archive-item:hover {
  background: #1e1e1e;
}
.archive-item--large {
  grid-row: span 1;
}
.archive-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.archive-link h3 {
  transition: color 0.2s;
}
.archive-item:hover .archive-link h3 {
  color: var(--gold);
}
.archive-item--placeholder {
  opacity: 0.5;
}
.archive-item--placeholder:hover {
  background: var(--bg);
}
.archive-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.archive-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.archive-item p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.65;
  font-weight: 300;
}
.archive-item--large h3 {
  font-size: 26px;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
}
.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.closing-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 48px;
}
.closing-rule {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto;
}

/* SUBSCRIBE */
.subscribe {
  padding: 96px 48px;
  background: var(--surface);
}
.subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.subscribe-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 40px;
}
.subscribe-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.subscribe-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.subscribe-sub {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 300;
}
.subscribe-form { width: 100%; }
.subscribe-field-row {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
}
.subscribe-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid rgba(240,235,225,0.15);
  border-right: none;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-input:focus {
  border-color: var(--gold);
}
.subscribe-input::placeholder { color: var(--muted); }
.subscribe-btn {
  padding: 14px 28px;
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.subscribe-btn:hover { background: #d4b06a; }
.subscribe-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.subscribe-msg {
  font-size: 13px;
  margin-bottom: 12px;
  min-height: 20px;
}
.subscribe-msg.success { color: var(--gold); }
.subscribe-msg.error   { color: #e07070; }
.subscribe-privacy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(240,235,225,0.08);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.footer-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}
.footer-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 80px; }
  .manifesto { padding: 60px 24px; }
  .what { padding: 64px 24px; }
  .archive { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-year { flex-direction: column; gap: 12px; }
  .what-grid { grid-template-columns: 1fr; }
}