:root {
  --navy: #14432E;
  --navy-dark: #0E3121;
  --red: #C8862B;
  --red-hover: #A96E1E;
  --gray: #F5F7FA;
  --text: #333333;
  --gold: #FFD700;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --input-bg: #F9FAFB;
  --dot: #D1D5DC;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --header-h: 65px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--gray);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white-88 { color: rgba(255,255,255,0.88) !important; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: normal;
}

h2 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  h2 { font-size: 48px; line-height: 1.15; }
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
}

.section-head {
  text-align: center;
  max-width: 830px;
  margin: 0 auto 56px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm {
  font-size: 14px;
  padding: 8px 16px;
  min-height: 38px;
}
.btn-lg {
  font-size: 18px;
  padding: 0 32px;
  height: 56px;
}
.btn-block { width: 100%; }

.btn-red { background: var(--red); color: var(--white); border: 1px solid var(--red); }
.btn-red:hover { background: var(--red-hover); border-color: var(--red-hover); }

.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-white { background: var(--white); color: var(--red); border: 2px solid var(--white); }
.btn-white:hover { background: var(--gray); }

.btn-navy-outline-white { background: var(--navy); color: var(--white); border: 2px solid var(--white); }
.btn-navy-outline-white:hover { background: var(--navy-dark); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
}
@media (min-width: 1024px) {
  .header-inner { height: var(--header-h); }
}

.logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.85;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  flex-shrink: 0;
  z-index: 50;
}
.logo-l1 { font-size: 24px; color: var(--navy); letter-spacing: 0.02em; }
.logo-l2 { font-size: 24px; color: var(--red); letter-spacing: 0.06em; }
@media (min-width: 768px) {
  .logo-l1, .logo-l2 { font-size: 28px; }
}
.logo-white .logo-l1 { color: var(--white); }
.logo-white .logo-l2 { color: var(--red); }
.logo-white .logo-l2::after { content: ""; }

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding: 8px 0;
  transition: color .2s;
}
.nav-link:hover { color: var(--red); }
.nav-dropdown-btn svg { transition: transform .2s; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 240px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 60;
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color .15s, color .15s;
}
.dropdown a:hover { background: var(--gray); color: var(--red); }
.nav-item:hover .dropdown,
.nav-item.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover .nav-dropdown-btn svg,
.nav-item.dropdown-open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-item:hover .nav-dropdown-btn { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { white-space: nowrap; }
@media (max-width: 1023px) {
  .header-cta { gap: 8px; }
  .header-cta .btn-red { display: none; } /* phone stays visible, estimate button drops */
  .header-phone { padding: 10px 14px; font-size: 14px; }
}
@media (max-width: 380px) {
  .header-phone { padding: 8px 10px; font-size: 13px; }
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  z-index: 50;
}
@media (min-width: 1024px) {
  .burger { display: none; }
}

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
  flex-shrink: 0;
}
.mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 48px;
  width: 100%;
}
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: left;
  min-height: 44px;
}
.mobile-acc-btn svg { transition: transform .25s; }
.mobile-acc.open .mobile-acc-btn svg { transform: rotate(180deg); }
.mobile-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-acc.open .mobile-acc-panel { max-height: 600px; }
.mobile-acc-panel a {
  display: block;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  min-height: 40px;
}
.mobile-acc-panel a:hover { color: var(--red); }
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

