@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --navy: #1B2A4A;
  --navy-deep: #111D35;
  --amber: #D4912A;
  --amber-light: #E8A840;
  --sage: #5B7B6A;
  --cream: #FBF8F3;
  --warm-gray: #F0EBE3;
  --text: #2D2A26;
  --text-mid: #5C574F;
  --text-light: #8A847A;
  --border: #E4DDD2;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.bask { font-family: 'Libre Baskerville', serif; }
.jingle-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--amber);
}
.label-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber); display: inline-flex; align-items: center; gap: 8px;
}
.label-tag::before {
  content: ''; width: 24px; height: 2px; background: var(--amber); display: inline-block;
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin-top: 16px;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--amber); }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container--form { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 24px; }
.section--cream { background: var(--cream); }
.section--warm { background: var(--warm-gray); }
.section--navy {
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
}
.section--navy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 25% 30%, rgba(212,145,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.text-center { text-align: center; }

/* ═══════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════ */
.grain {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.02; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-gold {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  color: #fff; border: none; padding: 15px 34px; font-size: 15px; font-weight: 600;
  font-family: 'Outfit', sans-serif; border-radius: 8px; cursor: pointer;
  transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.3px; box-shadow: 0 4px 16px rgba(212,145,42,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,145,42,0.4); }

.btn-navy {
  background: var(--navy); color: #fff; border: none; padding: 15px 34px;
  font-size: 15px; font-weight: 600; font-family: 'Outfit', sans-serif;
  border-radius: 8px; cursor: pointer; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,42,74,0.25); }

.btn-outline {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  padding: 13px 30px; font-size: 15px; font-weight: 600; font-family: 'Outfit', sans-serif;
  border-radius: 8px; cursor: pointer; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   TOP BAR (Jingle)
   ═══════════════════════════════════════════ */
.topbar {
  background: var(--navy-deep); padding: 10px 24px;
  display: flex; justify-content: center; align-items: center; gap: 24;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: fixed; top: 0; left: 0; right: 0; z-index: 102;
}
.topbar .jingle-text { font-size: 14px; }
.topbar a {
  color: var(--amber); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 101;
  background: rgba(27,42,74,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 24px; transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(27,42,74,0.97); }
.navbar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.navbar__brand { display: flex; align-items: center; gap: 12px; }
.navbar__logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 2px 8px rgba(212,145,42,0.3);
}
.navbar__name {
  font-family: 'Libre Baskerville', serif; font-weight: 700;
  font-size: 17px; color: #fff; line-height: 1.1;
}
.navbar__sub {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  color: var(--amber); text-transform: uppercase; margin-top: 1px;
}
.navbar__links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s; background: none; border: none;
  font-family: 'Outfit', sans-serif; cursor: pointer;
}
.nav-link:hover { color: #fff; }
.navbar__cta { padding: 10px 22px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1002;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s; margin: 5px 0;
}
.mobile-menu {
  position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
  background: var(--navy-deep); z-index: 1001; padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  display: flex; flex-direction: column; gap: 24px;
  transition: right 0.35s ease;
}
.mobile-menu.open { right: 0; }
.mobile-menu .nav-link { font-size: 18px; display: block; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 24px 80px;
  background:
    radial-gradient(ellipse 70% 60% at 75% 20%, rgba(27,42,74,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,145,42,0.06) 0%, transparent 50%),
    linear-gradient(178deg, var(--cream) 0%, var(--warm-gray) 100%);
}
.hero__grid { display: flex; gap: 56px; align-items: center; }
.hero__content { flex: 1 1 55%; }
.hero__card { flex: 1 1 40%; }
.hero__title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(38px, 5.2vw, 62px);
  color: var(--navy); margin-top: 20px; margin-bottom: 24px;
  line-height: 1.12;
}
.hero__title span { color: var(--amber); }
.hero__desc {
  font-size: 18px; line-height: 1.75; color: var(--text-mid);
  max-width: 500px; margin-bottom: 12px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { margin-top: 48px; display: flex; gap: 32px; flex-wrap: wrap; }
.hero__stat-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px; font-weight: 700; color: var(--navy);
}
.hero__stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--text-light); text-transform: uppercase; margin-top: 2px;
}

