:root {
  --blue: #0d8fd8;
  --blue-dark: #075b96;
  --red: #ef233c;
  --dark: #102033;
  --muted: #64748b;
  --light: #f4f9fd;
  --white: #ffffff;
  --soft-blue: #eaf6fd;
  --shadow: 0 18px 45px rgba(6, 55, 95, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 118px;
  max-height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a:hover { color: var(--blue-dark); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-call,
.btn.primary {
  background: var(--red);
  color: var(--white);
}

.nav-call { padding: 0.65rem 1.1rem; }

.btn {
  padding: 0.9rem 1.3rem;
  font-size: 0.95rem;
}

.btn.secondary {
  background: var(--white);
  color: var(--blue-dark);
}

.nav-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--blue-dark);
  cursor: pointer;
  padding: 0.7rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  border-radius: 999px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 6.5rem 0 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 38, 70, 0.86) 0%,
      rgba(5, 38, 70, 0.62) 42%,
      rgba(5, 38, 70, 0.22) 100%
    ),
    url("../img/hero-pressure-washing.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.hero-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 600px 300px;
  gap: 3rem;
  align-items: center;
  justify-content: start;
}

.hero-content { max-width: 600px; }

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 900;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

.hero .eyebrow { color: var(--white); }

h1 {
  font-size: clamp(3.1rem, 4.8vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  max-width: 590px;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.6rem;
}

.hero-actions,
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-service-pills {
  margin-top: 1.6rem;
  gap: 0.65rem;
}

.hero-service-pills span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-highlights {
  display: grid;
  gap: 0.8rem;
  width: 300px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.highlight-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--blue-dark);
}

.highlight-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* PROMO DROP */

.promo-drop {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 8;
  width: min(760px, calc(100% - 64px));
  transform: translate(-50%, -115%);
  background: var(--white);
  color: var(--dark);
  border-radius: 0 0 10px 10px;
  border-top: 4px solid var(--red);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  transition: transform 0.6s ease;
  font-size: 0.88rem;
}

.promo-drop.show {
  transform: translate(-50%, 0);
}

.promo-drop strong { color: var(--red); }

.promo-drop a {
  color: var(--blue-dark);
  font-weight: 900;
}

/* SECTIONS */

.services,
.feature-section,
.trust-section,
.team-section,
.gallery,
.promotion,
.quote {
  padding: 4.7rem 0;
}

.section-heading {
  margin-bottom: 1.8rem;
  max-width: 680px;
}

.center-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center-heading p:last-child {
  color: var(--muted);
  margin-top: 0.7rem;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -1px;
}

/* SERVICES */

.services { background: var(--white); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1040px;
}