body.menu-open { overflow: hidden; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
@media (max-width: 767px) {
  .hero-img { object-position: 50% 50%; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, rgba(13,43,77,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 150px;
  padding-bottom: 64px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content { text-align: left; padding-top: 90px; }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-pill .stars { color: var(--gold); display: inline-flex; gap: 2px; }

.hero-title {
  font-size: 25px;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 900px;
}
@media (min-width: 768px) { .hero-title { font-size: 50px; } }
@media (min-width: 1024px) { .hero-title { font-size: 67px; } }

.hero-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(229,231,235,0.88);
  max-width: 620px;
  margin: 0 auto 32px;
}
@media (min-width: 768px) { .hero-sub { margin-left: 0; margin-right: 0; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-buttons .btn { width: 100%; }
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
  .hero-buttons .btn { width: auto; }
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.hero-badge svg { color: var(--red); flex-shrink: 0; }
@media (min-width: 768px) {
  .hero-badges { display: flex; gap: 32px; }
  .hero-badge { justify-content: flex-start; }
}

/* Hero quote form (right column on desktop) */
.hero-form-card {
  max-width: 420px;
  width: 100%;
  margin: 40px auto 0;
  padding: 24px 20px;
  color: var(--text);
}
@media (min-width: 768px) { .hero-form-card { padding: 28px; } }
.hero-form-card .form-grid { gap: 16px; }
@media (min-width: 480px) {
  .hero-form-card .form-grid { grid-template-columns: 1fr 1fr; }
  .hero-form-card .form-field:nth-child(1) { grid-column: 1 / -1; }
}
.hero-form-card .form-success { padding: 32px 0; }

@media (min-width: 992px) {
  .hero .container.hero-content {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: start;
  }
  .hero-title { max-width: none; }
  .hero-form-card {
    justify-self: end;
    align-self: start;
    margin: 0;
  }
}

/* ===== Review strip ===== */
.review-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.review-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.review-strip-rating {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-strip-rating .stars { color: var(--gold); display: inline-flex; }
.review-strip-quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
}
.review-strip-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  transition: color .2s;
}
.review-strip-link:hover { color: var(--white); }
@media (min-width: 1024px) {
  .review-strip-inner { flex-direction: row; justify-content: space-between; text-align: left; gap: 24px; }
  .review-strip-quote { margin: 0; }
}

/* ===== Sections common ===== */
.section { padding: 48px 0; }
@media (min-width: 1024px) { .section { padding: 64px 0; } }
.section-sm { padding: 32px 0; }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray); }
.bg-navy { background: var(--navy); }

/* ===== Grids ===== */
.grid { display: grid; gap: 12px; }
@media (min-width: 640px) { .grid { gap: 24px; } }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-3 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

/* ===== Ways cards ===== */
.ways-grid { margin-bottom: 0; }
.way-card {
  background: var(--white);
  box-shadow: 0 10px 30px -18px rgba(15,59,76,.25);
  border-radius: 8px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) { .way-card { padding: 36px 28px; } }
.way-icon {
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.way-card p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }

.card-link {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.card-link:hover { color: var(--red-hover); }
.card-link-lg { font-size: 18px; }

/* ===== Rates ===== */
.rates-grid {
  max-width: 900px;
  margin: 40px auto 40px;
  gap: 16px;
}
.rate-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
}
.rate-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.1;
}
@media (min-width: 640px) {
  .rate-num { font-size: 25px; white-space: nowrap; }
}
@media (min-width: 768px) { .rate-num { font-size: 40px; } }
.rate-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-top: 4px;
}
.rates-note {
  font-size: 14px;
  color: rgba(229,231,235,0.85);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ===== Services ===== */
.services-grid { margin-bottom: 48px; }
.service-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(13,43,77,0.12); }
@media (min-width: 640px) { .service-card { padding: 36px 28px; } }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: #EBF2FA;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }

/* ===== Trust ===== */
.trust {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
@media (min-width: 1024px) { .trust { padding: 0; } }
.trust-bg { display: none; }
.trust-inner { position: relative; z-index: 2; }
.trust-content { max-width: 600px; }
.trust-features { margin: 32px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.trust-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 20px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-feature h3 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.trust-feature p { font-size: 14px; color: rgba(229,231,235,0.85); line-height: 1.5; }
.trust-photo { display: none; }

@media (max-width: 1023px) {
  .trust-bg { display: block; position: absolute; inset: 0; }
  .trust-bg-img { width: 100%; height: 100%; object-fit: cover; }
  .trust-bg-overlay { position: absolute; inset: 0; background: rgba(13,43,77,0.85); }
}
@media (min-width: 1024px) {
  .trust-inner {
    display: flex;
    align-items: stretch;
    gap: 48px;
    min-height: 700px;
  }
  .trust-content {
    flex: 0 0 55%;
    padding: 96px 0;
  }
  .trust-photo {
    display: block;
    position: relative;
    flex: 1;
    margin-right: calc(-1 * (100vw - 1280px) / 2 - 32px);
    min-height: 400px;
  }
  .trust-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .trust-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, var(--navy) 0%, rgba(13,43,77,0) 40%);
  }
}

