/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F3EC;
  --bg-alt: #EDE6D8;
  --fg: #1A1714;
  --fg-muted: #6B6259;
  --accent: #B8956A;
  --accent-dark: #8C6D48;
  --gold: #C9A96E;
  --swatch-1: #2C1810;
  --swatch-2: #4A3020;
  --swatch-3: #7A5535;
  --swatch-4: #C4956A;
}

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

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

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 100px;
  min-height: 580px;
  align-items: center;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-attributes {
  display: flex;
  align-items: center;
  gap: 32px;
}

.attr { display: flex; flex-direction: column; }

.attr-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.attr-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-transform: uppercase;
}

.attr-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,23,20,0.15);
}

/* Hero visual — swatch grid */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-swatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 280px;
}

.swatch {
  height: 160px;
  border-radius: 8px;
}

.swatch-1 { background: var(--swatch-1); border-radius: 8px 8px 40px 8px; }
.swatch-2 { background: var(--swatch-2); border-radius: 8px 40px 8px 8px; }
.swatch-3 { background: var(--swatch-3); border-radius: 40px 8px 8px 8px; }
.swatch-4 { background: var(--swatch-4); border-radius: 8px 8px 8px 40px; }

.hero-mood-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 48px;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--bg);
  margin-bottom: 20px;
}

.manifesto-attribution {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 48px;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 32px 28px;
  border: 1px solid rgba(26,23,20,0.08);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== COLLECTION ===== */
.collection {
  padding: 100px 48px;
  background: var(--bg-alt);
}

.collection-header {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.collection-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--fg);
}

.collection-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(26,23,20,0.06);
  align-items: center;
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-silhouette {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.silhouette-hair {
  background: linear-gradient(180deg, var(--swatch-2) 0%, var(--swatch-1) 100%);
  border-radius: 20px 20px 60px 60px;
}

.silhouette-long  { width: 64px; height: 200px; }
.silhouette-mid   { width: 64px; height: 160px; opacity: 0.7; }
.silhouette-short { width: 64px; height: 120px; opacity: 0.4; }

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.spec { display: flex; flex-direction: column; gap: 2px; }

.spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,23,20,0.08);
}

.price-retail {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}

.price-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-vs {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 48px 80px;
  background: var(--bg);
}

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

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 56px 48px;
}

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.footer-links {
  font-size: 0.78rem;
  color: rgba(247,243,236,0.4);
  letter-spacing: 0.06em;
}

.footer-sep { margin: 0 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 32px 80px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .product-card { grid-template-columns: 1fr; gap: 32px; }
  .nav { padding: 20px 32px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 24px 64px; }
  .features, .collection, .closing, .manifesto { padding: 60px 24px; }
  .product-card { padding: 32px 24px; }
  .nav { padding: 16px 24px; }
  .footer { padding: 40px 24px; }
}