:root {
  --bg: #FAF7F2;
  --bg-alt: #F3EDE6;
  --fg: #2D2520;
  --fg-mid: #6B5E55;
  --fg-light: #9E8E84;
  --accent: #C4795A;
  --accent-warm: #D4A99A;
  --white: #FFFFFF;
  --off-white: #FFFDF9;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 37, 32, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 85vh;
}
.hero-content { display: flex; flex-direction: column; justify-content: center; }
.hero-overline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-mid);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-detail-item { display: flex; flex-direction: column; gap: 0.2rem; }
.detail-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
}
.detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-light);
}
.hero-detail-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(45,37,32,0.15);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-display {
  position: relative;
  width: 280px;
  height: 360px;
}
.product-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,154,0.35) 0%, rgba(196,121,90,0.08) 70%, transparent 100%);
}
.product-bottle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}
.bottle-body {
  width: 72px;
  height: 160px;
  border-radius: 36px 36px 24px 24px;
  background: linear-gradient(160deg, #E8C4B4 0%, #D4A99A 40%, #C4795A 100%);
  box-shadow: 0 16px 40px rgba(196,121,90,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.bottle-cap {
  width: 30px;
  height: 45px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #2D2520, #1a1512);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: -1px;
}
.bottle-label {
  margin-top: 0.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-mid);
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.product-tag {
  position: absolute;
  top: 20px;
  right: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(196,121,90,0.1);
  border: 1px solid rgba(196,121,90,0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.04em;
}

/* PRODUCTS */
.products {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.products-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
}
.product-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.product-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(45,37,32,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45,37,32,0.1);
}
.product-card--hero {
  border: 1.5px solid rgba(196,121,90,0.2);
}
.card-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-visual--lip-oil { background: linear-gradient(160deg, #FDF1EC, #F5E4D8); }
.card-visual--mist { background: linear-gradient(160deg, #EDF5F9, #D9EAF2); }
.card-visual--kit { background: linear-gradient(160deg, #F0EAE4, #E5D9CE); }

.card-circle {
  border-radius: 50%;
  position: absolute;
}
.card-circle--rose {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,169,154,0.5) 0%, transparent 70%);
}
.card-circle--mist {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(100,160,200,0.3) 0%, transparent 70%);
}
.card-circle--tan {
  width: 110px; height: 110px;
  background: radial-gradient(circle, rgba(196,121,90,0.3) 0%, transparent 70%);
}
.card-bottle {
  position: absolute;
  border-radius: 20px;
  z-index: 2;
}
.card-bottle--oil {
  width: 44px; height: 100px;
  border-radius: 22px 22px 14px 14px;
  background: linear-gradient(160deg, #E8C4B4, #C4795A);
  box-shadow: 0 6px 16px rgba(196,121,90,0.3);
}
.card-bottle--mist {
  width: 38px; height: 90px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(160deg, #C8E0EC, #7DB5D4);
  box-shadow: 0 6px 16px rgba(100,160,200,0.25);
}
.card-kit-bag {
  width: 80px; height: 55px;
  border-radius: 8px;
  background: linear-gradient(135deg, #D4A99A, #B06A4A);
  box-shadow: 0 6px 16px rgba(196,121,90,0.3);
  z-index: 2;
  position: relative;
}
.card-kit-bag::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 14px;
  border-radius: 7px 7px 0 0;
  border: 2px solid rgba(255,255,255,0.4);
  border-bottom: none;
}
.card-info {
  padding: 1.5rem 1.75rem 1.75rem;
}
.card-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,121,90,0.1);
  border: 1px solid rgba(196,121,90,0.2);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.65rem;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--fg-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.card-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-light);
  letter-spacing: 0.04em;
}

/* WHY STATS */
.why {
  padding: 5rem 2rem;
  background: var(--fg);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.why-stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-desc {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.6;
  max-width: 26ch;
  margin: 0 auto;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--bg);
  text-align: center;
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 2.5rem;
  position: relative;
}
.manifesto-quote::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* CLOSING */
.closing {
  padding: 5rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-mid);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 2rem;
  border-top: 1px solid rgba(45,37,32,0.08);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-light);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 3rem;
    min-height: auto;
    gap: 2.5rem;
  }
  .hero-visual { display: none; }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .hero-detail { gap: 1.25rem; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}