:root {
  --noir: #111111;
  --noir-light: #1a1a1a;
  --blush: #e8c5b8;
  --blush-dark: #c9a496;
  --gold: #d4af37;
  --gold-light: #e8c97a;
  --cream: #faf7f4;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d4d4d4;
  --gray-500: #888888;
  --gray-700: #444444;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
}

em { font-style: italic; color: var(--blush); }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  display: block;
  margin-bottom: 1.5rem;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 3rem;
}

/* --- Navigation --- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4vw;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  font-weight: 700;
}

.nav-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  text-transform: lowercase;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 6rem 4vw 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(12rem, 30vw, 28rem);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.0;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-300);
  max-width: 540px;
  line-height: 1.7;
}

.hero-accent-line {
  position: absolute;
  bottom: 0;
  left: 4vw;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* --- Philosophy --- */
.philosophy {
  background: var(--noir-light);
  padding: 8rem 4vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.philosophy-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.05;
  font-weight: 700;
}

.philosophy-body {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,175,55,0.3);
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  opacity: 0.6;
}

.pillar-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-transform: uppercase;
  font-weight: 500;
}

/* --- How It Works --- */
.howitworks {
  padding: 8rem 4vw;
  background: var(--noir);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
}

.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.step:last-child { border-right: none; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Products --- */
.products {
  background: var(--cream);
  padding: 8rem 4vw;
  color: var(--noir);
}

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

.products .section-label { color: var(--blush-dark); }
.products .section-headline { color: var(--noir); }

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

.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-dark);
  font-weight: 500;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--noir);
  font-weight: 600;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.6;
  flex: 1;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: auto;
}

/* --- Manifesto --- */
.manifesto {
  padding: 10rem 4vw;
  background: var(--noir);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.manifesto-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  color: var(--blush);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Closing --- */
.closing {
  padding: 8rem 4vw;
  background: linear-gradient(135deg, var(--noir) 0%, #1a1215 100%);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.closing-headline {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.05;
  font-weight: 700;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  padding: 4rem 4vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--gray-700);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 2rem;
  }

  .step:last-child { border-bottom: none; }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-headline {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .manifesto {
    padding: 6rem 4vw;
  }

  .philosophy, .howitworks, .closing {
    padding: 5rem 4vw;
  }

  .products {
    padding: 5rem 4vw;
  }
}