:root {
  --bg: #F7F4EE;
  --fg: #1A1A1A;
  --accent: #E8873A;
  --accent-light: #F0D5B8;
  --muted: #7A6F62;
  --card-bg: #FFFFFF;
  --border: #E2DDD5;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label { font-size: 12px; color: var(--muted); line-height: 1.3; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* VALUATION CARD */
.valuation-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(26,26,26,0.08);
}
.vc-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.vc-dot { width: 8px; height: 8px; border-radius: 50%; }
.vc-dot.green { background: #4CAF50; }
.vc-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.vc-restaurant { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.vc-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.vc-location { font-size: 13px; color: var(--muted); }
.vc-value { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; letter-spacing: -0.03em; color: var(--fg); }
.vc-multiple { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.vc-bar { height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.vc-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.vc-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.vc-status { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: #F5F0E8; border-radius: 8px; font-size: 13px; font-weight: 500; }
.vc-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* SECTION SHARED */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 56px;
}

/* HOW IT WORKS */
.how { padding: 80px 40px; background: var(--fg); color: var(--bg); }
.how .section-title { color: var(--bg); }
.how .section-sub { color: rgba(247,244,238,0.6); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 40px 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 12px;
}
.step p { font-size: 14px; color: rgba(247,244,238,0.65); line-height: 1.6; }
.step-arrow { padding: 0 20px; flex-shrink: 0; }

/* DEAL FEED */
.dealfeed { padding: 80px 40px; background: #EDEBE5; }
.dealfeed-inner { max-width: 1200px; margin: 0 auto; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feed-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
}
.fc-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-block;
  margin-bottom: 14px;
}
.fc-badge.buyer { background: #D4EDDA; color: #2D6A4F; }
.fc-badge.listed { background: #D6E8F7; color: #1B4F8A; }
.fc-badge.closed { background: #E8E4EF; color: #5B3D8A; }
.fc-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.fc-location { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.fc-result { display: flex; justify-content: space-between; align-items: baseline; }
.fc-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.fc-detail { font-size: 12px; color: var(--muted); }

/* PHILOSOPHY */
.philosophy { padding: 80px 40px; background: var(--fg); }
.philosophy-inner { max-width: 1200px; margin: 0 auto; }
.philosophy-content { max-width: 680px; }
.philosophy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--bg);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.philosophy-content p { font-size: 17px; color: rgba(247,244,238,0.65); line-height: 1.7; margin-bottom: 20px; }

/* CLOSING */
.closing { padding: 100px 40px; text-align: center; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub { font-size: 18px; color: var(--muted); }

/* FOOTER */
.footer { padding: 28px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.footer-copy { font-size: 13px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .feed-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .hero { padding: 48px 20px 64px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .how { padding: 48px 20px; }
  .dealfeed { padding: 48px 20px; }
  .feed-grid { grid-template-columns: 1fr; }
  .philosophy { padding: 48px 20px; }
  .philosophy-content h2 { font-size: 32px; }
  .closing { padding: 64px 20px; }
}