:root {
  --primary: #12372a;
  --primary-hover: #0e2b21;
  --primary-light: #1a4d3a;
  --accent: #8a5a20;
  --accent-soft: #f5eadb;
  --bg: #f7f4ee;
  --bg-alt: #f0ebe1;
  --surface: #fff;
  --surface-soft: rgba(255, 255, 255, .78);
  --border: #e2d8ca;
  --border-light: #eee6da;
  --text: #111827;
  --text-muted: #475569;
  --text-light: #64748b;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 3px rgba(34, 27, 19, .04);
  --shadow-sm: 0 4px 12px rgba(34, 27, 19, .06);
  --shadow-md: 0 12px 32px rgba(34, 27, 19, .08);
  --shadow-lg: 0 22px 60px rgba(34, 27, 19, .1);
  --shadow-xl: 0 28px 64px rgba(34, 27, 19, .14);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --transition: .3s var(--ease);
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.hidden { display: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .6s var(--ease) forwards;
}

.animate-in-d1 { animation-delay: .1s; }
.animate-in-d2 { animation-delay: .2s; }
.animate-in-d3 { animation-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .animate-in { opacity: 1; transform: none; }
}

/* ─── Header ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -.02em;
}

.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 28px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

nav a {
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

nav a:hover { color: var(--primary); }

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width var(--transition);
}

nav a:hover::after { width: 100%; }

/* ─── Buttons ─── */

.nav-cta, .btn, .quote-card button {
  display: inline-block;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-weight: 800;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: -.01em;
}

.nav-cta:hover, .btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(18, 55, 42, .25);
}

.btn {
  padding: 16px 32px;
  font-size: 16px;
  letter-spacing: -.02em;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
  box-shadow: 0 4px 16px rgba(18, 55, 42, .2);
}

/* ─── Hero ─── */

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
  padding: 72px 5vw 64px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(18, 55, 42, .04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(138, 90, 32, .04) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 30%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(18, 55, 42, .025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 12px;
  margin: 0 0 8px;
}

h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: .94;
  margin: 10px 0 20px;
  letter-spacing: -.06em;
  color: var(--text);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -.04em;
}

h3 {
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: var(--shadow-xs);
}

.badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-top: 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ─── Quote Card / Form ─── */

.quote-card {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-heading {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 0 0 -4px;
  color: var(--text);
}

.form-subtext {
  font-size: 13px;
  color: var(--text-light);
  margin: -4px 0 4px;
}

.form-head {
  display: flex;
  justify-content: space-between;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
}

.quote-card label {
  display: grid;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fffdf9;
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18, 55, 42, .1);
}

.quote-card button {
  padding: 16px 24px;
  font-size: 16px;
  font-family: inherit;
  width: 100%;
  border-radius: var(--radius-md);
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 0 4px 14px rgba(18, 55, 42, .2);
  position: relative;
  overflow: hidden;
}

.quote-card button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(18, 55, 42, .3);
}

.quote-card small {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.4;
}

.form-trust svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ─── Sections ─── */

.section {
  padding: 80px 5vw;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5vw;
  right: 5vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header .eyebrow { margin-bottom: 12px; }
.section-header .lead { margin: 12px auto 0; }

/* ─── Cards ─── */

.card, .proof, .city-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card:hover, .city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-light);
}

/* ─── Service Cards ─── */

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-list a {
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(18, 55, 42, .1), rgba(18, 55, 42, .03));
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-icon svg { width: 22px; height: 22px; }

.service-list .card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.service-list .card h3 { margin-bottom: 6px; }

.best-for {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 5px 11px;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .02em;
}

/* ─── Before/After Visual Cards ─── */

.visual-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.visual-card-img {
  height: 180px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.visual-card-img svg {
  width: 56px;
  height: 56px;
  opacity: .5;
}

.visual-card-body {
  padding: 24px;
}

.visual-card-body h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.visual-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.visual-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
}

.visual-card-link:hover { gap: 10px; }
.visual-card-link svg { width: 16px; height: 16px; }

.visual-card:nth-child(1) .visual-card-img {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #f5eadb 100%);
}
.visual-card:nth-child(2) .visual-card-img {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #ecfdf5 100%);
}
.visual-card:nth-child(3) .visual-card-img {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #eef2ff 100%);
}

/* ─── Why Section ─── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 55, 42, .1), rgba(18, 55, 42, .04));
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--primary);
}

.why-icon svg { width: 26px; height: 26px; }

.why-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ─── Popular Quote Pills ─── */

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  white-space: nowrap;
}

.pill-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pill-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ─── Dark Section ─── */

.dark {
  background: linear-gradient(135deg, #0b1d16 0%, #10291f 50%, #12372a 100%);
  color: #fff;
}

.dark .lead, .dark p { color: #d6e0d8; }
.dark .eyebrow { color: #6dd4a0; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dark .card {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: #fff;
}

.dark .card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .15);
}

.dark .card h3 { color: #fff; }
.dark .card p { color: #d6e0d8; }

/* ─── City Grid ─── */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.city-card {
  display: block;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.city-card h3 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.city-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 8px 0 0;
}

/* ─── Steps / Split ─── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 900;
  font-size: 14px;
  margin-right: 12px;
}

/* ─── FAQ ─── */

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 10px 0;
  transition: all var(--transition);
}

.faq details:hover { box-shadow: var(--shadow-sm); }
.faq details[open] { box-shadow: var(--shadow-md); }

.faq summary {
  font-weight: 800;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: -.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq details[open] summary::after {
  content: '\2212';
}

.faq details p {
  margin: 14px 0 4px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── Sticky CTA ─── */

.sticky-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 16px;
  font-weight: 900;
  font-size: 15px;
  z-index: 50;
  box-shadow: 0 8px 32px rgba(18, 55, 42, .3);
  letter-spacing: -.01em;
}

.sticky-call:active {
  transform: scale(.98);
}

/* ─── Footer ─── */

footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  background: linear-gradient(180deg, #0b1d16, #091410);
  color: white;
  padding: 60px 5vw;
}

footer strong {
  display: block;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

footer a {
  display: block;
  color: #c5d1ca;
  margin: 6px 0;
  font-size: 14px;
  transition: color var(--transition);
}

footer a:hover { color: #fff; }

footer p {
  font-size: 14px;
  color: #c5d1ca;
  line-height: 1.55;
  margin: 8px 0;
}

.legal {
  font-size: 12px;
  color: #8a9b92;
  margin-top: 16px;
}

/* ─── Mini Links (service pages) ─── */

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mini-links a {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.mini-links a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ─── Map Box ─── */

.map-box {
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #d7ccbd, #fff);
  display: grid;
  place-items: center;
  color: var(--text-light);
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
}

.review { font-style: italic; }

/* ─── Responsive ─── */

@media (max-width: 900px) {
  .hero,
  .split,
  footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 5vw 36px;
    gap: 32px;
  }

  .hero-badges,
  .cards,
  .grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-list,
  .visual-cards {
    grid-template-columns: 1fr 1fr;
  }

  nav { display: none; }
  .sticky-call { display: block; }

  h1 { font-size: 40px; }
  h2 { font-size: 28px; }

  .section { padding: 56px 5vw; }
  .hero-trust { grid-template-columns: 1fr; gap: 6px; }
  .pill-grid { justify-content: flex-start; }
  .visual-card-img { height: 140px; }
}

@media (max-width: 600px) {
  .service-list,
  .visual-cards {
    grid-template-columns: 1fr;
  }

  .quote-card { padding: 22px 18px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
