:root {
  /* Brand colors */
  --color-primary: #1456c0;
  --color-primary-hover: #0f459c;
  --color-primary-active: #0b377d;
  --color-secondary: #0a1a2f;

  /* Background colors */
  --color-background: #ffffff;
  --color-background-light: #f4f7fb;
  --color-background-dark: #071525;
  --color-surface: #eef4fb;

  /* Text colors */
  --color-text: #111827;
  --color-text-muted: #667085;
  --color-text-light: #ffffff;

  /* Border colors */
  --color-border: #d7e0ea;
  --color-border-dark: rgba(255, 255, 255, 0.16);

  /* Navigation */
  --nav-background: #ffffff;
  --nav-background-mobile: #ffffff;
  --nav-link-color: #172033;
  --nav-link-hover-color: #1456c0;
  --nav-link-active-color: #0f459c;
  --nav-border-color: #d7e0ea;
  --nav-height: 88px;

  /* Buttons */
  --button-primary-background: #1456c0;
  --button-primary-hover: #0f459c;
  --button-primary-text: #ffffff;
  --button-secondary-border: #1456c0;
  --button-secondary-text: #1456c0;

  /* Typography */
  --font-heading: "Montenegrin Gothic One", serif;
  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-max-width: 1180px;
  --section-padding-desktop: 6rem;
  --section-padding-mobile: 4rem;
  --content-gap: 2rem;

  /* Borders and shadows */
  --border-radius-small: 6px;
  --border-radius-medium: 10px;
  --shadow-soft: 0 12px 30px rgba(10, 26, 47, 0.1);

  /* Transitions */
  --transition-fast: 160ms ease;
  --transition-standard: 220ms ease;
}

/* ========================================
   Reset and Global Styles
======================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
}

body.body--dialog-open {
  overflow: hidden;
}

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

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

main {
  display: block;
}

.container-xl {
  max-width: var(--container-max-width);
}

/* ========================================
   Typography
======================================== */

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-secondary);
}

h1,
h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.section-kicker {
  margin-bottom: 0.85rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading p:not(.section-kicker) {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ========================================
   Bootstrap Customizations
======================================== */

.btn {
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: var(--border-radius-small);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn:focus-visible,
.dropdown-toggle:focus-visible,
.accordion-button:focus-visible,
.btn-close:focus-visible,
.navbar-toggler:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(20, 86, 192, 0.28);
  outline-offset: 3px;
}

.dropdown-menu {
  border-radius: var(--border-radius-medium);
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1rem;
}

/* ========================================
   Header and Navigation
======================================== */

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 2000;
  padding: 0.8rem 1rem;
  background: var(--color-secondary);
  color: var(--color-text-light);
  transition: top var(--transition-fast);
}

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

.site-header {
  background: var(--nav-background);
  border-bottom: 1px solid var(--nav-border-color);
}

.nav-desktop {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: var(--nav-height);
  gap: 1.25rem;
}

.nav-desktop-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop-group-end {
  justify-content: flex-end;
}

.desktop-brand,
.mobile-brand,
.mobile-offcanvas-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.desktop-brand img {
  width: clamp(126px, 9vw, 168px);
  height: auto;
}

.mobile-brand img,
.mobile-offcanvas-brand img {
  width: 96px;
  height: auto;
}

.nav-desktop-link,
.nav-link-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--nav-link-color);
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-desktop-link:hover,
.nav-desktop-link:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible,
.nav-link-button.show {
  color: var(--nav-link-hover-color);
}

.nav-link-button.dropdown-toggle::after {
  margin-left: 0.45rem;
}

.services-dropdown {
  width: min(760px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  background: var(--color-background);
}

.service-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  color: var(--color-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.service-dropdown-link span:first-child {
  color: var(--color-primary);
  font-weight: 700;
}

.service-dropdown-link:hover,
.service-dropdown-link:focus-visible {
  background: var(--color-surface);
  color: var(--color-primary-active);
}

.emergency-call-btn,
.mobile-emergency-btn {
  display: inline-grid;
  align-items: center;
  min-width: 184px;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--button-primary-background);
  background: var(--button-primary-background);
  color: var(--button-primary-text);
  line-height: 1.1;
  transition:
    background-color var(--transition-standard),
    border-color var(--transition-standard);
}

.emergency-call-btn:hover,
.emergency-call-btn:focus-visible,
.mobile-emergency-btn:hover,
.mobile-emergency-btn:focus-visible {
  background: var(--button-primary-hover);
  border-color: var(--button-primary-hover);
  color: var(--button-primary-text);
}

.emergency-call-btn span,
.mobile-emergency-btn span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emergency-call-btn strong,
.mobile-emergency-btn strong {
  font-size: 1rem;
}

.mobile-header {
  min-height: calc(var(--nav-height) - 12px);
  padding: 0.85rem 0;
}

.mobile-call-btn,
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--nav-border-color);
  border-radius: var(--border-radius-small);
  background: var(--color-background);
  color: var(--color-secondary);
}

.mobile-call-btn {
  background: var(--button-primary-background);
  border-color: var(--button-primary-background);
  color: var(--button-primary-text);
}

.mobile-call-btn:hover,
.mobile-call-btn:focus-visible {
  background: var(--button-primary-hover);
  border-color: var(--button-primary-hover);
  color: var(--button-primary-text);
}

.mobile-menu-toggle:focus {
  box-shadow: none;
}

.mobile-menu-toggle .navbar-toggler-icon {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810,26,47,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-offcanvas {
  width: min(88vw, 360px);
  background: var(--nav-background-mobile);
}

.mobile-offcanvas .offcanvas-header {
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid var(--nav-border-color);
}

.mobile-offcanvas .offcanvas-body {
  padding: 1rem;
}

.mobile-services-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-color: var(--nav-link-color);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-color: var(--nav-link-active-color);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}

.mobile-services-accordion .accordion-item {
  border-bottom: 1px solid var(--nav-border-color);
}

.mobile-services-accordion .accordion-button {
  min-height: 52px;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.mobile-services-links a,
.mobile-primary-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--nav-border-color);
  color: var(--nav-link-color);
  font-size: 0.96rem;
}

.mobile-services-links a:hover,
.mobile-services-links a:focus-visible,
.mobile-primary-nav a:hover,
.mobile-primary-nav a:focus-visible {
  color: var(--nav-link-hover-color);
}

