:root {
  --ink: #0b0d10;
  --panel: #07090d;
  --muted: #6f7782;
  --line: #dfe4ea;
  --paper: #f6f7f8;
  --white: #ffffff;
  --accent: #d90000;
  --accent-dark: #9b0000;
  --blue: #4a96e8;
  --navy: #003369;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --anchor-offset: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

html.is-resetting-scroll {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Barlow", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(74, 150, 232, 0.42);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.82);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 600;
}

.nav-links a,
.social-links a,
.header-cta,
.button,
.floating-quote {
  text-decoration: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.social-links a:hover {
  border-color: rgba(74, 150, 232, 0.68);
  color: var(--white);
}

.social-links img {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}

.header-cta {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px rgba(74, 150, 232, 0.52) inset;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(286px, calc(100vw - 20px));
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(74, 150, 232, 0.42);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-menu-panel > a {
  padding: 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
  text-decoration: none;
}

.mobile-menu-panel > a:hover,
.mobile-menu-panel > a:focus-visible {
  background: rgba(74, 150, 232, 0.18);
  color: var(--white);
}

.mobile-menu-social {
  justify-content: flex-start;
  padding: 8px 4px 2px;
}

.hero {
  --hero-light-x: 68%;
  --hero-light-y: 66%;
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-cinematic-drift 16s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  transform: scale(1.06);
  transform-origin: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 65% 68%, rgba(74, 150, 232, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(6, 7, 9, 0.94) 0%, rgba(6, 7, 9, 0.75) 42%, rgba(6, 7, 9, 0.14) 100%),
    linear-gradient(0deg, rgba(6, 7, 9, 0.76) 0%, rgba(6, 7, 9, 0) 46%);
}

.hero::after,
.faq-hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(
      circle 280px at var(--hero-light-x) var(--hero-light-y),
      rgba(255, 255, 255, 0.15),
      rgba(74, 150, 232, 0.07) 34%,
      transparent 72%
    );
  content: "";
  mix-blend-mode: screen;
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.hero::after {
  animation: hero-light-breathe 7s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 164px 0 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
}

h1 {
  max-width: min(100%, 940px);
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: 0.005em;
}

.hero-emphasis {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #ffd9d9 44%, #ff4d4d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(3.2rem, 5.65vw, 6.25rem);
  letter-spacing: 0.012em;
  line-height: 0.92;
  text-shadow: 0 0 34px rgba(217, 0, 0, 0.2);
  white-space: nowrap;
}

.hero-title-rest {
  display: block;
  max-width: 860px;
  margin-top: 12px;
  font-size: clamp(2.7rem, 5.2vw, 5.65rem);
  letter-spacing: 0.005em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.008em;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 6px;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(217, 0, 0, 0.34);
}

.button-secondary {
  border: 1px solid rgba(74, 150, 232, 0.62);
  background: rgba(0, 51, 105, 0.26);
  color: var(--white);
}

.button-outline {
  width: fit-content;
  border: 1px solid rgba(74, 150, 232, 0.55);
  background: var(--white);
  color: var(--navy);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.services-band {
  position: relative;
  margin-top: -1px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.84), rgba(7, 9, 13, 0.66)),
    url("public/images/section-showroom-bg-1920.jpg") center / cover;
  color: var(--white);
  scroll-margin-top: 0;
}

.services-band::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(74, 150, 232, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 6, 8, 0.22));
  content: "";
}

.services-band .section {
  position: relative;
  z-index: 1;
}

.services-band .intro {
  padding-bottom: 34px;
}

.services-band .services {
  padding-top: 60px;
  padding-bottom: 64px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: end;
}

.intro > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-copy,
.review-note {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.section-copy code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(74, 150, 232, 0.18);
  color: var(--white);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 270px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.9) 0%, rgba(5, 6, 8, 0.58) 38%, rgba(5, 6, 8, 0.08) 100%),
    var(--service-image) var(--service-position, center) / cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  color: var(--white);
  isolation: isolate;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(74, 150, 232, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.2), transparent 58%);
  content: "";
}

