:root {
  --bg: #F7F3EE;
  --fg: #1A1208;
  --accent: #E8532A;
  --muted: #7A6A5A;
  --surface: #EDE8E0;
  --border: #D9D0C5;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--fg);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--fg);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(232, 83, 42, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232, 83, 42, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
}
.hero-cta:hover {
  background: #c94220;
  transform: translateY(-1px);
}

/* ── PROBLEM ── */
.problem {
  padding: 100px 40px;
  background: var(--fg);
  color: var(--bg);
}

.problem-inner { max-width: 760px; }

.problem-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.problem-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.problem-body {
  font-size: 1rem;
  color: rgba(247, 243, 238, 0.7);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
  font-weight: 300;
}

.problem-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid rgba(247, 243, 238, 0.15);
  padding-top: 40px;
}

.stat-number {
  font-family: var(--serif);
  font-size: 4rem;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(247, 243, 238, 0.6);
  max-width: 300px;
  line-height: 1.5;
}

/* ── HOW ── */
.how {
  padding: 100px 40px;
}

.how-inner { max-width: 900px; }

.how-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: normal;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.how-step h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 12px;
}

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

/* ── ROOMS ── */
.rooms {
  padding: 100px 40px;
  background: var(--surface);
}

.rooms-inner { max-width: 960px; }

.rooms-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.rooms-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.room-card {
  background: var(--bg);
  padding: 40px;
  transition: background 0.2s;
}
.room-card:hover {
  background: #f2ede6;
}

.room-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.room-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 12px;
}

.room-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.room-card-emphasis {
  background: var(--fg);
}
.room-card-emphasis h3 {
  color: var(--bg);
}
.room-card-emphasis p {
  color: rgba(247, 243, 238, 0.6);
}

/* ── SOLO ── */
.solo {
  padding: 100px 40px;
}

.solo-inner {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.solo-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.solo-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.solo-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
}

.solo-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  min-width: 160px;
}

.solo-stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
}

.solo-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 120px;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
}

.manifesto-inner { max-width: 680px; }

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  background: var(--fg);
  color: var(--bg);
}

.closing-inner { max-width: 760px; }

.closing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.closing-body {
  font-size: 1rem;
  color: rgba(247, 243, 238, 0.65);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
}

.closing-cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
}
.closing-cta:hover {
  background: #c94220;
  transform: translateY(-1px);
}

/* ── FOOTER ── */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fg);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 64px; }
  .problem { padding: 72px 24px; }
  .how { padding: 72px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .rooms { padding: 72px 24px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .solo { padding: 72px 24px; }
  .solo-inner { grid-template-columns: 1fr; gap: 40px; }
  .solo-stat { flex-direction: row; text-align: left; padding: 24px; }
  .solo-stat-num { font-size: 2rem; }
  .solo-stat-label { max-width: none; }
  .manifesto { padding: 72px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .problem-stat { flex-direction: column; gap: 8px; }
}