/* ===== Photos ===== */
.photos-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .photos-grid { grid-template-columns: repeat(3, 1fr); } }
.photos-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== Reviews carousel ===== */
.rating-line {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rating-num { color: var(--red); font-size: 28px; font-weight: 900; }
.rating-label { color: var(--text); opacity: .6; font-size: 14px; letter-spacing: 0.12em; }

.carousel { max-width: 1280px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}
.review-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .review-card { flex: 0 0 calc((100% - 48px) / 3); }
}
.review-quote-mark { color: var(--red); margin-bottom: 8px; }
.review-stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}
.review-author { border-top: 1px solid var(--border); padding-top: 16px; }
.review-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
}
.review-source { font-size: 13px; color: #6B7280; margin-top: 2px; }

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 36px 0 24px;
}
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 2px solid var(--navy);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s, color .2s;
  flex-shrink: 0;
}
.carousel-arrow:hover { background: var(--navy); color: var(--white); }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: var(--dot);
  transition: all .3s;
}
.carousel-dot:hover { background: var(--navy); }
.carousel-dot.active { width: 32px; background: var(--red); }

/* ===== Form ===== */
#estimate .section-sub { margin-bottom: 48px; }
.form-card {
  background: var(--white);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 20px;
  text-align: left;
}
@media (min-width: 768px) { .form-card { padding: 40px; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field .req { color: var(--red); }
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px 12px;
  height: 48px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-field textarea { height: auto; min-height: 72px; padding-top: 10px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,43,77,0.12);
}
.btn-submit {
  width: 100%;
  font-size: 16px;
  padding: 14px 20px;
  min-height: 56px;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .btn-submit { font-size: 18px; padding: 16px 32px; white-space: nowrap; }
}
.form-alt { text-align: center; font-size: 14px; color: #4B5563; margin-top: 20px; }
.form-alt a { color: var(--red); font-weight: 700; }
.form-alt a:hover { color: var(--red-hover); }

.form-success { text-align: center; padding: 48px 0; }
.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 9999px;
  background: #EBF2FA;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 16px; color: #4B5563; }

/* ===== Steps ===== */
.steps-grid {
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 56px auto 48px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(13,43,77,0.25);
}
.step-num-red { background: var(--red); box-shadow: 0 8px 20px rgba(215,38,46,0.3); }
.step p { font-size: 15px; line-height: 1.6; max-width: 340px; margin: 0 auto; }

/* ===== Cities + map ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 48px auto 24px;
}
@media (min-width: 768px) { .cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cities-grid { grid-template-columns: repeat(4, 1fr); } }
.city-pill {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 16px 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  text-align: center;
  transition: color .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.city-pill:hover { color: var(--red); box-shadow: 0 4px 12px rgba(13,43,77,0.12); }
.cities-more {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
  margin-bottom: 48px;
}
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13,43,77,0.15);
  max-width: 1100px;
  margin: 0 auto;
}
.map-wrap iframe { display: block; width: 100%; }

/* ===== Red CTA band ===== */
.red-cta {
  background: var(--red);
  padding: 80px 0;
}
.red-cta h2 { color: var(--white); margin-bottom: 12px; }
.red-cta-sub {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  margin-bottom: 32px;
}
.red-cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 36px;
  transition: opacity .2s;
}
.red-cta-phone:hover { opacity: .85; }
@media (min-width: 768px) { .red-cta-phone { font-size: 72px; } }
.red-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.red-cta-buttons .btn { width: 100%; max-width: 340px; }
@media (min-width: 640px) {
  .red-cta-buttons { flex-direction: row; justify-content: center; }
  .red-cta-buttons .btn { width: auto; max-width: none; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  border-top: 8px solid var(--red);
  color: var(--white);
  padding: 64px 0 0;
}
@media (min-width: 1024px) { .site-footer { padding-top: 96px; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 48px; } }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--red); }
.footer-col a.logo { display: inline-flex; padding: 0; }
.footer-accent { color: var(--red) !important; font-weight: 600; }
.footer-accent:hover { color: var(--white) !important; }
.footer-tagline { font-size: 15px; color: rgba(255,255,255,0.85); margin: 20px 0 16px; }
.footer-addr { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.footer-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px !important;
  font-weight: 900;
  color: var(--red) !important;
  letter-spacing: 0.03em;
}
.footer-mail { margin-top: 8px; }
.footer-hours-title { margin-top: 24px; }
.footer-hours { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.footer-col .btn-red { padding: 12px 24px; font-size: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  padding-bottom: 28px;
  text-align: center;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.5); margin: 4px 0; }

