:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --fg: #e8e4df;
  --fg-muted: #8a8580;
  --accent: #c9a96e;
  --accent-dim: #9a7d4e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--accent);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  overflow: hidden;
}

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

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 2rem;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* CONTRAST */
.contrast {
  padding: 6rem 4rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.contrast-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contrast-card {
  flex: 1;
  padding: 2.5rem;
  border-radius: 2px;
}

.contrast-before {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contrast-after {
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.contrast-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.contrast-after .contrast-label {
  color: var(--accent);
}

.contrast-detail {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

.contrast-after .contrast-detail {
  color: var(--fg);
}

.contrast-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contrast-arrow {
  color: var(--accent-dim);
  font-size: 1.5rem;
}

/* FEATURES */
.features {
  padding: 8rem 4rem;
}

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

.features-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}

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

.feature {
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.feature-number {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  margin-bottom: 1rem;
}

.feature h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

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

/* NUMBERS */
.numbers {
  padding: 6rem 4rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-value {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  padding: 10rem 4rem;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.closing-origin {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

/* FOOTER */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--accent-dim);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 0 2rem; }
  .nav { padding: 1.5rem 2rem; }
  .contrast { padding: 4rem 2rem; }
  .contrast-grid { flex-direction: column; }
  .contrast-divider { transform: rotate(90deg); }
  .features { padding: 5rem 2rem; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .numbers { padding: 4rem 2rem; }
  .numbers-grid { grid-template-columns: 1fr; gap: 3rem; }
  .closing { padding: 6rem 2rem; }
  .footer { padding: 2rem; }
  .footer-content { flex-direction: column; gap: 0.75rem; text-align: center; }
}

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