:root {
  --plum:      #5C2040;
  --plum-deep: #3D1530;
  --rose-gold: #C9A87C;
  --cream:     #F8F4F0;
  --cream-dark: #EDE5DC;
  --espresso:  #1A0F1A;
  --muted:     rgba(248,244,240,0.55);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: 0.05em;
}
.nav-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--plum);
  opacity: 0.5;
}

/* ── HERO ── */
.hero {
  padding: 6rem 3rem 5rem;
  background: var(--cream);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92,32,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rose-gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--plum-deep);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--rose-gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--espresso);
  opacity: 0.75;
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hero-cta {
  display: inline-block;
  background: var(--plum);
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--plum-deep); }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-card {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  border-radius: 20px;
  padding: 3px;
  box-shadow: 0 20px 60px rgba(61,21,48,0.15);
}
.hero-card-inner {
  background: var(--plum-deep);
  border-radius: 18px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201,168,124,0.25) 0%, transparent 70%);
}
.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-icon svg {
  width: 48px;
  height: 48px;
}
.card-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}
.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose-gold);
  opacity: 0.8;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--plum);
}
.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--espresso);
  opacity: 0.5;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--cream-dark);
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--plum-deep);
  padding: 7rem 3rem;
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}
.philosophy-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rose-gold);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.philosophy-body {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.8;
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rose-gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--plum-deep);
  line-height: 1.1;
}

/* ── PRODUCTS ── */
.products {
  padding: 7rem 3rem;
  background: var(--cream);
}
.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-circle {
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
.c1 { background: linear-gradient(135deg, #C9A87C 0%, #8B6644 100%); }
.c2 { background: linear-gradient(135deg, #E8C4C4 0%, #C9A87C 100%); }
.c3 { background: linear-gradient(135deg, #5C2040 0%, #C9A87C 100%); }
.product-info {
  padding: 1.8rem;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin-bottom: 0.6rem;
}
.product-info p {
  font-size: 0.85rem;
  color: var(--espresso);
  opacity: 0.65;
  line-height: 1.6;
}

/* ── HOW ── */
.how {
  padding: 7rem 3rem;
  background: var(--cream-dark);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.step {}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose-gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin-bottom: 0.8rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--espresso);
  opacity: 0.65;
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 3rem;
  background: var(--cream);
  overflow: hidden;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 5rem;
}
.closing-visual {
  position: relative;
  width: 200px;
  height: 200px;
}
.closing-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--rose-gold);
}
.r1 { width: 200px; height: 200px; top: 0; left: 0; opacity: 0.3; }
.r2 { width: 150px; height: 150px; top: 25px; left: 25px; opacity: 0.5; }
.r3 { width: 100px; height: 100px; top: 50px; left: 50px; background: var(--rose-gold); opacity: 0.15; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--plum-deep);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--espresso);
  opacity: 0.65;
  max-width: 500px;
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  background: var(--plum-deep);
  padding: 3rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-dot { opacity: 0.3; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .product-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-visual { display: none; }
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .products { padding: 5rem 1.5rem; }
  .how { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 500px) {
  .hero-stats { flex-direction: column; gap: 0.8rem; }
  .stat-divider { width: 60px; height: 1px; }
}