:root {
  --bg: #f5f0e8;
  --fg: #1c1c1a;
  --fg-muted: #5a5a55;
  --accent: #1a3d2e;
  --accent-warm: #d4a843;
  --accent-light: #e8f0ec;
  --border: #ddd8ce;
  --card-bg: #ffffff;
  --problem-bg: #ece7dc;
}

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

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

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 48px 96px;
  background: var(--accent);
  color: #fff;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; max-width: 860px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  padding: 0 40px 0 0;
}
.hero-stat:first-child { padding-left: 0; }

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  margin-right: 40px;
}

.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  max-width: 140px;
  line-height: 1.4;
}

.hero-ambient-shape {
  position: absolute;
  right: -80px; top: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* ── PROBLEM ──────────────────────────────────────── */
.problem { padding: 96px 48px; }
.problem-inner { max-width: 1040px; }

.problem-label, .services-label, .process-label, .psychedelic-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.18;
  color: var(--fg);
  max-width: 640px;
  margin-bottom: 56px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.problem-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── SERVICES ─────────────────────────────────────── */
.services { padding: 96px 48px; background: var(--problem-bg); }
.services-inner { max-width: 1040px; }

.services-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.18;
  color: var(--fg);
  max-width: 520px;
  margin-bottom: 16px;
}

.services-body {
  max-width: 560px;
}

.services-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.service-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--border); }
.service-item:nth-child(even) { padding-left: 40px; }

.service-number {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--accent-warm);
  min-width: 28px;
  padding-top: 2px;
}

.service-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.service-content p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── PSYCHEDELIC ─────────────────────────────────── */
.psychedelic-section {
  background: var(--accent);
  color: #fff;
  padding: 96px 48px;
}

.psychedelic-inner { max-width: 1040px; }

.psychedelic-section .psychedelic-label { color: rgba(255,255,255,0.5); }

.psychedelic-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 28px;
}

.psychedelic-body {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 16px;
}

.compound-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0 32px;
}

.compound-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 20px 18px;
}

.compound-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--accent-warm);
  margin-bottom: 4px;
}

.compound-status {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.compound-use {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.psychedelic-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  border-left: 2px solid rgba(212,168,67,0.4);
  padding-left: 14px;
  max-width: 480px;
  line-height: 1.6;
}

/* ── PROCESS ──────────────────────────────────────── */
.process-section { padding: 96px 48px; }
.process-inner { max-width: 720px; }

.process-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.18;
  color: var(--fg);
  margin-bottom: 56px;
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: var(--border);
  margin: 8px 0;
}

.process-step:last-child .step-line { display: none; }

.step-content { padding-bottom: 40px; }

.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── CLOSING ──────────────────────────────────────── */
.closing-section {
  background: var(--problem-bg);
  padding: 96px 48px;
}

.closing-inner { max-width: 720px; }

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 600px;
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,0.6);
  padding: 56px 48px 48px;
}

.footer-inner { max-width: 1040px; }

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #fff;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 480px;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 72px 24px 64px; }
  .problem, .services, .psychedelic-section, .process-section, .closing-section { padding: 64px 24px; }
  
  .hero-stat-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
  
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .service-item:nth-child(even) { padding-left: 0; }
  
  .compound-grid { grid-template-columns: repeat(2, 1fr); }
  
  .hero-headline { font-size: 36px; }
  .closing-headline { font-size: 30px; }
}

@media (max-width: 480px) {
  .compound-grid { grid-template-columns: 1fr; }
}