:root {
  --bg-dark: #0d0d0d;
  --bg-warm: #1a1714;
  --bg-card: #141210;
  --fg-primary: #f5f0e8;
  --fg-secondary: #a89f91;
  --fg-muted: #6b6358;
  --accent: #c9a96e;
  --accent-dim: #9a7d4e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a1714 0%, #0d0d0d 40%, #1a150e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(201,169,110,0.015) 1px,
    rgba(201,169,110,0.015) 2px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 1.05;
  color: var(--fg-primary);
  letter-spacing: -0.02em;
}

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

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 2rem auto;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 400px;
  margin: 0 auto;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

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

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

.philosophy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.philosophy-text {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.philosophy-stats {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,169,110,0.2);
  align-self: center;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.collections-header {
  max-width: 960px;
  margin: 0 auto 4rem;
}

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

.collections h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  color: var(--fg-primary);
}

.collections-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.collection-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.collection-card:hover {
  border-color: rgba(201,169,110,0.3);
}

.card-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent-dim);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

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

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

/* ===== CRAFTSMANSHIP ===== */
.craftsmanship {
  padding: 8rem 2rem;
  background: var(--bg-warm);
}

.craft-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

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

.craft-point {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.craft-icon {
  color: var(--accent);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.craft-point h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--fg-primary);
  margin-bottom: 0.4rem;
}

.craft-point p {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 2rem;
  background: var(--bg-dark);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.25;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--fg-primary);
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 0.5rem;
}

.footer-line {
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,0.2);
  margin: 2rem auto;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .craft-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-stats {
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .closing {
    padding: 6rem 2rem;
  }

  .philosophy,
  .collections,
  .craftsmanship {
    padding: 5rem 1.5rem;
  }

  .collection-card {
    padding: 2rem;
  }
}

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

  .philosophy h2,
  .collections h2,
  .craft-left h2,
  .closing h2 {
    font-size: 1.8rem;
  }
}