.mobile-primary-nav {
  margin-top: 1rem;
}

.mobile-emergency-btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* ========================================
   Hero
======================================== */
.metro-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #050b14;
  isolation: isolate;
}

.metro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 8, 16, 0.97) 0%,
      rgba(6, 14, 26, 0.92) 26%,
      rgba(7, 21, 37, 0.72) 48%,
      rgba(7, 21, 37, 0.28) 72%,
      rgba(7, 21, 37, 0.08) 100%
    ),
    radial-gradient(
      circle at 24% 24%,
      rgba(20, 86, 192, 0.22) 0%,
      rgba(20, 86, 192, 0) 36%
    );
  z-index: -1;
}

.metro-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.metro-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.metro-hero__container {
  display: flex;
  align-items: center;
  min-height: 720px;
  padding-top: clamp(4.5rem, 10vw, 7rem);
  padding-bottom: clamp(4.5rem, 9vw, 6rem);
}

.metro-hero__content {
  max-width: 34rem;
  color: var(--color-text-light);
  animation: metro-hero-fade 420ms ease-out both;
}

.metro-hero__eyebrow {
  margin: 0;
  color: rgba(229, 236, 245, 0.92);
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.metro-hero__title {
  margin: 1rem 0 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.metro-hero__title-top,
.metro-hero__title-bottom {
  display: block;
}

.metro-hero__title-bottom {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
}

.metro-hero__title-accent {
  color: #2b74ff;
}

.metro-hero__description {
  max-width: 31rem;
  margin: 1.35rem 0 0;
  color: rgba(220, 226, 233, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.metro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.metro-hero__primary,
.metro-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.metro-hero__primary {
  background: #1456c0;
  border-color: #1456c0;
  color: #ffffff;
}

.metro-hero__primary:hover,
.metro-hero__primary:focus-visible {
  background: #0f459c;
  border-color: #0f459c;
  color: #ffffff;
  transform: translateY(-1px);
}

.metro-hero__secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: transparent;
}

.metro-hero__secondary:hover,
.metro-hero__secondary:focus-visible {
  border-color: #2b74ff;
  color: #ffffff;
  background: rgba(20, 86, 192, 0.12);
  transform: translateY(-1px);
}

.metro-hero__primary:focus-visible,
.metro-hero__secondary:focus-visible {
  outline: 3px solid #9fc0ff;
  outline-offset: 3px;
}

.metro-hero__emergency {
  margin: 1rem 0 0;
  color: rgba(216, 223, 232, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

@keyframes metro-hero-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .metro-hero__content {
    animation: none;
  }

  .metro-hero__primary,
  .metro-hero__secondary {
    transition: none;
  }
}
/* ========================================
   Main Sections
======================================== */

.section-block {
  padding: var(--section-padding-desktop) 0;
}

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

.section-dark h2,
.section-dark .section-heading p,
.section-dark .about-copy p {
  color: var(--color-text-light);
}

.section-dark .section-heading p,
.section-dark .about-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.about-heading {
  margin-bottom: 3rem;
}

.about-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.about-copy {
  padding-top: 0.25rem;
}

.about-copy p {
  margin-top: 0;
}

.license-info {
  display: inline-block;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.license-info strong {
  color: #8db4ff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.service-item {
  height: 100%;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.service-item h3 a {
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}

.service-item h3 a:hover,
.service-item h3 a:focus-visible {
  color: var(--color-primary);
}

.service-item p,
.about-copy p,
.reviews-note p,
.service-area-copy p,
.contact-line p {
  margin-top: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.reviews-note,
.service-area-copy,
.contact-panel {
  border-top: 2px solid var(--color-secondary);
  padding-top: 1.25rem;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-area-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--color-secondary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.service-area-card:hover,
.service-area-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(10, 26, 47, 0.16);
  color: var(--color-text-light);
}

.service-area-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 21, 37, 0.92),
    rgba(7, 21, 37, 0.18)
  );
}

.service-area-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.35rem;
}

.service-area-card__content h3 {
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.service-area-card__content p {
  color: rgba(244, 247, 251, 0.92);
  line-height: 1.6;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-primary-active);
}

.contact-panel {
  display: grid;
  gap: 1.25rem;
}

.contact-line {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-line span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--color-primary);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.5rem;
}

.financing-section {
  padding: 4rem 0 5rem;
}

.financing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.financing-copy {
  max-width: 38rem;
}

.financing-copy .section-kicker {
  margin-bottom: 0.85rem;
}

.financing-copy h2 {
  margin-bottom: 1rem;
}

.financing-copy p {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.financing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.financing-card {
  display: grid;
  gap: 0.95rem;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  box-shadow: var(--shadow-soft);
}

.financing-card__kicker {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.financing-card__provider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.financing-card__provider img {
  width: auto;
  height: 1.75rem;
  object-fit: contain;
}

.financing-card__amount {
  margin: 0;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.financing-card__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.financing-card__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  color: var(--color-secondary);
  line-height: 1.6;
}

.financing-card__list li::marker {
  color: var(--color-primary);
}

.financing-page .section-kicker {
  margin-bottom: 0.9rem;
}

.financing-hero {
  padding-top: 4rem;
}

.financing-hero__layout {
  align-items: center;
}

.financing-hero__lead {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: var(--color-text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.financing-hero__actions,
.financing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.financing-card--featured {
  background: linear-gradient(180deg, #f9fbff 0%, #edf4ff 100%);
}

.financing-steps {
  background: var(--color-background-light);
}

.financing-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.financing-step {
  min-height: 100%;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-background);
  box-shadow: 0 8px 18px rgba(10, 26, 47, 0.04);
}

.financing-step__number {
  margin: 0 0 1rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.financing-step h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}

.financing-step p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.financing-details .financing-card {
  max-width: 780px;
  margin: 2.5rem auto 0;
}

.financing-card--wide {
  padding: 2.25rem 2rem;
}

.financing-card__list--wide {
  margin-top: 0.4rem;
}

.financing-services__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.financing-services__list li {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-background);
}

.financing-services__list a {
  color: var(--color-secondary);
  font-weight: 600;
  line-height: 1.5;
}

.financing-services__list a:hover,
.financing-services__list a:focus-visible {
  color: var(--color-primary);
}

.financing-cta {
  background: #f8fbff;
}

.financing-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.financing-cta__layout h2 {
  margin-bottom: 0.75rem;
}

.financing-cta__layout p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.financing-disclaimer {
  max-width: 980px;
  margin: 1.5rem auto 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  text-align: center;
}

.financing-service-cta {
  padding: 1.25rem 0 0;
}

.financing-service-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.financing-service-cta__inner p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.financing-service-cta__inner .btn {
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .financing-layout,
  .financing-cta__layout,
  .financing-steps__grid,
  .financing-services__list {
    grid-template-columns: 1fr 1fr;
  }

  .financing-layout {
    display: grid;
  }

  .financing-cta__layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 575.98px) {
  .financing-section,
  .financing-hero,
  .financing-steps,
  .financing-details,
  .financing-services,
  .financing-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .financing-layout,
  .financing-steps__grid,
  .financing-services__list {
    grid-template-columns: 1fr;
  }

  .financing-card,
  .financing-card--wide,
  .financing-cta__layout {
    padding: 1.25rem 1rem;
  }

  .financing-actions,
  .financing-hero__actions,
  .financing-cta__actions {
    flex-direction: column;
  }

  .financing-hero__actions .btn,
  .financing-actions .btn,
  .financing-cta__actions .btn {
    width: 100%;
  }

  .financing-service-cta__inner {
    align-items: stretch;
    padding: 1rem;
  }

  .financing-service-cta__inner .btn {
    width: 100%;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 1.45fr;
  grid-template-rows: repeat(6, 220px);
  gap: 0.75rem;
}
.mobile-services-container {
  display: none;
}
.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #1a1a1a;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.15));
}

.service-card__content {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  color: #fff;
}

.service-card h3::after {
  content: " →";
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover h3::after,
.service-card:focus-visible h3::after {
  opacity: 1;
}

.service-card p {
  margin-bottom: 0;
}

.service-card__meta {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card--featured {
  grid-column: 3;
  grid-row: 1 / 7;
}

.service-card--featured::after {
  background: linear-gradient(
    to top,
    rgba(13, 71, 161, 0.96),
    rgba(13, 72, 161, 0.259)
  );
}

.service-card--featured .service-card__content {
  inset: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: center;
  align-items: flex-start;
}

.service-card--featured .btn {
  margin-top: 1rem;
}
@media (max-width: 991.98px) {
  .service-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .service-card {
    min-height: 240px;
  }

  .service-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-call-text {
    color: #a61b1b;
    text-transform: uppercase;
    font-size: 0.75rem;
  }
  .service-card,
  .service-card--featured {
    grid-column: auto;
    min-height: 280px;
  }

  .service-card--featured {
    min-height: 440px;
  }

  .service-card--featured .service-card__content {
    justify-content: flex-end;
    height: 100%;
  }

  .service-card--featured .btn {
    margin-top: 1rem;
    align-self: stretch;
  }
}

/* ========================================
   Reviews
======================================== */

.review-list {
  max-width: 860px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--color-border);
}

.review-entry {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2rem 0;
}

.review-rating {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.review-body {
  padding-bottom: 0.25rem;
}

.review-quote {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-secondary);
}

.review-author {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.review-divider {
  position: relative;
  height: 1px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  background: var(--color-border);
}

.review-divider::before,
.review-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-primary);
  background: var(--color-background);
  border-radius: 50%;
  transform: translateY(-50%);
}

.review-divider::before {
  left: calc(50% - 28px);
}

.review-divider::after {
  right: calc(50% - 28px);
}

.reviews-cta {
  margin-top: 2.5rem;
  text-align: center;
}

@media (max-width: 575.98px) {
  .review-list {
    margin-top: 2rem;
  }

  .review-entry {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }

  .review-rating {
    font-size: 2rem;
  }
}
/* ========================================
   Buttons
======================================== */

.btn-metro-primary {
  border-color: var(--button-primary-background);
  background: var(--button-primary-background);
  color: var(--button-primary-text);
}

.btn-metro-primary:hover,
.btn-metro-primary:focus-visible {
  border-color: var(--button-primary-hover);
  background: var(--button-primary-hover);
  color: var(--button-primary-text);
}

.btn-metro-secondary {
  border-color: var(--button-secondary-border);
  color: var(--button-secondary-text);
  background: transparent;
}

.btn-metro-secondary:hover,
.btn-metro-secondary:focus-visible {
  border-color: var(--button-primary-hover);
  background: var(--button-primary-hover);
  color: var(--button-primary-text);
}

/* ========================================
   Request Service
======================================== */

.request-service-section {
  background: #f8fbff;
}

.contact-request-layout {
  display: grid;
  gap: 2rem;
}

.contact-request-column {
  min-width: 0;
}

.contact-request-column--info,
.contact-request-column--form {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.request-service-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.request-service-heading p:last-child {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.request-service-disclosure {
  margin: 0.9rem 0 0;
  color: #42546b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.thank-you-page__section {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.thank-you-page__layout {
  display: grid;
  place-items: center;
}

.thank-you-page__card {
  width: min(100%, 760px);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-large);
  background:
    linear-gradient(180deg, rgba(20, 86, 192, 0.05), rgba(20, 86, 192, 0)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(8, 37, 77, 0.08);
  text-align: center;
}

.thank-you-page__card h1 {
  margin-top: 0.85rem;
}

.thank-you-page__lead {
  max-width: 36rem;
  margin: 1.1rem auto 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.thank-you-page__emergency {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(20, 86, 192, 0.14);
  border-radius: var(--border-radius-medium);
  background: #f4f8ff;
}

.thank-you-page__emergency-label {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.thank-you-page__emergency-link {
  min-width: min(100%, 320px);
  margin-top: 1rem;
}

.thank-you-page__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.request-service-form {
  max-width: 980px;
}

.request-service-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.request-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .contact-request-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(2rem, 3vw, 3.25rem);
  }

  .contact-request-column--info {
    padding-right: 0.5rem;
  }

  .contact-request-column--form {
    padding-left: 0.5rem;
  }

  .contact-request-column--form .request-service-heading,
  .contact-request-column--form .request-service-form {
    max-width: none;
  }
}

.form-field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field-street {
  grid-column: 1;
}

.field-city {
  grid-column: 2;
}

.field-zip {
  grid-column: 3;
}

.field-half {
  grid-column: span 1;
}

.form-field label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--color-secondary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-size: 1rem;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6e7f97;
}

.form-field input:focus,
.form-field textarea:focus,
.service-widget__trigger:focus-visible,
.service-widget__close:focus-visible,
.service-widget__emergency:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.18);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #b3261e;
}

.field-error {
  margin: 0.5rem 0 0;
  color: #b3261e;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form__website-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__website-field input {
  min-height: 0;
  padding: 0;
  border: 0;
}
.mobile-only {
  display: none;
}

.request-service-actions {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.request-service-actions .btn {
  min-width: 230px;
}

.request-service-actions .btn[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.form-status {
  min-height: 1.5rem;
  padding-top: 0.15rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form-status.is-success {
  color: #146c2e;
}

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

.privacy-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.privacy-consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--color-primary);
}

.privacy-consent label {
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.65;
}

.privacy-consent a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.privacy-consent a:hover,
.privacy-consent a:focus-visible {
  color: var(--color-primary-active);
}

.service-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
}

.service-widget__trigger {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--button-primary-background);
  border-radius: var(--border-radius-small);
  background: var(--button-primary-background);
  color: var(--button-primary-text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(6, 27, 58, 0.18);
}

.service-widget__trigger:hover,
.service-widget__trigger:focus-visible {
  background: var(--button-primary-hover);
  border-color: var(--button-primary-hover);
  color: var(--button-primary-text);
}

.service-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.6rem);
  width: min(360px, calc(100vw - 1.5rem));
  max-height: min(78vh, 720px);
  overflow-y: auto;
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 27, 58, 0.14);
}

.service-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.service-widget__title {
  margin: 0;
  color: var(--color-secondary);
  font-size: 1.1rem;
}

.service-widget__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
  background: #fff;
  color: var(--color-secondary);
  font-size: 1.6rem;
  font-weight: 700;
}

