:root {
  --ink: #0b0b10;
  --red: #e51b2b;
  --red-dark: #ad1020;
  --purple: #6f2cff;
  --purple-dark: #3a166f;
  --cream: #fbfbfd;
  --muted: #626071;
  --line: #e7e4ee;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(11, 11, 16, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-strip {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 20px;
  color: var(--cream);
  background: #000;
  font-size: 14px;
  font-weight: 700;
}

.top-strip a {
  color: var(--red);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 82px;
  padding: 12px 22px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  background: #000;
}

.brand img {
  width: 220px;
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(16, 24, 32, .16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 0;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 11px 18px !important;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(229, 27, 43, .24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #000;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 11, 16, .76) 0%, rgba(58, 22, 111, .42) 42%, rgba(11, 11, 16, .08) 100%),
    url("assets/garage-junk-hero.png") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--red), var(--purple), var(--white));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 96px;
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.hero .eyebrow {
  color: var(--red);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-review-card {
  position: relative;
  max-width: 1120px;
  min-height: 500px;
  display: grid;
  align-items: end;
}

.hero-review-frame {
  max-width: 760px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(11,11,16,.82), rgba(58,22,111,.56));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
  text-align: left;
  backdrop-filter: blur(6px);
}

.hero-review-title {
  max-width: 560px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(39px, 5.8vw, 66px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-review-subtitle {
  margin: 0 0 28px;
  color: #ffcf45;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-review-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

.hero-review-btn.schedule {
  background: linear-gradient(#ffd85a, #dba818);
  border: 2px solid #d19d08;
}

.hero-review-btn.call {
  background: linear-gradient(#116ead, #075180);
  border: 2px solid #0d70ad;
}

.google-review-card {
  width: min(680px, 100%);
  min-height: 118px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 26px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.google-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 74%, #ea4335 0);
  box-shadow: 0 0 28px rgba(0, 0, 0, .12);
}

.google-mark span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #4285f4;
  font-size: 37px;
  font-weight: 900;
  line-height: 1;
}

.google-review-copy p {
  margin: 0;
}

.google-title {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.google-title strong {
  color: var(--ink);
  font-weight: 900;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px !important;
  color: #f6b800;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
}

.google-rating span {
  letter-spacing: 1px;
}

.google-rating em {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

h2 {
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.04;
  margin-bottom: 18px;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 9px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  font-size: 20px;
  color: rgba(255,255,255,.9);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 28px 0 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(229, 27, 43, .26);
}

.btn.secondary {
  background: var(--purple);
  color: var(--white);
}

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

.trust-row span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.promo-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
}

.promo-band strong {
  font-size: 22px;
}

.promo-band a {
  font-weight: 900;
  border-bottom: 3px solid var(--white);
}

.photo-estimate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.camera-logo {
  display: block;
  width: 72px;
  height: 50px;
  flex: 0 0 auto;
}

.camera-shadow {
  fill: rgba(11, 11, 16, .18);
}

.camera-body {
  fill: var(--white);
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linejoin: round;
}

.camera-top {
  fill: #f0edf7;
}

.camera-lens-outer {
  fill: var(--ink);
}

.camera-lens-inner {
  fill: var(--purple);
  stroke: var(--white);
  stroke-width: 4;
}

.camera-glass {
  fill: rgba(255, 255, 255, .75);
}

.camera-flash,
.camera-grip,
.camera-button {
  fill: var(--red);
  stroke: var(--ink);
  stroke-width: 3;
}

section:not(.hero, .promo-band) {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 22px;
}

.split-section,
.areas,
.quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.section-copy p,
.items p,
.quote-copy p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: inset 0 0 0 5px var(--cream);
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.service-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(11,11,16,.07);
}

.service-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-grid h3,
.service-grid p {
  padding: 0 18px;
}

.service-grid h3 {
  margin-top: 18px;
}

.service-grid p {
  color: var(--muted);
  padding-bottom: 20px;
}

.why {
  max-width: none !important;
  background: var(--ink);
  color: var(--white);
}

.why .section-heading,
.why-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.why .eyebrow {
  color: var(--red);
}

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

.why-grid div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.why-grid span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.why-grid p {
  color: rgba(255,255,255,.72);
}

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

.timeline div {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.timeline p {
  color: var(--muted);
}

.items {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.item-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.item-cloud span,
.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.customer-reviews {
  grid-column: 1 / -1;
  margin-top: 34px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.reviews-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.reviews-heading h3 {
  margin-bottom: 10px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  font-weight: 900;
}

.reviews-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.reviews-layout {
  display: grid;
  gap: 28px;
  justify-items: center;
  align-items: start;
}

.reviews-summary {
  width: min(420px, 100%);
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(11, 11, 16, .06);
}

.reviews-summary strong {
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-summary p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
}

.review-stars {
  color: #f6b800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 1px;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.certified-check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4f86f7;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 3px rgba(79, 134, 247, .14);
}

.google-word {
  font-size: 30px !important;
  font-weight: 900;
  line-height: 1;
}

.review-cards {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  justify-content: center;
}

.review-cards article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(231, 228, 238, .76);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 11, 16, .07);
  text-align: left;
}

.review-cards article:last-child {
  grid-column: 1 / -1;
  width: min(480px, 100%);
  justify-self: center;
}

.review-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.review-card-top h4,
.review-card-top p {
  margin: 0;
}

.review-card-top h4 {
  font-size: 20px;
  line-height: 1.12;
}

.review-card-top p {
  color: var(--muted);
  font-size: 15px;
}

.google-badge {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  align-self: start;
  width: 31px;
  height: 31px;
  padding-top: 1px;
  overflow: hidden;
  border-radius: 50%;
  background:
    conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 74%, #ea4335 0);
  color: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.google-badge::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--white);
  z-index: 0;
}

.google-badge::before {
  content: "G";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #4285f4;
  z-index: 1;
}

.review-cards article > p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.42;
}

.faq-section {
  max-width: 1180px !important;
  padding: 86px 22px !important;
  background: var(--cream);
}

.faq-title {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
}

.faq-title h2 {
  margin: 0 auto;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.04;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-left: 6px solid var(--purple);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(11,11,16,.06);
  overflow: hidden;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 18px;
  text-align: left;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child p {
  padding-bottom: 22px;
}

.faq-list a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.areas {
  border-top: 1px solid var(--line);
}

.area-map {
  min-height: 420px;
  border-radius: 8px;
  background: #f5f1e8;
  border: 1px solid rgba(111,44,255,.18);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.area-map img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.area-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quote {
  max-width: none !important;
  padding-left: max(22px, calc((100vw - 1180px) / 2 + 22px)) !important;
  padding-right: max(22px, calc((100vw - 1180px) / 2 + 22px)) !important;
  background: linear-gradient(135deg, var(--ink), var(--purple-dark));
  color: var(--white);
}

.quote .eyebrow {
  color: var(--red);
}

.contact-stack {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.phone-link {
  display: inline-block;
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  margin-top: 10px;
}

.text-link {
  color: var(--red);
  font-size: 19px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: #fbfcf8;
}

input[type="file"] {
  padding: 11px;
  cursor: pointer;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(111,44,255,.24);
  border-color: var(--purple);
}

.photo-upload {
  padding: 14px;
  border: 2px dashed rgba(111, 44, 255, .38);
  border-radius: 8px;
  background: #f6f2ff;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--purple-dark);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 30px 22px;
  color: var(--cream);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer img {
  width: 210px;
  max-height: 124px;
  object-fit: contain;
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.7);
}

.footer a {
  color: var(--red);
  font-weight: 900;
}

.footer-actions {
  display: grid;
  gap: 6px;
}

@media (max-width: 900px) {
  .top-strip {
    gap: 12px;
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 174px;
    max-height: 72px;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 118px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: #000;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px !important;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(11, 11, 16, .72), rgba(58, 22, 111, .38)),
      url("assets/garage-junk-hero.png") center/cover;
  }

  .hero-review-card {
    min-height: 560px;
    align-items: end;
  }

  .google-review-card {
    width: 100%;
  }

  .split-section,
  .items,
  .areas,
  .quote {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .review-cards {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .service-grid,
  .why-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .top-strip {
    justify-content: space-between;
  }

  .top-strip span:nth-child(2) {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 34px 0 54px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-review-card {
    min-height: auto;
    gap: 18px;
    align-items: start;
  }

  .hero-review-frame {
    order: 2;
    padding: 22px 16px;
    background: linear-gradient(135deg, rgba(11,11,16,.86), rgba(58,22,111,.62));
  }

  .hero-review-title {
    font-size: 36px;
  }

  .hero-review-subtitle {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .hero-review-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-review-btn {
    min-height: 60px;
    font-size: 17px;
  }

  .google-review-card {
    width: 100%;
    min-height: 94px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 12px;
    padding: 14px;
    text-align: left;
  }

  .google-mark {
    width: 56px;
    height: 56px;
  }

  .google-mark span {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .google-title {
    font-size: 25px;
  }

  .google-rating {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px !important;
    font-size: 16px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions .btn,
  .quote .btn {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .promo-band {
    align-items: stretch;
    text-align: center;
  }

  .photo-estimate {
    justify-content: center;
    width: 100%;
  }

  section:not(.hero, .promo-band) {
    padding: 64px 18px;
  }

  .service-grid,
  .why-grid,
  .timeline,
  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-cards article:last-child {
    grid-column: auto;
    width: 100%;
  }

  .reviews-summary {
    padding: 20px 16px;
  }

  .reviews-heading h3 {
    font-size: 36px;
  }

  .reviews-heading p,
  .review-cards article > p {
    font-size: 17px;
  }

  .review-cards article {
    min-height: auto;
  }

  .area-map {
    min-height: 300px;
  }

  .area-map img {
    min-height: 300px;
  }

  .phone-link {
    font-size: 24px;
  }
}
