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

:root {
  --cream: oklch(96.5% 0.012 80);
  --cream-dark: oklch(92% 0.015 78);
  --green: oklch(34% 0.09 148);
  --green-mid: oklch(45% 0.10 148);
  --green-light: oklch(90% 0.04 148);
  --amber: oklch(68% 0.14 68);
  --amber-light: oklch(92% 0.06 70);
  --ink: oklch(18% 0.02 75);
  --ink-mid: oklch(40% 0.02 75);
  --ink-light: oklch(62% 0.015 75);
  --white: #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  background: oklch(96.5% 0.012 80 / 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(88% 0.015 78);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--green);
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; text-decoration: none;
  color: var(--ink-mid); letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--white);
  border: none; padding: 0.5rem 1.4rem; border-radius: 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
  font-weight: 500; cursor: pointer; letter-spacing: 0.04em;
  text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid); }

section { padding: 100px 5vw; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding-top: 140px; padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--amber-light); color: var(--amber);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 0.9rem;
  border-radius: 2rem; margin-bottom: 1.8rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem); font-weight: 300;
  line-height: 1.08; color: var(--ink); margin-bottom: 1.6rem;
  text-wrap: pretty;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--ink-mid);
  max-width: 480px; margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: var(--white);
  border: none; padding: 0.9rem 2rem; border-radius: 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green); padding: 0.9rem 2rem; border-radius: 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-outline:hover { background: var(--green-light); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card-main {
  background: var(--green);
  border-radius: 24px; padding: 3rem;
  width: 100%; max-width: 420px;
  color: var(--white); position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: oklch(42% 0.10 148 / 0.5);
}
.hero-card-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.6; margin-bottom: 0.8rem;
}
.hero-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; line-height: 1.2;
  margin-bottom: 1.8rem;
}
.hero-card-stats { display: flex; gap: 2rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; line-height: 1;
  color: var(--amber);
}
.stat-label { font-size: 0.72rem; opacity: 0.7; margin-top: 0.25rem; }

.hero-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--amber); color: var(--white);
  border-radius: 16px; padding: 1rem 1.4rem;
  font-size: 0.78rem; font-weight: 600; text-align: center;
  box-shadow: 0 8px 24px oklch(68% 0.14 68 / 0.35);
}
.hero-badge strong { display: block; font-size: 1.4rem; font-weight: 600; }

.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400;
  line-height: 1.15; margin-bottom: 1.2rem; text-wrap: pretty;
}
.section-sub { font-size: 1rem; color: var(--ink-mid); line-height: 1.7; max-width: 540px; }

/* MARKET */
.market-section { background: var(--ink); color: var(--white); }
.market-section .section-title { color: var(--white); }
.market-section .section-sub { color: oklch(80% 0.01 75); }
.market-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.chart-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; opacity: 0.5; text-transform: uppercase; margin-bottom: 1.5rem; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 160px; }
.bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bar { width: 100%; border-radius: 6px 6px 0 0; background: var(--green-mid); }
.bar.highlight { background: var(--amber); }
.bar-year { font-size: 0.7rem; opacity: 0.5; }
.market-stat-row { display: flex; gap: 2rem; margin-top: 2.5rem; }
.mstat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--amber); line-height: 1; }
.mstat-label { font-size: 0.8rem; opacity: 0.6; margin-top: 0.4rem; line-height: 1.4; }

/* PRODUCTS */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.product-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid oklch(90% 0.015 78);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px oklch(18% 0.02 75 / 0.1); }
.product-img { height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img svg { width: 100%; height: 100%; }
.product-body { padding: 1.5rem 1.8rem 1.8rem; }
.product-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--green-light); color: var(--green);
  padding: 0.25rem 0.7rem; border-radius: 2rem; margin-bottom: 0.8rem;
}
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500; margin-bottom: 0.6rem; line-height: 1.2; }
.product-desc { font-size: 0.87rem; color: var(--ink-mid); line-height: 1.6; }
.product-macros { display: flex; gap: 1rem; margin-top: 1.2rem; flex-wrap: wrap; }
.macro { background: var(--cream); border-radius: 10px; padding: 0.5rem 0.8rem; text-align: center; }
.macro-val { font-size: 0.95rem; font-weight: 600; color: var(--green); }
.macro-key { font-size: 0.65rem; color: var(--ink-light); margin-top: 0.15rem; }