.service-widget__close:hover,
.service-widget__close:focus-visible {
  border-color: var(--color-primary);
  background: #f4f8ff;
  color: var(--color-primary);
}

.service-widget__emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 46px;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 0.85rem;
  border-color: #c62828;
  border-style: solid;
  border-width: 1px;
  border-radius: var(--border-radius-small);
  background: #fff5f5;
  color: #8b1e1e;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.service-widget__emergency:hover,
.service-widget__emergency:focus-visible {
  border-color: #a61b1b;
  background: #ffe8e8;
  color: #7d1616;
}

.service-widget__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-widget__form {
  display: block;
}

.service-widget__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.service-widget__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-widget__grid .form-field label {
  font-size: 0.73rem;
  margin-bottom: 0.4rem;
}

.service-widget__grid .form-field input,
.service-widget__grid .form-field textarea {
  min-height: 48px;
  padding: 0.75rem 0.8rem;
  font-size: 0.95rem;
}

.service-widget__grid .form-field textarea {
  min-height: 120px;
}

.service-widget__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.service-widget__actions .btn {
  width: 100%;
  min-width: 0;
}

/* ========================================
   Policies
======================================== */

.policies-hero {
  padding-bottom: 2rem;
  background: #f8fbff;
}

.policies-heading {
  max-width: 760px;
}

