:root {
  --bg: #FAF7F4;
  --bg-warm: #F5EDE6;
  --bg-dark: #1A1613;
  --fg: #2C2420;
  --fg-light: #6B5E55;
  --fg-muted: #9B8E85;
  --accent: #C4956A;
  --accent-light: #D4AD8A;
  --accent-rose: #D4A0A0;
  --accent-sage: #A8B5A0;
  --white: #FFFCF9;
  --border: rgba(44, 36, 32, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250, 247, 244, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo { display: flex; align-items: center; gap: 8px; }

.logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--fg);
}

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

.nav-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 50%, rgba(212, 160, 160, 0.12) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
}

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

.hero-lede {
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg-light);
  max-width: 600px;
  margin: 0 auto 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-hint span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 120px 40px;
  background: var(--white);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-label,
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-main h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}

.philosophy-main h2 em {
  font-style: italic;
  color: var(--accent);
}

.philosophy-main p {
  font-size: 16px;
  color: var(--fg-light);
  line-height: 1.8;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pillar {
  padding-left: 24px;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}

.pillar:hover {
  border-left-color: var(--accent);
}

.pillar-number {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 500;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.pillar p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.7;
}

/* === INGREDIENTS === */
.ingredients {
  padding: 120px 40px;
  background: var(--bg-dark);
  color: var(--white);
}

.ingredients-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ingredients .section-label {
  color: var(--accent-light);
}

.ingredients-header {
  margin-bottom: 64px;
}

.ingredients-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.ingredients-header h2 em {
  font-style: italic;
  color: var(--accent-light);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ingredient-card {
  padding: 32px;
  background: rgba(255, 252, 249, 0.04);
  border: 1px solid rgba(255, 252, 249, 0.08);
  border-radius: 12px;
  transition: background 0.3s, border-color 0.3s;
}

.ingredient-card:hover {
  background: rgba(255, 252, 249, 0.07);
  border-color: rgba(196, 149, 106, 0.3);
}

.ingredient-icon {
  font-size: 24px;
  color: var(--accent-light);
  margin-bottom: 16px;
  opacity: 0.7;
}

.ingredient-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.ingredient-card p {
  font-size: 14px;
  color: rgba(255, 252, 249, 0.6);
  line-height: 1.7;
}

/* === PRODUCTS === */
.products {
  padding: 120px 40px;
  background: var(--bg);
}

.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-inner > h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 64px;
  color: var(--fg);
}

.products-inner > h2 em {
  font-style: italic;
  color: var(--accent);
}

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

.product-card {
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(44, 36, 32, 0.08);
}

.product-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}

.product-claim {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-card > p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-ingredients {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--fg-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* === SCIENCE === */
.science {
  padding: 120px 40px;
  background: linear-gradient(170deg, var(--bg-warm), rgba(168, 181, 160, 0.15));
}

.science-inner {
  max-width: 800px;
  margin: 0 auto;
}

.science-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}

.science-body {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.9;
  margin-bottom: 48px;
}

.science-commitments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.commitment {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}

.commitment-check {
  color: var(--accent-sage);
  font-size: 18px;
  font-weight: 600;
}

/* === CLOSING === */
.closing {
  padding: 140px 40px;
  text-align: center;
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

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

.closing p {
  font-size: 17px;
  color: rgba(255, 252, 249, 0.65);
  line-height: 1.8;
  margin-bottom: 48px;
}

.closing-tagline {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.7;
}

/* === FOOTER === */
.footer {
  padding: 40px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 252, 249, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand .logo-text {
  color: rgba(255, 252, 249, 0.4);
  font-size: 12px;
  letter-spacing: 3px;
}

.footer-links {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 252, 249, 0.3);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 252, 249, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }

  .hero { padding: 100px 24px 60px; min-height: 90vh; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-scroll-hint { display: none; }

  .philosophy { padding: 80px 24px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }

  .ingredients { padding: 80px 24px; }
  .ingredients-grid { grid-template-columns: 1fr; gap: 20px; }

  .products { padding: 80px 24px; }
  .products-grid { grid-template-columns: 1fr; }

  .science { padding: 80px 24px; }
  .science-commitments { grid-template-columns: 1fr; }

  .closing { padding: 80px 24px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .hero-lede { font-size: 16px; }
  .product-card { padding: 32px 24px; }
}