/* ===== Entrance animations (gated on JS so no-JS still shows content) ===== */
html.js-anim [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
html.js-anim [data-animate].in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js-anim [data-animate] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* brand logo image */
.logo-img{height:54px;width:auto;display:block}
.logo .logo-img{max-width:260px;object-fit:contain}
@media (max-width: 560px){.logo-img{height:42px}}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
@media (max-width: 860px){.faq-grid{grid-template-columns:1fr}}

/* ===== VISUAL OVERHAUL (2026-08) — new design DNA ===== */
html { overflow-x: clip; } /* kill carousel peek overflow without breaking sticky */
body { font-family: "Inter", system-ui, sans-serif; }
h1, h2, h3, h4, .btn, .eyebrow, .logo-l1, .logo-l2, .rate-num, .rating-num, .red-cta-phone, .step-num { font-family: "Sora", "Inter", sans-serif; }

/* buttons -> pill */
.btn { border-radius: 999px; letter-spacing: .04em; }

/* hero: solid petrol + diagonal texture, no photo */
.hero { background: var(--navy-dark); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px); }
.hero-bg-off { display: none; }
.hero { min-height: 0; }

/* section heads: left-aligned, red accent bar */
.alt-head { text-align: left; margin-left: 0; margin-right: 0; }
.alt-head .eyebrow { display: inline-block; padding-left: 14px; border-left: 4px solid var(--red); text-transform: uppercase; }
.alt-head .section-sub { margin-left: 0; }

/* service cards: no icon circles, left accent border */
.service-card { border-left: 4px solid var(--red); border-radius: 0 10px 10px 0; box-shadow: none; border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-icon { display: none; }

/* way cards: top accent bar */
.way-card { border-top: 4px solid var(--navy); border-radius: 0 0 10px 10px; }
.way-icon { display: none; }

/* rates: outlined cards, coral numbers */
.rate-card { background: transparent; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; }
.rate-num { color: var(--red); }

/* reviews: clean cards, no giant quote mark, coral left edge */
.review-card { border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; }
.review-quote-mark { display: none; }

/* city pills: bordered chips */
.city-pill { background: transparent; border: 1.5px solid var(--navy); border-radius: 6px; color: var(--navy); }
.city-pill:hover { background: var(--navy); color: var(--white); }

/* CTA band: petrol instead of red */
.red-cta { background: var(--navy-dark); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px); }
.red-cta-phone { color: var(--red); }

/* steps: numbered squares instead of circles */
.step-num { border-radius: 12px; }

/* form cards: squared corners with accent top */
.form-card { border-radius: 4px 18px 18px 18px; border-top: 5px solid var(--red); }