.policies-heading p:last-child {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.policies-content {
  padding-top: 0;
}

.policies-layout {
  max-width: 860px;
}

.policy-section + .policy-section {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--color-border);
}

.policy-section h2 {
  margin-bottom: 0.9rem;
  color: var(--color-secondary);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.policy-section p {
  max-width: 72ch;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.policy-section p + p {
  margin-top: 1rem;
}

.policy-section-emphasis {
  padding: 1.75rem 0 0;
}

.policy-note {
  color: var(--color-secondary);
  font-weight: 600;
}

.policy-contact {
  padding-bottom: 0.25rem;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

/* ========================================
   Service Pages
======================================== */

.service-hero {
  padding-bottom: 2.5rem;
  background: #f8fbff;
}

.service-hero p:not(.section-kicker),
.service-details p,
.service-cta p {
  max-width: 64ch;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.service-hero__actions,
.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid #b3261e;
  border-radius: var(--border-radius-small);
  background: #fff4f4;
  color: #8b1e1e;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-emergency:hover,
.btn-emergency:focus-visible {
  border-color: #8f1b15;
  background: #ffe6e6;
  color: #741510;
}

.service-hero__image,
.service-detail__image {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-medium);
  background: #fff;
  object-fit: cover;
}

.service-hero__image {
  aspect-ratio: 4 / 3;
  padding: 0.5rem;
}

.service-detail__image {
  aspect-ratio: 5 / 4;
  padding: 0.5rem;
}

.section-service-detail,
.service-signs,
.service-cta {
  background: #f8fbff;
}

.service-includes,
.service-process {
  background: #fff;
}

.service-signs__layout {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.service-signs__media {
  min-width: 0;
}

.service-signs__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-medium);
  background: #fff;
  object-fit: cover;
  padding: 0.5rem;
}

.service-signs__caption {
  margin: 0.65rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-signs__layout .service-signs__list {
  max-width: none;
  margin-top: 0;
}

.service-page-backflow .service-signs__caption {
  margin-top: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
}

.service-page {
  --service-hero-height: clamp(470px, 58vh, 560px);
  --service-panel-padding: clamp(1.5rem, 3vw, 3rem);
  overflow-x: hidden;
  background: #eef4fb;
}

.service-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--color-border);
  background: #fff;
}

.service-before-after__item {
  position: relative;
  min-width: 0;
  min-height: clamp(280px, 30vw, 420px);
  margin: 0;
  overflow: hidden;
}

.service-before-after__item + .service-before-after__item {
  border-left: 2px solid #ffffff;
}

.service-before-after__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-before-after__item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.4rem 0.7rem;
  color: #ffffff;
  background: rgba(10, 26, 47, 0.84);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.service-page .service-detail__media {
  display: flex;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: #fff;
}

.service-page .section-block {
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.service-page .section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.9rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-page .section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  flex: 0 0 auto;
}

.service-page h1,
.service-page h2 {
  text-wrap: balance;
}

.service-page h1,
.service-page h2,
.service-page h3 {
  margin-top: 0;
}

.service-page h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
}

