:root {
  --bg: #1a1710;
  --bg-card: #211e17;
  --bg-deep: #0f0d0a;
  --fg: #f0e6d0;
  --fg-muted: #9c8f7a;
  --accent: #c8956c;
  --accent-warm: #d4a96a;
  --accent-sage: #6b7c5c;
  --accent-deep: #8b6b4a;
  --border: rgba(200, 149, 108, 0.15);
  --border-warm: rgba(240, 230, 208, 0.08);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(26, 23, 16, 0.95) 0%, transparent 100%);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

.tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-deep);
}

.grain-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(139, 107, 74, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(107, 124, 92, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(200, 149, 108, 0.08) 0%, transparent 50%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Decorative vertical lines */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.hero-bg::before { left: 25%; }
.hero-bg::after { right: 33%; }

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 40px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.manifesto-quote {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 40px;
  quotes: none;
}

.manifesto-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

.manifesto-rule {
  width: 1px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.manifesto-closing {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── PRODUCTS ── */
.products {
  padding: 120px 40px;
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}

.section-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.products-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-icon {
  color: var(--accent);
}

.product-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--fg);
  font-family: 'Cormorant Garamond', serif;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.detail-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

/* ── INGREDIENTS ── */
.ingredients {
  padding: 120px 40px;
  background: var(--bg-deep);
}

.ingredients-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ingredients-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin: 16px 0 28px;
}

.ingredients-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.ingredients-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 1px solid var(--accent);
}

.pillar-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.ingredient-visual {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iv-row {
  display: flex;
  gap: 4px;
}

.iv-block {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iv-block--tall {
  flex: 1.5;
}

.iv-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.iv-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-warm);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 1px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.closing-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 64px;
}

.closing-scent-story {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.scent-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scent-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.scent-name {
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--fg);
}

.scent-desc {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  max-width: 120px;
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  padding: 60px 40px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-warm);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}

.footer-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header { padding: 16px 24px; }

  .hero {
    padding: 80px 24px 60px;
    align-items: center;
    min-height: 80vh;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider { display: none; }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .closing-scent-story {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .manifesto { padding: 80px 24px; }
  .products { padding: 80px 24px; }
  .ingredients { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 3rem;
  }

  .hero-bg::before,
  .hero-bg::after {
    display: none;
  }
}