:root {
  --ink: #14120f;
  --paper: #faf8f4;
  --accent: #a3271e;
  --muted: #5c574e;
  --border: #e4dfd4;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0 0 16px;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.header-nav a {
  text-decoration: none;
  color: var(--muted);
}

.header-nav a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 8px 16px;
  border-radius: 999px;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 20px;
}

.hero h1 {
  font-size: clamp(56px, 10vw, 104px);
  line-height: 0.95;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.hero-sub {
  display: block;
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 600;
  margin-top: 14px;
  color: var(--muted);
}

.hero-body {
  max-width: 640px;
  margin: 28px auto 36px;
  font-size: 18px;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: #86201a; }

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* Explores */
.explores {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.explores h2, .updates h2, .author h2, .social h2 {
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
}

.section-lede {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.topic h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.topic p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.explores-note {
  margin: 48px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Updates / email capture */
.updates {
  padding: 80px 0;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}

.updates h2 { color: var(--paper); }

.updates .section-lede { color: #cfc9bb; }

.updates-form {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.updates-form[hidden] { display: none; }

.hidden-field { display: none; }

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #cfc9bb;
}

.optional { font-weight: 400; color: #9a947f; }

.form-row input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #3a362e;
  background: #201d18;
  color: var(--paper);
  font-size: 15px;
  font-family: var(--sans);
}

.form-row input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.updates-form .btn-primary {
  margin-top: 4px;
  width: 100%;
  text-align: center;
}

.updates-success {
  max-width: 420px;
  margin: 20px auto 0;
  font-weight: 600;
}

.updates-error {
  max-width: 420px;
  margin: 16px auto 0;
  font-weight: 600;
  color: #b3261e;
}

.cf-turnstile {
  margin: 8px 0 4px;
}

.updates-privacy {
  margin-top: 24px;
  font-size: 12px;
  color: #9a947f;
}

/* Author */
.author {
  padding: 72px 0;
  background: #fff;
}

.author-inner { max-width: 640px; margin: 0 auto; text-align: center; }

.author p { color: var(--muted); font-size: 16px; }

/* Social */
.social {
  padding: 64px 0 80px;
  text-align: center;
  background: var(--paper);
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.social-links a {
  text-decoration: none;
  font-weight: 600;
  padding: 10px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.social-links a:hover { background: var(--ink); color: var(--paper); }

.social-note {
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .header-nav { gap: 12px; font-size: 13px; }
  .hero { padding: 64px 0 48px; }
}