/* eyebrow readability on dark sections */
.bg-navy .eyebrow, .hero .eyebrow, .red-cta .eyebrow, .trust .eyebrow { color: #F49A75; }
.bg-navy .alt-head .eyebrow, .trust .alt-head .eyebrow { border-left-color: #F49A75; }

/* trust: photo bleeds to LEFT edge (layout was flipped), fade on the right */
@media (min-width: 1024px) {
  .trust-photo { margin-right: 0; margin-left: calc(-1 * (100vw - 1280px) / 2 - 32px); }
  .trust-photo::before { background: linear-gradient(to left, var(--navy) 0%, rgba(13,43,77,0) 40%); }
}

/* coverage panel (replaces google map iframe) */
.coverage { background: var(--navy); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 14px); padding: 40px 28px; }
.coverage-inner { display: grid; gap: 32px; }
@media (min-width: 900px) { .coverage-inner { grid-template-columns: 1fr 1.5fr; gap: 48px; } .coverage { padding: 48px; } }
.coverage h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.coverage-hq p { color: rgba(229,231,235,.85); font-size: 15px; line-height: 1.6; margin: 0; }
.coverage-hours { margin-top: 8px !important; }
.coverage-phone { display: inline-block; margin-top: 14px; color: var(--red); font-weight: 700; font-size: 22px; }
.coverage-note { color: rgba(229,231,235,.8); font-size: 15px; margin: 0 0 16px; }
.zip-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.zip-chips span { border: 1px solid rgba(255,255,255,.35); color: var(--white); border-radius: 6px; padding: 4px 10px; font-size: 13px; }

/* ===== INNER PAGES (2026-08) ===== */
/* hero: on mobile form comes right after H1 */
@media (max-width: 1023px) {
  .hero-inner .hero-content { display: flex; flex-direction: column; }
  .hero-inner .hero-text { display: contents; }
  .hero-inner .hero-pill { order: 1; }
  .hero-inner .hero-title { order: 2; }
  .hero-inner .hero-form-card { order: 3; margin-top: 8px; }
  .hero-inner .hero-sub { order: 4; margin-top: 24px; }
  .hero-inner .hero-buttons { order: 5; }
  .hero-inner .hero-badges { order: 6; }
}

/* content typography & blocks */
.content-main { max-width: 860px; margin: 0 auto; }
.content-main > h2 { font-size: 28px; margin: 44px 0 14px; color: var(--navy); }
.content-main > h2:first-child { margin-top: 0; }
.content-main > h3 { font-size: 20px; margin: 30px 0 10px; color: var(--navy); }
.content-main p { margin-bottom: 16px; line-height: 1.7; color: #3A4750; }
.content-main a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.content-main a:hover { color: var(--red-hover); }
.content-main strong { color: var(--navy); }

.content-main ul.checklist { list-style: none; padding: 0; margin: 0 0 22px; }
.content-main ul.checklist li {
  position: relative; padding: 8px 0 8px 40px; line-height: 1.55; color: #3A4750;
  border-bottom: 1px solid #EEF2F5;
}
.content-main ul.checklist li:last-child { border-bottom: 0; }
.content-main ul.checklist li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center/13px no-repeat;
}
.content-main ol.steps-list { list-style: none; padding: 0; margin: 0 0 22px; counter-reset: step; }
.content-main ol.steps-list li { position: relative; padding: 10px 0 10px 52px; counter-increment: step; line-height: 1.55; color: #3A4750; }
.content-main ol.steps-list li::before {
  content: counter(step); position: absolute; left: 0; top: 8px; width: 34px; height: 34px; border-radius: 10px;
  background: var(--navy); color: #fff; font-family: "Sora", sans-serif; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.content-main ol.steps-list li:nth-child(3n)::before { background: var(--red); }

.content-main table.data-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 6px 0 24px; border: 1px solid #DDE5EA; border-radius: 12px; overflow: hidden; font-size: 15px; }
.content-main table.data-table thead th { background: var(--navy); color: #fff; text-align: left; padding: 12px 16px; font-family: "Sora", sans-serif; font-size: 14px; letter-spacing: .02em; }
.content-main table.data-table tbody td { padding: 11px 16px; border-top: 1px solid #E6ECF0; color: #3A4750; }
.content-main table.data-table tbody tr:nth-child(even) { background: #F5F8FA; }
.content-main table.data-table tbody td:last-child { font-weight: 700; color: var(--red); white-space: nowrap; }
@media (max-width: 640px) { .content-main table.data-table { display: block; overflow-x: auto; } }

.content-main .callout {
  background: #FDF1EC; border-left: 5px solid var(--red); border-radius: 0 12px 12px 0;
  padding: 18px 22px; margin: 0 0 24px; color: #4A352F; line-height: 1.6;
}
.content-main .callout p { margin: 0; }

/* related pages chips */
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 0; }
.related-links a {
  border: 1.5px solid var(--navy); color: var(--navy); border-radius: 999px; padding: 8px 18px;
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.related-links a:hover { background: var(--navy); color: #fff; }

/* reviews page grid: visible cards, equal rows, orphan spans full width */
.content-main .faq-grid { align-items: stretch; margin-bottom: 24px; }
.content-main .review-card {
  flex: none; background: var(--white);
  border: 1px solid #E2E8EE; border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0; box-shadow: 0 4px 18px rgba(15,59,76,.07);
}
.content-main .review-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* tables where the last column is text, not a price */
.content-main table.data-table.text-last tbody td:last-child { font-weight: 500; color: #3A4750; white-space: normal; }

/* FAQ accordion (native details/summary) */
.content-main .faq-item {
  border: 1px solid #E2E8EE; border-left: 4px solid var(--navy);
  border-radius: 0 12px 12px 0; background: var(--white);
  margin: 0 0 12px; box-shadow: 0 2px 10px rgba(15,59,76,.05);
  overflow: hidden;
}
.content-main .faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 17px; color: var(--navy);
  padding: 18px 56px 18px 22px; line-height: 1.35;
  transition: background .15s ease;
}
.content-main .faq-item summary::-webkit-details-marker { display: none; }
.content-main .faq-item summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; margin-top: -12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/12px no-repeat;
  transition: transform .2s ease, background-color .15s ease;
}
.content-main .faq-item summary:hover { background: #F5F8FA; }
.content-main .faq-item[open] { border-left-color: var(--red); }
.content-main .faq-item[open] summary { background: #FDF1EC; }
.content-main .faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--red);
}
.content-main .faq-a { padding: 4px 22px 18px; }
.content-main .faq-a p { margin: 0; }

/* reviews band: 3-col on desktop */
.reviews-band-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) { .reviews-band-grid { grid-template-columns: 1fr; } }
/* cities band compact */
.cities-band { padding: 56px 0; }
.cities-band h2 { margin-bottom: 24px; }

/* ===== audit-2 fixes ===== */
/* red CTA phone: never wrap mid-number, scale down on small screens */
.red-cta-phone { white-space: nowrap; }
@media (max-width: 767px) { .red-cta-phone { font-size: 34px; } }
/* rate card label: balanced wrap */
.rate-label { text-wrap: balance; }
/* anchor offset for fixed header */
section[id], div[id="estimate"] { scroll-margin-top: 90px; }
/* placeholders: clearly placeholder, not pre-filled */
.form-field input::placeholder, .form-field textarea::placeholder { color: #9AA5AD; opacity: 1; }
/* hero pill: keep stars+text together on narrow screens */
.hero-pill { white-space: nowrap; }
@media (max-width: 480px) { .hero-pill { font-size: 11px; letter-spacing: .08em; } }
/* current city pill (not a link, no self-link) */
.city-pill-current { background: var(--navy); color: #fff; border-color: var(--navy); cursor: default; }

/* review avatars (Yelp) */
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-avatar-init { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: "Sora", sans-serif; font-weight: 700; font-size: 18px; flex-shrink: 0; }

/* footer Yelp link */
.footer-yelp { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; color: var(--white); font-weight: 600; font-size: 15px; }
.footer-yelp:hover { color: var(--red); }
.footer-yelp svg { flex-shrink: 0; }

/* external Yelp link under review blocks */
.yelp-ext { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.yelp-ext:hover { color: var(--red); }

/* --- Yelp reviews additions --- */
.review-avatar-img{width:44px;height:44px;border-radius:50%;object-fit:cover;flex-shrink:0;display:block;}
a.review-source-yelp{font-size:13px;color:#6B7280;margin-top:2px;display:inline-block;text-decoration:none;font-weight:600;}
a.review-source-yelp:hover{color:var(--red);text-decoration:underline;}
.reviews-cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;align-items:center;}
