:root {
  --ink: #151515;
  --ink-2: #252525;
  --muted: #696969;
  --soft: #f7f5f1;
  --paper: #ffffff;
  --line: #e7e0d7;
  --orange: #ed7d22;
  --orange-strong: #c95f10;
  --green: #315b4d;
  --blue: #3f5e73;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  font-size: 3.5rem;
  font-weight: 820;
}

h2 {
  font-size: 2.35rem;
  font-weight: 780;
}

h3 {
  font-size: 1.1rem;
  font-weight: 760;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 13px 19px;
  font-weight: 760;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.button--accent {
  background: var(--orange);
  color: #111;
  box-shadow: 0 14px 32px rgba(237, 125, 34, 0.28);
}

.button--accent:hover,
.button--accent:focus-visible {
  background: #f18b35;
  box-shadow: 0 18px 42px rgba(237, 125, 34, 0.36);
}

.button--dark {
  background: var(--ink);
  color: #fff;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #000;
  box-shadow: 0 14px 30px rgba(21, 21, 21, 0.2);
}

.button--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
}

.button--glass:hover,
.button--glass:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--wide {
  width: 100%;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(231, 224, 215, 0.86);
  backdrop-filter: blur(18px);
}

.topline {
  color: #fff;
  background: var(--ink);
  font-size: 0.9rem;
}

.topline__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topline a {
  color: #fff;
  font-weight: 760;
  white-space: nowrap;
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand__mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1;
}

.brand__text strong {
  display: block;
  font-size: 1.26rem;
  font-weight: 880;
}

.brand__text span {
  display: block;
  color: var(--orange-strong);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #333;
  font-size: 0.94rem;
  font-weight: 680;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #000;
  background: #f3eee7;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 760;
  white-space: nowrap;
}

.nav-phone svg {
  color: var(--orange);
}

.menu-button {
  display: none;
  inline-size: 44px;
  block-size: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #f3eee7;
  border: 0;
  border-radius: 7px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #151515;
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.hero__scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.62));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 54px;
  padding-block: 86px;
}

.hero__copy {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero__lede {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.quote-card {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.quote-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.quote-card__header span {
  color: rgba(255, 255, 255, 0.72);
}

.quote-card__header strong {
  color: #fff;
  font-size: 1.02rem;
}

.quote-card p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.quote-card p a {
  color: #fff;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 640;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.door-orbit {
  position: absolute;
  right: 34%;
  bottom: 6%;
  z-index: 0;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite;
  pointer-events: none;
}

.mini-door {
  width: 76px;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 7px;
  border: 2px solid #fff;
  border-radius: 5px;
}

.mini-door span {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 3px;
  background: rgba(237, 125, 34, 0.68);
  animation: panelPulse 3.8s ease-in-out infinite;
}

.mini-door span:nth-child(2) {
  animation-delay: 160ms;
}

.mini-door span:nth-child(3) {
  animation-delay: 320ms;
}

.mini-door span:nth-child(4) {
  animation-delay: 480ms;
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}

.trust-pill {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: #fff;
}

.trust-pill strong {
  display: block;
  font-size: 1.02rem;
}

.trust-pill span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding-block: 92px;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 24% 10%, rgba(237, 125, 34, 0.18), transparent 28rem),
    #151515;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.metrics {
  padding-block: 78px;
}

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

.metric {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 2.8rem;
  line-height: 1;
}

.metric > span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 680;
}

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

.service-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(237, 125, 34, 0.42);
  box-shadow: 0 18px 48px rgba(21, 21, 21, 0.1);
}

.service-card:hover .service-card__media img,
.service-card:focus-within .service-card__media img {
  transform: scale(1.04);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e3da;
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-card__body {
  padding: 24px 24px 26px;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.results__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 54px;
}

.compare {
  position: relative;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: var(--shadow);
}

.compare img,
.compare__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare img {
  object-fit: cover;
}

.compare__before {
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.96);
  clip-path: inset(0 48% 0 0);
}

.compare__before img {
  width: 100%;
  max-width: none;
}

.compare input {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare__handle {
  position: absolute;
  top: 50%;
  left: 52%;
  z-index: 3;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.72);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.compare__handle::before,
.compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-block-start: 2px solid #fff;
  border-inline-start: 2px solid #fff;
}

