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

:root {
  --bg:        #0c0c0c;
  --bg-card:   #141414;
  --bg-light:  #1a1a1a;
  --border:    #242424;
  --text:      #ede9e3;
  --muted:     #888580;
  --accent:    #c93a1e;
  --accent-h:  #e0431f;
  --white:     #f5f2ec;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Layout ─── */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Nav ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.btn-nav {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  transition: background 0.15s;
}
.btn-nav:hover { background: var(--accent-h); }

/* ─── Hero ─── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ─── Subscribe Form ─── */
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  flex: 1 1 220px;
  padding: 13px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.subscribe-form input[type="email"]::placeholder { color: #555; }
.subscribe-form input[type="email"]:focus { border-color: var(--accent); }

.subscribe-form button {
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.subscribe-form button:hover { background: var(--accent-h); }

.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #555;
}

/* ─── About ─── */
.about {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.stats-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}

.stat { padding: 16px 0; }
.stat:first-child { padding-top: 0; }
.stat:last-child { padding-bottom: 0; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.divider {
  height: 1px;
  background: var(--border);
}

/* ─── Issues ─── */
.issues {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.issue-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.15s, transform 0.15s;
  cursor: pointer;
}

.issue-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
}

.issue-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.issue-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.issue-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.read-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.issues-footer {
  margin-top: 32px;
  text-align: center;
}

.issues-footer a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.issues-footer a:hover { color: var(--text); }

/* ─── Format / Beats ─── */
.format {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.format h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
}

.beats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.beat {
  background: var(--bg-card);
  padding: 28px 22px;
}

.beat-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.beat h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.beat p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Bottom CTA ─── */
.bottom-cta {
  padding: 96px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.bottom-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.bottom-cta p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

.bottom-cta .subscribe-form {
  margin: 0 auto;
  justify-content: center;
}

/* ─── Footer ─── */
footer {
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  font-size: 0.8rem;
  color: #444;
}

footer a {
  color: #555;
  transition: color 0.15s;
}
footer a:hover { color: var(--muted); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .issues-grid {
    grid-template-columns: 1fr;
  }

  .beats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero { padding: 64px 0 56px; }
  .about, .issues, .format { padding: 56px 0; }
  .bottom-cta { padding: 64px 0; }
}

@media (max-width: 540px) {
  .subscribe-form { flex-direction: column; }
  .subscribe-form input[type="email"],
  .subscribe-form button { width: 100%; }
}