/* Dave Card */
.dave-card {
  background: var(--navy); border-radius: 20px; padding: 44px 36px;
  color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 32px 72px rgba(27,42,74,0.25);
}
.dave-card__circle1 {
  position: absolute; top: -40px; right: -40px; width: 160px; height: 160px;
  border-radius: 50%; background: rgba(212,145,42,0.08);
}
.dave-card__circle2 {
  position: absolute; bottom: -60px; left: -30px; width: 200px; height: 200px;
  border-radius: 50%; background: rgba(91,123,106,0.06);
}
.dave-card__inner { position: relative; z-index: 1; }
.dave-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; border: 3px solid rgba(255,255,255,0.15);
  font-size: 28px; font-family: 'Libre Baskerville', serif; font-weight: 700; color: #fff;
}
.dave-card__name { font-family: 'Libre Baskerville', serif; font-size: 24px; margin-bottom: 4px; }
.dave-card__role {
  color: var(--amber); font-size: 14px; font-weight: 600;
  letter-spacing: 1px; margin-bottom: 24px;
}
.dave-card__feature { display: flex; gap: 14px; margin-bottom: 20px; }
.dave-card__feature:last-of-type { margin-bottom: 0; }
.dave-card__icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
}
.dave-card__feature h4 { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.dave-card__feature p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy); padding: 32px 24px; position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
}
.stats-bar__inner {
  position: relative; display: flex; justify-content: center;
  align-items: center; gap: 48px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto;
}
.stats-bar__item { text-align: center; min-width: 120px; }
.stats-bar__num {
  font-family: 'Libre Baskerville', serif;
  font-size: 36px; font-weight: 700; color: var(--amber);
}
.stats-bar__label {
  font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600;
  letter-spacing: 1px; margin-top: 4px; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   PROCESS CARDS
   ═══════════════════════════════════════════ */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px;
}
.process-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--border); transition: all 0.35s ease; height: 100%;
}
.process-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.process-card__num {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px; font-weight: 700; color: rgba(27,42,74,0.08); line-height: 1; margin-bottom: 16px;
}
.process-card h3 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; font-family: 'Libre Baskerville', serif;
}
.process-card p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }

/* ═══════════════════════════════════════════
   WHY DAVE
   ═══════════════════════════════════════════ */
.why-dave { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.why-dave__content { flex: 1 1 400px; }
.why-dave__sidebar { flex: 1 1 350px; }
.why-dave__checks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.why-dave__check {
  display: flex; gap: 10px; align-items: center;
  font-size: 15px; color: var(--text); font-weight: 500;
}
.why-dave__check-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(91,123,106,0.12);
  display: flex; align-items: center; justify-content: center; color: var(--sage);
}

.trust-card {
  background: #fff; border-radius: 16px; padding: 36px;
  border: 1px solid var(--border); box-shadow: 0 16px 48px rgba(0,0,0,0.05);
}
.trust-card__divider { width: 100%; height: 1px; background: var(--border); margin: 28px 0; }
.trust-card__review {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
}
.trust-card__review p {
  font-size: 13px; color: var(--text-light); line-height: 1.6; font-style: italic;
}
.trust-card__review cite {
  font-size: 13px; font-weight: 700; color: var(--text);
  font-style: normal; display: block; margin-top: 8px;
}