.service-card::after {
  position: absolute;
  z-index: 0;
  inset: -1px;
  background:
    radial-gradient(
      circle 190px at var(--spot-x, 22%) var(--spot-y, 18%),
      rgba(255, 255, 255, 0.22),
      rgba(74, 150, 232, 0.1) 32%,
      transparent 72%
    );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-card.is-pointer-active::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-flake {
  --service-image: url("public/images/service-flake-epoxy-1400.jpg");
}

.service-metallic {
  --service-image: url("public/gallery/07-red-black-metallic-floor.jpeg");
}

.service-commercial {
  --service-image: url("public/images/service-commercial-coatings-v2-1400.jpg");
}

.service-seal {
  --service-image: url("public/gallery/12-commercial-polished-concrete.jpeg");
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  transform: translateY(-3px);
}

.service-card:focus-visible {
  outline: 3px solid rgba(74, 150, 232, 0.8);
  outline-offset: 4px;
}

.work-band {
  padding: 64px max(20px, calc((100vw - 1120px) / 2));
  background: var(--panel);
  color: var(--white);
  scroll-margin-top: 0;
}

.transformation-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 64px max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(217, 0, 0, 0.11), transparent 34%),
    #0a0d12;
  color: var(--white);
}

.transformation-copy {
  min-width: 0;
}

.transformation-copy h2 {
  max-width: 100%;
  margin: 0 0 18px;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  letter-spacing: 0.012em;
  line-height: 0.98;
}

.transformation-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.comparison {
  min-width: 0;
}

.comparison-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(74, 150, 232, 0.5);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.comparison-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.comparison-after {
  position: absolute;
  inset: 0;
}

.comparison-before {
  position: absolute;
  z-index: 1;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.comparison-before img {
  width: 100%;
}

.comparison-label {
  position: absolute;
  z-index: 3;
  top: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.72);
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-label-before {
  left: 16px;
}

.comparison-label-after {
  right: 16px;
}

.comparison-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  transform: translateX(-50%);
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-frame:focus-within {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.comparison-help {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
  text-align: center;
}

.work-band .section-heading {
  margin-left: 0;
}

.gallery {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  background: #050608;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gallery-filters button {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.gallery-filters button:hover,
.gallery-filters button:focus-visible,
.gallery-filters button.is-active {
  border-color: rgba(74, 150, 232, 0.76);
  background: rgba(74, 150, 232, 0.2);
  color: var(--white);
}

.gallery-slider {
  position: relative;
  height: clamp(440px, 56vw, 660px);
  overflow: hidden;
  border: 1px solid rgba(74, 150, 232, 0.28);
  border-radius: var(--radius);
  background: #050608;
  box-shadow: var(--shadow);
}

.gallery-slider::before {
  position: absolute;
  inset: -24px;
  background-image: var(--slide-bg);
  background-position: center;
  background-size: cover;
  filter: blur(26px) saturate(1.05);
  opacity: 0.44;
  content: "";
  transform: scale(1.04);
}

.gallery-slider::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(74, 150, 232, 0.14), transparent 26%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.72), rgba(5, 6, 8, 0.22), rgba(5, 6, 8, 0.72));
  content: "";
}

.gallery-slide-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.72);
  color: var(--white);
  font: inherit;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 0;
}

.gallery-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.gallery-dots button.is-active {
  width: 28px;
  background: var(--accent);
}

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 4, 7, 0.97);
  color: var(--white);
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-shell {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 82px minmax(0, 1fr) 82px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(74, 150, 232, 0.14), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(217, 0, 0, 0.12), transparent 28%);
}

.gallery-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 22px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.76);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.gallery-lightbox-media {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-column: 2;
  place-items: center;
  align-self: stretch;
}

.gallery-lightbox-media img {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 132px);
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
}

.gallery-lightbox-arrow {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.gallery-lightbox-arrow:hover,
.gallery-lightbox-arrow:focus-visible,
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: rgba(74, 150, 232, 0.34);
  transform: scale(1.06);
}

.gallery-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

.gallery-lightbox-footer {
  display: flex;
  grid-column: 1 / -1;
  grid-row: 2;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 18px;
}

.gallery-lightbox-footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-lightbox-category {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-lightbox-count {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-lightbox-quote {
  background: var(--accent);
  color: var(--white);
}

body.lightbox-open {
  overflow: hidden;
}

.video-band {
  padding: 64px max(20px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 82% 18%, rgba(74, 150, 232, 0.2), transparent 28%),
    linear-gradient(180deg, #050608, #0b0d10);
  color: var(--white);
}

.video-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.video-heading h2 {
  margin-bottom: 0;
}

.video-heading > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.video-feature,
.video-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(74, 150, 232, 0.32);
  border-radius: var(--radius);
  background: #050608;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.video-feature {
  min-height: auto;
}

.video-embed-card {
  display: grid;
  min-height: auto;
  align-content: start;
  gap: 20px;
  overflow: visible;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 8%, rgba(74, 150, 232, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #050608;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.video-feature img,
.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.12), rgba(5, 6, 8, 0.86)),
    radial-gradient(circle at 18% 18%, rgba(74, 150, 232, 0.2), transparent 28%);
  content: "";
}

.video-card > div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.video-embed-copy {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.video-feature span,
.video-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-feature h3,
.video-card h3 {
  max-width: 680px;
  margin: 8px 0;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
}

.video-card h3 {
  font-size: 1.4rem;
  line-height: 1.08;
}

.video-feature p,
.video-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.hosted-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 150, 232, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(74, 150, 232, 0.16), rgba(217, 0, 0, 0.08)),
    #020304;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.hosted-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020304;
  object-fit: cover;
}