.service-page h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.service-page h1 + p,
.service-page h2 + p,
.service-page h3 + p {
  margin-top: 0;
}

.service-page h1 + p {
  margin-bottom: 1.75rem;
}

.service-page h2 + p {
  margin-bottom: 1rem;
}

.service-page p + p {
  margin-top: 1rem;
}

.service-page .service-hero__content > p,
.service-page .service-details p,
.service-page .service-cta p {
  max-width: 65ch;
}

.service-page .service-hero,
.service-page .service-proof,
.service-page .service-cta,
.service-page .service-video,
.service-page .service-signs,
.service-page .service-process,
.service-page .service-includes,
.service-page .section-service-detail {
  background: transparent;
}

.service-page .service-hero {
  overflow: hidden;
  padding-top: clamp(2rem, 4vw, 3rem);
}

.service-page .service-hero .container-xl,
.service-page .service-proof > .container-xl,
.service-page .service-cta .container-xl,
.service-page .service-signs > .container-xl,
.service-page .service-process > .container-xl,
.service-page .service-includes > .container-xl,
.service-page .section-service-detail > .container-xl {
  padding: var(--service-panel-padding);
  border: 1px solid var(--color-border);
  background: #fff;
}

.service-page .service-hero .container-xl {
  max-width: 1280px;
}

.service-page .service-hero .row,
.service-proof__single {
  align-items: stretch;
}

.service-page .service-hero__content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.service-page .service-hero__media {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.service-page .service-hero .service-detail__media {
  width: min(100%, 420px);
  margin-left: auto;
  background: #0d2038;
}

.service-hero__content--simple {
  min-height: auto;
  padding: 0;
}

.service-proof__header {
  max-width: 52rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.service-proof__header p:last-child {
  margin-bottom: 0;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.service-proof__gallery .service-before-after__item,
.service-proof__gallery .service-before-after__item img {
  min-height: clamp(280px, 28vw, 380px);
}

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

.service-proof__gallery--paired .service-before-after__item:nth-child(n + 3) {
  border-top: 2px solid #ffffff;
}

.service-proof__gallery--paired .service-before-after__item:nth-child(3) {
  border-left: 0;
}

/* ========================================
   Service Video
======================================== */

.service-video__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  grid-template-rows: auto 1fr;
  gap: 0 2.5rem;
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  background: #fff;
  position: relative;
}

.service-video__panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 90px;
  height: 4px;
  background: var(--color-primary);
}

.service-video__header {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.service-video__text {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.service-video__text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 60ch;
}

.service-video__media {
  grid-column: 2;
  grid-row: 1 / 3;
  border-left: 1px solid var(--color-border);
  padding-left: 2.5rem;
  display: flex;
  align-items: center;
}

.service-video__media video {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-medium);
  background: #000;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .service-video__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
    gap: 0 1.75rem;
    padding: 2rem;
  }
}

.tub-shower-process__image {
  aspect-ratio: 1 / 1;
}

.tub-shower-gallery__figure {
  display: flex;
  height: 100%;
  flex-direction: column;
  margin: 0;
}

.tub-shower-gallery__figure .service-detail__image {
  flex: 1 1 auto;
}

.tub-shower-process__figure .service-detail__image {
  min-height: clamp(260px, 28vw, 360px);
}

.tub-shower-valve__figure {
  max-width: 720px;
  margin-inline: auto;
}

.tub-shower-valve__figure .service-detail__image {
  aspect-ratio: 4 / 5;
  min-height: clamp(320px, 42vw, 560px);
}

.tub-shower-process__image--prep {
  object-position: 64% center;
}

.tub-shower-process__image--drain {
  object-position: 36% 80%;
}

.tub-shower-process__image--pan {
  object-position: 64% center;
}

.tub-shower-valve__image {
  object-position: center 78%;
}

.tub-shower-gallery__figure .service-signs__caption {
  min-height: 3.5rem;
  line-height: 1.45;
}

.service-proof__single {
  margin-top: 0.5rem;
  align-items: start;
}

.service-proof__single .service-detail__media {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-proof__single p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.service-proof__single .service-detail__image {
  min-height: clamp(240px, 24vw, 340px);
}

.service-page .service-details h2,
.service-page .service-signs h2,
.service-page .service-process h2 {
  max-width: 20ch;
}

.service-page .service-detail__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 28vw, 420px);
  aspect-ratio: auto;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.service-page .service-signs__row {
  margin-top: 1.5rem;
}

.service-page .service-signs__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-page .service-signs__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.service-safety-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid #b3261e;
  background: #f8fbff;
  color: var(--color-text);
}

.service-safety-notice h3 {
  margin: 0 0 0.5rem;
  color: var(--color-secondary);
  font-size: 1.05rem;
}

.service-safety-notice p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.service-benefits,
.service-signs__list {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
  padding-left: 0;
  margin: 1.5rem 0 0;
  color: var(--color-text-muted);
  list-style: none;
}

.service-benefits li,
.service-signs__list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.8;
  list-style: none;
}

.service-benefits li::before,
.service-signs__list li::before {
  content: "";
  position: absolute;
  top: 0.38rem;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--color-primary);
  -webkit-mask-image: url("../img/icons/valve-white.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icons/valve-white.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.service-benefits li::after,
.service-signs__list li::after {
  content: none;
}

.service-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.process-step {
  height: 100%;
  padding: 1.55rem 1.2rem 1.3rem;
  border: 1px solid var(--color-border);
  background: #fff;
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 50px;
  height: 4px;
  background: var(--color-primary);
}

.process-step__number {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 0.7rem;
  color: var(--color-secondary);
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.service-page-backflow .service-hero .service-detail__media {
  width: min(100%, 560px);
}

.service-page-backflow .service-proof__gallery .service-before-after__item,
.service-page-backflow .service-proof__gallery .service-before-after__item img {
  min-height: clamp(220px, 22vw, 300px);
}

.service-page-gas-line .service-proof__gallery .service-before-after__item,
.service-page-gas-line .service-proof__gallery .service-before-after__item img {
  min-height: clamp(240px, 24vw, 320px);
}

.tub-shower-gallery__figure .service-detail__image {
  min-height: clamp(280px, 26vw, 360px);
}

/* ========================================
   Service Spec Sheet - 1b Direction
======================================== */

.service-spec-page {
  --service-spec-tint: #c5d5e2;
  --service-spec-light-blue: #8fb6d6;
  --service-spec-border: rgba(16, 20, 24, 0.14);
}

.service-spec-kicker {
  margin: 0 0 0.85rem;
  color: var(--service-spec-light-blue);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-spec-kicker--blue {
  color: var(--color-primary);
}

.service-spec-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-spec-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: transparent;
}

.service-spec-button--ghost:hover,
.service-spec-button--ghost:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.service-spec-button--light {
  border: 0;
  color: var(--color-secondary);
  background: #ffffff;
}

.service-spec-button--light:hover,
.service-spec-button--light:focus-visible {
  color: var(--color-secondary);
  background: #eef4fb;
}

.service-spec-hero {
  background: var(--color-secondary);
  color: #ffffff;
}

.service-spec-hero__layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  min-height: 330px;
}

.service-spec-hero__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
}