/* INGREDIENTS */
.ingredients-section { background: var(--green); color: var(--white); }
.ingredients-section .section-title { color: var(--white); }
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.ing-card {
  background: oklch(42% 0.09 148 / 0.6);
  border-radius: 16px; padding: 1.8rem;
  border: 1px solid oklch(55% 0.08 148 / 0.4);
  transition: background 0.2s;
}
.ing-card:hover { background: oklch(42% 0.09 148 / 0.9); }
.ing-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.3rem;
}
.ing-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.ing-desc { font-size: 0.84rem; opacity: 0.75; line-height: 1.6; }

/* AUDIENCE */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.audience-card {
  border-radius: 20px; padding: 2rem;
  border: 1.5px solid oklch(88% 0.015 78);
  position: relative; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.audience-card:hover { border-color: var(--green); box-shadow: 0 8px 32px oklch(34% 0.09 148 / 0.1); }
.audience-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300; line-height: 1;
  color: oklch(90% 0.04 148); position: absolute; right: 1.5rem; top: 1.2rem;
  pointer-events: none;
}
.audience-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.audience-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; margin-bottom: 0.7rem; }
.audience-desc { font-size: 0.86rem; color: var(--ink-mid); line-height: 1.6; }

/* ADVANTAGE */
.advantage-section { background: var(--cream-dark); }
.advantage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.adv-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.adv-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem; background: var(--white); border-radius: 16px;
  border: 1px solid oklch(90% 0.015 78);
}
.adv-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 5px; }
.adv-text-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.adv-text-desc { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.6; }

.adv-visual {
  background: var(--white); border-radius: 24px; padding: 3rem;
  border: 1px solid oklch(90% 0.015 78);
  text-align: center;
}
.adv-visual-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 1.5rem; }
.big-stat { font-family: 'Cormorant Garamond', serif; font-size: 7rem; font-weight: 300; color: var(--green); line-height: 1; }
.big-stat-unit { font-size: 3rem; }
.big-stat-label { font-size: 0.9rem; color: var(--ink-mid); margin-top: 0.5rem; line-height: 1.5; }
.divider { width: 40px; height: 2px; background: var(--amber); margin: 1.5rem auto; }
.big-stat2 { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: var(--amber); line-height: 1; }

/* TRACTION */
.traction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.traction-card { background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid oklch(90% 0.015 78); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: 0.8; color: var(--amber); margin-bottom: 0.5rem; }
.traction-text { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.7; }
.traction-source { font-size: 0.75rem; color: var(--ink-light); margin-top: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* CTA */
.cta-section { background: var(--ink); color: var(--white); text-align: center; padding: 120px 5vw; }
.cta-section .section-title { color: var(--white); font-size: clamp(2.4rem, 4vw, 3.8rem); }
.cta-section .section-sub { color: oklch(75% 0.015 75); max-width: 600px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-amber {
  background: var(--amber); color: var(--white);
  border: none; padding: 1rem 2.4rem; border-radius: 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 500; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-amber:hover { background: oklch(62% 0.15 68); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid oklch(60% 0.01 75); padding: 1rem 2.4rem; border-radius: 2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 500; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-ghost:hover { border-color: var(--white); }

/* CONTACTS */
.contact-row { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.contact-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--white); border-radius: 16px; padding: 1.2rem 1.8rem;
  border: 1px solid oklch(90% 0.015 78); text-decoration: none;
  color: var(--ink); transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover { box-shadow: 0 8px 24px oklch(18% 0.02 75 / 0.1); transform: translateY(-2px); }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 0.25rem; }
.contact-value { font-size: 1.05rem; font-weight: 500; }

/* FOOTER */
footer {
  background: oklch(12% 0.015 75); color: oklch(60% 0.01 75);
  padding: 2.5rem 5vw; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); }
.footer-logo span { color: var(--amber); }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .market-inner, .advantage-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .ing-grid, .audience-grid, .traction-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