.video-card:hover img,
.video-card:focus-visible img {
  transform: scale(1.04);
}

.play-button {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(217, 0, 0, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--white);
  content: "";
}

.reviews {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.97) 0%, rgba(5, 7, 10, 0.9) 52%, rgba(5, 7, 10, 0.82) 100%),
    url("public/gallery/14-black-garage-floor.jpeg") center 68% / cover;
  color: var(--white);
}

.reviews::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(217, 0, 0, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(74, 150, 232, 0.2), transparent 30%);
  content: "";
  pointer-events: none;
}

.trust-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}

.trust-heading h2 {
  margin-bottom: 0;
}

.trust-heading > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

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

.trust-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(74, 150, 232, 0.42);
  border-radius: var(--radius);
  background: rgba(7, 9, 13, 0.72);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.trust-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88px;
  height: 4px;
  background: var(--accent);
  content: "";
}

.trust-number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
}

.trust-label {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-card h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-size: 1.55rem;
  line-height: 1.06;
}

.trust-card > p:last-child {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.trust-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.trust-proof > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.trust-proof strong {
  color: var(--white);
}

.trust-actions {
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 10px;
}

.trust-actions .button {
  min-width: 0;
  padding-right: 14px;
  padding-left: 14px;
}

.trust-button-primary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #050608;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.trust-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #050608;
  color: var(--white);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: start;
  padding: 64px max(20px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 12% 20%, rgba(74, 150, 232, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(217, 0, 0, 0.18), transparent 34%),
    var(--ink);
  color: var(--white);
  scroll-margin-top: 0;
}

.services-band,
.video-band,
.work-band,
.reviews,
.quote-section {
  scroll-margin-top: var(--anchor-offset);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.quote-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
}

.quote-list li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "•";
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(74, 150, 232, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98)),
    var(--white);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.quote-form-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.quote-form-heading strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.quote-form-heading span {
  color: var(--muted);
  font-size: 0.95rem;
}

label {
  display: grid;
  gap: 8px;
  color: #172033;
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d3df;
  border-radius: 6px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  box-shadow: 0 1px 0 rgba(5, 6, 8, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(74, 150, 232, 0.16);
  outline: none;
}

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

textarea {
  resize: vertical;
}

.service-helper {
  margin: -4px 0 2px;
  padding: 13px 14px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(74, 150, 232, 0.14), rgba(74, 150, 232, 0.06));
  color: #1f3148;
  font-size: 0.95rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note a {
  font-weight: 900;
}

.floating-quote {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 34px max(20px, calc((100vw - 1120px) / 2));
  background: #050608;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-brand strong {
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-brand span {
  max-width: 560px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 760px;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-social {
  justify-content: center;
}

.faq-hero {
  --hero-light-x: 76%;
  --hero-light-y: 24%;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.faq-hero img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  animation: hero-cinematic-drift 16s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate-reverse;
  transform: scale(1.06);
  transform-origin: center 72%;
  will-change: transform;
}

.faq-hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(217, 0, 0, 0.34), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(74, 150, 232, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.74) 48%, rgba(5, 6, 8, 0.28));
}

.faq-hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 164px 0 90px;
}

.faq-hero-content h1 {
  max-width: 900px;
}

.faq-hero-content p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.faq-feature {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
}

.faq-feature > div:first-child,
.feature-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-feature > div:first-child {
  padding: 30px;
  background: var(--white);
}

.faq-feature > div:first-child h2 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: clamp(2rem, 2.6vw, 2.85rem);
  line-height: 1;
}

.feature-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(74, 150, 232, 0.34);
  background:
    linear-gradient(135deg, rgba(217, 0, 0, 0.18), transparent 42%),
    #090c12;
  color: rgba(255, 255, 255, 0.84);
}

.feature-panel p {
  margin: 0;
  font-size: 1.08rem;
}

.faq-process {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 0;
}

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