.service-spec-hero__title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.service-spec-hero__lead {
  max-width: 48ch;
  margin: 0 0 1.5rem;
  color: #c7ccd2;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.service-spec-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-spec-hero__media {
  min-height: 100%;
}

.service-spec-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.service-spec-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.service-spec-hero__trust-item {
  padding: 0.85rem 1.25rem;
  color: #a8adb3;
  font-size: 0.75rem;
  line-height: 1.45;
}

.service-spec-hero__trust-item + .service-spec-hero__trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.service-spec-hero__trust-item strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

.service-spec-hero__trust-item--muted strong,
.service-spec-hero__trust-item--muted span {
  color: #8b9096;
}

.service-spec-scope,
.service-spec-proof,
.service-spec-video {
  background: #ffffff;
}

.service-spec-scope .container-xl,
.service-spec-proof .container-xl,
.service-spec-video .container-xl,
.service-spec-cta .container-xl {
  max-width: 1280px;
}

.service-spec-scope {
  border-bottom: 1px solid var(--service-spec-border);
}

.service-spec-scope__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.22fr) minmax(0, 1fr);
  padding: 2rem 0 0.625rem;
}

.service-spec-scope__intro {
  padding: 0 1.75rem 1.75rem 0;
}

.service-spec-scope__intro p:last-child {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.84375rem;
  line-height: 1.65;
}

.service-spec-scope__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--service-spec-border);
}

.service-spec-scope__item {
  padding: 0 1.25rem 1.75rem;
}

.service-spec-scope__number {
  margin: 0 0 0.45rem;
  color: var(--service-spec-tint);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.service-spec-scope__item h2 {
  margin: 0 0 0.35rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-spec-scope__item p:last-child {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.78125rem;
  line-height: 1.55;
}

.backflow-fees {
  padding: var(--section-padding-desktop) 0;
  border-bottom: 1px solid var(--service-spec-border);
  background: #f8fbff;
}

.backflow-fees__header {
  margin-bottom: 1.5rem;
}

.backflow-fees__header h2 {
  margin: 0;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.backflow-fees__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.backflow-fees__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--service-spec-border);
  border-top: 4px solid var(--color-primary);
  background: #ffffff;
}

.backflow-fees__quantity {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.backflow-fees__price {
  margin-top: 0.55rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.backflow-fees__unit {
  margin-top: 0.25rem;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

.backflow-fees__details {
  padding: 1.25rem 0 1.5rem;
}

.backflow-fees__details p {
  margin: 0;
  color: var(--color-secondary);
  font-weight: 600;
}

.backflow-fees__details .backflow-fees__note {
  margin-top: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 400;
}

.backflow-fees__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem;
  background: var(--color-secondary);
  color: #ffffff;
}

.backflow-fees__cta h3 {
  margin: 0 0 0.5rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.backflow-fees__cta p {
  max-width: 58ch;
  margin: 0;
  color: #c7ccd2;
  font-size: 0.875rem;
  line-height: 1.6;
}

.backflow-fees__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-spec-proof {
  padding: 1.9rem 0 0;
}

.service-spec-signs {
  padding: var(--section-padding-desktop) 0;
  background: #fff;
}

.service-spec-signs h2 {
  max-width: 50ch;
  margin-bottom: 1.75rem;
}

.service-spec-signs .service-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 2.5rem;
  max-width: none;
}

.service-spec-proof__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.125rem;
}

.service-spec-proof__title-wrap {
  max-width: 64ch;
}

.service-spec-proof__title-wrap h2 {
  margin: 0;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.125rem);
  font-weight: 600;
  line-height: 1.06;
}

.service-spec-proof__summary {
  max-width: 28ch;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--service-spec-border);
  border-left: 4px solid var(--color-primary);
  background: #f8fbff;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  line-height: 1.65;
}

.service-spec-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--service-spec-border);
}

.service-spec-gallery__item {
  margin: 0;
}

.service-spec-gallery__item + .service-spec-gallery__item {
  border-left: 1px solid var(--service-spec-border);
}

.service-spec-gallery__frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef4fb;
}

.service-spec-gallery__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-spec-gallery__item:last-child .service-spec-gallery__frame img {
  object-position: center top;
}

.service-spec-gallery figcaption {
  padding: 0.55rem 1rem 1rem;
  color: var(--color-text-muted);
  font-size: 0.71875rem;
  line-height: 1.4;
}

.service-spec-panel {
  margin-top: 1.5rem;
  border-top: 1px solid var(--service-spec-border);
  padding: 1.5rem 0 0;
}

.service-spec-panel--muted {
  border-top-style: dashed;
}

.service-spec-panel__content {
  max-width: 72ch;
}

.service-spec-panel__content h2 {
  margin: 0 0 0.75rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  font-weight: 600;
  line-height: 1.08;
}

.service-spec-panel__content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.service-spec-panel__content p + p {
  margin-top: 0.9rem;
}

.service-spec-video {
  border-top: 1px solid var(--service-spec-border);
}

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

.service-spec-video__media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #eef4fb;
}

.service-spec-video__media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  background: #000;
}

.service-spec-video__content {
  align-self: center;
  padding: 2.125rem 2rem;
  border-left: 1px solid var(--service-spec-border);
}

