:root {
  --bg: #faf6f2;
  --bg-warm: #f5ede4;
  --fg: #2c1810;
  --fg-soft: #6b5147;
  --accent: #c4756e;
  --accent-deep: #9e4a42;
  --accent-light: #e8b4af;
  --rose: #d4918b;
  --gold: #c9a96e;
  --cream: #f0e6da;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(170deg, #f5ede4 0%, #faf6f2 40%, #fce8e5 100%);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(196, 117, 110, 0.12);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-light), transparent 70%);
  top: -100px;
  right: -80px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: -50px;
  left: -60px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--rose), transparent 70%);
  top: 40%;
  left: 15%;
}

/* ===== STORY ===== */
.story {
  padding: 6rem 2rem;
  background: var(--white);
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.story-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.story h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.story p {
  font-size: 1.05rem;
  color: var(--fg-soft);
  line-height: 1.8;
}

/* ===== FEATURES ===== */
.features {
  padding: 5rem 2rem;
  background: var(--bg);
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(196, 117, 110, 0.1);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-soft);
  line-height: 1.7;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 6rem 2rem;
  background: var(--white);
}

.collections-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.collections-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.collections h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3rem;
}

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

.collection-item {
  text-align: center;
}

.collection-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.swatch-french {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 40%, #ffffff 60%, #fce4ec 100%);
  border: 1px solid rgba(196, 117, 110, 0.15);
}

.swatch-chrome {
  background: linear-gradient(135deg, #e8d5b7 0%, #c9a96e 30%, #f5e6ce 50%, #c9a96e 70%, #b8935a 100%);
}

.swatch-freestyle {
  background: linear-gradient(135deg, #c4756e 0%, #d4918b 30%, #e8b4af 50%, #9e4a42 80%, #c4756e 100%);
}

.swatch-minimal {
  background: linear-gradient(135deg, #f5ede4 0%, #e8d5c4 40%, #f0e6da 70%, #dcc8b5 100%);
  border: 1px solid rgba(107, 81, 71, 0.1);
}

.collection-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.collection-item p {
  font-size: 0.85rem;
  color: var(--fg-soft);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 6rem 2rem;
  background: linear-gradient(170deg, var(--bg-warm) 0%, #fce8e5 100%);
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-soft);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  background: var(--fg);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.footer-contact {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 4rem 1.5rem 3rem;
  }

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

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .story,
  .features,
  .collections,
  .closing {
    padding: 4rem 1.5rem;
  }
}

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

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

  .collection-swatch {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}