:root {
  --espresso: #1C1108;
  --dark-roast: #2D1F12;
  --medium-roast: #3F2D1A;
  --warm-parchment: #F2E8D5;
  --light-parchment: #FAF4EC;
  --burnt-sienna: #C4622D;
  --burnt-sienna-light: #D4845A;
  --sage: #8A9E7C;
  --text-primary: #F2E8D5;
  --text-secondary: #B5A48A;
  --text-muted: #7A6A54;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--espresso);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 17, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 232, 213, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--warm-parchment);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 32px 80px;
  overflow: hidden;
}
.hero-ambient {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(196, 98, 45, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burnt-sienna);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--warm-parchment);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px;
  background: rgba(45, 31, 18, 0.5);
  border: 1px solid rgba(242, 232, 213, 0.08);
  border-radius: 20px;
}
.coffee-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--burnt-sienna);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.coffee-divider {
  width: 1px;
  height: 50px;
  background: rgba(242, 232, 213, 0.1);
}

/* WHAT IT IS */
.what-it-is {
  padding: 100px 32px;
  background: var(--dark-roast);
  border-top: 1px solid rgba(242, 232, 213, 0.06);
}
.what-it-is-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.what-header {
  text-align: center;
  margin-bottom: 72px;
}
.what-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--warm-parchment);
  margin-bottom: 20px;
}
.what-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.what-card {
  background: var(--medium-roast);
  padding: 40px 36px;
}
.what-icon {
  color: var(--burnt-sienna);
  margin-bottom: 24px;
}
.what-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--warm-parchment);
  margin-bottom: 12px;
  line-height: 1.3;
}
.what-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 32px;
  background: var(--espresso);
  border-top: 1px solid rgba(242, 232, 213, 0.06);
}
.how-inner {
  max-width: 900px;
  margin: 0 auto;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--warm-parchment);
  text-align: center;
  margin-bottom: 72px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(242, 232, 213, 0.06);
}
.step:first-child { border-top: 1px solid rgba(242, 232, 213, 0.06); }
.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--burnt-sienna);
  opacity: 0.7;
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--warm-parchment);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 32px;
  background: var(--dark-roast);
  border-top: 1px solid rgba(242, 232, 213, 0.06);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--warm-parchment);
  text-align: center;
  margin-bottom: 60px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.outcome {
  background: var(--medium-roast);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outcome-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--burnt-sienna);
  line-height: 1;
}
.outcome-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  background: var(--espresso);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--warm-parchment);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 36px 32px;
  background: var(--dark-roast);
  border-top: 1px solid rgba(242, 232, 213, 0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--warm-parchment);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-tagline { display: none; }
  .hero { padding: 72px 24px 60px; }
  .hero-visual { flex-direction: column; gap: 24px; padding: 28px; }
  .coffee-divider { display: none; }
  .what-grid { grid-template-columns: 1fr; gap: 2px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; padding: 36px 0; }
  .step-number { font-size: 36px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .how-title { margin-bottom: 48px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
}