:root {
  --bg: #0c0b09;
  --bg-warm: #141210;
  --fg: #e8e2d6;
  --fg-muted: #a09882;
  --accent: #c4956a;
  --accent-light: #d4a87a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --max-w: 1080px;
  --space: clamp(2rem, 5vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.2;
  color: var(--fg);
  max-width: 800px;
}

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

.hero-lede {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 3rem;
}

.btn-subscribe {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}

.btn-subscribe:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.hero-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,149,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* ====== PHILOSOPHY ====== */
.philosophy {
  padding: calc(var(--space) * 2) var(--space);
  border-top: 1px solid rgba(160,152,130,0.12);
}

.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.philosophy-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--accent-light);
}

.philosophy-quote .attribution {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.philosophy-text p {
  margin-bottom: 1.2rem;
  color: var(--fg-muted);
}

.philosophy-text strong {
  color: var(--fg);
  font-weight: 500;
}

/* ====== FEATURES ====== */
.features {
  padding: calc(var(--space) * 2) var(--space);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.feature-block {
  padding: 2.5rem;
  border: 1px solid rgba(160,152,130,0.1);
  border-radius: 2px;
  background: var(--bg-warm);
  transition: border-color 0.3s;
}

.feature-block:hover {
  border-color: rgba(196,149,106,0.3);
}

.feature-number {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}

.feature-block h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

.feature-block p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== RHYTHM ====== */
.rhythm {
  padding: calc(var(--space) * 2) var(--space);
  border-top: 1px solid rgba(160,152,130,0.12);
}

.rhythm-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.rhythm h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 3rem;
  color: var(--fg);
}

.rhythm-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.rhythm-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(160,152,130,0.08);
}

.rhythm-step:last-child { border-bottom: none; }

.rhythm-time {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--accent);
  padding-top: 0.15rem;
}

.rhythm-step p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ====== CLOSING ====== */
.closing {
  padding: calc(var(--space) * 3) var(--space);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.closing-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--accent-light) !important;
  margin-top: 2rem !important;
}

/* ====== FOOTER ====== */
.site-footer {
  padding: 3rem var(--space);
  border-top: 1px solid rgba(160,152,130,0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.footer-sep {
  font-size: 0.85rem;
  color: rgba(160,152,130,0.5);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rhythm-step {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .hero {
    min-height: 80vh;
    padding-top: 4rem;
  }

  .feature-block {
    padding: 1.8rem;
  }
}