.service-spec-video__content h2 {
  margin: 0 0 0.8rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.8vw, 2.625rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.service-spec-video__content p:last-child {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.90625rem;
  line-height: 1.65;
}

.service-spec-cta {
  padding: 2.125rem 0;
  background: var(--color-secondary);
  color: #ffffff;
}

.service-spec-cta__layout {
  display: block;
}

.service-spec-cta__content {
  align-self: start;
  max-width: 72ch;
}

.service-spec-cta__content h2 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.375rem);
  font-weight: 600;
  line-height: 1.04;
}

.service-spec-cta__content p:not(.service-spec-kicker) {
  margin: 0 0 1.25rem;
  color: #a8adb3;
  font-size: 0.875rem;
  line-height: 1.65;
}

.service-spec-cta__form-wrap {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.375rem;
}

.service-spec-cta__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-spec-cta__form .form-field {
  margin: 0;
}

.service-spec-cta__form .form-field label {
  color: #d8dce1;
}

.service-spec-cta__form .form-field input,
.service-spec-cta__form .form-field textarea {
  border-color: rgba(255, 255, 255, 0.3);
  color: #f3f4f6;
  background: transparent;
}

.service-spec-cta__form .form-field input::placeholder,
.service-spec-cta__form .form-field textarea::placeholder {
  color: #8b9096;
}

