:root {
  --ink: #141414;
  --charcoal: #20211f;
  --muted: #656565;
  --line: #e4ded2;
  --cream: #fff9ec;
  --paper: #ffffff;
  --orange: #ff5a1f;
  --orange-dark: #d94413;
  --yellow: #ffd52e;
  --teal: #2f7f85;
  --green: #3b7f56;
  --shadow: 0 20px 60px rgba(20, 20, 20, .18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

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

img,
svg {
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: rgba(16, 16, 16, .94);
  color: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand img {
  width: 108px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.header-call {
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.main-nav a:hover,
.header-call:hover {
  color: var(--yellow);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 213, 46, .7);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.header-call svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.page-nav {
  position: sticky;
  top: 72px;
  z-index: 19;
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding: 10px clamp(14px, 4vw, 52px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20, 20, 20, .06);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.page-nav::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.page-nav a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 86svh;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 52px) 36px;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/hero-showroom.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .65) 43%, rgba(0, 0, 0, .34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .08));
}

.hero-content {
  width: min(100%, var(--max));
  min-height: calc(86svh - 108px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 420px);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.hero-copy {
  max-width: 660px;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(43px, 5.5vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-text {
  max-width: 570px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button-primary {
  color: #171717;
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(255, 213, 46, .23);
}

.button-primary:hover {
  background: #ffe268;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
}

.button-secondary:hover {
  border-color: var(--yellow);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof strong {
  color: var(--yellow);
  font-size: 18px;
}

.quote-card {
  position: relative;
  width: 100%;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.form-kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 900;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  border: 1px solid #d7d1c4;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  min-height: 44px;
  padding: 11px 12px;
  outline: 0;
}

.quote-card textarea {
  resize: vertical;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 127, 133, .14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-privacy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  min-height: 112px;
  padding: 26px clamp(18px, 4vw, 48px);
  background: #fff;
}

.trust-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-band strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
}

.local-service {
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 52px);
  background: #f5efe3;
}

.local-service-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(22px, 5vw, 70px);
}

.local-service h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 44px);
}

.local-service p:not(.eyebrow) {
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.62;
}

.section {
  padding: clamp(66px, 9vw, 116px) clamp(18px, 4vw, 52px);
}

.section-light {
  background: #fff;
}

.section-dark {
  background: var(--charcoal);
  color: #fff;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.service-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 20, 20, .06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--cream);
}

.service-card div {
  padding: 20px;
}

.service-card p,
.feature-copy p,
.process-step p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.55;
}

.work-showcase {
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 52px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, .12), transparent 36%),
    linear-gradient(180deg, #171817 0%, #242522 100%);
}

.work-heading {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(18px, 5vw, 72px);
  align-items: end;
}

.work-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.work-heading > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.55;
}

.work-carousel {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 58px 58px;
}

.work-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.work-track {
  display: flex;
  gap: 18px;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.work-slide {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.work-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82), transparent);
  pointer-events: none;
}

.work-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .45s ease;
}

.work-slide:hover img {
  transform: scale(1.04);
}

.work-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
}

.work-meta span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-meta h3 {
  max-width: 96%;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 23px);
}

.carousel-control {
  position: absolute;
  top: 42%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.carousel-control:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #171717;
  transform: translateY(-50%) scale(1.04);
}

.carousel-control svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-status {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 900;
}

.carousel-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.carousel-progress span {
  display: block;
  width: 21.428%;
  height: 100%;
  border-radius: inherit;
  background: var(--yellow);
  transition: width .35s ease;
}

.faq-section {
  padding: clamp(70px, 9vw, 112px) clamp(18px, 4vw, 52px);
  background: #fffaf0;
}

.faq-heading {
  width: min(100%, 780px);
  margin: 0 auto 34px;
  text-align: center;
}

.faq-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.faq-list {
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 20, 20, .05);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 900;
}

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

.faq-item summary svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 50%;
  background: var(--yellow);
  fill: #161616;
  transition: transform .2s ease, background .2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
  background: var(--orange);
  fill: #fff;
}

.faq-item p {
  margin: -2px 22px 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: -6px 22px 22px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 12px 28px rgba(20, 20, 20, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.map-link:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(20, 20, 20, .1);
}

.google-maps-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f5f7fb;
}

.google-maps-logo svg {
  width: 28px;
  height: 28px;
}

.map-link strong,
.map-link small {
  display: block;
}

.map-link strong {
  color: var(--orange-dark);
  font-size: 16px;
}

.map-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: center;
  padding: clamp(70px, 9vw, 116px) clamp(18px, 4vw, 52px);
  background: #f5efe3;
}

.feature-copy,
.feature-visual {
  width: min(100%, 560px);
}

.feature-copy {
  justify-self: end;
}

.feature-copy p {
  font-size: 18px;
}

.feature-visual {
  margin: 0;
}

.feature-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--teal);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.process-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.process-step svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  fill: var(--yellow);
}

.process-step h3 {
  font-size: 18px;
}

.process-step p {
  color: rgba(255, 255, 255, .74);
}

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 15%, rgba(255, 213, 46, .17), transparent 26%),
    radial-gradient(circle at 92% 76%, rgba(47, 127, 133, .14), transparent 30%),
    #fff;
}

.testimonial-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 34px rgba(20, 20, 20, .05);
}

.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.testimonial-card strong {
  display: block;
  color: var(--orange-dark);
}

.review-proof {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 20px;
  align-items: stretch;
}

.review-score,
.review-spotlight,
.review-lines {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(20, 20, 20, .06);
}

.review-score {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
}

.google-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(20, 20, 20, .12);
}

