:root {
  --bg: #F7F4EF;
  --bg-alt: #EDE8DE;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #C4622D;
  --accent-light: #E8D5C4;
  --navy: #1E2A3A;
  --green: #2D6A4F;
  --red: #9B2335;
  --border: #D6CFC3;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner { display: flex; align-items: center; gap: 20px; }
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-tagline { font-size: 13px; color: var(--fg-muted); }

/* HERO */
.hero { padding: 72px 48px 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-sub { font-size: 18px; color: var(--fg-muted); max-width: 420px; line-height: 1.65; }

/* Booking stack */
.booking-stack { display: flex; flex-direction: column; gap: 12px; }
.booking-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.booking-card--hotel::before { background: var(--accent); }
.booking-card--restaurant::before { background: var(--green); }
.booking-card--taxi::before { background: var(--navy); }

.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-card--hotel .card-icon { background: var(--accent-light); color: var(--accent); }
.booking-card--restaurant .card-icon { background: #D8E8E0; color: var(--green); }
.booking-card--taxi .card-icon { background: #DDE3EA; color: var(--navy); }

.card-content { flex: 1; min-width: 0; }
.card-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); display: block; margin-bottom: 2px; }
.card-title { font-weight: 600; font-size: 15px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { font-size: 13px; color: var(--fg-muted); display: block; }

.card-status { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; flex-shrink: 0; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-dot--confirmed { background: var(--green); }
.status-dot--pending { background: var(--accent); }

/* Hero bottom bar */
.hero-bottom-bar {
  margin-top: 64px;
  padding: 28px 48px;
  background: var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.bar-stat { flex: 1; text-align: center; }
.bar-num { font-family: 'DM Serif Display', serif; font-size: 28px; color: white; display: block; }
.bar-desc { font-size: 12px; color: #94A3B8; display: block; margin-top: 2px; }
.bar-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* SECTION STYLES */
.section-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; }
.section-heading { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; letter-spacing: -0.5px; color: var(--navy); }

/* VERTICALS */
.verticals { padding: 96px 48px; background: white; }
.verticals-inner { max-width: 1100px; margin: 0 auto; }
.verticals .section-heading { margin-bottom: 64px; }
.vertical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vertical-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--bg);
}
.v-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}
.vertical-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--navy); }
.vertical-card p { font-size: 15px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.6; }
.v-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.v-list li { font-size: 14px; color: var(--fg); padding-left: 16px; position: relative; }
.v-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* PROVIDERS */
.providers { padding: 96px 48px; background: var(--bg-alt); }
.providers-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.providers-text .section-heading { margin-bottom: 20px; }
.providers-body { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }

.compare-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  border-bottom: 2px solid var(--border);
  margin-bottom: 4px;
}
.compare-header span:last-child, .compare-header span:nth-child(2) { text-align: right; min-width: 100px; }
.compare-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.compare-row span:first-child { font-weight: 500; color: var(--fg); }
.compare-row span:nth-child(2), .compare-row span:nth-child(3) { text-align: right; min-width: 100px; font-size: 13px; }
.red { color: var(--red) !important; }
.green { color: var(--green) !important; font-weight: 600; }

/* CLOSING */
.closing { padding: 96px 48px; background: var(--navy); }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  color: white;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.closing p { font-size: 18px; color: #94A3B8; line-height: 1.7; max-width: 680px; margin: 0 auto 48px; }
.closing-pillars { display: flex; justify-content: center; gap: 48px; }
.pillar { text-align: center; }
.pillar-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--accent); display: block; }
.pillar-label { font-size: 13px; color: #94A3B8; display: block; margin-top: 4px; max-width: 140px; line-height: 1.4; }

/* FOOTER */
.footer { padding: 32px 48px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 18px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-left: 16px; }
.footer-note { font-size: 13px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .vertical-grid { grid-template-columns: 1fr; }
  .providers-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-bottom-bar { padding: 20px 24px; }
  .closing-pillars { flex-direction: column; align-items: center; gap: 24px; }
  .nav, .hero, .verticals, .providers, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .compare-header, .compare-row { font-size: 12px; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 0; }
  .verticals, .providers { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}