.process-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(74, 150, 232, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 0, 0, 0.08), transparent 38%),
    var(--white);
  box-shadow: 0 16px 44px rgba(12, 14, 18, 0.07);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-action-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(74, 150, 232, 0.42);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.mobile-action-bar a {
  display: grid;
  min-height: 52px;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
}

.mobile-action-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-action-bar a:last-child {
  background: var(--accent);
}

.process-grid p {
  color: #46505c;
}

.faq-list-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 72px;
}

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

.faq-group-title {
  margin: 22px 0 2px;
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-group-title:first-child {
  margin-top: 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(12, 14, 18, 0.05);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(217, 0, 0, 0.1);
  color: var(--accent);
  content: "+";
}

.faq-list details[open] summary::after {
  background: rgba(74, 150, 232, 0.16);
  color: var(--blue);
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: #46505c;
  font-size: 1.02rem;
}

.faq-cta {
  padding: 64px max(20px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 82% 30%, rgba(74, 150, 232, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(217, 0, 0, 0.18), transparent 38%),
    var(--ink);
  color: var(--white);
}

.faq-cta h2,
.faq-cta p {
  max-width: 720px;
}

.faq-cta > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: rgba(5, 6, 8, 0.28);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  transition: top 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(5, 6, 8, 0.94);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.button,
.header-cta,
.floating-quote {
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.floating-quote:hover,
.floating-quote:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.button:active,
.header-cta:active,
.floating-quote:active {
  transform: translateY(0);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

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

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  opacity: 0.74;
  transition: gap 160ms ease, opacity 160ms ease;
}

.service-card:hover .service-card-cta,
.service-card:focus-visible .service-card-cta {
  gap: 12px;
  opacity: 1;
}

.trust-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trust-card:hover {
  border-color: rgba(74, 150, 232, 0.76);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.gallery-slider {
  touch-action: pan-y;
}

.gallery-slider:focus-visible {
  outline: 3px solid rgba(74, 150, 232, 0.86);
  outline-offset: 4px;
}

.gallery-arrow {
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(0, 51, 105, 0.9);
  transform: translateY(-50%) scale(1.06);
}

.gallery-status {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  min-width: 58px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.76);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(12px);
}

.faq-list details {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(74, 150, 232, 0.48);
  box-shadow: 0 16px 36px rgba(12, 14, 18, 0.09);
}

.faq-list details[open] {
  transform: translateY(-2px);
}

.quote-form.is-highlighted {
  animation: quote-form-highlight 900ms ease;
}

.services-band,
.video-band,
.transformation-band,
.work-band,
.reviews,
.quote-section {
  position: relative;
}

.services-band::after,
.video-band::after,
.transformation-band::after,
.work-band::after,
.reviews::after,
.quote-section::after {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 0;
  width: min(1120px, calc(100% - 40px));
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(217, 0, 0, 0.76) 30%,
      rgba(255, 255, 255, 0.68) 50%,
      rgba(74, 150, 232, 0.78) 70%,
      transparent
    );
  box-shadow: 0 0 18px rgba(74, 150, 232, 0.18);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  transform: translateX(50%);
}

.button-primary,
.header-cta,
.floating-quote {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-primary::after,
.header-cta::after,
.floating-quote::after {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -42%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg) translateX(-260%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .service-card.is-visible {
    --card-lift: 0px;
    transform:
      perspective(900px)
      translateY(var(--card-lift))
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
    transform-origin: center;
    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 120ms ease-out;
    will-change: transform;
  }

  .service-card.is-visible:hover,
  .service-card.is-visible:focus-visible {
    --card-lift: -5px;
  }

  .button-primary:hover::after,
  .button-primary:focus-visible::after,
  .header-cta:hover::after,
  .header-cta:focus-visible::after,
  .floating-quote:hover::after,
  .floating-quote:focus-visible::after {
    transform: skewX(-18deg) translateX(650%);
  }
}

@keyframes hero-cinematic-drift {
  0% {
    transform: scale(1.06) translate3d(-1.1%, -0.35%, 0);
  }

  50% {
    transform: scale(1.1) translate3d(0.15%, -0.8%, 0);
  }

  100% {
    transform: scale(1.14) translate3d(1.1%, 0.35%, 0);
  }
}

@keyframes hero-light-breathe {
  from {
    opacity: 0.42;
    transform: scale(0.98);
  }

  to {
    opacity: 0.68;
    transform: scale(1.04);
  }
}

@keyframes quote-form-highlight {
  0%, 100% {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  }

  45% {
    box-shadow: 0 0 0 5px rgba(74, 150, 232, 0.24), 0 28px 76px rgba(0, 0, 0, 0.38);
  }
}

@media (max-width: 1100px) {
  .transformation-band {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .transformation-copy {
    max-width: 760px;
  }

  .transformation-copy h2 {
    max-width: 680px;
  }

  .comparison {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 880px) {
  :root {
    --anchor-offset: 36px;
  }

  .transformation-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .transformation-copy h2 {
    max-width: 680px;
  }

  .comparison {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  body {
    padding-bottom: 76px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 10px;
  }

  .nav-links {
    display: none;
  }

  .header-social {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .mobile-menu summary {
    display: inline-flex;
    width: 40px;
    min-height: 40px;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 74px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .mobile-menu-panel > a.is-active {
    background: rgba(74, 150, 232, 0.2);
    color: var(--white);
    box-shadow: inset 3px 0 0 var(--blue);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding-top: 118px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 5.2rem);
    margin-bottom: 18px;
  }

  .hero-emphasis {
    font-size: clamp(2rem, 8vw, 3.2rem);
    letter-spacing: 0.008em;
    line-height: 0.95;
  }

  .hero-title-rest {
    max-width: 620px;
    margin-top: 10px;
    font-size: clamp(2.2rem, 11vw, 4.2rem);
    line-height: 0.98;
  }

  .intro,
  .service-grid,
  .video-heading,
  .video-grid,
  .faq-feature,
  .trust-heading,
  .trust-grid,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .reviews {
    padding: 48px 0;
    background-position: center;
  }

  .trust-heading {
    gap: 12px;
    margin-bottom: 20px;
  }

  .trust-grid {
    gap: 12px;
  }

  .trust-card {
    min-height: 0;
  }

  .trust-label {
    margin-bottom: 24px;
  }

  .trust-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-actions {
    width: 100%;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    padding: 14px 8px;
  }

  .gallery-lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .gallery-lightbox-footer {
    flex-direction: column;
    gap: 12px;
    padding: 12px 10px 0;
  }

  .gallery-lightbox-media img {
    max-height: calc(100dvh - 182px);
  }

  .section {
    padding: 44px 0;
  }

  .services-band .intro {
    padding-bottom: 24px;
  }

  .services-band .services {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .faq-hero {
    min-height: 500px;
  }

  .faq-hero-content {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .faq-feature {
    gap: 12px;
    margin-top: -32px;
  }

  .faq-list-section {
    padding: 52px 0 60px;
  }

  .faq-process {
    padding-top: 36px;
  }

  .video-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .video-feature {
    min-height: auto;
    grid-row: auto;
  }

  .video-embed-card {
    padding: 16px;
  }

  .video-card {
    min-height: 320px;
  }

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

  .process-grid article {
    min-height: 0;
  }

  .intro {
    gap: 20px;
  }

  .service-card {
    min-height: auto;
  }

  .service-flake {
    --service-position: center 72%;
  }

  .service-commercial {
    --service-position: center 76%;
  }

  .gallery-slider {
    height: min(560px, 126vw);
  }

  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }

  .gallery-filters button {
    width: 100%;
    min-width: 0;
    padding-right: 9px;
    padding-left: 9px;
    text-align: center;
  }

  .gallery-slide-image {
    padding: 10px;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }

  .gallery-status {
    right: 12px;
    bottom: 12px;
  }

  .quote-section {
    gap: 22px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .work-band,
  .faq-cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .floating-quote {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 520px) {
  .gallery-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transformation-band {
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .transformation-copy h2 {
    margin-bottom: 14px;
    font-size: 2.5rem;
    line-height: 1;
  }

  .comparison-label {
    top: 10px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .comparison-label-before {
    left: 10px;
  }

  .comparison-label-after {
    right: 10px;
  }

  .comparison-divider span {
    width: 50px;
    height: 50px;
  }

  .header-cta {
    padding: 9px 11px;
    white-space: nowrap;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .mobile-menu-panel {
    right: 10px;
    left: 10px;
    width: auto;
  }

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

  .gallery-lightbox-shell {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }

  .gallery-lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-quote {
    width: 100%;
  }

  .quote-form,
  blockquote,
  .service-card {
    padding: 20px;
  }

  .quote-form {
    gap: 14px;
  }

  .faq-feature > div:first-child,
  .feature-panel,
  .process-grid article {
    padding: 22px;
  }

  .faq-list summary {
    gap: 14px;
    padding: 18px;
  }

  .faq-list details p {
    padding: 0 18px 18px;
  }
}
