:root {
  --bg: #FDFAF5;
  --bg-alt: #F5EFE6;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #D97706;
  --accent-light: #FEF3C7;
  --sage: #6B7280;
  --border: #E7E5E4;
}

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

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

h1, h2, h3, .hero-headline {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 8vw;
  background: var(--bg);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Recipe Card */
.hero-visual { display: flex; justify-content: center; }
.recipe-card-hero {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  width: 340px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.recipe-card-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.recipe-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.recipe-card-macros {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.macro {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--bg-alt);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--fg-muted);
}
.recipe-card-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* THE PROBLEM */
.theproblem { background: var(--fg); color: #fff; padding: 7rem 8vw; }
.theproblem-inner { max-width: 1100px; margin: 0 auto; }
.problem-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.problem-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}
.problem-item p { font-size: 0.95rem; color: #A8A29E; line-height: 1.7; }
.problem-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}

/* WEEKLY DROPS */
.weeklydrops { background: var(--bg-alt); padding: 7rem 8vw; }
.drops-header { max-width: 700px; margin-bottom: 4rem; }
.drops-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.drops-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.drops-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; }
.drops-timeline { display: flex; flex-direction: column; gap: 0; max-width: 700px; }
.drop-week {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.drop-date {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-muted);
  padding-top: 0.2rem;
}
.drop-type {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.drop-content p { font-size: 0.95rem; color: var(--fg); line-height: 1.65; }

/* WHAT YOU GET */
.whatyouget { background: var(--bg); padding: 7rem 8vw; }
.wyg-header { margin-bottom: 3.5rem; }
.wyg-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.wyg-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  max-width: 550px;
}
.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.wyg-card {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
}
.wyg-card-icon { color: var(--accent); margin-bottom: 1.25rem; }
.wyg-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.wyg-card p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }

/* PHILOSOPHY */
.philosophy { background: #fff; padding: 7rem 8vw; border-top: 1px solid var(--border); }
.philosophy-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.philosophy-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.philosophy-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-style: normal;
}
.philosophy-sub { font-size: 1.05rem; color: var(--fg-muted); margin-bottom: 3rem; line-height: 1.7; }
.philosophy-detail { display: flex; flex-direction: column; gap: 1rem; text-align: left; max-width: 480px; margin: 0 auto; }
.phil-item { display: flex; gap: 1rem; font-size: 0.9rem; }
.phil-label {
  font-weight: 500;
  color: var(--fg-muted);
  min-width: 80px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}
.phil-value { color: var(--fg); line-height: 1.5; }

/* CLOSING */
.closing { background: var(--fg); color: #fff; padding: 8rem 8vw; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.closing-sub { font-size: 1.1rem; color: #A8A29E; margin-bottom: 3rem; line-height: 1.7; }
.closing-pricing { border-top: 1px solid #292524; padding-top: 3rem; }
.price-tag { display: flex; align-items: baseline; justify-content: center; gap: 0.3rem; margin-bottom: 1rem; }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
}
.price-period { font-size: 1.5rem; color: #A8A29E; }
.price-note { font-size: 0.85rem; color: #78716C; }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 8vw; }
.footer-inner { text-align: center; }
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.footer-legal { font-size: 0.75rem; color: #A8A29E; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6vw; min-height: auto; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .wyg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 5vw; }
  .theproblem { padding: 5rem 5vw; }
  .weeklydrops { padding: 5rem 5vw; }
  .whatyouget { padding: 5rem 5vw; }
  .philosophy { padding: 5rem 5vw; }
  .closing { padding: 5rem 5vw; }
  .wyg-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}
