:root {
  --pink-50: #fff0f3;
  --pink-100: #ffe0e8;
  --pink-200: #ffc2d4;
  --pink-300: #ff8fab;
  --pink-400: #ff6b8a;
  --pink-500: #e84670;
  --pink-600: #c13558;
  --pink-900: #4a0e22;
  --cream: #fef9f4;
  --cream-dark: #f7ede3;
  --charcoal: #1a1118;
  --charcoal-light: #3d2f38;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 3rem;
  z-index: 10;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--pink-900);
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(170deg, var(--pink-50) 0%, var(--pink-100) 35%, var(--cream) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.shape-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, var(--pink-200), transparent 70%);
}

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

.shape-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--pink-500);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--pink-400);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pink-400), transparent);
}

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

.philosophy-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.philosophy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.philosophy p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.9;
}

/* ---- FEATURES ---- */
.features {
  padding: 4rem 2rem 8rem;
  background: var(--cream);
}

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

.feature-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--pink-100);
  border-radius: 2px;
  transition: all 0.3s ease;
  background: var(--cream);
}

.feature-card:hover {
  border-color: var(--pink-300);
  box-shadow: 0 8px 40px rgba(232, 70, 112, 0.06);
  transform: translateY(-2px);
}

.feature-card-accent {
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  border-color: var(--pink-200);
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--pink-300);
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ---- RITUAL ---- */
.ritual {
  padding: 6rem 2rem 8rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-50) 100%);
}

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

.ritual-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.ritual-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--pink-500);
  border: 1px solid var(--pink-200);
  border-radius: 50%;
}

.step strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.2rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  background: var(--pink-900);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--pink-100);
  margin-bottom: 1.5rem;
}

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

.closing p {
  font-size: 1rem;
  color: var(--pink-200);
  line-height: 1.8;
}

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

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--pink-200);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--pink-400);
  margin-bottom: 1.5rem;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--pink-400);
  opacity: 0.3;
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--charcoal-light);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav {
    padding: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .philosophy,
  .closing {
    padding: 5rem 1.5rem;
  }

  .ritual {
    padding: 4rem 1.5rem 5rem;
  }
}

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

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-scroll {
    display: none;
  }
}
