:root {
  --bg: #111110;
  --fg: #f6f3ed;
  --fg-muted: rgba(246, 243, 237, 0.5);
  --accent: #e8a836;
  --accent-dim: rgba(232, 168, 54, 0.15);
  --border: rgba(246, 243, 237, 0.1);
  --surface: rgba(246, 243, 237, 0.04);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

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.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(17, 17, 16, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 2rem;
}

.grid-room {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.grid-room span:first-child { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.grid-room span:last-child { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--fg); }

.grid-room-1 { grid-column: 1; }
.grid-room-2 { grid-column: 2; }
.grid-room-3 { grid-column: 1; }
.grid-room-4 { grid-column: 2; }

.grid-quote-badge {
  grid-column: 1 / -1;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.quote-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.quote-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.quote-sub { font-size: 0.72rem; color: var(--fg-muted); text-align: right; }

.hero-text { display: flex; flex-direction: column; gap: 2rem; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-lede { font-size: 1.1rem; color: rgba(246,243,237,0.7); max-width: 420px; line-height: 1.7; }

.hero-proof { display: flex; align-items: center; gap: 2rem; }
.proof-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.proof-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--fg); line-height: 1; }
.proof-desc { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }

/* ── HOW ── */
.how { border-top: 1px solid var(--border); padding: 6rem 2rem; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; max-width: 500px; line-height: 1.2; margin-bottom: 4rem; letter-spacing: -0.02em; }
.how-steps { display: flex; align-items: flex-start; gap: 2rem; }
.step { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.step-connector { width: 40px; height: 1px; background: var(--border); margin-top: 1.5rem; flex-shrink: 0; }
.step-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 0.06em; }
.step-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1.2; }
.step-body { font-size: 0.9rem; color: rgba(246,243,237,0.6); line-height: 1.7; }

/* ── FEATURES ── */
.features { border-top: 1px solid var(--border); padding: 6rem 2rem; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-card { background: var(--bg); padding: 2.25rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-icon { color: var(--accent); }
.feature-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.feature-body { font-size: 0.875rem; color: rgba(246,243,237,0.55); line-height: 1.65; }

/* ── NICHES ── */
.niches { border-top: 1px solid var(--border); padding: 6rem 2rem; background: var(--surface); }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.niche-card { background: var(--bg); border: 1px solid var(--border); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.niche-eyebrow { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.niche-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; line-height: 1.2; }
.niche-body { font-size: 0.875rem; color: rgba(246,243,237,0.6); line-height: 1.7; }

/* ── CLOSING ── */
.closing { border-top: 1px solid var(--border); padding: 8rem 2rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: var(--fg); }
.closing-sub { font-size: 1.05rem; color: rgba(246,243,237,0.6); max-width: 500px; line-height: 1.7; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border); padding: 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-weight: 700; }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 2.5rem; }
  .hero-grid-art { padding: 1.25rem; }
  .quote-price { font-size: 2rem; }
  .hero-proof { gap: 1.25rem; }
  .how-steps { flex-direction: column; }
  .step-connector { width: 32px; height: 1px; margin-top: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .grid-quote-badge { flex-wrap: wrap; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-proof { gap: 1rem; }
}