/* ── BASE ── */
:root {
  --bg: #faf8f3;
  --bg2: #f2efe8;
  --text: #1c1c1e;
  --text2: #5a5a5a;
  --accent: #c9882a;
  --accent-light: #f0c96a;
  --white: #ffffff;
  --border: #e2ddd6;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  font-weight: 600;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 20px;
}

/* ── NAV ── */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  color: var(--text2);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text2);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 100px;
}

/* ── REVEAL CARD ── */
.reveal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.reveal-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 500;
  margin-bottom: 24px;
}
.reveal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.reveal-image {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.reveal-before, .reveal-after {
  position: relative;
}
.side-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  z-index: 2;
}
.reveal-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark room placeholder */
.room-placeholder {
  border-radius: 12px;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.dark-room {
  background: linear-gradient(135deg, #3d3a35 0%, #2a2722 60%, #1a1815 100%);
}
.staged-room {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d0 100%);
}
.room-walls {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.03) 0%, transparent 30%);
}
.room-window {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 60px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
.room-walls-staged {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #faf8f3 0%, #f0ece3 100%);
}
.furniture-group {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.sofa {
  width: 70%;
  height: 40px;
  background: linear-gradient(135deg, #c9882a 0%, #a87220 100%);
  border-radius: 8px 8px 4px 4px;
  position: absolute;
  bottom: 0;
}
.table-group {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 50px;
  height: 20px;
  background: rgba(180,140,80,0.6);
  border-radius: 4px;
}
.plant {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 30px;
  height: 50px;
  background: linear-gradient(to top, #4a6741 0%, #6b8c5a 100%);
  border-radius: 20px 20px 4px 4px;
}
.reveal-caption {
  font-size: 11px;
  color: var(--text2);
  text-align: center;
  font-style: italic;
}

/* ── PROOF ── */
.proof {
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-header {
  margin-bottom: 56px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proof-card {}
.proof-visual {
  height: 200px;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.lighting-fix { background: linear-gradient(135deg, #2d2b28, #4a453d); }
.staging-fix { background: linear-gradient(135deg, #e8e0d0, #d4c8b4); }
.clutter-fix { background: linear-gradient(135deg, #f0ece4, #e0d8cc); }
.dusk-fix { background: linear-gradient(135deg, #3a3a5c, #5c4a6e); }

.proof-icon {
  position: absolute;
  top: 20px;
  left: 20px;
}
.proof-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.staging-fix .proof-tag, .clutter-fix .proof-tag { color: var(--text2); }
.proof-desc h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.proof-desc p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── FEATURES ── */
.features {
  padding: 80px 48px;
  background: var(--bg);
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-body {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}
.feature-check {
  flex-shrink: 0;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  min-width: 40px;
}
.step-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  padding: 80px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header .section-title { margin-bottom: 12px; }
.pricing-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 4px 32px rgba(201,136,42,0.12);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
}
.price-tier {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 12px;
  font-weight: 500;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.price-amount::before { content: '$'; font-size: 24px; }
.price-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  font-size: 13px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  background: var(--text);
  color: var(--white);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing .section-label { color: var(--accent); }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.closing-cta { margin-bottom: 56px; }
.closing-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cstat { text-align: center; }
.cstat-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.cstat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  line-height: 1.4;
  max-width: 140px;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text2);
  max-width: 280px;
  line-height: 1.5;
}
.footer-meta p {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 420px;
}
.footer-copy {
  margin-top: 16px;
  color: var(--text2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hero-stats { gap: 24px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero, .proof, .features, .pricing, .closing, .footer { padding: 48px 24px; }
  .nav { padding: 20px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 20px; }
}