.compare__handle::before {
  left: 15px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare__handle::after {
  right: 15px;
  transform: translateY(-50%) rotate(135deg);
}

.compare__label {
  position: absolute;
  z-index: 2;
  top: 16px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(21, 21, 21, 0.74);
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 760;
}

.compare__label--before {
  left: 16px;
}

.compare__label--after {
  right: 16px;
}

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

.comparison__col {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.comparison__col--muted {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

.comparison__col--honest {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
}

.comparison h3 {
  margin-bottom: 22px;
  font-size: 1.35rem;
}

.comparison li {
  position: relative;
  padding-left: 28px;
  margin-top: 14px;
}

.comparison li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.comparison__col--honest li::before {
  background: var(--orange);
}

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

.reviews__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 54px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  transition: background-color 160ms ease, transform 160ms ease;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  background: var(--soft);
  transform: translateY(-2px);
}

.carousel-controls svg {
  width: 22px;
  height: 22px;
}

.review-carousel {
  position: relative;
  min-height: 360px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.review-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.stars {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}

.review-card blockquote {
  margin: 22px 0 24px;
  font-size: 1.55rem;
  line-height: 1.22;
  font-weight: 720;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 680;
}

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

.process-step {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--orange);
  transform-origin: left;
  animation: lineGrow 2.8s ease-in-out infinite;
}

.process-step:last-child::after {
  display: none;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 820;
}

.process-step p {
  margin-top: 12px;
  color: var(--muted);
}

.warranty {
  padding-block: 78px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(237, 125, 34, 0.92), rgba(237, 125, 34, 0.72)),
    var(--orange);
}

.warranty__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr auto;
  align-items: center;
  gap: 28px;
}

.warranty .eyebrow {
  color: #fff;
}

.warranty p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.area__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 54px;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-size: 0.94rem;
  font-weight: 680;
}

.map-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 31 / 24;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card__overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  max-width: min(340px, calc(100% - 36px));
  padding: 14px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(21, 21, 21, 0.82);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.map-card__overlay strong {
  font-size: 1rem;
}

.map-card__overlay span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.map-link {
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.12);
}

.map-link:hover,
.map-link:focus-visible {
  background: #fff;
}

.map-card svg {
  width: 100%;
  height: auto;
}

.map-pins {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 4;
}

.map-card text {
  fill: var(--ink);
  font-size: 18px;
  font-weight: 820;
}

.faq-list {
  max-width: 850px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
}

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

.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-strong);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 1.35rem;
  line-height: 1;
}

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

.faq-list p {
  max-width: 720px;
  padding: 0 52px 26px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: clip;
  padding-block: 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.9), rgba(21, 21, 21, 0.58)),
    url("assets/hero-garage-door.jpg") center / cover;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 56px;
}

.final-cta h2 {
  max-width: 10ch;
  font-size: 3rem;
}

.final-cta p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.schedule-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.field {
  display: grid;
  gap: 8px;
}

.field--full,
.schedule-form button,
.form-status {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(237, 125, 34, 0.22);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c43728;
}

.form-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.form-status.is-error {
  color: #ffd8d3;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #111;
  padding-block: 58px 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 0.95fr;
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.26rem;
  font-weight: 840;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.92rem;
}

.site-footer a {
  display: table;
  margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mobile-actionbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  display: none;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.92);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.mobile-actionbar a {
  min-height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 820;
}

.mobile-actionbar a + a {
  color: #111;
  background: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes panelPulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes lineGrow {
  0%,
  100% {
    transform: scaleX(0.55);
    opacity: 0.4;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .nav-phone span {
    display: none;
  }

  .hero__content,
  .results__grid,
  .reviews__grid,
  .area__grid,
  .final-cta__inner {
    gap: 36px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .topline {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text span {
    font-size: 0.68rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.78)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08));
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-block: 72px 96px;
  }

  .quote-card {
    max-width: 430px;
  }

  .door-orbit {
    display: none;
  }

  .trust-strip__grid,
  .metrics__grid,
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__grid,
  .reviews__grid,
  .area__grid,
  .final-cta__inner,
  .warranty__inner {
    grid-template-columns: 1fr;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

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

  .mobile-actionbar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: 11ch;
    font-size: 2.42rem;
  }

  h2,
  .final-cta h2 {
    font-size: 1.88rem;
  }

  h3 {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .hero__lede,
  .final-cta p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero__buttons {
    width: 100%;
  }

  .quote-card,
  .comparison__col,
  .review-card,
  .schedule-form {
    padding: 20px;
  }

  .quote-card__header {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .trust-strip__grid,
  .metrics__grid,
  .services-grid,
  .process-grid,
  .schedule-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 70px;
  }

  .metrics {
    padding-block: 62px;
  }

  .metric strong {
    font-size: 2.38rem;
  }

  .results__grid,
  .reviews__grid,
  .area__grid,
  .final-cta__inner {
    gap: 30px;
  }

  .compare {
    aspect-ratio: 4 / 5;
  }

  .review-carousel {
    min-height: 420px;
  }

  .review-card blockquote {
    font-size: 1.22rem;
  }

  .carousel-controls {
    margin-top: 20px;
  }

  .warranty {
    padding-block: 64px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
