:root {
  --bg: #0e0a0f;
  --surface: #1a1220;
  --surface-2: #24182e;
  --plum: #2d1229;
  --blush: #f5c6d6;
  --rose: #e8a4b8;
  --gold: #d4af37;
  --gold-light: #e8c96a;
  --text: #f0e6ec;
  --text-muted: #9a8699;
  --text-dim: #5c4f60;
}

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

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

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.nav-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-overline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.7;
}

/* Sparkle card stack */
.hero-sparkle-stack {
  position: relative;
  height: 500px;
}
.sparkle-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.card-1 {
  width: 220px; height: 90px;
  top: 20px; right: 30px;
  transform: rotate(3deg);
  background: linear-gradient(135deg, var(--plum), var(--surface-2));
}
.card-2 {
  width: 200px; height: 80px;
  top: 130px; right: 0;
  transform: rotate(-2deg);
  background: linear-gradient(135deg, #1e0d22, var(--surface));
}
.card-3 {
  width: 230px; height: 90px;
  top: 230px; right: 20px;
  transform: rotate(2deg);
  background: linear-gradient(135deg, var(--plum), #1a0f1f);
  border-color: rgba(212,175,55,0.2);
}
.card-4 {
  width: 200px; height: 80px;
  top: 340px; right: 0;
  transform: rotate(-1deg);
  background: var(--surface-2);
}
.card-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.manifesto-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
}
.manifesto-statement em {
  font-style: italic;
  color: var(--blush);
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.15);
}
.pillar {
  background: var(--surface);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
}
.pillar-text {
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ── COLLECTIONS ── */
.collections {
  padding: 6rem 2rem;
}
.collections-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.collections-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.1);
}
.collection-card {
  background: var(--surface);
  padding: 2rem 1.5rem;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.collection-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.collection-card:hover::after {
  transform: scaleX(1);
}
.collection-card:hover {
  background: var(--surface-2);
}
.cc-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}
.cc-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 7rem 2rem;
  background: var(--plum);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.closing-body {
  font-size: 1rem;
  color: rgba(240,230,236,0.7);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(212,175,55,0.1);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-sparkle-stack {
    height: 280px;
  }
  .sparkle-card {
    transform: none !important;
  }
  .card-1 { top: 10px; right: 20px; }
  .card-2 { top: 100px; right: 0; }
  .card-3 { top: 190px; right: 10px; }
  .card-4 { top: 260px; right: 0; }
  .manifesto-pillars {
    grid-template-columns: 1fr;
  }
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-card.cc-5 {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 4.5rem; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card.cc-5 { grid-column: span 1; }
  .collections-grid { background: none; gap: 1px; }
  .collection-card { border: 1px solid rgba(212,175,55,0.1); }
  .manifesto-pillars { background: none; }
  .pillar { border: 1px solid rgba(212,175,55,0.1); }
}