:root {
  --bg: #0C0A09;
  --bg-warm: #141110;
  --fg: #F5F0EB;
  --fg-muted: #A89F97;
  --gold: #C9A84C;
  --gold-light: #E4C76B;
  --gold-dark: #8B7A3A;
  --accent: #D4A843;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  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: 2rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 900px;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.8;
}

.hero-line {
  width: 48px;
  height: 1px;
  background: var(--gold-dark);
  margin: 3rem auto 0;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 8rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  position: relative;
  padding: 0 1rem;
}

.philosophy-quote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold-dark);
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  line-height: 1;
  opacity: 0.5;
}

.philosophy-attr {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 2rem 8rem;
  background: var(--bg-warm);
  position: relative;
}

.features::before,
.features::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.features::before { top: 0; }
.features::after { bottom: 0; }

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px;
  transition: border-color 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(201,168,76,0.3);
}

.feature-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-dark);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

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

/* ===== HOW ===== */
.how {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.how-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 4rem;
}

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

.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.how-step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-dark);
  opacity: 0.5;
  line-height: 1;
  text-align: right;
}

.how-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
    var(--bg);
}

.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.25;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

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

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  opacity: 0.6;
}

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

  .how-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .how-step-num {
    font-size: 2.5rem;
  }

  .philosophy {
    padding: 5rem 1.5rem;
  }

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

  .how {
    padding: 5rem 1.5rem;
  }

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