:root {
  --charcoal: #333333;
  --charcoal-deep: #202020;
  --ink: #171717;
  --muted: #5f6468;
  --light: #f5f6f7;
  --white: #ffffff;
  --red: #ed1c24;
  --red-dark: #c9151c;
  --red-soft: rgba(237, 28, 36, 0.1);
  --line: rgba(23, 23, 23, 0.11);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(237, 28, 36, 0.28);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 3000;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

h1,
h2,
h3,
.contact-number,
.trust-strip strong {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.72rem 0.9rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--charcoal);
  color: var(--white);
}

.site-nav a:last-child {
  background: transparent;
  color: var(--ink);
}

.site-nav a.contact-link {
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.78) 0%, rgba(24, 24, 24, 0.7) 32%, rgba(26, 26, 26, 0.5) 60%, rgba(26, 26, 26, 0.4) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.14) 0%, rgba(18, 18, 18, 0.24) 100%),
    url("assets/home-hero-founder-close.png");
  background-color: var(--charcoal);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 62% 26%;
  border-bottom: 6px solid var(--red);
}

.hero-grid {
  min-height: clamp(400px, 62vh, 560px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0;
}

.hero-copy {
  max-width: 520px;
  padding-right: min(18vw, 15rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  color: var(--red);
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  max-width: 620px;
}

.hero-text {
  max-width: 620px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-service-list li {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.15rem;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.motion-ready .reveal-item {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.trust-strip {
  background: var(--red);
}

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

.trust-grid a {
  min-height: 160px;
  padding: 1.5rem;
  background: var(--red);
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.trust-grid a:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.trust-grid strong {
  display: block;
  color: var(--white);
  font-size: 2.2rem;
}

.trust-grid span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.section {
  padding: 5.5rem 0;
}

.page-hero {
  padding: 5rem 0;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(32, 32, 32, 0.97), rgba(51, 51, 51, 0.92)),
    var(--charcoal);
  border-bottom: 6px solid var(--red);
}

.water-testing-hero {
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.82) 0%, rgba(24, 24, 24, 0.64) 38%, rgba(24, 24, 24, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.28) 100%),
    url("assets/water-testing-hero.webp");
  background-color: var(--charcoal);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.installations-hero {
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.84) 0%, rgba(24, 24, 24, 0.68) 38%, rgba(24, 24, 24, 0.46) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.28) 100%),
    url("assets/installations-hero.webp");
  background-color: var(--charcoal);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.service-page-hero {
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.84) 0%, rgba(24, 24, 24, 0.7) 38%, rgba(24, 24, 24, 0.48) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.18) 0%, rgba(18, 18, 18, 0.28) 100%),
    url("assets/service-hero.webp");
  background-color: var(--charcoal);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.new-builds-hero {
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.84) 0%, rgba(24, 24, 24, 0.68) 42%, rgba(24, 24, 24, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.18) 0%, rgba(18, 18, 18, 0.26) 100%),
    url("assets/new-builds-hero.png");
  background-color: var(--charcoal);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.84) 0%, rgba(24, 24, 24, 0.68) 38%, rgba(24, 24, 24, 0.42) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.18) 0%, rgba(18, 18, 18, 0.28) 100%),
    url("assets/contact-hero.png");
  background-color: var(--charcoal);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-text {
  color: rgba(255, 255, 255, 0.84);
}

.split,
.build-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: center;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.section p,
.section-header > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section h2 + p,
.section .section-kicker + h2 + p {
  margin-top: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.water-section {
  background: var(--white);
}

.water-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.test-panel {
  display: grid;
  align-content: center;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.08), transparent 42%),
    var(--light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.test-panel-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.test-panel-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-panel h3,
.service-card h3 {
  font-size: 2.2rem;
}

.test-panel p {
  margin-top: 0.7rem;
}

.test-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.test-panel li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 700;
}

.test-panel li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

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

.services-photo {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.services-photo img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}

