:root {
  --navy-950: #061a2f;
  --navy-900: #0a2540;
  --navy-800: #103456;
  --navy-700: #16466f;
  --slate-700: #35546f;
  --slate-500: #617b91;
  --slate-200: #dbe7ee;
  --slate-100: #eef5f8;
  --foam: #f7fcff;
  --white: #ffffff;
  --teal: #23b8ac;
  --teal-dark: #0b857c;
  --mint: #dff8f5;
  --sun: #ffb454;
  --orange: #ff7a45;
  --danger: #a43a30;
  --ok: #0a7f4f;
  --shadow-sm: 0 8px 22px rgba(6, 26, 47, .08);
  --shadow-md: 0 18px 50px rgba(6, 26, 47, .14);
  --shadow-lg: 0 28px 90px rgba(6, 26, 47, .2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--foam);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--mint);
  color: var(--navy-950);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 252, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 37, 64, .08);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.logo-link img {
  width: 226px;
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10, 37, 64, .14);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 4px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.primary-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--slate-700);
  font-weight: 750;
  font-size: .94rem;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--navy-900);
  background: rgba(35, 184, 172, .12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn,
.button-link,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 19px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border .18s ease;
}

.btn:hover,
.button-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #3ad8cb);
  color: var(--navy-950);
  box-shadow: 0 14px 28px rgba(35, 184, 172, .24);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(35, 184, 172, .32);
}

.btn-dark {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(10, 37, 64, .2);
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid rgba(10, 37, 64, .1);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  border-color: rgba(35, 184, 172, .4);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
}

.btn-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: .92rem;
}

main {
  overflow: hidden;
}

.section,
.page-section {
  padding: 92px 0;
}

.section-tight {
  padding: 56px 0;
}

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 78px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 15%, rgba(67, 214, 201, .22), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(255, 180, 84, .16), transparent 29%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 44%, #0c3c5f 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 92px;
}

.hero::after {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: 90px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #d9fffb;
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal-dark);
  border-color: rgba(35, 184, 172, .2);
  background: rgba(35, 184, 172, .1);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(255, 180, 84, .16);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--teal);
}

.hero .lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .83);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 46px;
}

.proof-card {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .08);
}

.proof-card strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.proof-card span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.hero-card {
  position: relative;
  min-height: 565px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, .96), rgba(238, 249, 250, .93));
  box-shadow: var(--shadow-lg);
  color: var(--navy-900);
}

.hero-card-top {
  position: relative;
  min-height: 315px;
  padding: 26px;
  background:
    radial-gradient(circle at 24% 20%, rgba(35, 184, 172, .2), transparent 26%),
    linear-gradient(180deg, #dff8f5 0%, #ffffff 100%);
}

.wash-illustration {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.driveway {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 182px;
  border-radius: 38px 38px 0 0;
  background:
    repeating-linear-gradient(90deg, rgba(10, 37, 64, .08) 0 2px, transparent 2px 54px),
    linear-gradient(180deg, #e6eef4 0%, #bdcdd8 100%);
  box-shadow: inset 0 8px 24px rgba(10, 37, 64, .1);
}

.clean-stripe {
  position: absolute;
  left: 13%;
  right: 35%;
  bottom: 47px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  filter: blur(.2px);
}

.nozzle {
  position: absolute;
  right: 14%;
  top: 80px;
  width: 164px;
  height: 18px;
  border-radius: 999px;
  background: var(--navy-900);
  transform: rotate(-28deg);
  box-shadow: 0 12px 24px rgba(10, 37, 64, .18);
}

.nozzle::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 4px;
  width: 22px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.spray {
  position: absolute;
  right: 37%;
  top: 125px;
  width: 220px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 65% 35%, rgba(67, 214, 201, .46), rgba(67, 214, 201, .08) 50%, transparent 72%);
  transform: rotate(-20deg);
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 20px rgba(10, 37, 64, .06);
}

.bubble.one { width: 26px; height: 26px; left: 20%; top: 84px; }
.bubble.two { width: 14px; height: 14px; left: 32%; top: 52px; }
.bubble.three { width: 32px; height: 32px; right: 22%; bottom: 98px; }
.bubble.four { width: 16px; height: 16px; right: 42%; top: 168px; }

.hero-card-badge {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.hero-card-body {
  padding: 26px;
}

.hero-card-body h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -.035em;
}

.hero-card-body p {
  margin: 9px 0 0;
  color: var(--slate-700);
}

.mini-quote {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  background: var(--slate-100);
  color: var(--slate-700);
}

.mini-row strong {
  color: var(--navy-900);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.section-heading h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.055em;
  color: var(--navy-950);
}

.section-heading p {
  margin: 0;
  color: var(--slate-700);
  font-size: 1.08rem;
}

.band {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid rgba(10, 37, 64, .08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card,
.reason-card,
.step-card,
.value-card {
  padding: 26px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--navy-900);
  font-weight: 900;
}

.service-card h3,
.reason-card h3,
.step-card h3,
.value-card h3,
.price-card h3,
.faq-item h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.service-card p,
.reason-card p,
.step-card p,
.value-card p,
.price-card p,
.faq-item p {
  margin: 11px 0 0;
  color: var(--slate-700);
}

.check-list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li,
.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
}

.check-list li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--mint);
}