.card {
  background: var(--light);
  border-radius: 22px;
  padding: 1.45rem;
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--blue-dark);
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.card-link:hover {
  color: var(--red);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 24px rgba(7, 91, 150, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card:hover .service-icon {
  transform: translateY(-3px);
  box-shadow:
    0 16px 30px rgba(7, 91, 150, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* FEATURES */

.feature-section { background: var(--light); }

.feature-section.dark-feature { background: var(--white); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.feature-image img {
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 520px;
}

.feature-copy h2 { margin-bottom: 1rem; }

.feature-copy p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* TRUST */

.trust-section { background: var(--soft-blue); }

.trust-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-copy h2 { margin-bottom: 1rem; }

.trust-copy p { color: var(--muted); }

.trust-images {
  display: grid;
  grid-template-columns: 1fr;
}

.trust-images img {
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

/* TEAM */

.team-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.team-card {
  min-width: 0;
}

.team-card-offset {
  margin-top: 2.4rem;
}

.team-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.45s ease;
}

.team-card:hover img {
  transform: translateY(-3px);
}

/* GALLERY */

.gallery {
  background: var(--white);
  overflow: hidden;
}

.image-carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
}

.image-stage {
  position: relative;
  height: 440px;
  overflow: visible;
}

.gallery-image {
  position: absolute;
  top: 50%;
  width: 68%;
  height: 390px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: 0.45s ease;
}

.active-image {
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

.prev-image {
  left: 18%;
  transform: translate(-50%, -50%) scale(0.84);
  filter: blur(3px);
  opacity: 0.45;
  z-index: 1;
}

.next-image {
  left: 82%;
  transform: translate(-50%, -50%) scale(0.84);
  filter: blur(3px);
  opacity: 0.45;
  z-index: 1;
}

/* FIXED CENTERED ARROWS */

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: none;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-dark);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  cursor: pointer;
  transition: 0.25s ease;

  font-size: 0;
  line-height: 1;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.image-prev::before {
  margin-left: 5px;
  transform: rotate(-135deg);
}

.image-next::before {
  margin-right: 5px;
  transform: rotate(45deg);
}

.image-prev { left: 2%; }

.image-next { right: 2%; }

/* DOTS */

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(13, 143, 216, 0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.dot.active {
  width: 34px;
  background: var(--blue);
}

/* REVIEW MARQUEE */

.review-marquee {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  padding: 0.4rem 0 0.8rem;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.review-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviewPan 34s linear infinite;
}

.review-marquee:hover .review-marquee-track {
  animation-play-state: paused;
}

.review-card {
  width: 340px;
  min-height: 160px;
  flex: 0 0 auto;
  background: var(--light);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.review-stars {
  margin-bottom: 0.65rem;
  display: flex;
  gap: 0.18rem;
}

.star-icon {
  width: 17px;
  height: 17px;
  background: #f59e0b;
  clip-path: polygon(
    50% 0,
    61% 35%,
    98% 35%,
    68% 56%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 56%,
    2% 35%,
    39% 35%
  );
}

.review-card p {
  color: var(--dark);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.review-card strong {
  color: var(--blue-dark);
  font-size: 0.95rem;
}

@keyframes reviewPan {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PROMOTION */

.promotion {
  background:
    linear-gradient(
      135deg,
      rgba(239, 35, 60, 0.95),
      rgba(13, 143, 216, 0.92)
    );
  color: var(--white);
}

.promo-box {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 980px;
  box-shadow: var(--shadow);
}

.promo-content { max-width: 660px; }

.promotion .eyebrow { color: var(--white); }

.promotion p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
}

/* QUOTE */

.quote {
  background: var(--dark);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 400px;
  gap: 2rem;
  align-items: start;
  max-width: 980px;
}

.quote .eyebrow { color: var(--red); }

.quote-copy p { color: rgba(255, 255, 255, 0.84); }

.contact-card { margin-top: 1.5rem; }

.contact-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.contact-card a {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

.quote-form {
  background: var(--white);
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: var(--shadow);
}

input,
select,
textarea,
button {
  width: 100%;
  font: inherit;
  border-radius: 12px;
}

input,
select,
textarea {
  border: 1px solid #d1d5db;
  padding: 0.9rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  border: none;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  padding: 0.95rem;
  cursor: pointer;
}

/* FOOTER */

footer {
  background: #07111f;
  color: var(--white);
  padding: 2.8rem 0 1.2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  width: 80px;
  flex: 0 0 auto;
  background: var(--white);
  padding: 0.45rem;
  border-radius: 12px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.footer-content p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.footer-info span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.footer-info a {
  display: block;
  width: fit-content;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-info a:hover {
  color: var(--white);
}

.social-links {
  display: grid;
  gap: 0.5rem;
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.86rem;
}

.telos-credit {
  all: unset;
  display: block;
  text-align: center;
  font-size: 11px;
  padding: 12px 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--white);
}

.telos-credit a {
  text-decoration: none;
  background: linear-gradient(90deg, #caa35a, #e5c27a, #a67c2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 0.2s ease;
}

.telos-credit a:hover {
  filter: brightness(1.2);
}

.telos-credit span {
  color: #5a6c64;
}

/* SUPPORTING PAGES */

.blank-page {
  min-height: 48vh;
  background: var(--white);
}

.service-page-hero {
  padding: 5rem 0;
  background: var(--light);
}

.service-page-hero.commercial-page {
  background: var(--white);
}

.service-page-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-page-copy {
  max-width: 560px;
}

.service-page-copy h1 {
  color: var(--dark);
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
  letter-spacing: -1px;
  line-height: 0.98;
}

.service-page-copy p {
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}

.service-page-copy .btn.secondary {
  color: var(--blue-dark);
  border: 1px solid rgba(7, 91, 150, 0.18);
}

.service-page-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-detail-section {
  padding: 4.7rem 0;
  background: var(--white);
}

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

.service-detail {
  min-height: 220px;
  padding: 1.35rem;
  border-radius: 22px;
  background: var(--light);
  box-shadow: var(--shadow);
}

.service-detail h3 {
  color: var(--blue-dark);
  margin-bottom: 0.55rem;
}

.service-detail p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-cta-band {
  padding: 4rem 0;
  color: var(--white);
  background:
    linear-gradient(
      135deg,
      rgba(7, 91, 150, 0.96),
      rgba(13, 143, 216, 0.88)
    );
}

.service-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.service-cta-content .eyebrow {
  color: var(--white);
}

.service-cta-content h2 {
  max-width: 760px;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 0;
  text-align: center;
  background: var(--light);
}

.redirect-page .container {
  max-width: 560px;
}

.redirect-logo {
  width: 110px;
  margin: 0 auto 1.4rem;
  background: var(--white);
  border-radius: 18px;
  padding: 0.7rem;
  box-shadow: var(--shadow);
}

.redirect-page h1 {
  max-width: none;
  color: var(--blue-dark);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -1px;
}

.redirect-page p {
  color: var(--muted);
  margin-top: 1rem;
}

.redirect-page a {
  color: var(--blue-dark);
  font-weight: 900;
}

/* ANIMATIONS */

.fade-element {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-element.visible {
  opacity: 1;
  transform: translateY(0);
}

@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;
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  /* NAV */

  .nav {
    height: 68px;
  }

  .logo {
    width: 98px;
    max-height: 54px;
  }

  .nav-call {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    width: 230px;

    background: var(--white);

    border-radius: 16px;

    padding: 0.7rem;

    box-shadow: var(--shadow);

    display: none;
    flex-direction: column;
    gap: 0;

    z-index: 200;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--dark);

    padding: 0.85rem;

    border-radius: 10px;
  }

  /* HERO */

  .hero {
    min-height: 560px;

    padding:
      5.9rem
      0
      3.25rem;

    align-items: flex-end;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-layout,
  .cards,
  .feature-grid,
  .feature-grid.reverse,
  .trust-layout,
  .quote-grid,
  .service-page-layout,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    display: block;
  }

  .hero-highlights {
    display: none;
  }

  .hero-content {
    padding-top: 4px;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  h1 {
    font-size: 2.35rem;

    line-height: 0.98;

    letter-spacing: -1px;

    max-width: 360px;
  }

  .hero-text {
    font-size: 0.95rem;

    max-width: 340px;
  }

  .btn {
    padding: 0.72rem 0.95rem;

    font-size: 0.8rem;
  }

  .hero-service-pills span {
    font-size: 0.7rem;

    padding: 0.55rem 0.7rem;
  }

  /* PROMO DROP */

  .promo-drop {
    width: calc(100% - 18px);

    top: 0;

    padding:
      0.42rem
      0.7rem;

    min-height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.4rem;

    font-size: 0.62rem;

    line-height: 1.1;

    border-top-width: 3px;

    border-radius: 0 0 10px 10px;
  }

  .promo-drop strong,
  .promo-drop a {
    font-size: 0.62rem;

    white-space: nowrap;
  }

  /* SECTIONS */

  .services,
  .feature-section,
  .trust-section,
  .team-section,
  .gallery,
  .promotion,
  .quote {
    padding: 3rem 0;
  }

  h2 {
    font-size: 1.65rem;
  }

  /* FEATURE IMAGES */

  .feature-image img,
  .trust-images img,
  .service-page-image img {
    height: 270px;
  }

  .trust-images {
    grid-template-columns: 1fr;
  }

  /* TEAM */

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 360px;
  }

  .team-card {
    min-width: 0;
  }

  .team-card-offset {
    margin-top: 0;
  }

  .team-card img {
    width: 100%;
    max-height: calc(100svh - 150px);
    object-fit: contain;
    border-radius: 22px;
  }

  /* GALLERY */

  .image-stage {
    height: 310px;
  }

  .gallery-image {
    width: 78%;

    height: 270px;

    border-radius: 22px;
  }

  .prev-image {
    left: 8%;
  }

  .next-image {
    left: 92%;
  }

  /* ARROWS */

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }

  .carousel-arrow::before {
    width: 13px;
    height: 13px;
    border-width: 3px;
  }

  .image-prev {
    left: 0;
  }

  .image-next {
    right: 0;
  }

  /* REVIEWS */

  .review-marquee {
    margin-top: 2rem;
  }

  .review-card {
    width: 280px;

    min-height: 150px;

    padding: 1rem;
  }

  .review-marquee-track {
    animation-duration: 26s;
  }

  /* PROMO */

  .promo-box {
    padding: 1.35rem;

    flex-direction: column;

    align-items: flex-start;
  }

  /* SUPPORTING PAGES */

  .service-page-hero,
  .service-detail-section,
  .service-cta-band {
    padding: 3rem 0;
  }

  .service-page-copy h1 {
    font-size: 2.2rem;
    max-width: 360px;
  }

  .service-page-copy p {
    font-size: 0.95rem;
  }

  .service-page-layout {
    gap: 1.6rem;
  }

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

  .service-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  /* QUOTE */

  .quote-form {
    padding: 1rem;
  }

  input,
  select,
  textarea,
  button {
    padding: 0.82rem;

    font-size: 0.85rem;
  }

  /* FOOTER */

  .footer-content {
    grid-template-columns: 1fr;

    gap: 1.6rem;
  }

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

  .footer-info {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 68px;
  }

  .footer-bottom {
    margin-top: 1.4rem;
  }
}

.hidden-image {
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  z-index: 0;
}