.service-spec-cta__form .form-field input:focus,
.service-spec-cta__form .form-field textarea:focus,
.service-spec-cta__form .form-field input[aria-invalid="true"],
.service-spec-cta__form .form-field textarea[aria-invalid="true"] {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.service-spec-cta__privacy .privacy-consent input[type="checkbox"] {
  accent-color: #ffffff;
}

.service-spec-cta__privacy .privacy-consent label,
.service-spec-cta__privacy .privacy-consent a {
  color: #d8dce1;
}

.service-spec-cta__privacy .privacy-consent a:hover,
.service-spec-cta__privacy .privacy-consent a:focus-visible {
  color: #ffffff;
}

.service-spec-cta__form .field-error {
  color: #ffd5d5;
}

.service-spec-cta__form .form-status {
  color: #d8dce1;
}

.service-spec-cta__form .form-status.is-success {
  color: #bfe8bf;
}

.service-spec-cta__form .form-status.is-error {
  color: #ffd5d5;
}

.service-spec-cta__form-actions {
  margin-top: 1rem;
}

.service-spec-cta__form-actions .btn {
  width: 100%;
}

@media (max-width: 991.98px) {
  .backflow-fees__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .backflow-fees__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-spec-hero__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-spec-hero__media img {
    min-height: 360px;
  }

  .service-spec-hero__trust,
  .service-spec-scope__grid,
  .service-spec-gallery,
  .service-spec-cta__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-spec-scope__layout,
  .service-spec-video__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-spec-scope__intro,
  .service-spec-video__content {
    padding-right: 0;
    border-left: 0;
  }

  .service-spec-scope__grid {
    border-left: 0;
    border-top: 1px solid var(--service-spec-border);
    padding-top: 1.5rem;
  }

  .service-spec-proof__header {
    flex-direction: column;
    align-items: start;
  }

  .service-spec-proof__summary {
    max-width: 60ch;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .backflow-fees {
    padding: var(--section-padding-mobile) 0;
  }

  .backflow-fees__grid {
    grid-template-columns: 1fr;
  }

  .backflow-fees__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.2rem 1rem;
  }

  .backflow-fees__price {
    grid-row: span 2;
    margin-top: 0;
  }

  .backflow-fees__cta {
    padding: 1.25rem;
  }

  .backflow-fees__actions,
  .backflow-fees__actions .btn {
    width: 100%;
  }

  .service-spec-signs .service-benefits {
    grid-template-columns: 1fr;
  }

  .service-spec-hero__content {
    padding: 1.75rem 1rem;
  }

  .service-spec-hero__title {
    font-size: clamp(2.875rem, 15vw, 4.25rem);
  }

  .service-spec-hero__actions {
    flex-direction: column;
  }

  .service-spec-hero__actions .btn,
  .service-spec-cta__content .btn,
  .service-spec-cta__form-actions .btn {
    width: 100%;
  }

  .service-spec-hero__trust,
  .service-spec-scope__grid,
  .service-spec-gallery,
  .service-spec-cta__layout,
  .service-spec-cta__form-grid {
    grid-template-columns: 1fr;
  }

  .service-spec-hero__trust-item + .service-spec-hero__trust-item,
  .service-spec-gallery__item + .service-spec-gallery__item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-spec-gallery__item + .service-spec-gallery__item {
    border-top-color: var(--service-spec-border);
  }

  .service-spec-scope__layout {
    padding-top: 1.5rem;
  }

  .service-spec-scope__grid {
    padding-top: 1rem;
  }

  .service-spec-scope__item {
    padding: 0 0 1.25rem;
  }

  .service-spec-video__content,
  .service-spec-cta__form-wrap {
    padding: 1.5rem 1rem;
  }

  .service-spec-video__media,
  .service-spec-video__media video {
    min-height: 240px;
  }
}

/* ========================================
   Forms
======================================== */

input,
select,
textarea {
  border-radius: var(--border-radius-small);
  border: 1px solid var(--color-border);
}

/* ========================================
   Footer
======================================== */

.site-footer {
  padding: 2rem 0 1.15rem;
  background: var(--color-secondary);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-column {
  min-width: 0;
}

.footer-kicker {
  margin: 0 0 0.6rem;
  color: #8db4ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.footer-business p,
.footer-license {
  margin: 0 0 0.7rem;
  line-height: 1.7;
}

.footer-business strong,
.footer-license strong {
  color: #fff;
}

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

.footer-links a,
.footer-business a,
.footer-layout a {
  color: #fff;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-business a:hover,
.footer-business a:focus-visible,
.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: #8db4ff;
}

.footer-social a {
  width: fit-content;
}

.footer-license {
  padding-bottom: 1rem;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  width: min(calc(100vw - 2rem), 520px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.cookie-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-banner__inner {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(20, 86, 192, 0.2);
  border-radius: var(--border-radius-medium);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(10, 26, 47, 0.18);
}

.cookie-consent-banner__title {
  color: var(--color-secondary);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.cookie-consent-banner__description {
  margin-top: 0.55rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-consent-banner__actions .btn {
  min-width: 160px;
}

.cookie-consent-banner__link {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-consent-banner__link:hover,
.cookie-consent-banner__link:focus-visible {
  color: var(--color-primary-active);
}

.pipes-container {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.left-pipe,
.right-pipe {
  flex: 1 1 0;
  height: 25px;
  background-color: #000;
}

.valve-icon {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
}

/* ========================================
   Accessibility
======================================== */

[aria-hidden="true"] {
  pointer-events: none;
}

/* ========================================
   Responsive Breakpoints
======================================== */

@media (max-width: 1199.98px) {
  .nav-desktop-group {
    gap: 0.95rem;
  }

  .nav-desktop-link,
  .nav-link-button {
    font-size: 0.84rem;
  }

  .desktop-brand img {
    width: 138px;
  }

  .emergency-call-btn {
    min-width: 168px;
    padding-inline: 0.8rem;
  }

  .request-service-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }

  .field-street,
  .field-city,
  .field-zip,
  .field-half {
    grid-column: auto;
  }
}

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

  .section-block {
    padding: var(--section-padding-mobile) 0;
  }

  .metro-hero {
    min-height: 700px;
  }

  .metro-hero__container {
    min-height: 700px;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }

  .metro-hero__media img {
    object-position: 78% center;
  }

  .contact-line a {
    font-size: 1.35rem;
  }

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

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

  .service-signs__layout {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  }

  .service-page {
    --service-hero-height: 340px;
  }

  .service-page .service-hero__content {
    min-height: auto;
    padding: 3rem 1rem 2rem;
  }

  .service-page .service-hero__media,
  .service-page .service-hero__image,
  .service-before-after__item,
  .service-before-after__item img {
    min-height: var(--service-hero-height);
  }

  .service-page .service-detail__image {
    min-height: 340px;
  }

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

@media (min-width: 992px) and (max-width: 1279.98px) {
  .service-page {
    --service-hero-height: clamp(440px, 54vh, 500px);
  }
}

@media (max-width: 767.98px) {
  .metro-hero {
    min-height: clamp(850px, 100svh, 950px);
  }

  .metro-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 8, 16, 0.58) 0%,
        rgba(3, 8, 16, 0.24) 28%,
        rgba(3, 8, 16, 0.14) 48%,
        rgba(3, 8, 16, 0.72) 100%
      ),
      linear-gradient(
        90deg,
        rgba(3, 8, 16, 0.82) 0%,
        rgba(6, 14, 26, 0.62) 42%,
        rgba(7, 21, 37, 0.22) 78%,
        rgba(7, 21, 37, 0.04) 100%
      ),
      radial-gradient(
        circle at 24% 18%,
        rgba(20, 86, 192, 0.16) 0%,
        rgba(20, 86, 192, 0) 36%
      );
  }

  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .metro-hero__container {
    align-items: flex-start;
    min-height: clamp(850px, 100svh, 950px);
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
  }

  .metro-hero__content {
    max-width: min(100%, 24rem);
    padding-right: 0.25rem;
  }

  .metro-hero__media img {
    object-position: 68% 78%;
    transform: scale(0.92);
    transform-origin: center;
  }

  .metro-hero__title {
    font-size: clamp(3.45rem, 15vw, 5rem);
    line-height: 0.9;
  }
  .metro-hero__actions {
    margin-top: auto;
  }

  .metro-hero__title-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .metro-hero__description {
    max-width: 22rem;
    font-size: clamp(0.98rem, 4.4vw, 1.08rem);
  }

  .metro-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .metro-hero__primary,
  .metro-hero__secondary {
    width: 100%;
    min-height: 52px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .request-service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .field-full,
  .field-street,
  .field-city,
  .field-zip,
  .field-half {
    grid-column: auto;
  }

  .request-service-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .request-service-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .service-hero {
    padding-bottom: 2rem;
  }

  .service-hero__actions,
  .service-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-hero__actions .btn,
  .service-cta__actions .btn {
    width: 100%;
  }

  .service-process__grid {
    grid-template-columns: 1fr;
  }

  .service-signs__layout {
    grid-template-columns: 1fr;
  }

  .service-page .section-block {
    padding-block: 3rem;
  }

  .service-video__panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .service-video__header {
    order: 1;
  }

  .service-video__media {
    order: 2;
    border-left: 0;
    padding-left: 0;
  }

  .service-video__media video {
    max-width: 560px;
  }

  .service-video__text {
    order: 3;
  }

  .policy-actions {
    flex-direction: column;
  }

  .policy-actions .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .service-widget {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-heading {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-actions-mobile {
    align-self: flex-end;
  }
  .service-page {
    --service-hero-height: 250px;
  }

  .service-before-after {
    grid-template-columns: 1fr;
  }

  .service-before-after__item + .service-before-after__item {
    border-top: 2px solid #ffffff;
    border-left: 0;
  }

  .service-before-after__item,
  .service-before-after__item img {
    min-height: var(--service-hero-height);
  }

  .service-page .service-signs__media {
    aspect-ratio: 16 / 10;
    max-height: 260px;
  }

  .tub-shower-gallery__figure .service-signs__caption {
    min-height: 0;
  }

  .tub-shower-process__figure .service-detail__image,
  .tub-shower-valve__figure .service-detail__image {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .mobile-brand img,
  .mobile-offcanvas-brand img {
    width: 84px;
  }

  .metro-hero__title {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .metro-hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .metro-hero__description {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .metro-hero__primary,
  .metro-hero__secondary {
    min-height: 48px;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
  }

  .request-service-heading {
    margin-bottom: 2rem;
  }

  .thank-you-page__emergency-link,
  .thank-you-page__actions .btn {
    width: 100%;
  }

  .form-field input,
  .form-field textarea {
    padding: 0.85rem 0.9rem;
  }

  .service-widget {
    right: 0.65rem;
    bottom: 0.65rem;
    gap: 0.5rem;
  }

  .service-widget__trigger {
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
  }

  .service-widget__panel {
    width: min(340px, calc(100vw - 1.3rem));
  }

  .service-widget__grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }
}

@media (max-width: 375px) {
  .mobile-offcanvas {
    width: 100%;
  }
}

/* ========================================
   Reduced Motion
======================================== */

@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;
    scroll-behavior: auto !important;
  }
}
