:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f5f0eb;
  --fg-muted: #a89f96;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.15);
  --border: rgba(201, 169, 110, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--fg);
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

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

.hero-sub {
  max-width: 540px;
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* Features */
.features {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
}

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

.feature-card {
  background: var(--bg-card);
  padding: 3rem;
  position: relative;
  transition: background 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-elevated);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

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

/* Philosophy */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin: 2rem 0;
  border: none;
  padding: 0;
}

.quote-attribution {
  display: block;
  font-size: 0.6em;
  color: var(--accent);
  font-style: normal;
  margin-top: 0.5rem;
}

.philosophy-content > p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 2rem auto 0;
}

/* Closing */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 4rem;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Footer */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-divider {
  opacity: 0.3;
}

/* Hero CTA */
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--border);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: var(--accent-dim);
  color: var(--fg);
}

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

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

  .closing-stats {
    gap: 2rem;
  }

  .hero {
    min-height: 90vh;
    padding: 3rem 1.5rem;
  }

  .philosophy {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

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

@media (max-width: 480px) {
  .closing-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-value {
    font-size: 1.6rem;
  }
}