.service-card {
  min-height: 280px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.service-card p {
  margin-top: 0.9rem;
}

.local-seo-section {
  background: var(--light);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.local-seo-grid article {
  min-height: 260px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.local-seo-grid span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.local-seo-grid h3 {
  font-size: 2.15rem;
}

.local-seo-grid p {
  margin-top: 0.9rem;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  gap: 0.8rem;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--light);
}

.faq-grid summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-grid details p {
  padding: 0 1.1rem 1.1rem;
}

.reviews-section {
  background: var(--light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  min-height: 250px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.review-card h3 {
  font-size: 2.15rem;
}

.review-card p {
  margin-top: 0.9rem;
}

.review-card .button {
  margin-top: 1.2rem;
}

.install-gallery-section {
  background: var(--white);
}

.install-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.install-feature {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--light);
  overflow: hidden;
}

.install-feature.large {
  grid-row: span 2;
}

.install-feature img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.install-feature.large img {
  min-height: 560px;
}

.install-feature figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-weight: 800;
}

.build-section {
  color: var(--white);
  background: var(--charcoal);
}

.build-section .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.build-section p {
  color: rgba(255, 255, 255, 0.8);
}

.logo-panel {
  min-height: 440px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--charcoal-deep);
  overflow: hidden;
}

.logo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.build-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.build-photo-stack img {
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.build-photo-stack img:first-child {
  transform: translateY(1.4rem);
}

.install-side-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.install-side-gallery img {
  width: 100%;
  min-height: 240px;
  border-radius: var(--radius);
  object-fit: cover;
}

.install-side-gallery img:first-child {
  grid-column: 1 / -1;
  min-height: 300px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.check-grid span {
  padding: 0.8rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-section {
  background: var(--white);
}

.contact-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid var(--line);
}

.contact-number {
  display: block;
  color: var(--red);
  font-size: clamp(3rem, 7vw, 5rem);
}

.contact-card p {
  margin-top: 0.4rem;
}

.email-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--red);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.form-placeholder {
  grid-template-columns: 1fr;
  align-content: center;
}

.form-placeholder > p:first-child {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.form-note {
  margin-top: 0.8rem;
}

.site-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--light);
  color: var(--ink);
  font: inherit;
}

.site-form textarea {
  min-height: 140px;
  resize: vertical;
}

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

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 6rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
  text-align: center;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-inner img {
  width: min(520px, 100%);
}

.footer-credit {
  display: inline-flex;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 1rem;
    left: 1rem;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: var(--white);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .hero-grid,
  .split,
  .water-grid,
  .build-grid,
  .contact-grid,
  .build-photo-stack,
  .form-grid,
  .section-header {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 2.6rem 0;
  }

  .trust-grid,
  .services-grid,
  .local-seo-grid,
  .reviews-grid,
  .install-feature-grid {
    grid-template-columns: 1fr;
  }

  .services-photo img {
    max-height: 320px;
  }

  .install-feature-grid {
    grid-template-rows: none;
  }

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

  .local-seo-grid article {
    min-height: 0;
  }

  .build-photo-stack img,
  .build-photo-stack img:first-child {
    min-height: 280px;
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    background-size: cover;
    background-position: 72% 18%;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  .hero-text {
    max-width: min(100%, 520px);
    font-size: 0.98rem;
  }

  .hero-actions,
  .hero-service-list {
    max-width: 100%;
  }

  .floating-call {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    background-position: 76% 18%;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .site-nav {
    top: 72px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .section {
    padding: 4rem 0;
  }

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

  .site-form {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

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

  .install-side-gallery {
    grid-template-columns: 1fr;
  }

  .install-feature.large img,
  .install-feature img,
  .install-side-gallery img,
  .install-side-gallery img:first-child {
    min-height: 260px;
  }

  .floating-call {
    right: 0.6rem;
    left: 0.6rem;
  }
}

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

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