.review-score strong {
  color: var(--charcoal);
  font-size: 56px;
  line-height: .9;
}

.review-score span:not(.google-mark):not(.review-stars),
.review-score small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.review-stars {
  display: inline-flex;
  color: #f6b900;
  font-size: 16px;
  letter-spacing: 0;
}

.review-spotlight {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(47, 127, 133, .96), rgba(32, 34, 31, .96)),
    var(--teal);
}

.review-spotlight-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-spotlight .avatar {
  margin: 0;
  background: var(--yellow);
  color: var(--charcoal);
}

.review-spotlight h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 20px;
}

.review-spotlight-head p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .72);
}

.review-spotlight blockquote {
  margin: 34px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.1;
}

.review-lines {
  display: grid;
  grid-template-rows: repeat(8, minmax(0, 1fr));
  overflow: hidden;
}

.review-line {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.review-line:last-child {
  border-bottom: 0;
}

.review-line span {
  font-weight: 900;
}

.review-line small {
  color: var(--muted);
  font-size: 13px;
}

.review-line:hover,
.review-line.is-active {
  background: #fff7dc;
  color: var(--orange-dark);
}

.review-line:hover small,
.review-line.is-active small {
  color: var(--charcoal);
}

.google-review-link {
  display: flex;
  width: fit-content;
  grid-column: 2 / 4;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
  background: #fff;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 52px);
  color: #fff;
  background:
    linear-gradient(rgba(20, 20, 20, .88), rgba(20, 20, 20, .92)),
    url("assets/hero-showroom.png") center / cover;
}

.final-cta img {
  width: 150px;
  margin-bottom: 24px;
}

.final-cta h2 {
  width: min(100%, 720px);
}

.site-footer {
  padding: 22px clamp(18px, 4vw, 52px);
  background: #0e0e0e;
  color: rgba(255, 255, 255, .7);
  text-align: center;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 213, 46, .68);
  border-radius: 50%;
  background: rgba(16, 16, 16, .92);
  color: var(--yellow);
  box-shadow: 0 16px 34px rgba(20, 20, 20, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--yellow);
  color: var(--charcoal);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .header-call {
    justify-self: end;
  }

  .hero-content,
  .local-service-inner,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    align-items: start;
  }

  .hero-copy,
  .feature-copy,
  .feature-visual {
    width: 100%;
    max-width: none;
  }

  .feature-copy {
    justify-self: stretch;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-proof {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .review-lines,
  .google-review-link {
    grid-column: 1 / -1;
  }

  .review-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .review-line:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .work-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .work-carousel {
    padding-left: 0;
    padding-right: 0;
  }

  .work-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

  .carousel-control {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .carousel-control:hover {
    transform: scale(1.04);
  }

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0;
  }

  .carousel-status {
    left: 62px;
    right: 62px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 118px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 14px;
    gap: 12px;
  }

  .page-nav {
    top: 64px;
    justify-content: flex-start;
    padding: 8px 12px;
  }

  .page-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .brand img {
    width: 88px;
  }

  .header-call {
    min-height: 38px;
    padding: 0 11px;
    font-size: 13px;
  }

  .header-call svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: auto;
    padding: 34px 16px 28px;
  }

  .hero-content {
    gap: 34px;
  }

  .hero .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 16px;
    padding: 0 10px;
    border-radius: 6px;
    background: rgba(255, 213, 46, .94);
    color: #171717;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
    text-align: center;
  }

  h2 {
    font-size: 31px;
  }

  .hero-text,
  .feature-copy p {
    font-size: 16px;
  }

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

  .hero-actions {
    gap: 16px;
    margin-top: 46px;
  }

  .quote-card {
    padding: 20px;
  }

  .quote-card h2 {
    font-size: 24px;
  }

  .trust-band,
  .service-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .review-score {
    min-height: auto;
    padding: 22px;
  }

  .google-mark {
    margin-bottom: 18px;
  }

  .review-spotlight {
    min-height: auto;
    padding: 20px;
  }

  .review-spotlight-head {
    gap: 10px;
  }

  .review-spotlight .avatar {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .review-spotlight h3 {
    font-size: 17px;
  }

  .review-spotlight-head p {
    font-size: 13px;
  }

  .review-spotlight blockquote {
    margin-top: 20px;
    font-family: inherit;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.18;
  }

  .review-lines,
  .google-review-link {
    grid-column: auto;
  }

  .review-lines {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }

  .review-lines::-webkit-scrollbar {
    display: none;
  }

  .review-line {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
  }

  .review-line span {
    white-space: nowrap;
    font-size: 14px;
  }

  .review-line small {
    display: none;
  }

  .review-line:hover,
  .review-line.is-active {
    background: var(--yellow);
    color: var(--charcoal);
    border-color: var(--yellow);
  }

  .review-line:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .review-line:nth-child(2n):hover,
  .review-line:nth-child(2n).is-active {
    border-left-color: var(--yellow);
  }

  .google-review-link {
    width: 100%;
    margin-top: 4px;
  }

  .trust-band div {
    min-height: auto;
    padding: 22px 18px;
  }

  .section,
  .work-showcase,
  .faq-section,
  .local-service,
  .feature-band,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .work-slide {
    flex-basis: 100%;
  }

  .work-meta {
    padding: 18px;
  }

  .work-meta h3 {
    font-size: 20px;
  }

  .carousel-status {
    gap: 12px;
    font-size: 12px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 16px;
  }

  .faq-item p {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 18px;
  }

  .map-link {
    display: flex;
    margin-left: 16px;
    margin-right: 16px;
    padding: 12px 14px;
  }

  .google-maps-logo {
    width: 38px;
    height: 38px;
  }
}