/* ═══════════════════════════════════════════
   SITUATIONS PILLS
   ═══════════════════════════════════════════ */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  padding: 12px 22px; background: rgba(27,42,74,0.04);
  border: 1px solid rgba(27,42,74,0.08); border-radius: 100px;
  font-size: 14px; font-weight: 500; color: var(--navy); transition: all 0.25s;
}
.pill:hover { background: var(--navy); color: #fff; }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.compare {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.compare__header { display: grid; grid-template-columns: 1.8fr 1fr 1fr; }
.compare__header-empty {
  padding: 18px 20px; background: #fafafa; border-bottom: 2px solid var(--border);
}
.compare__header-us {
  padding: 18px 20px; text-align: center; background: rgba(27,42,74,0.04);
  border-bottom: 2px solid var(--navy);
  font-weight: 700; font-size: 12px; letter-spacing: 1.5px; color: var(--navy); text-transform: uppercase;
}
.compare__header-them {
  padding: 18px 20px; text-align: center; border-bottom: 2px solid var(--border);
  font-weight: 700; font-size: 12px; letter-spacing: 1.5px; color: var(--text-light); text-transform: uppercase;
}
.compare__row { display: grid; grid-template-columns: 1.8fr 1fr 1fr; border-bottom: 1px solid rgba(228,221,210,0.6); }
.compare__row:last-child { border-bottom: none; }
.compare__label { padding: 14px 20px; font-size: 14px; font-weight: 600; }
.compare__us {
  padding: 14px 20px; font-size: 14px; text-align: center;
  background: rgba(27,42,74,0.02); color: var(--navy); font-weight: 600;
}
.compare__them { padding: 14px 20px; font-size: 14px; text-align: center; color: var(--text-light); }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.testimonial {
  background: #fff; border-radius: 14px; padding: 32px 28px;
  border: 1px solid var(--border); transition: all 0.35s ease;
  display: flex; flex-direction: column; height: 100%;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.testimonial__quote {
  font-family: 'Libre Baskerville', serif; font-size: 56px;
  color: rgba(212,145,42,0.15); line-height: 1; margin-bottom: 8px;
}
.testimonial__stars { display: flex; gap: 3px; color: var(--amber); }
.testimonial__text {
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
  margin-top: 16px; margin-bottom: 24px; flex: 1;
}
.testimonial__author { font-weight: 700; font-size: 15px; color: var(--navy); }
.testimonial__location {
  font-size: 13px; color: var(--text-light);
  display: flex; align-items: center; gap: 4px; margin-top: 3px;
}

/* ═══════════════════════════════════════════
   AREA TAGS
   ═══════════════════════════════════════════ */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag {
  padding: 10px 20px; background: rgba(27,42,74,0.05);
  border: 1px solid rgba(27,42,74,0.1); border-radius: 100px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-card {
  background: #fff; border-radius: 20px; padding: 44px 40px;
  box-shadow: 0 32px 72px rgba(0,0,0,0.2); position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-top: 16px; }
.form-group:first-child { margin-top: 0; }
.form-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 6px; display: block;
}
input, select, textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 15px;
  background: #fff; color: var(--text); transition: border-color 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
input::placeholder, textarea::placeholder { color: var(--text-light); }
.form-note {
  text-align: center; font-size: 12px; color: var(--text-light); margin-top: 16px;
}

.form-success {
  background: #fff; border-radius: 20px; padding: 56px; text-align: center;
  box-shadow: 0 32px 72px rgba(0,0,0,0.2); display: none;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  background: rgba(91,123,106,0.1); display: flex;
  align-items: center; justify-content: center; color: var(--sage);
}
.form-success h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px; color: var(--navy); margin-bottom: 12px;
}
.form-success p { color: var(--text-mid); font-size: 16px; line-height: 1.7; }

/* ═══════════════════════════════════════════
   CTA JINGLE SECTION
   ═══════════════════════════════════════════ */
.jingle-cta { background: var(--cream); padding: 64px 24px; text-align: center; }
.jingle-cta .jingle-text { font-size: clamp(22px, 3vw, 32px); margin-bottom: 20px; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: var(--navy-deep); padding: 64px 24px 32px; }
.footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; margin-bottom: 48px; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer__heading {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--amber); text-transform: uppercase; margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__links a:hover { color: rgba(255,255,255,0.8); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; font-size: 14px; color: rgba(255,255,255,0.5); }
.footer__contact a { color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp 0.8s ease forwards; }
.anim-d1 { animation-delay: 0.12s; opacity: 0; }
.anim-d2 { animation-delay: 0.24s; opacity: 0; }
.anim-d3 { animation-delay: 0.36s; opacity: 0; }
.anim-d4 { animation-delay: 0.48s; opacity: 0; }

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,145,42,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(212,145,42,0); }
}
.phone-pulse { animation: pulse 2s infinite; }

/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px;
}
.blog-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.35s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.blog-card__img {
  height: 200px; background: var(--warm-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 14px;
}
.blog-card__body { padding: 24px; }
.blog-card__date { font-size: 12px; color: var(--text-light); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.blog-card__title {
  font-family: 'Libre Baskerville', serif; font-size: 18px;
  color: var(--navy); margin: 8px 0 12px; line-height: 1.4;
}
.blog-card__excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber); font-weight: 600; font-size: 14px; margin-top: 16px;
}

/* City page hero */
.city-hero {
  padding: 160px 24px 80px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(27,42,74,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(212,145,42,0.06) 0%, transparent 50%),
    linear-gradient(178deg, var(--cream) 0%, var(--warm-gray) 100%);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .navbar__links { display: none !important; }
  .hero__grid { flex-direction: column; }
  .hero__card { width: 100%; }
  .why-dave { flex-direction: column; }
  .section { padding: 64px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .compare__label, .compare__us, .compare__them { padding: 10px 12px; font-size: 13px; }
  .stats-bar__num { font-size: 28px; }
  .topbar { flex-wrap: wrap; gap: 8px; text-align: center; padding: 8px 16px; }
  .topbar .jingle-text { font-size: 12px; }
  .navbar { top: 58px; }
  .hero { padding-top: 160px; }
  .city-hero { padding-top: 180px; }
  .mobile-menu { padding-top: 100px; }
}

@media (max-width: 400px) {
  .topbar .jingle-text { display: none; }
  .navbar { top: 38px; }
  .hero { padding-top: 140px; }
  .city-hero { padding-top: 160px; }
}
