:root {
  --navy: #0d1b2a;
  --navy-light: #152237;
  --amber: #e8a838;
  --amber-light: #f5c56a;
  --cream: #f5f0e8;
  --light: #faf8f4;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e0d8;
  --radius: 8px;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* Hero */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 40px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}
.lede {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tags span {
  font-size: 0.72rem;
  padding: 4px 12px;
  border: 1px solid rgba(232, 168, 56, 0.4);
  border-radius: 999px;
  color: var(--amber-light);
}

/* Call Widget */
.call-widget {
  background: #1a2d42;
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.call-widget-header {
  background: rgba(232, 168, 56, 0.15);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--amber);
  font-weight: 500;
}
.call-icon { display: flex; align-items: center; }
.call-widget-body { padding: 24px 20px; display: flex; flex-direction: column; gap: 12px; }
.ai-dot-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.ai-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  animation: pulse 1.2s ease-in-out infinite;
}
.ai-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.ai-label { font-size: 0.72rem; color: rgba(245,240,232,0.4); margin-left: 4px; }
.sms-bubble {
  background: rgba(232, 168, 56, 0.15);
  border-left: 3px solid var(--amber);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: var(--cream);
  line-height: 1.5;
}
.reply-bubble {
  background: rgba(255,255,255,0.07);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--cream);
  align-self: flex-end;
}
.ai-booking {
  background: rgba(232, 168, 56, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-line { font-size: 0.82rem; color: var(--amber-light); font-weight: 500; }
.booking-value { font-size: 0.9rem; font-weight: 600; color: var(--amber); }

/* Stats */
.stats-section {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: center;
}
.stat-item { padding: 0 40px; flex: 1; }
.stat-item:first-child { padding-left: 0; }
.stat-value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* How It Works */
.how-it-works { padding: 80px 40px; background: var(--light); }
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.how-it-works h2 { font-size: 2rem; color: var(--navy); margin-bottom: 48px; }
.step-grid { display: flex; align-items: center; gap: 0; }
.step-card {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.step-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.step-arrow {
  padding: 0 20px;
  color: var(--amber);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Services */
.services-section { padding: 80px 40px; background: var(--navy); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-section .section-label { color: var(--amber); }
.services-section h2 { font-size: 2rem; color: var(--cream); margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(232, 168, 56, 0.3); }
.service-icon { color: var(--amber); margin-bottom: 16px; display: flex; }
.service-card h3 { font-size: 1rem; color: var(--cream); margin-bottom: 10px; font-family: 'DM Serif Display', serif; }
.service-card p { font-size: 0.85rem; color: rgba(245,240,232,0.6); line-height: 1.65; }

/* Outcomes */
.outcomes-section { padding: 80px 40px; background: var(--cream); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.outcomes-text h2 { font-size: 2rem; color: var(--navy); margin-bottom: 20px; }
.outcomes-text > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.outcome-points { display: flex; flex-direction: column; gap: 14px; }
.outcome-point { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text); font-weight: 500; }
.check-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--amber); flex-shrink: 0; }
.outcomes-quote {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
}
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  color: var(--amber);
  line-height: 0.8;
  margin-bottom: 16px;
}
blockquote {
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.quote-attribution { font-size: 0.82rem; color: rgba(245,240,232,0.5); }

/* Closing */
.closing-section { padding: 96px 40px; background: var(--light); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 20px; }
.closing-section p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.closing-tagline { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--amber); margin-top: 12px; }

/* Footer */
.site-footer { background: var(--navy); padding: 32px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--cream); display: block; }
.footer-tagline { font-size: 0.75rem; color: rgba(245,240,232,0.4); display: block; margin-top: 2px; }
.footer-meta { font-size: 0.75rem; color: rgba(245,240,232,0.3); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-graphic { order: -1; }
  .stats-section { padding: 40px 24px; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; padding: 0; }
  .stat-divider { display: none; }
  .step-grid { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-it-works, .services-section, .outcomes-section, .closing-section { padding: 60px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 100%; }
}