:root {
  --bg: #faf8f5;
  --bg-alt: #f0ece4;
  --fg: #1a1a1a;
  --fg-muted: #6b6460;
  --fg-subtle: #9e9891;
  --accent: #c8612a;
  --accent-light: #f5ede0;
  --navy: #0f1c2e;
  --white: #ffffff;
  --border: #e8e2d8;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: #b5541f; }

/* HERO */
.hero {
  padding: 80px 48px 100px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,97,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(15,28,46,0.3), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-headline em {
  color: var(--accent);
  font-style: italic;
}
.hero-lede {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  max-width: 120px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin-right: 32px;
  flex-shrink: 0;
}

/* HERO CARD STACK */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 380px;
}
.hero-card {
  position: absolute;
  width: 280px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-card-back {
  top: 0; left: 20px;
  transform: rotate(-6deg) translateY(20px);
  opacity: 0.5;
}
.hero-card-mid {
  top: 30px; left: 40px;
  transform: rotate(-2deg) translateY(10px);
  opacity: 0.75;
}
.hero-card-front {
  top: 60px; left: 0;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.card-badge.airbnb { background: rgba(255, 90, 95, 0.25); color: #ff5a5f; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.card-metric {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.airbnb-metric { color: #ff9a9f; }
.card-review {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}
.card-review span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

/* PROBLEM */
.problem { padding: 100px 48px; background: var(--bg); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 64px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.problem-item {
  padding: 40px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-item:nth-child(2n) { border-right: none; }
.problem-item:nth-child(3), .problem-item:nth-child(4) { border-bottom: none; }
.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.problem-item p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* SERVICES */
.services { padding: 100px 48px; background: var(--bg-alt); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(15,28,46,0.08);
  transform: translateY(-2px);
}
.service-icon {
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 20px;
}

/* DIFFERENTIATION */
.diff { padding: 100px 48px; background: var(--bg); }
.diff-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.diff-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.diff-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.diff-points { display: flex; flex-direction: column; gap: 32px; }
.diff-point {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.diff-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}
.diff-point strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.diff-point p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }
.diff-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
}
.diff-quote svg { margin-bottom: 20px; }
.diff-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.diff-attribution { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.diff-name { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 2px; }
.diff-role { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.diff-metrics { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.diff-metric-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.diff-metric-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* TESTIMONIAL */
.testimonial { padding: 80px 48px; background: var(--accent-light); }
.testimonial-inner { max-width: 1200px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.test-bar { margin-bottom: 28px; }
.test-bar:last-child { margin-bottom: 0; }
.test-bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; }
.test-platform { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.test-city { font-size: 0.8125rem; color: var(--fg-subtle); }
.test-bar-track { height: 6px; background: rgba(15,28,46,0.1); border-radius: 3px; overflow: hidden; }
.test-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.test-bar-fill.vrbo { background: #4a9eff; }
.test-bar-fill.booking { background: #003580; }
.test-pct { display: block; font-size: 0.8125rem; color: var(--fg-muted); margin-top: 4px; font-weight: 500; }
.test-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.test-sub { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--white);
}
.closing-body { font-size: 1.0625rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 16px; }
.closing-offer { display: flex; justify-content: center; gap: 48px; margin: 48px 0 24px; }
.offer-price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.offer-note { display: block; font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.offer-incl { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.closing-cta { font-size: 0.875rem; color: rgba(255,255,255,0.4); }

/* FOOTER */
.footer { padding: 64px 48px 32px; background: #0a1020; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 280px; }
.footer-label { display: block; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; }
.footer-bottom span { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; }
  .problem, .services, .diff, .closing { padding: 60px 24px; }
  .testimonial { padding: 60px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-item { border-right: none; }
  .problem-item:nth-child(3) { border-bottom: 1px solid var(--border); }
  .problem-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .closing-offer { flex-direction: column; gap: 24px; }
  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat-sep { display: none; }
  .stat { padding: 0 16px 0 0; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .diff-metrics { flex-direction: column; gap: 16px; }
}