@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg: #faf6f1;
  --bg-warm: #f3ece3;
  --fg: #2c2420;
  --fg-light: #6b5e54;
  --accent: #c4703f;
  --accent-deep: #a15a2f;
  --accent-soft: #e8c4a0;
  --clay-rose: #d4877f;
  --clay-sage: #8a9e82;
  --clay-ochre: #d4a94e;
  --clay-slate: #6b7d8a;
  --white: #fffcf8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg-warm) 50%, #ede0d2 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clay-sage) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid var(--accent-soft);
  border-radius: 40px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

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

.hero .lede {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-light);
  max-width: 540px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ===== TEXTURE DIVIDER ===== */
.texture-divider {
  height: 120px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.texture-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80px 80px at 10% 50%, var(--clay-rose) 0%, transparent 50%),
    radial-gradient(ellipse 60px 60px at 30% 30%, var(--clay-ochre) 0%, transparent 50%),
    radial-gradient(ellipse 90px 90px at 55% 60%, var(--accent-soft) 0%, transparent 50%),
    radial-gradient(ellipse 70px 70px at 75% 40%, var(--clay-sage) 0%, transparent 50%),
    radial-gradient(ellipse 50px 50px at 90% 55%, var(--clay-slate) 0%, transparent 50%);
  opacity: 0.35;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 100px 24px;
  background: var(--white);
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 40px;
}

.philosophy-line {
  background: linear-gradient(to bottom, var(--accent), var(--clay-rose), var(--clay-sage));
  border-radius: 2px;
}

.philosophy-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.3;
}

.philosophy-content p {
  font-size: 1.1rem;
  color: var(--fg-light);
  margin-bottom: 16px;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 100px 24px;
  background: var(--bg);
}

.collections-header {
  text-align: center;
  margin-bottom: 64px;
}

.collections-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.collections-header p {
  color: var(--fg-light);
  font-size: 1.05rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.collection-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.collection-card:nth-child(1)::before { background: linear-gradient(to right, var(--accent), var(--clay-ochre)); }
.collection-card:nth-child(2)::before { background: linear-gradient(to right, var(--clay-rose), var(--accent-soft)); }
.collection-card:nth-child(3)::before { background: linear-gradient(to right, var(--clay-sage), var(--clay-slate)); }

.collection-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 24px;
}

.collection-card:nth-child(1) .collection-swatch {
  background: linear-gradient(135deg, var(--accent), var(--clay-ochre));
}
.collection-card:nth-child(2) .collection-swatch {
  background: linear-gradient(135deg, var(--clay-rose), var(--accent-soft));
}
.collection-card:nth-child(3) .collection-swatch {
  background: linear-gradient(135deg, var(--clay-sage), var(--clay-slate));
}

.collection-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* ===== PROCESS ===== */
.process {
  padding: 100px 24px;
  background: var(--fg);
  color: var(--bg);
}

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

.process h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--accent-soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--bg);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--accent-soft);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(170deg, var(--bg-warm) 0%, var(--bg) 100%);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-light);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--accent-soft);
}

footer p {
  color: var(--fg-light);
  font-size: 0.85rem;
}

footer .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--fg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: 90vh;
  }

  .philosophy-inner {
    grid-template-columns: 3px 1fr;
    gap: 24px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .closing {
    padding: 80px 20px;
  }
}

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

  .collection-card {
    padding: 28px 24px;
  }
}