.check-list li::after,
.clean-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: .72em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: rotate(-45deg);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 38px;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 180, 84, .2), transparent 24%),
    linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.cta-panel h2,
.cta-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.cta-panel p {
  color: rgba(255, 255, 255, .76);
  margin: 14px 0 0;
  max-width: 680px;
}

.cta-panel .cta-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 37, 64, .08);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -.035em;
}

.feature-card p {
  color: var(--slate-700);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.property-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  min-height: 240px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, .08);
}

.property-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -56px;
  bottom: -56px;
  border-radius: 999px;
  background: rgba(35, 184, 172, .13);
}

.property-card h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -.025em;
}

.property-card p {
  color: var(--slate-700);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(10, 37, 64, .08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: rgba(35, 184, 172, .42);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.price-tag {
  margin: 18px 0 10px;
  color: var(--navy-950);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 900;
}

.price-tag small {
  font-size: 1rem;
  color: var(--slate-500);
  letter-spacing: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 850;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 28px;
}

.quote-form,
.contact-form {
  padding: 30px;
  border: 1px solid rgba(10, 37, 64, .08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field,
.fieldset {
  display: grid;
  gap: 8px;
}

.form-field.full,
.fieldset.full {
  grid-column: 1 / -1;
}

.form-field label,
.fieldset legend {
  color: var(--navy-900);
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea,
.fieldset-box {
  width: 100%;
  border: 1px solid rgba(10, 37, 64, .16);
  border-radius: 16px;
  background: #fbfdff;
  color: var(--navy-900);
  padding: 13px 14px;
  outline: none;
  transition: border .16s ease, box-shadow .16s ease, background .16s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(35, 184, 172, .14);
  background: var(--white);
}

.help-text {
  color: var(--slate-500);
  font-size: .9rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-tile,
.radio-tile {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(10, 37, 64, .12);
  border-radius: 16px;
  background: #fbfdff;
}

.check-tile input,
.radio-tile input {
  margin-top: 4px;
  accent-color: var(--teal-dark);
}

.check-tile strong,
.radio-tile strong {
  display: block;
  line-height: 1.25;
}

.check-tile span,
.radio-tile span {
  display: block;
  margin-top: 2px;
  color: var(--slate-500);
  font-size: .88rem;
}

.quote-summary {
  position: sticky;
  top: 108px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.quote-summary h2,
.quote-summary h3 {
  margin: 0;
  letter-spacing: -.035em;
}

.quote-total {
  margin: 22px 0 10px;
  font-size: 3.5rem;
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 950;
}

.quote-summary p,
.quote-summary li {
  color: rgba(255, 255, 255, .74);
}

.quote-lines {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 11px;
}

.quote-lines li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.quote-lines strong {
  color: var(--white);
}

.notice,
.warning,
.success-message {
  border-radius: 18px;
  padding: 15px 16px;
  margin-top: 16px;
  font-weight: 700;
}

.notice {
  background: rgba(35, 184, 172, .12);
  color: #084c48;
}

.warning {
  background: rgba(255, 180, 84, .18);
  color: #6b3c00;
}

.quote-summary .warning {
  background: rgba(255, 180, 84, .18);
  color: #fff0ce;
}

.success-message {
  background: rgba(10, 127, 79, .12);
  color: var(--ok);
}

.hidden {
  display: none !important;
}

.page-hero {
  padding: 84px 0 74px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(67, 214, 201, .2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero p {
  max-width: 780px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 1.17rem;
}

.breadcrumb {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .7);
  font-weight: 750;
}

.breadcrumb a {
  color: var(--teal);
}

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

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 37, 64, .08);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.before-after-placeholder {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  background: var(--slate-100);
}

.before-after-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(10, 37, 64, .16);
}

.photo-side {
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: var(--slate-500);
  font-weight: 850;
}

.photo-side.after {
  background: rgba(35, 184, 172, .16);
  color: var(--teal-dark);
}

.portfolio-card-content {
  padding: 18px;
}

.portfolio-card-content h3 {
  margin: 0;
  letter-spacing: -.025em;
}

.portfolio-card-content p {
  margin: 8px 0 0;
  color: var(--slate-700);
}

.about-photo-card {
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 22%, rgba(35, 184, 172, .22), transparent 28%),
    linear-gradient(160deg, #eaf7fb, #ffffff);
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-photo-card::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 62%;
  border-radius: 38px 38px 0 0;
  background:
    repeating-linear-gradient(90deg, rgba(10, 37, 64, .08) 0 2px, transparent 2px 60px),
    linear-gradient(180deg, #f7fbff, #bdcdd8);
}

.about-photo-card::after {
  content: "Local, detail-focused, and ready to earn the next referral.";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(10, 37, 64, .92);
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.2;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 950;
}

.timeline-item h3 {
  margin: 0;
  letter-spacing: -.02em;
}

.timeline-item p {
  margin: 6px 0 0;
  color: var(--slate-700);
}

.contact-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 30px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, .08);
}

.contact-card span {
  display: block;
  color: var(--slate-500);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .06em;
}

.contact-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, .08);
  box-shadow: var(--shadow-sm);
}

.footer {
  padding: 56px 0 34px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .7fr;
  gap: 30px;
  align-items: start;
}

.footer img {
  width: 214px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, .72);
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer a:hover {
  color: var(--teal);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .55);
  font-size: .92rem;
}

.service-area-map {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 37, 64, .08);
}

.map-visual {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(35, 184, 172, .3) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 52%, rgba(35, 184, 172, .17) 0 34%, transparent 35%),
    radial-gradient(circle at 50% 52%, rgba(255, 180, 84, .15) 0 46%, transparent 47%),
    linear-gradient(135deg, #eaf7fb, #ffffff);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px 20px 20px 4px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 950;
  rotate: -45deg;
  box-shadow: var(--shadow-md);
}

.map-pin span {
  rotate: 45deg;
}

.map-label {
  position: absolute;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
  color: var(--navy-900);
}

.map-label.one { left: 12%; top: 21%; }
.map-label.two { right: 10%; top: 30%; }
.map-label.three { left: 15%; bottom: 18%; }
.map-label.four { right: 18%; bottom: 19%; }

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.kicker {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-weight: 800;
  font-size: .9rem;
}

@media (max-width: 1080px) {
  .header-actions .btn-light {
    display: none;
  }

  .hero-grid,
  .split,
  .quote-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-card {
    max-width: 620px;
  }

  .quote-summary {
    position: static;
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 74px;
  }

  .logo-link img {
    width: 194px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(10, 37, 64, .1);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    border-radius: 14px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-proof,
  .card-grid,
  .price-grid,
  .portfolio-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .form-grid,
  .property-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner {
    width: min(100% - 26px, var(--max-width));
  }

  .header-actions .btn-primary {
    display: none;
  }

  .logo-link img {
    width: 176px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 17vw, 4.3rem);
  }

  .hero-card {
    min-height: auto;
    border-radius: 28px;
  }

  .hero-card-top {
    min-height: 250px;
  }

  .driveway {
    height: 140px;
  }

  .quote-form,
  .contact-form,
  .cta-panel,
  .feature-card,
  .service-area-map {
    padding: 22px;
    border-radius: 24px;
  }

  .quote-total {
    font-size: 3rem;
  }

  .btn,
  .button-link,
  button.btn {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}

.spacer-12 { height: 12px; }
.spacer-16 { height: 16px; }
.real-photo-pair img { width: 100%; height: 100%; object-fit: cover; display: block; }
