:root {
  --navy: #0b1220;
  --navy-2: #162238;
  --ink: #111827;
  --muted: #526070;
  --green: #22c55e;
  --green-dark: #166534;
  --green-soft: #eafbef;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --line: #dde4ec;
  --orange: #ff5a0a;
  --radius: 18px;
  --shadow: 0 16px 42px rgba(11, 18, 32, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.drawer-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 64px 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: 42px 0; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--navy); line-height: 1.14; }
h1 { margin: 0 0 18px; font-size: clamp(2.35rem, 6vw, 4.75rem); letter-spacing: -.045em; }
h2 { margin: 0 0 14px; font-size: clamp(1.85rem, 4vw, 2.8rem); letter-spacing: -.025em; }
h3 { margin: 0 0 8px; font-size: 1.15rem; }
p { margin: 0 0 16px; }
.lead { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.muted { color: var(--muted); }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 999; }
.skip-link:focus { left: 8px; padding: 10px 14px; border-radius: 8px; background: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(221, 228, 236, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}
.header-row { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.brand-copy { min-width: 0; }
.brand-name { display: block; overflow: hidden; color: var(--navy); font-size: 1rem; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.brand-tag { display: block; color: var(--muted); font-size: .76rem; }
.desktop-nav { display: flex; align-items: center; gap: 20px; }
.desktop-nav > a, .nav-drop > a { color: var(--navy); font-size: .93rem; font-weight: 800; text-decoration: none; }
.desktop-nav a:hover { color: var(--green-dark); }
.nav-drop { position: relative; padding: 26px 0; }
.nav-menu {
  position: absolute;
  top: 70px;
  left: -14px;
  display: none;
  width: 290px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { display: block; }
.nav-menu a { display: block; padding: 10px 12px; border-radius: 9px; font-size: .9rem; font-weight: 750; text-decoration: none; }
.nav-menu a:hover { background: var(--soft); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { color: var(--navy); font-weight: 900; text-decoration: none; }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
}
.drawer-backdrop { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(2, 6, 23, .5); }
.drawer-backdrop.visible { display: block; }
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(370px, 92vw);
  padding: 20px;
  overflow-y: auto;
  transform: translateX(102%);
  transition: transform .2s ease;
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: -20px 0 50px rgba(2, 6, 23, .24);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
.drawer-links { display: grid; gap: 9px; }
.drawer-links a, .drawer-links summary { padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; color: var(--navy); font-weight: 800; text-decoration: none; cursor: pointer; }
.drawer-subnav { display: grid; gap: 7px; padding: 9px 0 0 12px; }
.drawer-subnav a { background: var(--soft); font-size: .9rem; }

/* Buttons and small components */
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green);
  color: #052e16;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 197, 94, .22);
}
.btn:hover { filter: brightness(.96); }
.btn--dark { background: var(--navy); color: #fff; box-shadow: none; }
.btn--ghost { border-color: var(--line); background: #fff; color: var(--navy); box-shadow: none; }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 4px solid rgba(34, 197, 94, .28); outline-offset: 2px; }
.badge-row, .chips { display: flex; flex-wrap: wrap; gap: 9px; }
.badge, .chip { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #334155; font-size: .82rem; font-weight: 750; }
.badge--green { border-color: #bbf7d0; background: var(--green-soft); color: var(--green-dark); }
.notice { padding: 15px 17px; border-left: 4px solid var(--green); border-radius: 0 12px 12px 0; background: var(--green-soft); color: #18442a; }
.breadcrumbs { padding: 18px 0 0; color: var(--muted); font-size: .86rem; }
.breadcrumbs a { font-weight: 750; }

/* Hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(1000px 520px at 80% -20%, #c9f7d5 0, #eefcf2 40%, #fff 75%); }
.hero::after { position: absolute; right: -180px; bottom: -260px; width: 520px; height: 520px; border: 80px solid rgba(34, 197, 94, .08); border-radius: 50%; content: ""; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 46px; align-items: center; min-height: 590px; padding: 68px 0; }
.hero-copy { max-width: 720px; }
.hero-copy .lead { margin-bottom: 22px; font-size: 1.15rem; }
.hero-card { padding: 24px; border: 1px solid rgba(255,255,255,.8); border-radius: 26px; background: rgba(255,255,255,.86); box-shadow: var(--shadow); }
.hero-art { overflow: hidden; aspect-ratio: 3 / 2; margin-bottom: 18px; border: 1px solid #d4f5dd; border-radius: 22px; background: #edfdf2; }
.hero-art img { display: block; width: 100%; height: 100%; object-fit: cover; }
.quick-facts { display: grid; gap: 10px; }
.quick-fact { display: flex; align-items: flex-start; gap: 10px; color: #334155; font-size: .91rem; }
.quick-fact::before { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: var(--green); content: ""; }

/* Content cards */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 18, 32, .055);
}
.card p:last-child { margin-bottom: 0; }
.icon-box { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--soft); }
.icon-box img { width: 34px; height: 34px; }
.issue-card { position: relative; padding-left: 47px; }
.issue-card::before { position: absolute; top: 25px; left: 22px; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--green); color: #052e16; font-size: .7rem; font-weight: 900; content: "✓"; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.check-list { display: grid; gap: 11px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { position: absolute; left: 0; top: 1px; color: var(--green-dark); font-weight: 900; content: "✓"; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: steps; }
.step { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; counter-increment: steps; }
.step::before { display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 13px; border-radius: 11px; background: var(--navy); color: #fff; font-weight: 900; content: counter(steps); }
.service-links { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.service-link { display: grid; gap: 8px; min-height: 142px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; text-decoration: none; }
.service-link:hover { border-color: #86efac; box-shadow: 0 12px 26px rgba(34, 197, 94, .12); }
.service-link img { width: 44px; height: 44px; }
.service-link strong { color: var(--navy); line-height: 1.3; }
.faq { display: grid; gap: 10px; }
.faq details { padding: 17px 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq summary { color: var(--navy); font-weight: 850; cursor: pointer; }
.faq details p { margin: 12px 0 0; color: var(--muted); }
.coupon-card { overflow: hidden; padding: 0; }
.coupon-card img { display: block; width: 100%; height: auto; }
.coupon-card figcaption { padding: 13px 16px; color: var(--muted); font-size: .85rem; }

/* CTA and footer */
.cta-band { background: var(--navy); color: #fff; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 38px 0; }
.cta-band h2 { margin-bottom: 7px; color: #fff; font-size: clamp(1.6rem, 4vw, 2.3rem); }
.cta-band p { margin: 0; color: #cbd5e1; }
.site-footer { padding: 40px 0 88px; border-top: 1px solid var(--line); background: #f8fafc; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px; }
.footer-title { display: block; margin-bottom: 7px; color: var(--navy); font-weight: 900; }
.footer-links { display: grid; gap: 7px; }
.footer-links a { color: #334155; font-weight: 700; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.copyright { margin-top: 30px; color: var(--muted); font-size: .86rem; }
.float-call { position: fixed; right: 14px; bottom: 14px; z-index: 60; display: none; }

/* Homepage */
.home-hero h1 { max-width: 760px; }
.coupon-preview { display: block; overflow: hidden; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.coupon-preview img { display: block; width: 100%; height: auto; }
.home-services .card { display: flex; align-items: flex-start; gap: 15px; }
.home-services .icon-box { flex: 0 0 auto; margin: 0; }
.home-services a { color: var(--green-dark); font-weight: 850; }
.areas-copy { max-width: 820px; }

/* 404 */
.not-found { display: grid; place-items: center; min-height: 70vh; padding: 60px 20px; text-align: center; }
.not-found h1 { font-size: clamp(4rem, 18vw, 9rem); color: var(--green); }
.not-found h2 { margin-top: -8px; }

@media (max-width: 980px) {
  .desktop-nav, .header-actions .phone-link { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 54px 0; }
  .hero-card { max-width: 720px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-links { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 48px 0; }
  .brand-tag { display: none; }
  .brand-name { max-width: 230px; }
  .hero-grid { gap: 28px; padding: 44px 0; }
  .hero-card { padding: 18px; }
  .card-grid, .card-grid--2, .split, .steps, .footer-grid { grid-template-columns: 1fr; }
  .service-links { grid-template-columns: repeat(2, 1fr); }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .float-call { display: inline-flex; }
}

@media (max-width: 420px) {
  .brand-name { max-width: 190px; font-size: .9rem; }
  .service-links { grid-template-columns: 1fr; }
  .button-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mobile-drawer { transition: none; }
}
