:root {
  --bg: #07080a;
  --surface: #111318;
  --surface-2: #1a1d24;
  --fg: #e8e4df;
  --fg-muted: #7a7670;
  --accent: #ff5c2a;
  --accent-dim: rgba(255, 92, 42, 0.12);
  --confirmed: #34d399;
  --confirmed-dim: rgba(52, 211, 153, 0.1);
}

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

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,92,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,92,42,0.3);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reservation-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px 16px;
}
.reservation-card.delay { border-color: rgba(255,92,42,0.15); }
.rc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  grid-column: 1;
  grid-row: 1;
}
.rc-guest {
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  grid-column: 1;
  grid-row: 2;
}
.rc-details {
  font-size: 13px;
  color: var(--fg-muted);
  grid-column: 1;
  grid-row: 3;
}
.rc-status {
  font-size: 12px;
  font-weight: 500;
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  padding: 6px 12px;
  border-radius: 6px;
}
.rc-status.confirmed { background: var(--confirmed-dim); color: var(--confirmed); }
.rc-status.notified { background: var(--accent-dim); color: var(--accent); }

/* HOW */
.how { background: var(--surface); padding: 100px 24px; }
.how-inner { max-width: 900px; margin: 0 auto; }
.how h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 64px;
  font-weight: 400;
}
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.step-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* FEATURES */
.features { padding: 100px 24px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 56px;
  font-weight: 400;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
.feature { }
.feature-icon { color: var(--accent); margin-bottom: 16px; }
.feature h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* CLOSING */
.closing { padding: 100px 24px; }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-stat { margin-bottom: 40px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label { font-size: 18px; color: var(--fg-muted); line-height: 1.6; }
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.logo-mark { color: var(--accent); font-size: 18px; }
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-links span { font-size: 13px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  h1 { font-size: 42px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .stat-number { font-size: 60px; }
}