:root {
  --bg: #FAF8F5;
  --bg-alt: #F3EDE5;
  --fg: #1A1A1A;
  --fg-muted: #6B5E54;
  --accent: #8B6914;
  --accent-light: #C4A24D;
  --warm: #C0622F;
  --card-bg: #FFFFFF;
  --border: #E2D9CE;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── Navigation ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 60px 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 440px;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hero-card-offset {
  transform: translateY(32px);
}
.card-image {
  height: 260px;
  background: linear-gradient(145deg, #E8D5C4 0%, #C4A882 50%, #8B6914 100%);
}
.card-image-2 {
  background: linear-gradient(145deg, #D4C4B0 0%, #A07850 50%, #5C3D20 100%);
}
.card-label {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.card-name {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.card-detail {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── Philosophy ── */
.philosophy {
  background: var(--bg-alt);
  padding: 80px 60px;
}
.philosophy-rule {
  width: 60px;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 48px;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
}
.philosophy-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.philosophy-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── How It Works ── */
.how-it-works {
  padding: 100px 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.how-header { margin-bottom: 60px; }
.how-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--fg);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.how-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--fg-muted);
  margin-top: 64px;
  opacity: 0.7;
}

/* ── Collection ── */
.collection {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 60px;
}
.collection-header { margin-bottom: 56px; }
.collection-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg);
}
.collection-sub {
  font-size: 16px;
  color: #B8A898;
  line-height: 1.6;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  gap: 0;
}
.product-swatch {
  width: 120px;
  min-height: 120px;
  flex-shrink: 0;
}
.swatch-1 { background: linear-gradient(135deg, #1A1A1A 0%, #4A3728 50%, #C4A24D 100%); }
.swatch-2 { background: linear-gradient(135deg, #8B6914 0%, #6B4E2A 50%, #D4B896 100%); }
.swatch-3 { background: linear-gradient(135deg, #3D2B1F 0%, #6B4C3A 50%, #A07858 100%); }
.swatch-4 { background: linear-gradient(135deg, #5C4A3A 0%, #8B7355 50%, #E2C9A8 100%); }
.product-info {
  padding: 20px 24px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 14px;
  color: #A89080;
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid rgba(196,162,77,0.4);
  color: var(--accent-light);
  border-radius: 2px;
}

/* ── Closing ── */
.closing {
  padding: 100px 60px;
  text-align: center;
  background: var(--bg-alt);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent-light);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 24px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── Footer ── */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 48px 60px 40px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--bg);
}
.footer-tagline {
  font-size: 13px;
  color: #8A7A6A;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.footer-copy {
  font-size: 12px;
  color: #5A4A3A;
}

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 28px 48px;
  }
  .hero-visual {
    grid-template-columns: 1fr 1fr;
  }
  .philosophy { padding: 60px 28px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-it-works { padding: 60px 28px; }
  .how-steps { grid-template-columns: 1fr; }
  .collection { padding: 60px 28px; }
  .collection-grid { grid-template-columns: 1fr; }
  .product { flex-direction: column; }
  .product-swatch { width: 100%; height: 100px; }
  .closing { padding: 60px 28px; }
  .footer { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .hero-visual { grid-template-columns: 1fr; }
  .hero-card-offset { transform: none; }
  .how-tagline { font-size: 22px; }
  .closing-headline { font-size: 30px; }
}