@import url("../fonts/Tanker_Complete/Fonts/WEB/css/tanker.css");
@import url("../fonts/Switzer_Complete/Fonts/WEB/css/switzer.css");

:root {
  /* Canonical breakpoint tokens */
  --bp-mobile-max: 767px;
  --bp-small-mobile-max: 480px;
  --bp-tablet-min: 768px;
  --bp-tablet-max: 1023px;
  --bp-laptop-min: 1024px;
  --bp-laptop-max: 1439px;
  --bp-desktop-min: 1440px;

  /* Header spacer fallbacks per tier (JS measures live heights) */
  --header-spacer-full: 138px;
  --header-spacer-shell: 108px;
  --header-spacer-tablet: 112px;
  --header-spacer-mobile: 104px;

  --brand-red: #b92d2d;
  --brand-red-rgb: 185, 45, 45;
  --brand-red-light: #d44a4a;
  --brand-red-lighter: #e05c5c;
  --brand-red-dark: #962525;
  --brand-red-darker: #7a1e1e;
  --brand-red-muted: #f2d4d4;
  --brand-red-soft: rgba(185, 45, 45, 0.1);
  --brand-red-icon-filter: brightness(0) saturate(100%) invert(24%) sepia(78%)
    saturate(1742%) hue-rotate(338deg) brightness(88%) contrast(92%);
  --google-star: #fbbc04;
  --google-star-rgb: 251, 188, 4;
  --google-star-empty: rgba(251, 188, 4, 0.26);
  --brand-accent-width: clamp(3px, 0.4vw, 4px);
  --brand-accent-bevel: 7px;
  --brand-accent-slice: 2px;
  --nav-black: #0a0a0a;
  --font-title: "Tanker-Regular", sans-serif;
  --font-body: "Switzer-Regular", system-ui, sans-serif;
  --nav-topbar-seo-gap: 12px;
  --nav-inline-pad: clamp(56px, 6vw, 112px);
  --nav-link-gap: 36px;
  --nav-link-tracking: 0.075em;
  --nav-divider-color: rgba(210, 210, 210, 0.28);
  --nav-divider-glow: rgba(255, 255, 255, 0.06);
  --metal-texture-url: url("../assets/textures/Metal009_4K-JPG_Color.jpg");
  --metal-texture-size: cover;
  --metal-texture-repeat: no-repeat;
  --metal-texture-position: center;
  --metal-texture-filter: grayscale(1) brightness(0.26) contrast(1.06);
  --metal-scratch-lines: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 2px,
    rgba(255, 255, 255, 0.018) 3px,
    transparent 4px,
    transparent 7px
  );
  --metal-depth-overlay:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0) 14%,
      rgba(0, 0, 0, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.46) 100%
    );
  --metal-inset-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --metal-inset-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.65);
}

@property --nav-frame-h {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --nav-frame-v {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  overflow-x: clip;
  overflow-anchor: none;
}

body {
  margin: 0;
  background-color: #f2f2f2;
  color: #101010;
}

.site-header {
  width: 100%;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background-color: #000000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
  transition: none;
}

.site-nav.is-animating {
  backface-visibility: hidden;
  will-change: transform;
}

.site-nav.is-animating[data-nav-motion="hide"] {
  transition: transform 0.44s cubic-bezier(0.4, 0, 0.78, 1);
}

.site-nav.is-animating[data-nav-motion="show"] {
  transition: transform 0.56s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-spacer {
  width: 100%;
  height: var(--header-spacer-full);
  pointer-events: none;
  transition: none;
}

.site-header-spacer.is-animating {
  transition: height 0.56s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-topbar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000000;
  border-bottom: 1px solid var(--nav-divider-color);
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition:
    clip-path 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom-color 0.38s ease;
}

.site-nav[data-nav-state="compact"] .nav-topbar,
.site-nav[data-nav-state="hidden"][data-nav-hide-tier="shell"] .nav-topbar {
  display: none;
}

.site-nav[data-nav-state="full"] .nav-topbar {
  display: block;
}

.site-nav[data-nav-motion="hide"] .nav-topbar,
.site-nav[data-nav-motion="show"] .nav-topbar {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .nav-topbar,
  .site-header-spacer {
    transition: none !important;
  }
}

.nav-topbar-inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  min-height: 30px;
  padding-block: 6px;
  padding-inline: var(--nav-inline-pad);
  box-sizing: border-box;
}

.nav-topbar-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-topbar-location:hover {
  color: #ffffff;
}

.nav-topbar-pin {
  display: inline-block;
  flex-shrink: 0;
  width: 11px;
  aspect-ratio: 112 / 155.53;
  background-color: var(--brand-red);
  -webkit-mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain no-repeat;
  mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain no-repeat;
}

.nav-topbar-divider {
  flex: 0 0 auto;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.nav-topbar-seo {
  display: inline-flex;
  align-items: center;
  gap: var(--nav-topbar-seo-gap);
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-topbar-seo > span:not(.nav-topbar-dot) {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.nav-topbar-dot {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brand-red);
}

.nav-topbar-fast {
  margin-left: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.nav-topbar-fast-mark {
  display: block;
  height: 18px;
  width: auto;
}

.nav-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  min-height: 108px;
  padding: 14px var(--nav-inline-pad);
  box-sizing: border-box;
  overflow: visible;
  background-image: var(--metal-scratch-lines);
  box-shadow: var(--metal-inset-highlight), var(--metal-inset-shadow);
}

/* Layer 1: metal texture, pre-darkened — no blend modes */
.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--metal-texture-url);
  background-size: var(--metal-texture-size);
  background-repeat: var(--metal-texture-repeat);
  background-position: var(--metal-texture-position);
  filter: var(--metal-texture-filter);
  pointer-events: none;
}

/* Layer 2: black veil + linear depth (no radial gradients) */
.nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--metal-depth-overlay);
  pointer-events: none;
}

.nav-shell > * {
  position: relative;
  z-index: 1;
}

.nav-logo-link {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
}

.nav-logo {
  width: 148px;
  display: block;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--nav-link-gap);
  flex: 0 1 auto;
  min-width: 0;
  margin-left: clamp(40px, 4.2vw, 64px);
}

/* LOCKED: Nav link hover — frame draw + opacity-fade neon glow. Do not modify. */
.nav-links a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 1.35vw, 1.5rem);
  letter-spacing: var(--nav-link-tracking);
  line-height: 1;
  padding: 0;
  white-space: nowrap;
  text-shadow: none;
  z-index: 1;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: -12px;
  right: -18px;
  bottom: -12px;
  left: -18px;
  transform: skewX(-14deg);
  pointer-events: none;
  z-index: -1;
  --nav-frame-h: 0%;
  --nav-frame-v: 0%;
  opacity: 0;
  background-color: transparent;
  background-image:
    linear-gradient(var(--brand-red), var(--brand-red)),
    linear-gradient(var(--brand-red), var(--brand-red)),
    linear-gradient(var(--brand-red), var(--brand-red)),
    linear-gradient(var(--brand-red), var(--brand-red));
  background-repeat: no-repeat;
  background-size:
    var(--nav-frame-h) 2px,
    var(--nav-frame-h) 2px,
    2px var(--nav-frame-v),
    2px var(--nav-frame-v);
  background-position:
    center top,
    center bottom,
    left top,
    right bottom;
  box-shadow: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -16px;
  bottom: -10px;
  left: -16px;
  transform: skewX(-14deg) translateZ(0);
  pointer-events: none;
  z-index: -2;
  opacity: 0;
  background: rgba(200, 68, 68, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(0, 0, 0, 0.34),
    0 0 12px rgba(200, 68, 68, 0.7),
    0 0 28px rgba(200, 68, 68, 0.5),
    0 0 48px rgba(200, 68, 68, 0.28);
  backface-visibility: hidden;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::before {
  animation: navLinkFrameDraw 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-links a:hover::after {
  animation: navLinkNeonGlow 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-links a:not(:hover)::before {
  animation: none;
  --nav-frame-h: 0%;
  --nav-frame-v: 0%;
  box-shadow: none;
  filter: none;
  opacity: 0;
}

.nav-links a:not(:hover)::after {
  animation: none;
  opacity: 0;
  background: rgba(200, 68, 68, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(0, 0, 0, 0.34),
    0 0 12px rgba(200, 68, 68, 0.7),
    0 0 28px rgba(200, 68, 68, 0.5),
    0 0 48px rgba(200, 68, 68, 0.28);
}

.nav-links a:not(:hover) {
  animation: none;
  text-shadow: none;
}

.nav-links a[aria-current="page"] {
  color: #ffffff;
}

.nav-links a[aria-current="page"]::before {
  animation: none;
  --nav-frame-h: 100%;
  --nav-frame-v: 100%;
  opacity: 1;
}

.nav-links a[aria-current="page"]::after {
  animation: none;
  opacity: 1;
}

.nav-links a[aria-current="page"]:not(:hover) {
  text-shadow: none;
}

@keyframes navLinkFrameDraw {
  0% {
    --nav-frame-h: 0%;
    --nav-frame-v: 0%;
    opacity: 0;
    box-shadow: none;
  }

  5% {
    --nav-frame-h: 0%;
    --nav-frame-v: 0%;
    opacity: 1;
    box-shadow: none;
  }

  28% {
    --nav-frame-h: 100%;
    --nav-frame-v: 0%;
    opacity: 1;
    box-shadow: none;
  }

  100% {
    --nav-frame-h: 100%;
    --nav-frame-v: 100%;
    opacity: 1;
    box-shadow: none;
  }
}

@keyframes navLinkNeonGlow {
  0%,
  52% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-block;
}

@media (min-width: 981px) {
  .nav-dropdown--services.is-open > .nav-dropdown__trigger:not(:hover)::before {
    animation: none;
    --nav-frame-h: 100%;
    --nav-frame-v: 100%;
    opacity: 1;
  }

  .nav-dropdown--services.is-open > .nav-dropdown__trigger:not(:hover)::after {
    animation: none;
    opacity: 1;
  }

  .nav-dropdown--services::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 28px;
    pointer-events: auto;
  }

  .nav-links {
    position: relative;
  }

  .services-mega-menu {
    position: fixed;
    top: var(--services-mega-menu-top, 108px);
    left: var(--services-mega-menu-left, 0);
    width: var(--services-mega-menu-width, auto);
    z-index: 1001;
    background-color: var(--nav-black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -3px, 0);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .services-mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .services-mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -24px;
    height: 24px;
    pointer-events: auto;
  }

  .services-mega-menu__inner {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 18px 22px 22px;
  }

  .services-mega-menu__accent {
    flex: 0 0 1px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
  }

  .services-mega-menu__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 32px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .services-mega-menu__grid::before,
  .services-mega-menu__grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
  }

  .services-mega-menu__grid::before {
    left: calc((100% - 64px) / 3 + 16px);
  }

  .services-mega-menu__grid::after {
    left: calc((200% - 128px) / 3 + 48px);
  }

  .services-mega-menu__col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
  }

  .services-mega-menu__heading {
    margin: 0 0 12px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-transform: uppercase;
    color: #ffffff;
  }

  .services-mega-menu__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-body);
  }

  .services-mega-menu__list li {
    margin: 0;
    padding: 0;
  }

  .services-mega-menu .services-mega-menu__link,
  .nav-links .services-mega-menu .services-mega-menu__link {
    position: static;
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    text-transform: none;
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 0.92vw, 0.88rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.01em;
    line-height: 1.4;
    padding: 0;
    white-space: normal;
    text-shadow: none;
    transform: none;
    backface-visibility: visible;
    isolation: auto;
    z-index: auto;
    transition: color 0.18s ease;
  }

  .services-mega-menu .services-mega-menu__link::before,
  .services-mega-menu .services-mega-menu__link::after,
  .nav-links .services-mega-menu .services-mega-menu__link::before,
  .nav-links .services-mega-menu .services-mega-menu__link::after {
    content: none;
    display: none;
    animation: none;
    opacity: 0;
    box-shadow: none;
    background: none;
  }

  .services-mega-menu .services-mega-menu__link:hover,
  .services-mega-menu .services-mega-menu__link:focus-visible,
  .services-mega-menu .services-mega-menu__link:active,
  .nav-links .services-mega-menu .services-mega-menu__link:hover,
  .nav-links .services-mega-menu .services-mega-menu__link:focus-visible,
  .nav-links .services-mega-menu .services-mega-menu__link:active {
    color: var(--brand-red);
    animation: none;
    text-shadow: none;
  }

  .services-mega-menu .services-mega-menu__link[aria-current="page"],
  .nav-links .services-mega-menu .services-mega-menu__link[aria-current="page"] {
    color: var(--brand-red);
  }

  .services-mega-menu .services-mega-menu__link[aria-current="page"]:hover,
  .services-mega-menu .services-mega-menu__link[aria-current="page"]:focus-visible,
  .services-mega-menu .services-mega-menu__link[aria-current="page"]:active,
  .nav-links .services-mega-menu .services-mega-menu__link[aria-current="page"]:hover,
  .nav-links .services-mega-menu .services-mega-menu__link[aria-current="page"]:focus-visible,
  .nav-links .services-mega-menu .services-mega-menu__link[aria-current="page"]:active {
    color: var(--brand-red-light);
  }

  .services-mega-menu .services-mega-menu__link--all,
  .nav-links .services-mega-menu .services-mega-menu__link--all {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-weight: 400;
  }

  .services-mega-menu .services-mega-menu__link--all:hover,
  .services-mega-menu .services-mega-menu__link--all:focus-visible,
  .services-mega-menu .services-mega-menu__link--all:active,
  .nav-links .services-mega-menu .services-mega-menu__link--all:hover,
  .nav-links .services-mega-menu .services-mega-menu__link--all:focus-visible,
  .nav-links .services-mega-menu .services-mega-menu__link--all:active {
    color: var(--brand-red);
  }

  .services-mega-menu .services-mega-menu__link--all[aria-current="page"],
  .nav-links .services-mega-menu .services-mega-menu__link--all[aria-current="page"] {
    color: var(--brand-red);
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: reduce) {
  .services-mega-menu {
    transition: none;
    transform: none;
  }

  .services-mega-menu.is-open {
    transform: none;
  }
}

.nav-actions {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.2vw, 14px);
  margin-left: auto;
  flex-shrink: 0;
  overflow: visible;
}

.nav-phone,
.nav-directions {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 0 0 auto;
  flex-shrink: 0;
  border: 2px solid var(--brand-red);
  transform: skewX(-14deg);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.28);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}

.nav-phone {
  padding: 14px 26px;
}

.nav-directions {
  padding: 14px 16px;
}

/* LOCKED: Phone/directions hover neon animations — do not modify. */
.nav-phone:hover,
.nav-directions:hover {
  animation: phoneNeonIgnite 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes phoneNeonIgnite {
  0% {
    border-color: #c84444;
    background: rgba(0, 0, 0, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 8px 18px rgba(0, 0, 0, 0.28);
  }

  10% {
    border-color: #d45252;
    background: rgba(200, 68, 68, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 18px rgba(0, 0, 0, 0.3),
      0 0 7px rgba(200, 68, 68, 0.46),
      0 0 16px rgba(200, 68, 68, 0.26);
  }

  18% {
    border-color: #ca4848;
    background: rgba(200, 68, 68, 0.06);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 8px 18px rgba(0, 0, 0, 0.29),
      0 0 5px rgba(200, 68, 68, 0.3),
      0 0 12px rgba(200, 68, 68, 0.16);
  }

  28% {
    border-color: #e25656;
    background: rgba(200, 68, 68, 0.13);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 9px 20px rgba(0, 0, 0, 0.31),
      0 0 10px rgba(200, 68, 68, 0.58),
      0 0 22px rgba(200, 68, 68, 0.34);
  }

  38% {
    border-color: #de5252;
    background: rgba(200, 68, 68, 0.11);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.09),
      0 9px 20px rgba(0, 0, 0, 0.32),
      0 0 8px rgba(200, 68, 68, 0.48),
      0 0 18px rgba(200, 68, 68, 0.28);
  }

  52% {
    border-color: #e45a5a;
    background: rgba(200, 68, 68, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 10px 21px rgba(0, 0, 0, 0.33),
      0 0 10px rgba(200, 68, 68, 0.6),
      0 0 24px rgba(200, 68, 68, 0.38);
  }

  66% {
    border-color: #e85a5a;
    background: rgba(200, 68, 68, 0.15);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.11),
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 11px rgba(200, 68, 68, 0.66),
      0 0 26px rgba(200, 68, 68, 0.44);
  }

  78% {
    border-color: #ec6262;
    background: rgba(200, 68, 68, 0.17);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 13px rgba(200, 68, 68, 0.74),
      0 0 30px rgba(200, 68, 68, 0.52),
      0 0 50px rgba(200, 68, 68, 0.3);
  }

  100% {
    border-color: #e85a5a;
    background: rgba(200, 68, 68, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 12px rgba(200, 68, 68, 0.7),
      0 0 28px rgba(200, 68, 68, 0.5),
      0 0 48px rgba(200, 68, 68, 0.28);
  }
}

@keyframes phoneNeonOuterGlow {
  0% {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  }

  10% {
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.3),
      0 0 7px rgba(200, 68, 68, 0.46),
      0 0 16px rgba(200, 68, 68, 0.26);
  }

  18% {
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.29),
      0 0 5px rgba(200, 68, 68, 0.3),
      0 0 12px rgba(200, 68, 68, 0.16);
  }

  28% {
    box-shadow:
      0 9px 20px rgba(0, 0, 0, 0.31),
      0 0 10px rgba(200, 68, 68, 0.58),
      0 0 22px rgba(200, 68, 68, 0.34);
  }

  38% {
    box-shadow:
      0 9px 20px rgba(0, 0, 0, 0.32),
      0 0 8px rgba(200, 68, 68, 0.48),
      0 0 18px rgba(200, 68, 68, 0.28);
  }

  52% {
    box-shadow:
      0 10px 21px rgba(0, 0, 0, 0.33),
      0 0 10px rgba(200, 68, 68, 0.6),
      0 0 24px rgba(200, 68, 68, 0.38);
  }

  66% {
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 11px rgba(200, 68, 68, 0.66),
      0 0 26px rgba(200, 68, 68, 0.44);
  }

  78% {
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 13px rgba(200, 68, 68, 0.74),
      0 0 30px rgba(200, 68, 68, 0.52),
      0 0 50px rgba(200, 68, 68, 0.3);
  }

  100% {
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 12px rgba(200, 68, 68, 0.7),
      0 0 28px rgba(200, 68, 68, 0.5),
      0 0 48px rgba(200, 68, 68, 0.28);
  }
}

.nav-phone:hover .nav-phone-number::after {
  animation: phoneNeonNumberGlow 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-directions:hover .nav-directions-inner {
  animation: phoneNeonText 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes phoneNeonNumberGlow {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0.75;
  }

  18% {
    opacity: 0.5;
  }

  28% {
    opacity: 0.95;
  }

  38% {
    opacity: 0.82;
  }

  52% {
    opacity: 0.9;
  }

  66% {
    opacity: 0.96;
  }

  78% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes phoneNeonText {
  0% {
    text-shadow: none;
  }

  10% {
    text-shadow:
      0 0 4px rgba(200, 68, 68, 0.42),
      0 0 10px rgba(200, 68, 68, 0.22);
  }

  18% {
    text-shadow:
      0 0 3px rgba(200, 68, 68, 0.28),
      0 0 8px rgba(200, 68, 68, 0.14);
  }

  28% {
    text-shadow:
      0 0 6px rgba(200, 68, 68, 0.55),
      0 0 14px rgba(200, 68, 68, 0.32);
  }

  38% {
    text-shadow:
      0 0 5px rgba(200, 68, 68, 0.45),
      0 0 12px rgba(200, 68, 68, 0.26);
  }

  52% {
    text-shadow:
      0 0 6px rgba(200, 68, 68, 0.52),
      0 0 14px rgba(200, 68, 68, 0.3);
  }

  66% {
    text-shadow:
      0 0 7px rgba(200, 68, 68, 0.58),
      0 0 15px rgba(200, 68, 68, 0.34);
  }

  78% {
    text-shadow:
      0 0 9px rgba(200, 68, 68, 0.62),
      0 0 18px rgba(200, 68, 68, 0.36);
  }

  100% {
    text-shadow:
      0 0 8px rgba(200, 68, 68, 0.5),
      0 0 16px rgba(200, 68, 68, 0.28);
  }
}

.nav-phone-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: skewX(14deg) translateZ(0);
  backface-visibility: hidden;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.nav-phone-number {
  position: relative;
  display: inline-block;
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  text-shadow: none;
}

.nav-phone-number::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: inherit;
  pointer-events: none;
  z-index: -1;
  text-shadow:
    0 0 8px rgba(200, 68, 68, 0.5),
    0 0 16px rgba(200, 68, 68, 0.28);
  opacity: 0;
  backface-visibility: hidden;
}

.nav-phone:not(:hover) .nav-phone-number::after {
  animation: none;
}

.nav-directions-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: skewX(14deg);
  line-height: 0;
}

.nav-phone-inner img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(316deg) brightness(95%) contrast(95%);
  transition: filter 0.2s ease;
}

.nav-directions-inner img {
  width: 22px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(316deg) brightness(95%) contrast(95%);
  transition: filter 0.2s ease;
}

.nav-phone:hover .nav-phone-inner img,
.nav-directions:hover .nav-directions-inner img {
  animation: phoneNeonIcon 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes phoneNeonIcon {
  0% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%);
  }

  10% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 3px rgba(200, 68, 68, 0.65))
      drop-shadow(0 0 8px rgba(200, 68, 68, 0.38));
  }

  18% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 2px rgba(200, 68, 68, 0.45))
      drop-shadow(0 0 6px rgba(200, 68, 68, 0.24));
  }

  28% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 4px rgba(200, 68, 68, 0.78))
      drop-shadow(0 0 11px rgba(200, 68, 68, 0.48));
  }

  38% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 3px rgba(200, 68, 68, 0.68))
      drop-shadow(0 0 9px rgba(200, 68, 68, 0.4));
  }

  52% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 4px rgba(200, 68, 68, 0.82))
      drop-shadow(0 0 10px rgba(200, 68, 68, 0.52));
  }

  66% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 4px rgba(200, 68, 68, 0.86))
      drop-shadow(0 0 10px rgba(200, 68, 68, 0.56));
  }

  78% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 5px rgba(200, 68, 68, 0.92))
      drop-shadow(0 0 12px rgba(200, 68, 68, 0.62));
  }

  100% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 4px rgba(200, 68, 68, 0.9))
      drop-shadow(0 0 10px rgba(200, 68, 68, 0.6));
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .nav-links a::before,
  .nav-links a::after {
    transition: none;
    animation: none !important;
  }

  .nav-links a:hover::before {
    opacity: 1;
    --nav-frame-h: 100%;
    --nav-frame-v: 100%;
    background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
    filter: none;
  }

  .nav-links a:hover::after {
    opacity: 1;
    background: rgba(200, 68, 68, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 12px rgba(200, 68, 68, 0.7),
      0 0 28px rgba(200, 68, 68, 0.5),
      0 0 48px rgba(200, 68, 68, 0.28);
  }

  .nav-links a:hover {
    text-shadow:
      0 0 8px rgba(200, 68, 68, 0.5),
      0 0 16px rgba(200, 68, 68, 0.28);
  }

  .nav-links a[aria-current="page"]::before {
    opacity: 1;
    --nav-frame-h: 100%;
    --nav-frame-v: 100%;
    background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
  }

  .nav-links a[aria-current="page"]::after {
    opacity: 1;
    background: rgba(200, 68, 68, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 12px rgba(200, 68, 68, 0.7),
      0 0 28px rgba(200, 68, 68, 0.5),
      0 0 48px rgba(200, 68, 68, 0.28);
  }

  .nav-dropdown--services.is-open > .nav-dropdown__trigger:not(:hover)::before {
    opacity: 1;
    --nav-frame-h: 100%;
    --nav-frame-v: 100%;
    background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
    filter: none;
  }

  .nav-dropdown--services.is-open > .nav-dropdown__trigger:not(:hover)::after {
    opacity: 1;
    background: rgba(200, 68, 68, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 12px rgba(200, 68, 68, 0.7),
      0 0 28px rgba(200, 68, 68, 0.5),
      0 0 48px rgba(200, 68, 68, 0.28);
  }

  .nav-phone,
  .nav-directions {
    transition: none;
  }

  .nav-phone:hover,
  .nav-directions:hover {
    animation: none;
    border-color: #e85a5a;
    background: rgba(200, 68, 68, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 10px 22px rgba(0, 0, 0, 0.34),
      0 0 12px rgba(200, 68, 68, 0.7),
      0 0 28px rgba(200, 68, 68, 0.5),
      0 0 48px rgba(200, 68, 68, 0.28);
  }

  .nav-phone:hover .nav-phone-number::after {
    animation: none;
    opacity: 1;
  }

  .nav-directions:hover .nav-directions-inner {
    animation: none;
    text-shadow:
      0 0 8px rgba(200, 68, 68, 0.5),
      0 0 16px rgba(200, 68, 68, 0.28);
  }

  .nav-phone:hover .nav-phone-inner img,
  .nav-directions:hover .nav-directions-inner img {
    animation: none;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 4px rgba(200, 68, 68, 0.9))
      drop-shadow(0 0 10px rgba(200, 68, 68, 0.6));
  }
}

.nav-burger {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  padding: 0;
  line-height: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.nav-burger__frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, transparent 55%),
    rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 18px rgba(0, 0, 0, 0.28);
  transition:
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-burger__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 42%,
    rgba(185, 45, 45, 0.14) 50%,
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.nav-burger__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.nav-burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform-origin: center;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.24s ease,
    opacity 0.24s ease,
    box-shadow 0.24s ease;
}

.nav-burger__line:nth-child(1) {
  top: 0;
}

.nav-burger__line--mid {
  top: 50%;
  width: 68%;
  left: 0;
  transform: translateY(-50%);
}

.nav-burger__line:nth-child(3) {
  bottom: 0;
}

.nav-burger:hover .nav-burger__frame,
.nav-burger:focus-visible .nav-burger__frame,
.nav-mobile-phone:hover .nav-burger__frame,
.nav-mobile-phone:focus-visible .nav-burger__frame {
  border-color: rgba(185, 45, 45, 0.55);
  background-color: rgba(185, 45, 45, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(185, 45, 45, 0.12),
    0 0 22px rgba(185, 45, 45, 0.18);
  transform: translateY(-1px);
}

.nav-burger:hover .nav-burger__frame::before,
.nav-burger:focus-visible .nav-burger__frame::before,
.nav-mobile-phone:hover .nav-burger__frame::before,
.nav-mobile-phone:focus-visible .nav-burger__frame::before {
  opacity: 1;
}

.nav-burger:hover .nav-burger__line,
.nav-burger:focus-visible .nav-burger__line {
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(185, 45, 45, 0.45);
}

.nav-burger:hover .nav-burger__line--mid,
.nav-burger:focus-visible .nav-burger__line--mid {
  width: 100%;
}

.nav-burger:active .nav-burger__frame,
.nav-mobile-phone:active .nav-burger__frame {
  transform: translateY(0) scale(0.96);
}

.nav-burger[aria-expanded="true"] .nav-burger__frame {
  border-color: var(--brand-red);
  background-color: rgba(185, 45, 45, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(185, 45, 45, 0.2),
    0 0 24px rgba(185, 45, 45, 0.28);
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger__line--mid {
  width: 0;
  opacity: 0;
}

.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav-mobile-controls {
  display: none;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  margin-left: auto;
  flex: 0 0 auto;
}

.nav-mobile-phone {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0;
  line-height: 0;
  border: none;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile-phone .nav-burger__frame img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(316deg) brightness(95%) contrast(95%);
  transition:
    filter 0.24s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-phone:hover .nav-burger__frame img,
.nav-mobile-phone:focus-visible .nav-burger__frame img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(316deg) brightness(95%) contrast(95%)
    drop-shadow(0 0 8px rgba(185, 45, 45, 0.45));
}

.site-nav[data-mobile-menu-open="true"] {
  z-index: 999;
}

body.nav-mobile-menu-open {
  overflow: hidden;
}

.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2100;
  pointer-events: none;
  visibility: hidden;
}

.nav-mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-menu.is-open .nav-mobile-menu__backdrop {
  opacity: 1;
}

.nav-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  max-height: 100dvh;
  box-sizing: border-box;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 16%),
    linear-gradient(90deg, rgba(185, 45, 45, 0.02) 0%, transparent 18%),
    #080808;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 56px rgba(0, 0, 0, 0.5);
  transform: translate3d(104%, 0, 0);
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.nav-mobile-menu__panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 2px;
  height: auto;
  background: linear-gradient(
    180deg,
    var(--brand-red-light) 0%,
    var(--brand-red) 50%,
    var(--brand-red-dark) 100%
  );
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
  pointer-events: none;
}

.nav-mobile-menu.is-open .nav-mobile-menu__panel {
  transform: translate3d(0, 0, 0);
}

.nav-mobile-menu.is-open .nav-mobile-menu__panel::before {
  transform: scaleY(1);
}

.nav-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: calc(20px + env(safe-area-inset-top, 0px)) clamp(20px, 4vw, 28px) 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.nav-mobile-menu.is-open .nav-mobile-menu__header {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-menu__logo {
  width: 96px;
  height: auto;
  display: block;
}

.nav-mobile-menu__close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  overflow: hidden;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-menu__close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 42%,
    rgba(185, 45, 45, 0.14) 50%,
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.nav-mobile-menu__close-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 18px;
  height: 18px;
}

.nav-mobile-menu__close-icon::before,
.nav-mobile-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform-origin: center;
  transition:
    background-color 0.24s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-menu__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.nav-mobile-menu__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.nav-mobile-menu__close:hover,
.nav-mobile-menu__close:focus-visible {
  border-color: rgba(185, 45, 45, 0.55);
  color: #ffffff;
  background-color: rgba(185, 45, 45, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(185, 45, 45, 0.12),
    0 0 22px rgba(185, 45, 45, 0.18);
}

.nav-mobile-menu__close:focus:not(:focus-visible) {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  background-color: transparent;
  box-shadow: none;
}

.nav-mobile-menu__close:focus:not(:focus-visible)::before {
  opacity: 0;
}

.nav-mobile-menu__close:focus:not(:focus-visible) .nav-mobile-menu__close-icon::before,
.nav-mobile-menu__close:focus:not(:focus-visible) .nav-mobile-menu__close-icon::after {
  background-color: currentColor;
  box-shadow: none;
}

.nav-mobile-menu__close:hover::before,
.nav-mobile-menu__close:focus-visible::before {
  opacity: 1;
}

.nav-mobile-menu__close:hover .nav-mobile-menu__close-icon::before,
.nav-mobile-menu__close:hover .nav-mobile-menu__close-icon::after,
.nav-mobile-menu__close:focus-visible .nav-mobile-menu__close-icon::before,
.nav-mobile-menu__close:focus-visible .nav-mobile-menu__close-icon::after {
  background-color: var(--brand-red-lighter);
  box-shadow: 0 0 8px rgba(185, 45, 45, 0.45);
}

.nav-mobile-menu__nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px clamp(20px, 4vw, 28px) 20px;
}

.nav-mobile-menu__link,
.nav-mobile-menu__accordion {
  --nav-mobile-stagger: 0;
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(0.08s + var(--nav-mobile-stagger) * 0.05s);
}

.nav-mobile-menu.is-open .nav-mobile-menu__link,
.nav-mobile-menu.is-open .nav-mobile-menu__accordion {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile-menu__link {
  display: block;
  padding: 16px 0 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition:
    color 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    padding-left 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(0.08s + var(--nav-mobile-stagger) * 0.05s);
}

.nav-mobile-menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--brand-red-light),
    var(--brand-red-dark)
  );
  transform: translateY(-50%);
  transition: height 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-menu__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(185, 45, 45, 0.12) 0%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-mobile-menu__link:hover,
.nav-mobile-menu__link:focus-visible,
.nav-mobile-menu__link[aria-current="page"] {
  color: var(--brand-red-lighter);
  padding-left: 26px;
}

.nav-mobile-menu__link:hover::before,
.nav-mobile-menu__link:focus-visible::before,
.nav-mobile-menu__link[aria-current="page"]::before {
  height: 62%;
}

.nav-mobile-menu__link:hover::after,
.nav-mobile-menu__link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile-menu__accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile-menu__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0 14px 20px;
  border: none;
  background: transparent;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    color 0.24s ease,
    padding-left 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-menu__accordion-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-right: 2px;
  border: 1px solid rgba(185, 45, 45, 0.35);
  color: var(--brand-red);
  transition:
    border-color 0.24s ease,
    background-color 0.24s ease,
    color 0.24s ease;
}

.nav-mobile-menu__accordion-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}

.nav-mobile-menu__accordion-icon::before,
.nav-mobile-menu__accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  margin-left: -7px;
  background-color: currentColor;
  transform-origin: center;
  transition:
    background-color 0.24s ease,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-menu__accordion-icon::before {
  transform: translateY(-50%) rotate(0deg);
}

.nav-mobile-menu__accordion-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.nav-mobile-menu__accordion-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--brand-red-light),
    var(--brand-red-dark)
  );
  transform: translateY(-50%);
  transition: height 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-trigger {
  color: var(--brand-red-lighter);
  padding-left: 26px;
}

.nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-trigger::before {
  height: 62%;
}

.nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-chevron {
  border-color: var(--brand-red);
  background-color: rgba(185, 45, 45, 0.14);
  color: #ffffff;
}

.nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.nav-mobile-menu__accordion-trigger:hover .nav-mobile-menu__accordion-chevron,
.nav-mobile-menu__accordion-trigger:focus-visible .nav-mobile-menu__accordion-chevron {
  border-color: var(--brand-red);
  background-color: rgba(185, 45, 45, 0.1);
}

.nav-mobile-menu__accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.32s ease;
}

.nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.nav-mobile-menu__accordion-panel-inner {
  overflow: hidden;
  padding: 0 0 12px 12px;
}

.nav-mobile-menu__service-group + .nav-mobile-menu__service-group {
  margin-top: 14px;
}

.nav-mobile-menu__service-heading {
  margin: 0 0 8px;
  padding-left: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.nav-mobile-menu__service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-menu__service-link {
  display: block;
  padding: 10px 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  border-left: 2px solid transparent;
  transform: translateX(0);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-menu__service-link--all {
  font-weight: 600;
  color: var(--brand-red-lighter);
}

.nav-mobile-menu__service-link:hover,
.nav-mobile-menu__service-link:focus-visible,
.nav-mobile-menu__service-link[aria-current="page"] {
  color: #ffffff;
  border-left-color: var(--brand-red);
  background-color: rgba(185, 45, 45, 0.1);
  transform: translateX(4px);
}

.nav-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 16px clamp(20px, 4vw, 28px) max(20px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.22s;
}

.nav-mobile-menu.is-open .nav-mobile-menu__actions {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-menu__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 292px);
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.nav-mobile-menu__action.nav-phone,
.nav-mobile-menu__action.nav-directions {
  border: 2px solid var(--brand-red);
  transform: skewX(-14deg);
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.nav-mobile-menu__action.nav-phone {
  padding: 12px 22px;
}

.nav-mobile-menu__action.nav-directions {
  padding: 12px 16px;
}

.nav-mobile-menu__action.nav-phone::after,
.nav-mobile-menu__action.nav-directions::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 32%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(255, 255, 255, 0.1) 46%,
    rgba(255, 255, 255, 0.17) 50%,
    rgba(255, 255, 255, 0.1) 54%,
    rgba(255, 255, 255, 0.04) 60%,
    transparent 68%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  background-repeat: no-repeat;
  pointer-events: none;
}

.nav-mobile-menu__action.nav-phone::before,
.nav-mobile-menu__action.nav-directions::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 1;
  width: 70%;
  height: 120%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 18%,
    rgba(255, 255, 255, 0.06) 32%,
    rgba(255, 255, 255, 0.12) 44%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.12) 56%,
    rgba(255, 255, 255, 0.06) 68%,
    rgba(255, 255, 255, 0.02) 82%,
    transparent 100%
  );
  transform: translateX(-140%);
  pointer-events: none;
  opacity: 0;
}

.nav-mobile-menu__action.nav-phone:not(.is-glinting):not(:active)::after,
.nav-mobile-menu__action.nav-directions:not(.is-glinting):not(:active)::after {
  animation: none;
}

.nav-mobile-menu__action.nav-phone.is-glinting::after,
.nav-mobile-menu__action.nav-directions.is-glinting::after,
.nav-mobile-menu__action.nav-phone:active::after,
.nav-mobile-menu__action.nav-directions:active::after {
  animation: heroPrimarySheen 1.1s cubic-bezier(0.45, 0, 0.15, 1) forwards;
}

.nav-mobile-menu__action.nav-phone.is-glinting::before,
.nav-mobile-menu__action.nav-directions.is-glinting::before,
.nav-mobile-menu__action.nav-phone:active::before,
.nav-mobile-menu__action.nav-directions:active::before {
  animation: heroPrimarySpecular 0.78s cubic-bezier(0.4, 0, 0.2, 1) 0.06s forwards;
}

.nav-mobile-menu__action.nav-phone:hover,
.nav-mobile-menu__action.nav-directions:hover,
.nav-mobile-menu__action.nav-phone:focus-visible,
.nav-mobile-menu__action.nav-directions:focus-visible {
  border-color: var(--brand-red);
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.28);
  transform: skewX(-14deg);
  animation: none;
  filter: none;
}

.nav-mobile-menu__action.nav-phone:hover::before,
.nav-mobile-menu__action.nav-directions:hover::before,
.nav-mobile-menu__action.nav-phone:hover::after,
.nav-mobile-menu__action.nav-directions:hover::after,
.nav-mobile-menu__action.nav-phone:focus-visible::before,
.nav-mobile-menu__action.nav-directions:focus-visible::before,
.nav-mobile-menu__action.nav-phone:focus-visible::after,
.nav-mobile-menu__action.nav-directions:focus-visible::after {
  animation: none;
}

.nav-mobile-menu__action.nav-phone:hover .nav-phone-number::after,
.nav-mobile-menu__action.nav-directions:hover .nav-directions-inner {
  animation: none;
  text-shadow: none;
}

.nav-mobile-menu__action .nav-phone-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: skewX(14deg) translateZ(0);
  backface-visibility: hidden;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.nav-mobile-menu__action .nav-directions-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: skewX(14deg);
  line-height: 1;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-mobile-menu__action-label,
.nav-mobile-menu__action .nav-phone-number {
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}

.nav-mobile-menu__action .nav-phone-inner img,
.nav-mobile-menu__action .nav-directions-inner img {
  flex-shrink: 0;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(316deg) brightness(95%) contrast(95%);
}

@media (prefers-reduced-motion: reduce) {
  .nav-burger__frame,
  .nav-burger__line,
  .nav-mobile-menu__backdrop,
  .nav-mobile-menu__panel,
  .nav-mobile-menu__panel::before,
  .nav-mobile-menu__header,
  .nav-mobile-menu__link,
  .nav-mobile-menu__accordion,
  .nav-mobile-menu__actions,
  .nav-mobile-menu__accordion-panel,
  .nav-mobile-menu__accordion-icon::before,
  .nav-mobile-menu__accordion-icon::after,
  .nav-mobile-menu__close,
  .nav-mobile-menu__close-icon::before,
  .nav-mobile-menu__close-icon::after,
  .nav-mobile-menu__service-link,
  .nav-mobile-menu__action::before {
    transition: none;
    animation: none;
  }

  .nav-burger__frame,
  .nav-burger__line,
  .nav-mobile-menu__backdrop,
  .nav-mobile-menu__panel,
  .nav-mobile-menu__panel::before,
  .nav-mobile-menu__header,
  .nav-mobile-menu__link,
  .nav-mobile-menu__accordion,
  .nav-mobile-menu__actions,
  .nav-mobile-menu__service-link {
    transform: none;
  }

  .nav-mobile-menu__link,
  .nav-mobile-menu__accordion,
  .nav-mobile-menu__header,
  .nav-mobile-menu__actions {
    opacity: 1;
  }

  .nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
  }

  .nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(3) {
    transform: translateY(50%) rotate(-45deg);
  }

  .nav-mobile-menu__accordion-icon::before {
    transform: translateY(-50%) rotate(0deg);
  }

  .nav-mobile-menu__accordion-icon::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-icon::before {
    transform: translateY(-50%) rotate(45deg);
  }

  .nav-mobile-menu__accordion.is-open .nav-mobile-menu__accordion-icon::after {
    transform: translateY(-50%) rotate(-45deg);
  }

  .nav-mobile-menu.is-open .nav-mobile-menu__panel::before {
    transform: scaleY(1);
  }

  .nav-mobile-menu__action.nav-phone,
  .nav-mobile-menu__action.nav-directions {
    transform: skewX(-14deg);
  }

  .nav-mobile-menu__action.nav-phone.is-glinting::after,
  .nav-mobile-menu__action.nav-directions.is-glinting::after,
  .nav-mobile-menu__action.nav-phone:active::after,
  .nav-mobile-menu__action.nav-directions:active::after,
  .nav-mobile-menu__action.nav-phone.is-glinting::before,
  .nav-mobile-menu__action.nav-directions.is-glinting::before,
  .nav-mobile-menu__action.nav-phone:active::before,
  .nav-mobile-menu__action.nav-directions:active::before {
    animation: none;
  }

  .nav-mobile-menu__action .nav-phone-inner {
    transform: skewX(14deg) translateZ(0);
  }

  .nav-mobile-menu__action .nav-directions-inner {
    transform: skewX(14deg);
  }
}

main {
  display: block;
  position: relative;
  z-index: 0;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  --hero-min-height: max(calc(100svh - 146px), 620px);
  --hero-panel-slant: 9%;
  --hero-panel-content-pad: max(42px, calc(var(--hero-panel-slant) + 2.25rem));
  --hero-content-pad-y: clamp(46px, 6.8vh, 76px);
  --hero-title-size: clamp(2.5rem, 4vw, 4.25rem);
  --hero-eyebrow-size: 0.82rem;
  --hero-actions-gap-top: 32px;
  --hero-stack-gap: 16px;

  position: relative;
  min-height: var(--hero-min-height);
  background-color: #0a0a0a;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 1px;
  background-color: var(--brand-red);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: var(--hero-min-height);
  object-fit: cover;
  object-position: 32% center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.12) 48%,
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      transparent 32%,
      transparent 72%,
      rgba(0, 0, 0, 0.28) 100%
    );
}

.hero-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: min(46%, 560px);
  min-width: 420px;
  height: auto;
  margin-right: 0;
  box-sizing: border-box;
  color: #ffffff;
  pointer-events: auto;
  clip-path: polygon(
    var(--hero-panel-slant) 0,
    100% 0,
    100% 100%,
    0 100%
  );
  background-color: #080808;
  background-image: var(--metal-scratch-lines);
  box-shadow:
    -20px 0 48px rgba(0, 0, 0, 0.55),
    var(--metal-inset-highlight),
    var(--metal-inset-shadow);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-panel-top-rule {
  position: absolute;
  top: 0;
  right: 0;
  left: var(--hero-panel-slant);
  z-index: 4;
  height: 1px;
  margin: 0;
  padding: 0;
  pointer-events: none;
  background: var(--nav-divider-color);
  box-shadow: 0 1px 0 var(--nav-divider-glow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--metal-texture-url);
  background-size: var(--metal-texture-size);
  background-repeat: var(--metal-texture-repeat);
  background-position: var(--metal-texture-position);
  filter: var(--metal-texture-filter);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--metal-depth-overlay);
  pointer-events: none;
}

.hero-panel-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: var(--hero-content-pad-y) clamp(24px, 2.5vw, 32px)
    var(--hero-content-pad-y) var(--hero-panel-content-pad);
  box-sizing: border-box;
}

.hero-seo-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-panel-stack {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  min-width: 0;
}

.hero-panel-accent {
  flex: 0 0 var(--brand-accent-width);
  width: var(--brand-accent-width);
  align-self: stretch;
  background-color: var(--brand-red);
  clip-path: polygon(
    0 var(--brand-accent-bevel),
    100% calc(var(--brand-accent-bevel) - var(--brand-accent-slice)),
    100% calc(100% - var(--brand-accent-bevel)),
    0 calc(100% - var(--brand-accent-bevel) + var(--brand-accent-slice))
  );
  box-shadow:
    0 0 10px rgba(200, 68, 68, 0.42),
    0 0 22px rgba(200, 68, 68, 0.22);
  pointer-events: none;
}

.hero-panel-main {
  display: flex;
  flex-direction: column;
  gap: var(--hero-stack-gap);
  flex: 1 1 auto;
  min-width: 0;
}

.hero-eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--hero-eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brand-red);
}

.hero-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--hero-title-size);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-title-line {
  display: block;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.hero-button {
  --hero-btn-slant: 7.5%;
  --hero-btn-clip: polygon(
    var(--hero-btn-slant) 0,
    100% 0,
    calc(100% - var(--hero-btn-slant)) 100%,
    0 100%
  );
  --hero-btn-inset-clip: polygon(
    calc(var(--hero-btn-slant) + 2px) 2px,
    calc(100% - 2px) 2px,
    calc(100% - var(--hero-btn-slant) - 2px) calc(100% - 2px),
    2px calc(100% - 2px)
  );
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 16px 20px;
  text-decoration: none;
  clip-path: var(--hero-btn-clip);
}

.hero-button-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: text-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-button img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(316deg) brightness(95%) contrast(95%);
  transition: filter 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-button-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: block;
  background-color: #ffffff;
}

.hero-button-icon-car {
  -webkit-mask: url("../assets/icons/car-wrench-icon.svg") center / contain
    no-repeat;
  mask: url("../assets/icons/car-wrench-icon.svg") center / contain no-repeat;
}

/* LOCKED: Full Service List shine hover — do not modify. */
.hero-button-primary {
  border: none;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  overflow: hidden;
}

.hero-button-primary .hero-button-inner {
  transform: none;
}

.hero-button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 32%,
      rgba(255, 255, 255, 0.04) 40%,
      rgba(255, 255, 255, 0.1) 46%,
      rgba(255, 255, 255, 0.17) 50%,
      rgba(255, 255, 255, 0.1) 54%,
      rgba(255, 255, 255, 0.04) 60%,
      transparent 68%,
      transparent 100%
    ),
    #b92d2d;
  background-size: 220% 100%, 100% 100%;
  background-position: 120% 0, 0 0;
  background-repeat: no-repeat;
  clip-path: var(--hero-btn-clip);
  pointer-events: none;
}

.hero-button-primary::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 1;
  width: 70%;
  height: 120%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 18%,
    rgba(255, 255, 255, 0.06) 32%,
    rgba(255, 255, 255, 0.12) 44%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.12) 56%,
    rgba(255, 255, 255, 0.06) 68%,
    rgba(255, 255, 255, 0.02) 82%,
    transparent 100%
  );
  transform: translateX(-140%);
  pointer-events: none;
  opacity: 0;
}

/* LOCKED: Get a Quote button — static frame + matched sheen hover. Do not modify. */
.hero-button-secondary {
  clip-path: var(--hero-btn-clip);
  border: none;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  padding: 14px 26px;
  overflow: hidden;
}

.hero-button-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: var(--hero-btn-clip);
  background: var(--brand-red);
  pointer-events: none;
}

.hero-button-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 32%,
      rgba(255, 255, 255, 0.04) 40%,
      rgba(255, 255, 255, 0.1) 46%,
      rgba(255, 255, 255, 0.17) 50%,
      rgba(255, 255, 255, 0.1) 54%,
      rgba(255, 255, 255, 0.04) 60%,
      transparent 68%,
      transparent 100%
    ),
    rgb(11, 11, 11);
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 32%,
      rgba(255, 255, 255, 0.04) 40%,
      rgba(255, 255, 255, 0.1) 46%,
      rgba(255, 255, 255, 0.17) 50%,
      rgba(255, 255, 255, 0.1) 54%,
      rgba(255, 255, 255, 0.04) 60%,
      transparent 68%,
      transparent 100%
    ),
    color-mix(in srgb, black 28%, rgb(14 14 14));
  background-size: 220% 100%, 100% 100%;
  background-position: 120% 0, 0 0;
  background-repeat: no-repeat;
  clip-path: var(--hero-btn-inset-clip);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-button-secondary:not(:hover)::after {
  animation: none;
}

.hero-button-secondary .hero-button-inner {
  gap: 12px;
  transform: none;
  backface-visibility: hidden;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: inherit;
  text-transform: none;
  white-space: nowrap;
}

.hero-button-secondary img {
  transition: none;
}

.hero-button-label {
  position: relative;
  display: inline-block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-button-primary:hover {
  border-color: transparent;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
}

.hero-button-primary:hover::after {
  animation: heroPrimarySheen 1.1s cubic-bezier(0.45, 0, 0.15, 1) forwards;
}

.hero-button-primary:hover::before {
  animation: heroPrimarySpecular 0.78s cubic-bezier(0.4, 0, 0.2, 1) 0.06s forwards;
}

@keyframes heroPrimarySheen {
  0% {
    background-position: 120% 0, 0 0;
  }

  100% {
    background-position: -120% 0, 0 0;
  }
}

@keyframes heroPrimarySpecular {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }

  18% {
    transform: translateX(-25%);
    opacity: 0.45;
  }

  38% {
    transform: translateX(48%);
    opacity: 0.72;
  }

  58% {
    transform: translateX(105%);
    opacity: 0.2;
  }

  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}

.hero-button-secondary:hover {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
}

.hero-button-secondary:hover::after {
  animation: heroPrimarySheen 1.1s cubic-bezier(0.45, 0, 0.15, 1) forwards;
}

.hero-trust-strip {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: #ffffff;
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero-trust-strip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

.hero-trust-strip-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 16px;
}

.hero-trust-strip-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.hero-trust-strip-logo svg {
  width: 34px;
  height: 34px;
  display: block;
}

.hero-trust-strip-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-trust-strip-badge {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-trust-strip-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.hero-trust-strip-score {
  font-family: var(--font-title);
  font-size: 1.55rem;
  line-height: 1;
  color: #ffffff;
}

.hero-trust-strip-stars {
  display: inline-flex;
  gap: 1px;
  font-size: 0.88rem;
  line-height: 1;
  color: var(--google-star);
}

.hero-trust-strip-star-half {
  background: linear-gradient(
    90deg,
    var(--google-star) 0%,
    var(--google-star) 50%,
    var(--google-star-empty) 50%,
    var(--google-star-empty) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-trust-strip-star-empty {
  color: var(--google-star-empty);
}

.hero-trust-strip-copy {
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
}

.hero-trust-strip-divider {
  flex: 0 0 1px;
  align-self: stretch;
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.12);
}

.hero-trust-strip-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 14px 16px;
}

.hero-trust-strip-cta-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
  text-align: right;
  white-space: nowrap;
}

.hero-trust-strip-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 26px;
  border: 2px solid var(--brand-red);
  transform: skewX(-14deg);
  transition: border-color 0.2s ease;
}

.hero-trust-strip:hover .hero-trust-strip-cta-arrow {
  border-color: var(--brand-red-light);
}

.hero-trust-strip-cta-arrow-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: skewX(14deg);
  color: var(--brand-red);
  transition: color 0.2s ease;
}

.hero-trust-strip:hover .hero-trust-strip-cta-arrow-inner {
  color: var(--brand-red-light);
}

.hero-trust-strip-cta-arrow-inner svg {
  width: 14px;
  height: 14px;
  display: block;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 0;
  padding: 4px 0 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-location:hover {
  color: #ffffff;
}

.hero-location-text {
  flex: 1 1 auto;
  min-width: 0;
  transition: letter-spacing 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-location:hover .hero-location-text {
  letter-spacing: 0.085em;
}

.hero-location-pin {
  display: inline-block;
  flex-shrink: 0;
  width: 12px;
  aspect-ratio: 112 / 155.53;
  background-color: var(--brand-red);
  -webkit-mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain
    no-repeat;
  mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain no-repeat;
  transition: background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-location:hover .hero-location-pin {
  background-color: var(--brand-red-light);
}

.hero-location-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  transition:
    color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-location:hover .hero-location-arrow {
  color: rgba(255, 255, 255, 0.92);
  transform: translateX(3px);
}

.hero-location-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}

@media (max-width: 1024px) {
  .hero {
    --hero-min-height: max(calc(100svh - 112px), 560px);
    --hero-panel-slant: 8%;
    --hero-content-pad-y: clamp(38px, 5.5vh, 58px);
    --hero-title-size: clamp(2.4rem, 4.8vw, 3.45rem);
    --hero-eyebrow-size: 0.78rem;
    --hero-stack-gap: 14px;
  }

  .hero-image {
    object-position: 40% center;
  }

  .hero-panel {
    width: min(50%, 500px);
    min-width: 0;
    margin-right: 0;
  }

  .hero-panel-body {
    padding: var(--hero-content-pad-y) clamp(20px, 3vw, 28px)
      var(--hero-content-pad-y) max(36px, calc(var(--hero-panel-slant) + 1.75rem));
  }

  /* Hero CTA buttons — scale content to fit narrow panel without touching clip edges */
  .hero-actions {
    gap: clamp(8px, 1.1vw, 12px);
  }

  .hero-actions .hero-button,
  .hero-actions .hero-button-secondary {
    --hero-btn-slant: 6%;
    padding: clamp(12px, 1.6vw, 15px) clamp(10px, 1.6vw, 16px);
  }

  .hero-actions .hero-button-secondary {
    padding: clamp(12px, 1.6vw, 15px) clamp(12px, 1.8vw, 18px);
  }

  .hero-actions .hero-button-inner,
  .hero-actions .hero-button-secondary .hero-button-inner {
    gap: clamp(5px, 0.75vw, 8px);
    font-size: clamp(0.68rem, 1.1vw, 0.82rem);
    letter-spacing: 0.045em;
    line-height: 1.15;
  }

  .hero-actions .hero-button-secondary .hero-button-inner {
    letter-spacing: 0.05em;
    text-transform: none;
  }

  .hero-actions .hero-button img,
  .hero-actions .hero-button-icon {
    width: clamp(14px, 1.5vw, 17px);
    height: clamp(14px, 1.5vw, 17px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-button,
  .hero-button-inner,
  .hero-button img,
  .hero-button-icon {
    transition: none;
  }

  .hero-button-secondary:hover {
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
  }

  .hero-button-secondary:hover::after {
    animation: none;
    background-position: 120% 0, 0 0;
  }

  .hero-button-primary:hover::after {
    animation: none;
    background-position: 120% 0, 0 0;
  }

  .hero-button-primary:hover::before {
    animation: none;
    opacity: 0;
  }

  .hero-button-primary:hover {
    animation: none;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(316deg) brightness(95%) contrast(95%)
      drop-shadow(0 0 4px rgba(200, 68, 68, 0.9))
      drop-shadow(0 0 10px rgba(200, 68, 68, 0.6));
  }

  .hero-trust-strip:hover {
    transform: none;
  }

  .hero-location:hover .hero-location-arrow {
    transform: none;
  }
}

/* ── Services page hero ───────────────────────────────────────────────── */

.services-hero {
  --services-hero-min-height: clamp(460px, 56vh, 620px);
  --services-hero-inline-pad: clamp(38px, 4.4vw, 86px);
  position: relative;
  min-height: var(--services-hero-min-height);
  background-color: #000000;
  overflow: hidden;
}

.services-hero-media {
  position: absolute;
  inset: 0;
}

.services-hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(160px, 38vh, 280px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.18) 24%,
    rgba(0, 0, 0, 0.48) 52%,
    rgba(0, 0, 0, 0.78) 74%,
    rgba(0, 0, 0, 0.94) 90%,
    #000000 100%
  );
}

.services-hero-image {
  width: 100%;
  height: 100%;
  min-height: var(--services-hero-min-height);
  object-fit: cover;
  object-position: 68% 52%;
  display: block;
  filter: grayscale(1) brightness(0.45);
}

.about-hero .services-hero-image {
  object-position: 26% 52%;
}

.service-page-intro-hero .services-hero-image {
  object-position: 50% 58%;
  filter: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.service-page-intro-hero .services-hero-content {
  gap: clamp(14px, 1.7vh, 18px);
}

.service-page-intro-hero .services-hero-eyebrow {
  line-height: 1;
}

.service-page-intro-hero .services-hero-title {
  margin: 0;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.015em;
}

.service-page-intro-hero .services-hero-title-line + .services-hero-title-line {
  margin-top: 0.06em;
}

.service-page-intro-hero .services-hero-copy {
  margin: 0;
}

.service-page-intro-hero .services-hero-cta {
  margin: 0;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.52) 38%,
      rgba(0, 0, 0, 0.28) 62%,
      rgba(0, 0, 0, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.42) 0%,
      transparent 36%,
      transparent 68%,
      rgba(0, 0, 0, 0.55) 100%
    );
}

.services-hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: var(--services-hero-min-height);
  box-sizing: border-box;
  padding:
    clamp(52px, 8vh, 84px) var(--services-hero-inline-pad)
    clamp(72px, 10vh, 96px);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(100%, 640px);
  min-width: 0;
}

.services-hero-eyebrow-row {
  --services-hero-eyebrow-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.7vw, 7px);
}

.services-hero-eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--services-hero-eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
}

.services-hero-eyebrow-fast {
  display: block;
  flex: 0 0 auto;
  width: auto;
  /* Slash glyphs span 98/152 of the viewBox height; scale so they match eyebrow text. */
  height: calc(var(--services-hero-eyebrow-size) * 152 / 98);
}

.services-hero-title {
  margin: clamp(14px, 2vh, 18px) 0 0;
  font-family: var(--font-title);
  font-size: clamp(2.15rem, 3.8vw, 3.65rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.services-hero-title-line {
  display: block;
}

.services-hero-copy {
  margin: clamp(16px, 2.2vh, 20px) 0 0;
  max-width: 38ch;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.services-hero-cta {
  margin-top: clamp(24px, 3.2vh, 32px);
}

.services-hero-bottom-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 1px;
  background-color: #1a1a1a;
}

@media (max-width: 900px) {
  .services-hero {
    --services-hero-min-height: clamp(420px, 62vh, 540px);
  }

  .services-hero-shell {
    padding-bottom: clamp(84px, 12vh, 108px);
  }
}

@media (max-width: 768px) {
  .services-hero {
    --services-hero-inline-pad: clamp(24px, 4vw, 40px);
    --services-hero-min-height: clamp(400px, 65vh, 520px);
  }

  .services-hero-title {
    font-size: clamp(2rem, 8.5vw, 2.85rem);
  }
}

@media (max-width: 640px) {
  .services-hero {
    --services-hero-min-height: clamp(380px, 68vh, 500px);
  }

  .services-hero-content {
    width: 100%;
  }
}

/* ── Individual service pages ─────────────────────────────────────────── */

.service-page-spacer {
  min-height: clamp(280px, 42vh, 560px);
  background-color: #000000;
}

@media (max-width: 1024px) {
  .service-page-spacer {
    min-height: clamp(220px, 36vh, 420px);
  }
}

@media (max-width: 768px) {
  .service-page-spacer {
    min-height: clamp(180px, 32vh, 320px);
  }
}

/* ── Service detail split (text + image) ──────────────────────────────── */

.service-detail-split {
  position: relative;
  background-color: #000000;
}

.service-detail-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 820px);
  justify-content: center;
  align-items: center;
  gap: clamp(80px, 11vw, 160px);
  width: fit-content;
  max-width: min(100%, 1520px);
  margin: 0 auto;
  box-sizing: border-box;
  padding:
    clamp(56px, 8vh, 96px) clamp(38px, 4.4vw, 86px);
}

.service-detail-split__media {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.service-detail-split__content {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 820px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(14px, 1.7vh, 18px);
  box-sizing: border-box;
  min-width: 0;
}

.service-detail-split__eyebrow-row {
  display: block;
  margin: 0;
}

.service-detail-split__eyebrow-fast {
  display: block;
  width: clamp(18px, 2vw, 24px);
  height: auto;
  flex: 0 0 auto;
}

.service-detail-split__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.74vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--brand-red);
}

.service-detail-split__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.2vw, 3.85rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
}

.service-detail-split__title-line {
  display: block;
}

.service-detail-split__title-line + .service-detail-split__title-line {
  margin-top: 0.06em;
}

.service-detail-split__tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.service-detail-split__copy {
  margin: 0;
  max-width: 62ch;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.service-detail-split__cta {
  margin: 0;
}

.service-detail-split__media-frame {
  --service-detail-split-slant: 7.5%;
  position: relative;
  width: 100%;
  max-width: 580px;
  overflow: hidden;
  line-height: 0;
  background-color: #111111;
  clip-path: polygon(
    var(--service-detail-split-slant) 0,
    100% 0,
    calc(100% - var(--service-detail-split-slant)) 100%,
    0 100%
  );
}

.service-detail-split__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
}

.service-detail-split__media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    transparent 60%
  );
}

@media (max-width: 1024px) {
  .service-detail-split__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: clamp(40px, 6vh, 56px);
    padding-bottom: clamp(48px, 7vh, 72px);
  }

  .service-detail-split__content {
    order: 1;
    width: 100%;
    max-width: 760px;
  }

  .service-detail-split__media {
    order: 2;
    width: 100%;
  }

  .service-detail-split__media-frame {
    --service-detail-split-slant: 0%;
    max-width: min(100%, 460px);
    margin: 0 auto;
  }

  .service-detail-split__copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .service-detail-split__inner {
    padding-inline: clamp(24px, 4vw, 40px);
    gap: clamp(32px, 5vh, 48px);
  }

  .service-detail-split__title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-detail-split .featured-ghost-btn-arrow {
    transition: none;
  }

  .service-detail-split .featured-ghost-btn:hover .featured-ghost-btn-arrow {
    transform: none;
  }
}

.service-section-rule {
  height: 1px;
  background-color: #1a1a1a;
}

.service-info {
  background-color: #000000;
}

.service-info__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding:
    clamp(48px, 6.5vh, 72px) clamp(38px, 4.4vw, 86px)
    clamp(44px, 5.5vh, 64px);
  box-sizing: border-box;
}

.service-info__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.service-info__col {
  min-width: 0;
}

.service-info__heading-group {
  display: inline-block;
  max-width: 100%;
}

.service-info__heading {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.service-info__heading-rule {
  display: block;
  width: 100%;
  height: var(--brand-accent-width);
  margin-top: clamp(8px, 1vh, 12px);
  background-color: var(--brand-red);
  clip-path: polygon(
    var(--brand-accent-bevel) 0,
    100% 0,
    calc(100% - var(--brand-accent-bevel)) 100%,
    0 100%
  );
}

.service-info__body {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 18px);
  margin-top: clamp(16px, 2vh, 20px);
}

.service-info__body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 0.95vw, 0.94rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

/* ── Service page CTA bar ─────────────────────────────────────────────── */

.service-cta-bar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.service-cta-bar__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--metal-scratch-lines);
  box-shadow: var(--metal-inset-shadow);
}

.service-cta-bar__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--metal-texture-url);
  background-size: var(--metal-texture-size);
  background-repeat: var(--metal-texture-repeat);
  background-position: var(--metal-texture-position);
  filter: var(--metal-texture-filter);
}

.service-cta-bar__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--metal-depth-overlay);
}

.service-cta-bar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.5vw, 48px);
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(36px, 5vh, 56px) clamp(38px, 4.4vw, 86px);
  box-sizing: border-box;
}

.service-cta-bar__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1.2vh, 14px);
  flex: 0 1 auto;
  min-width: 0;
}

.service-cta-bar__eyebrow-row {
  --service-cta-bar-eyebrow-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.7vw, 7px);
}

.service-cta-bar__fast {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: calc(var(--service-cta-bar-eyebrow-size) * 152 / 98);
}

.service-cta-bar__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--service-cta-bar-eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
}

.service-cta-bar__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.service-cta-bar__title-line {
  display: block;
}

.service-cta-bar__subtitle {
  margin: 0;
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 0.95vw, 0.94rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.service-cta-bar__btn {
  flex: 0 0 auto;
  align-self: center;
}

@media (max-width: 1100px) {
  .service-info__grid {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vh, 48px);
  }
}

@media (max-width: 768px) {
  .service-info__inner {
    display: flex;
    justify-content: center;
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .service-info__grid {
    width: 100%;
    max-width: min(90vw, 474px);
    margin-inline: auto;
    justify-items: center;
    gap: clamp(32px, 5vh, 44px);
  }

  .service-info__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .service-info__heading-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .service-info__heading {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
    text-align: center;
  }

  .service-info__body {
    align-items: center;
    width: 100%;
  }

  .service-info__body p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .service-cta-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .service-cta-bar__btn {
    align-self: flex-start;
  }
}

/* Individual service pages — phone only (≤767px). */
@media (max-width: 767px) {
  .service-cta-bar__inner {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .service-cta-bar__intro {
    align-items: center;
    width: 100%;
    max-width: min(90vw, 474px);
  }

  .service-cta-bar__eyebrow-row {
    justify-content: center;
  }

  .service-cta-bar__fast {
    display: none;
  }

  .service-cta-bar__subtitle {
    margin-inline: auto;
    text-align: center;
  }

  .service-cta-bar__btn {
    align-self: center;
  }
}

/* Individual service pages — tablet scaled desktop layout (601–1100px) */
@media (max-width: 1100px) and (min-width: 601px) {
  .service-page-intro-hero.services-hero {
    --services-hero-min-height: clamp(340px, 48vh, 480px);
    --services-hero-inline-pad: clamp(28px, 4.5vw, 48px);
  }

  .service-page-intro-hero .services-hero-shell {
    padding-top: clamp(40px, 6vh, 64px);
    padding-bottom: clamp(48px, 7vh, 72px);
  }

  .service-page-intro-hero .services-hero-content {
    width: min(100%, 52%);
    gap: clamp(10px, 1.2vh, 14px);
  }

  .service-page-intro-hero .services-hero-eyebrow-row {
    --services-hero-eyebrow-size: 0.62rem;
  }

  .service-page-intro-hero .services-hero-title {
    font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  }

  .service-page-intro-hero .services-hero-copy {
    font-size: clamp(0.78rem, 0.9vw, 0.88rem);
    line-height: 1.55;
  }

  .service-page-intro-hero .services-hero-cta {
    padding: 10px 16px;
    font-size: 0.62rem;
  }

  .service-detail-split__inner {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 500px);
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - clamp(48px, 8vw, 96px));
    margin-inline: auto;
    gap: clamp(20px, 3vw, 36px);
    padding:
      clamp(32px, 5vh, 56px) clamp(28px, 4.5vw, 48px)
      clamp(40px, 6vh, 64px);
    box-sizing: border-box;
  }

  .service-detail-split__media {
    grid-column: 1;
    grid-row: 1;
    order: unset;
    width: min(100%, 380px);
    max-width: 100%;
    margin-inline: 0;
    display: flex;
    justify-content: center;
  }

  .service-detail-split__content {
    grid-column: 2;
    grid-row: 1;
    order: unset;
    width: min(100%, 500px);
    max-width: 100%;
    margin-inline: 0;
    align-items: flex-start;
    gap: clamp(10px, 1.2vh, 14px);
  }

  .service-detail-split__media-frame {
    --service-detail-split-slant: 7.5%;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .service-detail-split__eyebrow {
    font-size: clamp(0.58rem, 0.7vw, 0.68rem);
  }

  .service-detail-split__title {
    font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  }

  .service-detail-split__tagline {
    font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  }

  .service-detail-split__copy {
    max-width: 42ch;
    font-size: clamp(0.76rem, 0.88vw, 0.86rem);
    line-height: 1.55;
  }

  .service-detail-split__cta {
    padding: 10px 16px;
    font-size: 0.62rem;
  }

  .service-info__inner {
    padding:
      clamp(32px, 5vh, 48px) clamp(28px, 4.5vw, 48px)
      clamp(36px, 4.5vh, 52px);
  }

  .service-info__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
  }

  .service-info__heading {
    font-size: clamp(0.82rem, 1.05vw, 1rem);
    line-height: 1.1;
  }

  .service-info__heading-rule {
    margin-top: clamp(6px, 0.8vh, 10px);
  }

  .service-info__body {
    margin-top: clamp(10px, 1.2vh, 14px);
    gap: clamp(10px, 1.4vh, 14px);
  }

  .service-info__body p {
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    line-height: 1.55;
  }

  .service-cta-bar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.5vw, 28px);
    padding: clamp(28px, 4vh, 44px) clamp(28px, 4.5vw, 48px);
  }

  .service-cta-bar__eyebrow-row {
    --service-cta-bar-eyebrow-size: 0.62rem;
  }

  .service-cta-bar__title {
    font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  }

  .service-cta-bar__subtitle {
    max-width: 28ch;
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    line-height: 1.5;
  }

  .service-cta-bar__btn {
    align-self: center;
    padding: 10px 16px;
    font-size: 0.62rem;
  }
}

/* Individual service pages — phone (≤767px): stacked detail intro + slash-framed image */
@media (max-width: 767px) {
  .service-detail-split__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: clamp(32px, 5vh, 48px);
    padding:
      clamp(32px, 5vh, 48px) clamp(24px, 4vw, 40px)
      clamp(48px, 7vh, 72px);
    box-sizing: border-box;
  }

  .service-detail-split__content {
    order: 1;
    width: 100%;
    max-width: min(90vw, 474px);
  }

  .service-detail-split__media {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .service-detail-split__media-frame {
    --service-detail-split-slant: 7.5%;
    width: 100%;
    max-width: min(100%, 460px);
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-cta-bar .featured-ghost-btn-arrow {
    transition: none;
  }

  .service-cta-bar .featured-ghost-btn:hover .featured-ghost-btn-arrow {
    transform: none;
  }
}

.service-detail-hero {
  --service-detail-hero-min-height: clamp(560px, 78vh, 860px);
  --service-detail-hero-inline-pad: clamp(38px, 4.4vw, 86px);
  position: relative;
  min-height: var(--service-detail-hero-min-height);
  background-color: #000000;
  overflow: hidden;
}

.service-detail-hero--content-only {
  --service-detail-hero-min-height: auto;
  min-height: 0;
}

.service-detail-hero--content-only .service-detail-hero__shell {
  min-height: 0;
  padding-top: clamp(48px, 6vh, 72px);
  padding-bottom: clamp(40px, 5vh, 56px);
}

.service-detail-hero--content-only .service-detail-hero__tagline {
  margin-top: clamp(18px, 2.6vh, 28px);
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
}

.service-detail-hero__media {
  position: absolute;
  inset: 0;
}

.service-detail-hero__image {
  width: 100%;
  height: 100%;
  min-height: var(--service-detail-hero-min-height);
  object-fit: cover;
  object-position: 72% 42%;
  display: block;
  filter: grayscale(1) brightness(0.58) contrast(1.06);
}

.service-detail-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #000000 0%,
      #000000 14%,
      rgba(0, 0, 0, 0.96) 24%,
      rgba(0, 0, 0, 0.84) 36%,
      rgba(0, 0, 0, 0.52) 52%,
      rgba(0, 0, 0, 0.22) 68%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.34) 0%,
      transparent 28%,
      transparent 72%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

.service-detail-hero__shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: var(--service-detail-hero-min-height);
  box-sizing: border-box;
  padding:
    clamp(64px, 9vh, 96px) var(--service-detail-hero-inline-pad)
    clamp(72px, 10vh, 104px);
}

.service-detail-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 640px);
  min-width: 0;
}

.service-detail-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 0.62vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-hero__eyebrow-mark {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-hero__eyebrow-accent {
  color: var(--brand-red);
}

.service-detail-hero__title {
  margin: clamp(18px, 2.6vh, 28px) 0 0;
  font-family: var(--font-title);
  font-size: clamp(3.15rem, 7.2vw, 6.15rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
}

.service-detail-hero__title-line {
  display: block;
}

.service-detail-hero__tagline {
  margin: clamp(14px, 2vh, 20px) 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.82vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.service-detail-hero__copy {
  margin: clamp(22px, 3vh, 30px) 0 0;
  max-width: 46ch;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.service-detail-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(28px, 3.6vh, 38px);
  padding: 14px 24px;
  border: 1px solid var(--brand-red);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.service-detail-hero__cta:hover {
  color: #ffffff;
  border-color: var(--brand-red-light);
  background-color: rgba(185, 45, 45, 0.12);
}

.service-detail-hero__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.service-detail-hero__cta-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-detail-hero__cta:hover .service-detail-hero__cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .service-detail-hero {
    --service-detail-hero-min-height: clamp(520px, 84vh, 720px);
  }

  .service-detail-hero__image {
    object-position: 68% 40%;
  }

  .service-detail-hero__content {
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .service-detail-hero {
    --service-detail-hero-min-height: clamp(480px, 88vh, 640px);
  }

  .service-detail-hero__shell {
    align-items: flex-end;
    padding-bottom: clamp(56px, 10vh, 72px);
  }

  .service-detail-hero__content {
    width: 100%;
  }

  .service-detail-hero__image {
    object-position: 62% 36%;
    filter: grayscale(1) brightness(0.42) contrast(1.04);
  }

  .service-detail-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.18) 24%,
        rgba(0, 0, 0, 0.52) 58%,
        rgba(0, 0, 0, 0.92) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.72) 100%
      );
  }

  .service-detail-hero__copy {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-detail-hero__cta,
  .service-detail-hero__cta-arrow {
    transition: none;
  }

  .service-detail-hero__cta:hover .service-detail-hero__cta-arrow {
    transform: none;
  }
}

/* ── Services overview ────────────────────────────────────────────────── */

.services-overview {
  --services-overview-pad-inline: clamp(38px, 4.4vw, 86px);
  --services-overview-grid-gap: clamp(12px, 1.4vw, 18px);
  background-color: #000000;
}

.services-overview-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(36px, 4.5vh, 56px) var(--services-overview-pad-inline)
    clamp(72px, 10vh, 112px);
  box-sizing: border-box;
}

.services-overview-header {
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.6vw, 16px);
  width: 100%;
  margin-bottom: clamp(32px, 4.5vh, 52px);
}

.services-overview-title-accent {
  flex: 0 0 var(--brand-accent-width);
  width: var(--brand-accent-width);
  align-self: stretch;
  background-color: var(--brand-red);
  clip-path: polygon(
    0 var(--brand-accent-bevel),
    100% calc(var(--brand-accent-bevel) - var(--brand-accent-slice)),
    100% calc(100% - var(--brand-accent-bevel)),
    0 calc(100% - var(--brand-accent-bevel) + var(--brand-accent-slice))
  );
}

.services-overview-header-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  align-items: start;
  gap: clamp(12px, 1.6vh, 18px) clamp(28px, 4.5vw, 72px);
  flex: 1 1 auto;
  min-width: 0;
}

.services-overview-eyebrow-row {
  --services-overview-eyebrow-size: 0.72rem;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.7vw, 7px);
}

.services-overview-eyebrow-fast {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: calc(var(--services-overview-eyebrow-size) * 152 / 98);
}

.services-overview-eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--services-overview-eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
}

.services-overview-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.services-overview-title-line {
  display: inline;
}

.services-overview-title-line + .services-overview-title-line::before {
  content: " ";
}

.services-overview-intro {
  margin: 0;
  max-width: 36ch;
  margin-left: auto;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

#about-story .services-overview-header {
  margin-bottom: 0;
  justify-content: center;
}

#about-story .services-overview-title-accent {
  display: none;
}

#about-story .services-overview-inner {
  max-width: 1320px;
  padding-top: clamp(48px, 6vh, 72px);
  padding-bottom: clamp(14px, 2vh, 22px);
}

#about-story .services-overview-header-content {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: clamp(12px, 1.6vh, 18px);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  flex: 1 1 auto;
}

.about-story-header-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
}

.about-story-heading {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  justify-self: start;
}

#about-story .about-story-intro {
  grid-column: 2;
  align-self: end;
  justify-self: end;
  text-align: right;
  max-width: 58ch;
  margin-left: 0;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--services-overview-grid-gap);
}

.services-overview-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #0a0a0a;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.services-overview-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.services-overview-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.services-overview-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  transition: background 0.4s ease;
  pointer-events: none;
}

.services-overview-card-hover-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(16px, 2.2vw, 24px);
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.92vw, 0.82rem);
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .services-overview-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
  }

  .services-overview-card:hover .services-overview-card-media img {
    transform: scale(1.06);
    filter: grayscale(100%) brightness(0.42);
  }

  .services-overview-card:hover .services-overview-card-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.88) 48%,
        rgba(0, 0, 0, 0.94) 100%
      ),
      linear-gradient(
        135deg,
        rgba(185, 45, 45, 0.22) 0%,
        rgba(185, 45, 45, 0.08) 42%,
        transparent 100%
      );
  }

  .services-overview-card:hover .services-overview-card-hover-copy {
    opacity: 1;
    transform: translateY(0);
  }

  .services-overview-card:hover .services-overview-card-cta {
    gap: 10px;
  }
}

.services-overview-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: clamp(10px, 1.4vh, 14px);
  padding: clamp(14px, 1.8vw, 20px) clamp(14px, 1.8vw, 18px)
    clamp(16px, 2vh, 20px);
}

.services-overview-card-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.services-overview-card-desc {
  margin: 0;
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.services-overview-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
  transition: gap 0.2s ease;
}

.services-overview-card-cta-arrow {
  font-size: 0.9rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .services-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview-title-line {
    display: block;
  }

  .services-overview-title-line + .services-overview-title-line::before {
    content: none;
  }
}

@media (max-width: 900px) {
  .services-overview-header-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-overview-title-line {
    display: block;
  }

  .services-overview-title-line + .services-overview-title-line::before {
    content: none;
  }

  .services-overview-intro {
    max-width: none;
    margin-left: 0;
  }
}

/* About page — tablet keeps desktop two-column Our Story layout when overview stacks. */
@media (min-width: 768px) and (max-width: 900px) {
  #about-story .services-overview-header-content,
  #about-story .about-story-header-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    justify-items: stretch;
    text-align: left;
  }

  #about-story .about-story-heading {
    grid-column: 1;
    align-items: flex-start;
    justify-self: start;
    text-align: left;
    width: auto;
  }

  #about-story .about-story-intro {
    grid-column: 2;
    align-self: end;
    justify-self: end;
    text-align: right;
    max-width: 58ch;
    margin-left: 0;
  }
}

/* About page — phone only (≤767px). */
@media (max-width: 767px) {
  #about-story .about-story-heading {
    grid-column: 1 / -1;
    align-items: center;
    justify-self: center;
    text-align: center;
    width: 100%;
  }

  #about-story .about-story-heading .services-hero-eyebrow-row {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  #about-story .about-story-intro {
    grid-column: 1 / -1;
    justify-self: center;
    margin-inline: auto;
    max-width: min(36ch, 90%);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-overview {
    --services-overview-pad-inline: clamp(24px, 4vw, 40px);
  }

  .services-overview-header {
    margin-bottom: clamp(24px, 4vh, 36px);
  }

  .services-overview-title {
    font-size: clamp(2.1rem, 8.5vw, 3rem);
  }
}

@media (max-width: 640px) {
  .services-overview {
    --services-overview-pad-inline: clamp(20px, 5vw, 32px);
  }

  .services-overview-inner {
    padding-top: clamp(36px, 5vh, 48px);
    padding-bottom: clamp(56px, 8vh, 80px);
  }

  .services-overview-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .services-overview-card-media img,
  .services-overview-card-overlay,
  .services-overview-card-hover-copy,
  .services-overview-card-cta {
    transition: none;
  }

  .services-overview-card:hover .services-overview-card-media img {
    transform: none;
    filter: grayscale(100%);
  }

  .services-overview-card:hover .services-overview-card-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.18) 100%
      );
  }

  .services-overview-card:hover .services-overview-card-hover-copy {
    opacity: 0;
    transform: translateY(10px);
  }

  .services-overview-card:hover .services-overview-card-cta {
    gap: 6px;
  }
}

/* Services page — proportional scale-down (4:3 card design unchanged) */
.page-services .services-hero {
  --services-hero-min-height: clamp(300px, 44vh, 420px);
}

.page-services .services-hero-shell {
  padding-top: clamp(36px, 5.5vh, 56px);
  padding-bottom: clamp(24px, 3.5vh, 40px);
}

.page-services .services-hero-copy {
  margin-top: clamp(12px, 1.6vh, 16px);
}

.page-services .services-hero-cta {
  margin-top: clamp(16px, 2.2vh, 22px);
}

#services-overview .services-overview-inner {
  padding-top: clamp(48px, 7vh, 72px);
  padding-bottom: clamp(40px, 6vh, 72px);
}

#services-overview {
  --services-overview-content-width: min(1080px, 72vw);
}

#services-overview .services-overview-header {
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

#services-overview .services-overview-header,
#services-overview .services-overview-grid {
  width: 100%;
  max-width: var(--services-overview-content-width);
  margin-inline: auto;
}

/* All Services — uniform card sizing (fixed body, no row stretch) */
#services-overview .services-overview-grid {
  align-items: start;
}

.page-services .services-overview-card {
  height: auto;
  align-self: start;
  -webkit-tap-highlight-color: transparent;
}

.page-services .services-overview-card-body {
  flex: 0 0 auto;
  min-height: clamp(118px, 14vw, 148px);
}

.page-services .services-overview-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.2em;
}

.page-services .services-overview-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
  flex: 1 1 auto;
}

@media (hover: none), (pointer: coarse) {
  .page-services .services-overview-card-hover-copy {
    display: none;
  }
}

@media (min-width: 1101px) {
  #services-overview .services-overview-inner {
    padding-top: clamp(28px, 3.5vh, 44px);
    padding-bottom: clamp(32px, 4.5vh, 56px);
  }

  #services-overview .services-overview-header {
    --services-overview-title-size: clamp(2.1rem, 3.15vw, 3.45rem);
    --services-overview-eyebrow-size: 0.72rem;
    --services-overview-header-stack-gap: clamp(4px, 0.55vh, 7px);
    --services-overview-title-line-height: 0.94;
    display: grid;
    grid-template-columns: var(--brand-accent-width) minmax(0, 1fr);
    column-gap: clamp(10px, 1.6vw, 16px);
    align-items: end;
    margin-bottom: clamp(8px, 1.2vh, 14px);
  }

  #services-overview .services-overview-title-accent {
    grid-column: 1;
    align-self: end;
    flex: none;
    height: calc(
      var(--services-overview-eyebrow-size) * 152 / 98
      + var(--services-overview-header-stack-gap)
      + var(--services-overview-title-size) * var(--services-overview-title-line-height) * 2
    );
  }

  #services-overview .services-overview-header-content {
    grid-column: 2;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    align-items: end;
    row-gap: clamp(4px, 0.55vh, 7px);
    column-gap: clamp(28px, 4.5vw, 72px);
  }

  #services-overview .services-overview-eyebrow-row {
    grid-column: 1;
    grid-row: 1;
  }

  #services-overview .services-overview-title {
    grid-column: 1;
    grid-row: 2;
    font-size: var(--services-overview-title-size);
    line-height: 0.94;
  }

  #services-overview .services-overview-intro {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
  }

  #services-overview .services-overview-title-line {
    display: block;
  }

  #services-overview .services-overview-title-line + .services-overview-title-line::before {
    content: none;
  }
}

@media (min-width: 1101px) {
  .page-services .services-process-inner {
    --services-process-content-width: min(1380px, 88vw);
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(20px, 2.6vw, 30px);
    width: min(100%, var(--services-process-content-width));
    max-width: var(--services-process-content-width);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .page-services .services-hero {
    --services-hero-min-height: clamp(280px, 46vh, 380px);
  }

  .page-services .services-hero-shell {
    padding-bottom: clamp(28px, 5vh, 48px);
  }
}

@media (max-width: 768px) {
  .page-services .services-hero {
    --services-hero-min-height: clamp(260px, 48vh, 360px);
  }

  #services-overview .services-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  #services-overview {
    /* 2-up: total width = two cards at the current single-image width + gap */
    --services-overview-content-width: min(90vw, 474px);
  }

  #services-overview .services-overview-inner {
    padding-top: clamp(64px, 12vh, 96px);
  }

  .page-services .services-overview-card-body {
    min-height: clamp(108px, 28vw, 132px);
  }

  .page-services .services-overview-card {
    transition: none;
  }

  .page-services .services-overview-card-media img,
  .page-services .services-overview-card-overlay,
  .page-services .services-overview-card-hover-copy,
  .page-services .services-overview-card-cta {
    transition: none;
  }
}

@media (max-width: 640px) {
  .page-services .services-hero {
    --services-hero-min-height: clamp(240px, 50vh, 340px);
  }

  #services-overview .services-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #services-overview .services-overview-inner {
    padding-top: clamp(56px, 11vh, 88px);
    padding-bottom: clamp(36px, 5.5vh, 56px);
  }

  #services-overview {
    --services-overview-content-width: min(90vw, 474px);
  }
}

/* ── About team biographies ───────────────────────────────────────────── */

.about-team {
  --about-team-pad-inline: clamp(38px, 4.4vw, 86px);
  --about-team-rule: var(--brand-red);
  --about-team-media-slant: 7.5%;
  --about-team-reverse-num-width: 5.4rem;
  --about-team-reverse-hatch-width: clamp(40px, 4.2vw, 48px);
  --about-team-reverse-index-breathe: clamp(4px, 0.5vw, 6px);
  --about-team-reverse-rule-to-title: clamp(68px, 5.2vw, 72px);
  --about-team-mobile-hatch-width: clamp(34px, 9vw, 48px);
  --about-team-mobile-index-gap: clamp(14px, 3.5vw, 20px);
  --about-team-hatch-angle: -52deg;
  --about-team-hatch-stripe-soft: rgba(255, 255, 255, 0.012);
  --about-team-hatch-stripe-core: rgba(255, 255, 255, 0.035);
  background-color: #000000;
}

.about-team-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--about-team-pad-inline) clamp(72px, 10vh, 112px);
  box-sizing: border-box;
}

.about-team-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-team-list {
  display: flex;
  flex-direction: column;
}

.about-team-member {
  position: relative;
  border-top: none;
  padding: clamp(44px, 5.5vh, 64px) 0;
}

.about-team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 1px;
  background-color: var(--about-team-rule);
  pointer-events: none;
}

.about-team-member-shell {
  display: grid;
  grid-template-columns: minmax(200px, 28%) minmax(0, 1fr) minmax(88px, 112px);
  align-items: center;
  gap: clamp(24px, 3.5vw, 48px);
}

.about-team-member--reverse .about-team-member-shell {
  grid-template-columns:
    calc(
      var(--about-team-reverse-num-width) + var(--about-team-reverse-index-breathe) + 1px +
        var(--about-team-reverse-hatch-width)
    )
    minmax(0, 1fr)
    minmax(200px, 28%);
  column-gap: calc(
    var(--about-team-reverse-rule-to-title) - var(--about-team-reverse-hatch-width)
  );
}

.about-team-member--reverse .about-team-member-index {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.about-team-member--reverse .about-team-member-media {
  margin-left: calc(clamp(24px, 3.5vw, 48px) - var(--about-team-reverse-rule-to-title) +
      var(--about-team-reverse-hatch-width));
}

.about-team-member-index {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  min-height: clamp(100px, 14vw, 140px);
}

.about-team-member-index--end {
  flex-direction: row-reverse;
}

.about-team-member-index-num {
  flex-shrink: 0;
  font-family: var(--font-title);
  font-size: clamp(3.25rem, 5.8vw, 5.25rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: rgba(185, 45, 45, 0.42);
  padding: 0 clamp(6px, 0.7vw, 10px);
}

.about-team-member--reverse .about-team-member-index-num {
  flex: 0 0 var(--about-team-reverse-num-width);
  width: var(--about-team-reverse-num-width);
  min-width: var(--about-team-reverse-num-width);
  box-sizing: border-box;
  margin-right: var(--about-team-reverse-index-breathe);
}

.about-team-member-index-rule {
  flex-shrink: 0;
  width: 1px;
  background: rgba(185, 45, 45, 0.58);
}

.about-team-member-index-hatch {
  flex: 1;
  min-width: clamp(28px, 3.8vw, 48px);
  background-image: repeating-linear-gradient(
    var(--about-team-hatch-angle),
    transparent 0,
    transparent 7px,
    var(--about-team-hatch-stripe-soft) 7.15px,
    var(--about-team-hatch-stripe-core) 7.5px,
    var(--about-team-hatch-stripe-soft) 7.85px,
    transparent 8px
  );
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.about-team-member--reverse .about-team-member-index-hatch {
  flex: 0 0 var(--about-team-reverse-hatch-width);
  width: var(--about-team-reverse-hatch-width);
  min-width: var(--about-team-reverse-hatch-width);
}

.about-team-member-media {
  position: relative;
  width: 100%;
  max-width: min(100%, 380px);
  aspect-ratio: 5 / 6;
  max-height: 456px;
  overflow: hidden;
  line-height: 0;
  background-color: #0a0a0a;
  clip-path: polygon(
    var(--about-team-media-slant) 0,
    100% 0,
    calc(100% - var(--about-team-media-slant)) 100%,
    0 100%
  );
}
.about-team-member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.about-team-member-content {
  min-width: 0;
  padding: clamp(4px, 0.8vh, 8px) 0;
}

.about-team-member-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 0.9vh, 10px);
}

.about-team-member-name-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
}

.about-team-member-name {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.8vw, 3.15rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-team-member-name-rule {
  display: block;
  width: 100%;
  height: var(--brand-accent-width);
  margin-top: clamp(6px, 0.8vh, 10px);
  background-color: var(--brand-red);
  clip-path: polygon(
    var(--brand-accent-bevel) 0,
    100% 0,
    calc(100% - var(--brand-accent-bevel)) 100%,
    0 100%
  );
}

.about-team-member-role {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.8vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--brand-red);
}

.about-team-member-bio {
  margin: clamp(16px, 2.2vh, 24px) 0 0;
  max-width: 38rem;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.02vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.about-team-member--reverse .about-team-member-media {
  margin-left: auto;
}

.about-team-member:not(.about-team-member--reverse) .about-team-member-media {
  margin-right: auto;
}

.about-team-cta-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  border-top: none;
  padding: clamp(44px, 5.5vh, 64px) 0 0;
}

.about-team-cta-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 1px;
  background-color: var(--about-team-rule);
  pointer-events: none;
}

.about-team-cta {
  --about-team-cta-pad-inline: clamp(40px, 5vw, 56px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-width: clamp(240px, 28vw, 320px);
  padding: 14px var(--about-team-cta-pad-inline);
  box-sizing: border-box;
  text-decoration: none;
  line-height: 1;
}

.about-team-cta > span:first-of-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-right: -0.16em;
}

.about-team-cta .featured-ghost-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.95em;
  height: 0.95em;
  line-height: 0;
}

.about-team-cta .featured-ghost-btn-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-team-cta:hover .featured-ghost-btn-arrow {
  transform: translateY(-3px);
}

/* About page — phone only (≤767px). */
@media (max-width: 767px) {
  .about-team {
    --about-team-hatch-stripe-soft: rgba(255, 255, 255, 0.045);
    --about-team-hatch-stripe-core: rgba(255, 255, 255, 0.12);
  }

  .about-team-inner {
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .about-team-member {
    padding: clamp(36px, 5vh, 52px) 0;
  }

  .about-team-member-shell,
  .about-team-member--reverse .about-team-member-shell {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: stretch;
    column-gap: var(--about-team-mobile-index-gap);
    row-gap: clamp(16px, 2.5vh, 24px);
  }

  .about-team-member:not(.about-team-member--reverse) .about-team-member-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .about-team-member-index {
    order: 0;
    grid-row: 1 / -1;
    grid-column: 1;
    align-self: stretch;
    min-height: clamp(120px, 34vw, 220px);
    max-width: none;
    width: auto;
  }

  .about-team-member:not(.about-team-member--reverse) .about-team-member-index {
    grid-column: 2;
  }

  .about-team-member-index--end {
    align-self: stretch;
    flex-direction: row-reverse;
  }

  .about-team-member-index-hatch,
  .about-team-member--reverse .about-team-member-index-hatch {
    flex: 0 0 var(--about-team-mobile-hatch-width);
    width: var(--about-team-mobile-hatch-width);
    min-width: var(--about-team-mobile-hatch-width);
  }

  .about-team-member-media {
    order: 1;
    grid-column: 2;
    grid-row: 1;
    max-width: 100%;
    max-height: none;
    margin-left: 0;
    margin-right: 0;
    --about-team-media-slant: 0%;
  }

  .about-team-member:not(.about-team-member--reverse) .about-team-member-media {
    grid-column: 1;
  }

  .about-team-member-content {
    order: 2;
    grid-column: 2;
    grid-row: 2;
  }

  .about-team-member:not(.about-team-member--reverse) .about-team-member-content {
    grid-column: 1;
  }

  .about-team-member-name {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .about-team-member-bio {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

/* ── Services process ─────────────────────────────────────────────────── */

.services-process {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  isolation: isolate;
}

.services-process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--metal-texture-url);
  background-size: var(--metal-texture-size);
  background-repeat: var(--metal-texture-repeat);
  background-position: var(--metal-texture-position);
  filter: var(--metal-texture-filter);
  pointer-events: none;
}

.services-process::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    var(--metal-depth-overlay),
    var(--metal-scratch-lines);
  pointer-events: none;
}

.services-process-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(22px, 3vw, 36px);
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(36px, 5vh, 56px) clamp(38px, 4.4vw, 86px);
  box-sizing: border-box;
}

.services-process-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1.2vh, 14px);
  min-width: 0;
}

.services-process-eyebrow-row {
  --services-process-eyebrow-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.7vw, 7px);
}

.services-process-eyebrow-fast {
  display: block;
  flex: 0 0 auto;
  width: auto;
  /* Slash glyphs span 98/152 of the viewBox height; scale so they match eyebrow text. */
  height: calc(var(--services-process-eyebrow-size) * 152 / 98);
}

.services-process-eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--services-process-eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
}

.services-process-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.services-process-title-line {
  display: block;
}

.services-process-copy {
  margin: 0;
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.95vw, 0.86rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.services-process-cta {
  margin-top: clamp(4px, 0.6vh, 6px);
  padding: 12px 20px;
  font-size: 0.7rem;
}

.services-process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(8px, 1vw, 12px);
  min-width: 0;
}

.services-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 0.9vh, 10px);
  min-width: 0;
  text-align: center;
}

.services-process-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 4.4vw, 52px);
  height: clamp(44px, 4.4vw, 52px);
  color: var(--brand-red);
}

.services-process-step-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.services-process-step-icon--phone img,
.services-process-step-icon--quote img,
.services-process-step-icon--wrench-car img,
.services-process-step-icon--shield img {
  display: block;
  filter: var(--brand-red-icon-filter);
}

.services-process-step-icon--phone img {
  width: clamp(26px, 2.6vw, 32px);
  height: clamp(26px, 2.6vw, 32px);
}

.services-process-step-icon--quote img {
  width: clamp(26px, 2.6vw, 32px);
  height: auto;
}

.services-process-step-icon--wrench-car img {
  width: clamp(30px, 3vw, 36px);
  height: auto;
}

.services-process-step-icon--shield img {
  width: clamp(24px, 2.4vw, 30px);
  height: auto;
}

.services-process-step-number {
  margin: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
}

.services-process-step-title {
  margin: 0;
  width: 100%;
  font-family: var(--font-title);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.services-process-step-copy {
  margin: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 0.9vw, 0.84rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
}

.services-process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: clamp(16px, 1.7vw, 20px);
  height: clamp(16px, 1.7vw, 20px);
  margin-top: clamp(6px, 0.9vw, 10px);
  color: var(--brand-red);
  opacity: 0.9;
}

.services-process-connector svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) {
  .services-process-inner {
    grid-template-columns: 1fr;
    gap: clamp(22px, 3vh, 32px);
  }

  .services-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 18px) clamp(12px, 1.5vw, 18px);
  }

  .services-process-connector {
    display: none;
  }

  /* All Services — scaled desktop layout (intro left, 4 steps + connectors) */
  .page-services .services-process-inner {
    grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1.35fr);
    align-items: center;
    gap: clamp(14px, 2.2vw, 24px);
    padding: clamp(24px, 3.5vh, 44px) clamp(32px, 5vw, 56px);
  }

  .page-services .services-process-intro {
    align-items: flex-start;
    text-align: left;
    margin-inline: 0;
    max-width: none;
    gap: clamp(8px, 1vh, 12px);
  }

  .page-services .services-process-eyebrow-row {
    --services-process-eyebrow-size: 0.62rem;
    justify-content: flex-start;
  }

  .page-services .services-process-title {
    font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  }

  .page-services .services-process-copy {
    margin-inline: 0;
    max-width: 30ch;
    font-size: clamp(0.68rem, 0.88vw, 0.8rem);
  }

  .page-services .services-process-cta {
    align-self: flex-start;
    margin-top: clamp(4px, 0.6vh, 8px);
    padding: 10px 16px;
    font-size: 0.62rem;
  }

  .page-services .services-process-steps {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(4px, 0.7vw, 8px);
  }

  .page-services .services-process-connector {
    display: flex;
    width: clamp(11px, 1.3vw, 16px);
    height: clamp(11px, 1.3vw, 16px);
    margin-top: clamp(4px, 0.6vw, 8px);
  }

  .page-services .services-process-step {
    gap: clamp(6px, 0.7vh, 8px);
  }

  .page-services .services-process-step-icon {
    width: clamp(32px, 3.6vw, 42px);
    height: clamp(32px, 3.6vw, 42px);
  }

  .page-services .services-process-step-icon--phone img,
  .page-services .services-process-step-icon--quote img {
    width: clamp(20px, 2.2vw, 26px);
    height: clamp(20px, 2.2vw, 26px);
  }

  .page-services .services-process-step-icon--wrench-car img {
    width: clamp(22px, 2.5vw, 30px);
  }

  .page-services .services-process-step-icon--shield img {
    width: clamp(18px, 2vw, 24px);
  }

  .page-services .services-process-step-number {
    font-size: 0.64rem;
  }

  .page-services .services-process-step-title {
    font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  }

  .page-services .services-process-step-copy {
    font-size: clamp(0.64rem, 0.78vw, 0.74rem);
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  .services-process-inner {
    padding-inline: clamp(20px, 5vw, 32px);
    padding-block: clamp(28px, 4vh, 40px);
  }

  .services-process-title {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .services-process-steps {
    grid-template-columns: 1fr;
  }

  .page-services .services-process-inner {
    grid-template-columns: 1fr;
    gap: clamp(18px, 2.8vh, 24px);
    padding-inline: clamp(28px, 6vw, 40px);
    padding-block: clamp(24px, 3.5vh, 36px);
  }

  .page-services .services-process-title {
    font-size: clamp(1.6rem, 8.2vw, 2.1rem);
  }

  .page-services .services-process-eyebrow-row {
    --services-process-eyebrow-size: 0.58rem;
  }

  .page-services .services-process-copy {
    max-width: 34ch;
    font-size: clamp(0.66rem, 2.8vw, 0.74rem);
  }

  .page-services .services-process-cta {
    padding: 9px 14px;
    font-size: 0.58rem;
  }

  .page-services .services-process-steps {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(2px, 0.6vw, 6px);
  }

  .page-services .services-process-connector {
    width: clamp(9px, 2.2vw, 12px);
    height: clamp(9px, 2.2vw, 12px);
  }

  .page-services .services-process-step-icon {
    width: clamp(28px, 7vw, 34px);
    height: clamp(28px, 7vw, 34px);
  }

  .page-services .services-process-step-icon--phone img,
  .page-services .services-process-step-icon--quote img {
    width: clamp(16px, 4vw, 20px);
    height: clamp(16px, 4vw, 20px);
  }

  .page-services .services-process-step-icon--wrench-car img {
    width: clamp(18px, 4.5vw, 22px);
  }

  .page-services .services-process-step-icon--shield img {
    width: clamp(14px, 3.5vw, 18px);
  }

  .page-services .services-process-step-number {
    font-size: 0.58rem;
  }

  .page-services .services-process-step-title {
    font-size: clamp(0.68rem, 2.6vw, 0.82rem);
  }

  .page-services .services-process-step-copy {
    font-size: clamp(0.58rem, 2.2vw, 0.66rem);
    line-height: 1.3;
  }
}

/* All Services page — phone only (≤767px). Center intro; keep step icons unchanged. */
@media (max-width: 767px) {
  .page-services .services-process-intro {
    align-items: center;
    text-align: center;
    margin-inline: auto;
    width: 100%;
    max-width: min(90vw, 474px);
  }

  .page-services .services-process-eyebrow-row {
    justify-content: center;
  }

  .page-services .services-process-eyebrow-fast {
    display: none;
  }

  .page-services .services-process-copy {
    margin-inline: auto;
    text-align: center;
  }

  .page-services .services-process-cta {
    align-self: center;
  }

  .page-services .services-process-title {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
  }
}

.services-process + .location-map {
  padding-top: clamp(48px, 6vw, 72px);
}

.service-cta-bar + .location-map {
  padding-top: clamp(48px, 6vw, 72px);
}

/* ── Services spotlight ───────────────────────────────────────────────── */

.services-spotlight {
  --service-card-slant: 9%;
  background-color: #000000;
}

.services-spotlight-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.75fr);
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 88px) clamp(38px, 4.4vw, 86px);
  box-sizing: border-box;
}

.services-spotlight-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.services-spotlight-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brand-red);
}

.services-spotlight-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.75vw, 2.85rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.services-spotlight-title-line {
  display: block;
}

.services-spotlight-title-line:first-child {
  white-space: nowrap;
}

.services-spotlight-copy {
  margin: 18px 0 0;
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.services-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--brand-red);
  transition: color 0.2s ease;
}

.services-spotlight-cta:hover {
  color: var(--brand-red-light);
}

.services-spotlight-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.services-spotlight-cta:hover .services-spotlight-cta-arrow {
  transform: translateX(3px);
}

.services-spotlight-cta-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.services-spotlight-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  min-width: 0;
}

.service-card {
  --service-card-clip: polygon(
    var(--service-card-slant) 0,
    100% 0,
    calc(100% - var(--service-card-slant)) 100%,
    0 100%
  );
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  clip-path: var(--service-card-clip);
  transition: filter 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(
    188deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(170, 180, 190, 0.05) 24%,
    rgba(110, 120, 130, 0.02) 48%,
    rgba(190, 200, 210, 0.1) 72%,
    rgba(255, 255, 255, 0.46) 90%,
    rgba(210, 220, 230, 0.22) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.82;
  transition: opacity 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 130% 72% at 50% 100%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(210, 220, 230, 0.08) 30%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 42% 38% at 0% 100%,
      rgba(255, 255, 255, 0.14) 0%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 42% 38% at 100% 100%,
      rgba(255, 255, 255, 0.14) 0%,
      transparent 72%
    ),
    linear-gradient(
      108deg,
      transparent 0%,
      transparent 36%,
      rgba(255, 255, 255, 0.02) 42%,
      rgba(235, 242, 248, 0.14) 49%,
      rgba(255, 255, 255, 0.24) 50%,
      rgba(235, 242, 248, 0.14) 51%,
      rgba(255, 255, 255, 0.02) 58%,
      transparent 64%,
      transparent 100%
    );
  background-size:
    100% 100%,
    100% 100%,
    100% 100%,
    220% 100%;
  background-position:
    0 0,
    0 0,
    0 0,
    120% 0;
  background-repeat: no-repeat;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.service-card:hover {
  filter: brightness(1.06);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 0.95;
  animation: serviceCardSilverSweep 0.52s cubic-bezier(0.33, 1, 0.68, 1);
}

@keyframes serviceCardSilverSweep {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      120% 0;
  }

  100% {
    background-position:
      0 0,
      0 0,
      0 0,
      -20% 0;
  }
}

.service-card-media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #111111;
}

.service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) brightness(0.45);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
  filter: grayscale(1) brightness(0.52);
}

.service-card--auto-repair .service-card-media img {
  object-position: 35% center;
}

.service-card--engine-rebuilding .service-card-media img {
  object-position: 35% center;
}

.service-card--performance .service-card-media img {
  object-position: 62% center;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.08) 38%,
    rgba(0, 0, 0, 0.42) 72%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

.service-card-icon-slot {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  height: clamp(72px, 9vw, 96px);
  margin-top: auto;
}

.service-card-title {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 12px 18px;
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.service-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 10px 12px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(14, 14, 16, 0.96) 0%,
      rgba(0, 0, 0, 0.9) 52%,
      rgba(6, 6, 8, 0.98) 100%
    );
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
  transition: color 0.2s ease;
}

.service-card-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 14px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(210, 220, 230, 0.05) 42%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
}

.service-card-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(170, 180, 190, 0.12) 14%,
    rgba(255, 255, 255, 0.62) 50%,
    rgba(170, 180, 190, 0.12) 86%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.12),
    0 0 22px rgba(200, 210, 220, 0.08);
  opacity: 0.88;
  transition: opacity 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover .service-card-footer::after {
  opacity: 1;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(210, 220, 230, 0.12);
}

.service-card-footer > * {
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card-footer {
  color: var(--brand-red-light);
}

.service-card-footer-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-footer-arrow {
  transform: translateX(2px);
}

.service-card-footer-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1200px) {
  .services-spotlight {
    --service-card-slant: 8%;
  }

  .services-spotlight-inner {
    gap: clamp(28px, 3.5vw, 44px);
    padding-inline: clamp(32px, 4vw, 56px);
  }
}

@media (max-width: 1024px) {
  .services-spotlight-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(24px, 3.5vh, 36px);
  }

  .services-spotlight-intro {
    gap: clamp(10px, 1.35vh, 13px);
  }

  .services-spotlight-eyebrow {
    margin: 0;
  }

  .services-spotlight-title {
    margin: 0;
    font-size: clamp(2.05rem, 4.8vw, 2.85rem);
  }

  .services-spotlight-copy {
    margin: 0;
    max-width: clamp(280px, 78%, 44ch);
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    line-height: 1.5;
  }

  .services-spotlight-cta {
    margin-top: clamp(12px, 1.8vh, 18px);
  }

  .services-spotlight-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 1vw, 14px);
  }
}

@media (max-width: 768px) {
  .services-spotlight {
    --service-card-slant: 0%;
  }

  .services-spotlight-inner {
    padding-top: clamp(44px, 7vh, 64px);
    padding-bottom: clamp(28px, 4vh, 40px);
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .services-spotlight-intro {
    align-items: center;
    text-align: center;
  }

  .services-spotlight-eyebrow,
  .services-spotlight-title,
  .services-spotlight-title-line {
    width: 100%;
    text-align: center;
  }

  .services-spotlight-title-line:first-child {
    white-space: normal;
  }

  .services-spotlight-copy {
    max-width: none;
    text-align: center;
  }

  .services-spotlight-title {
    font-size: clamp(1.85rem, 5.5vw, 2.45rem);
  }

  .services-spotlight-cta {
    margin-top: 22px;
    align-self: center;
    justify-content: center;
    margin-inline: auto;
  }

  .services-spotlight-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2.5vw, 14px);
  }

  .service-card {
    clip-path: none;
  }
}

@media (max-width: 480px) {
  .service-card-icon-slot {
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-spotlight-cta,
  .services-spotlight-cta-arrow,
  .service-card,
  .service-card-media img,
  .service-card-footer,
  .service-card-footer-arrow,
  .service-card::before,
  .service-card::after,
  .service-card-footer::after {
    transition: none;
  }

  .services-spotlight-cta:hover .services-spotlight-cta-arrow,
  .service-card:hover .service-card-footer-arrow {
    transform: none;
  }

  .service-card:hover .service-card-media img {
    transform: none;
  }

  .service-card:hover::after {
    animation: none;
  }
}

/* ── Why choose ───────────────────────────────────────────────────────── */

.why-choose {
  --why-choose-slant: 9%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  align-items: stretch;
  gap: clamp(8px, 1.2vw, 16px);
  overflow: hidden;
  background-color: #000000;
}

.why-choose-media {
  position: relative;
  z-index: 1;
  min-height: 0;
  overflow: hidden;
}

.why-choose-media-frames {
  position: absolute;
  inset: clamp(32px, 4vh, 52px) clamp(6px, 0.8vw, 12px)
    clamp(32px, 4vh, 52px) clamp(24px, 2.8vw, 56px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 3px;
  box-sizing: border-box;
}

.why-choose-media-cut {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  clip-path: polygon(
    var(--why-choose-slant) 0,
    100% 0,
    calc(100% - var(--why-choose-slant)) 100%,
    0 100%
  );
}

.why-choose-media-cut img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: auto;
}

.why-choose-media-cut--third img {
  object-position: 58% center;
}

.why-choose-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 0;
  background-color: #000000;
}

.why-choose-content-inner {
  width: 100%;
  padding: clamp(44px, 5.5vh, 68px) clamp(24px, 2.8vw, 48px)
    clamp(44px, 5.5vh, 68px) clamp(8px, 1vw, 12px);
  box-sizing: border-box;
}

.why-choose-eyebrow-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
}

.why-choose-eyebrow {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brand-red);
}

.why-choose-eyebrow-rule {
  flex: 1 1 auto;
  height: 1px;
  background-color: var(--brand-red);
}

.why-choose-title {
  margin: 14px 0 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 2.8vw, 2.85rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.why-choose-title-line {
  display: block;
}

.why-choose-copy {
  margin: 18px 0 0;
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.why-choose-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vh, 28px) clamp(16px, 1.8vw, 24px);
  margin: clamp(28px, 3.5vh, 36px) 0 0;
  padding: 0;
  list-style: none;
}

.why-choose-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.why-choose-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
}

.why-choose-feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: var(--brand-red-icon-filter);
}

.why-choose-feature-title {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
}

.why-choose-feature-copy {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.78vw, 0.8rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1200px) {
  .why-choose {
    --why-choose-slant: 8%;
  }

  .why-choose-features {
    gap: clamp(10px, 1.2vw, 16px);
  }
}

@media (max-width: 1024px) {
  .why-choose {
    --why-choose-slant: 8%;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    column-gap: clamp(12px, 2vw, 24px);
    grid-template-areas:
      "intro features"
      "media media";
  }

  .why-choose-content {
    display: contents;
  }

  .why-choose-content-inner {
    display: contents;
  }

  .why-choose-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(10px, 1.4vh, 13px);
    grid-area: intro;
    width: auto;
    max-width: none;
    padding: clamp(40px, 6vh, 56px) 0 clamp(20px, 3vh, 28px)
      clamp(32px, 4vw, 56px);
    box-sizing: border-box;
  }

  .why-choose-eyebrow-rule {
    display: none;
  }

  .why-choose-title {
    margin: 0;
    font-size: clamp(2.6rem, 4.6vw, 3.4rem);
  }

  .why-choose-copy {
    margin: 0;
    max-width: clamp(250px, 72%, 320px);
    font-size: clamp(0.82rem, 0.92vw, 0.9rem);
    line-height: 1.5;
  }

  .why-choose-media {
    grid-area: media;
    min-height: clamp(280px, 46vw, 420px);
    overflow: hidden;
  }

  .why-choose-media-frames {
    position: absolute;
    inset: clamp(20px, 3vh, 32px) clamp(24px, 4vw, 40px);
    flex-direction: row;
    gap: 3px;
    padding: 0;
    justify-content: flex-end;
    align-items: stretch;
  }

  .why-choose-media-cut {
    clip-path: polygon(
      var(--why-choose-slant) 0,
      100% 0,
      calc(100% - var(--why-choose-slant)) 100%,
      0 100%
    );
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: 100%;
    aspect-ratio: unset;
    margin: 0;
  }

  .why-choose-media-cut img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    margin: 0;
  }

  .why-choose-features {
    grid-area: features;
    align-self: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vh, 22px) clamp(12px, 1.6vw, 18px);
    margin-top: 0;
    padding: clamp(40px, 6vh, 56px) clamp(32px, 4vw, 56px)
      clamp(20px, 3vh, 28px) 0;
    box-sizing: border-box;
  }

  .why-choose-feature-icon {
    width: 28px;
    height: 28px;
  }

  .why-choose-feature-title {
    margin-top: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }

  .why-choose-feature-copy {
    margin-top: 6px;
    font-size: clamp(0.66rem, 0.78vw, 0.74rem);
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .why-choose {
    --why-choose-slant: 7%;
  }

  .why-choose-intro {
    align-items: center;
    text-align: center;
    padding-top: clamp(28px, 4vh, 40px);
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .why-choose-eyebrow-row {
    justify-content: center;
  }

  .why-choose-eyebrow,
  .why-choose-title,
  .why-choose-title-line {
    width: 100%;
    text-align: center;
  }

  .why-choose-eyebrow-rule {
    display: none;
  }

  .why-choose-copy {
    max-width: none;
    text-align: center;
  }

  .why-choose-features {
    justify-items: center;
  }

  .why-choose-feature {
    align-items: center;
    text-align: center;
  }

  .why-choose-media {
    min-height: clamp(150px, 42vw, 220px);
    overflow: hidden;
  }

  .why-choose-media-frames {
    position: absolute;
    inset: clamp(10px, 2vh, 16px) clamp(8px, 2vw, 14px);
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    gap: 3px;
    padding: 0;
  }

  .why-choose-media-cut {
    clip-path: polygon(
      var(--why-choose-slant) 0,
      100% 0,
      calc(100% - var(--why-choose-slant)) 100%,
      0 100%
    );
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
    height: 100%;
    aspect-ratio: unset;
    margin: 0;
  }

  .why-choose-media-cut img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .why-choose {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "features";
  }

  .why-choose-eyebrow-rule {
    display: none;
  }

  .why-choose-media {
    min-height: clamp(160px, 44vw, 210px);
  }

  .why-choose-media-frames {
    inset: clamp(8px, 1.8vh, 14px) clamp(8px, 2vw, 12px);
  }

  .why-choose-intro {
    padding-top: clamp(28px, 4vh, 36px);
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .why-choose-features {
    align-self: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vh, 24px) clamp(14px, 3vw, 20px);
    padding: clamp(28px, 4vh, 40px) clamp(24px, 4vw, 40px)
      clamp(40px, 6vh, 56px);
  }

  .why-choose-feature-icon {
    width: 32px;
    height: 32px;
  }

  .why-choose-feature-title {
    margin-top: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .why-choose-feature-copy {
    margin-top: 8px;
    font-size: clamp(0.72rem, 0.78vw, 0.8rem);
    line-height: 1.45;
  }

  .why-choose-title {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }
}

/* ── Featured work ────────────────────────────────────────────────────── */

.featured-work {
  background-color: #000000;
}

.featured-work-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 88px) 0 clamp(64px, 8vh, 96px);
  box-sizing: border-box;
}

.featured-work-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(38px, 4.4vw, 86px);
  box-sizing: border-box;
}

.featured-work-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
  width: min(420px, 100%);
  margin: 0 auto;
}

.featured-work-eyebrow {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brand-red);
}

.featured-work-eyebrow-rule {
  flex: 1 1 auto;
  height: 1px;
  min-width: 24px;
  background-color: var(--brand-red);
}

.featured-work-title {
  margin: clamp(18px, 2.5vh, 24px) 0 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.featured-work-slashes-divider {
  margin: clamp(14px, 2vh, 18px) 0 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  text-align: center;
  color: var(--brand-red);
}

.featured-work-copy {
  margin: clamp(18px, 2.5vh, 24px) auto 0;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.featured-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--brand-red);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--brand-red);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.featured-ghost-btn:hover {
  color: var(--brand-red-light);
  border-color: var(--brand-red-light);
}

.featured-ghost-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.featured-ghost-btn-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.featured-ghost-btn:hover .featured-ghost-btn-arrow {
  transform: translateX(3px);
}

.featured-work-cta {
  margin-top: clamp(24px, 3vh, 32px);
}

.featured-carousel {
  --featured-slant: 7.5%;
  --featured-clip: polygon(
    var(--featured-slant) 0,
    100% 0,
    calc(100% - var(--featured-slant)) 100%,
    0 100%
  );
  --featured-nav-overlap: 22px;
  position: relative;
  margin-top: clamp(40px, 5vh, 56px);
  padding: 0 clamp(16px, 2.5vw, 40px);
  outline: none;
}

.featured-carousel-frame {
  position: relative;
}

.featured-carousel-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
  container-name: featured-carousel;
}

.featured-carousel-track {
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.2vw, 14px);
}

.featured-slide {
  position: relative;
  flex: 0 0 clamp(240px, 50cqw, 900px);
  min-height: clamp(280px, 32cqw, 420px);
  overflow: hidden;
  border: 1px solid transparent;
  box-sizing: border-box;
  isolation: isolate;
}

.featured-slide.is-active {
  border-color: var(--brand-red);
}

.featured-slide-media {
  position: absolute;
  inset: 0;
  line-height: 0;
}

.featured-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-slide-media--dirt img {
  object-position: 54% 56%;
}

.featured-slide-media--rebuild img {
  object-position: center 68%;
}

.featured-slide-media--challenger img {
  object-position: 28% 52%;
}

.featured-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.62) 72%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    rgba(0, 0, 0, 0);
  pointer-events: none;
}

.featured-slide-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  align-items: end;
  gap: clamp(12px, 2vw, 20px);
  height: 100%;
  min-height: inherit;
  padding: clamp(20px, 2.5vw, 28px) clamp(22px, 2.8vw, 32px);
  box-sizing: border-box;
}

.featured-slide-label {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--brand-red);
}

.featured-slide-copy {
  grid-column: 1;
  min-width: 0;
}

.featured-slide-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.featured-slide-subtitle {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--brand-red);
}

.featured-slide-description {
  margin: 12px 0 0;
  max-width: 42ch;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.featured-slide-cta {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  flex-shrink: 0;
  visibility: hidden;
  pointer-events: none;
}

.featured-slide.is-active .featured-slide-cta {
  visibility: visible;
  pointer-events: auto;
}

.featured-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: var(--brand-red);
  color: #ffffff;
  cursor: pointer;
  clip-path: var(--featured-clip);
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.featured-carousel-nav svg {
  width: 16px;
  height: 16px;
  display: block;
}

.featured-carousel-nav:hover {
  background-color: var(--brand-red-light);
}

.featured-carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.featured-carousel-nav--prev {
  left: calc(-1 * var(--featured-nav-overlap));
}

.featured-carousel-nav--next {
  right: calc(-1 * var(--featured-nav-overlap));
}

.featured-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(18px, 2.5vh, 24px);
}

.featured-carousel-dot {
  width: 24px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #2a2a2a;
  clip-path: polygon(7.5% 0, 100% 0, 92.5% 100%, 0 100%);
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.featured-carousel-dot.is-active {
  background-color: var(--brand-red);
}

@media (max-width: 1024px) {
  .featured-work-inner {
    padding-top: clamp(48px, 7vh, 72px);
    padding-bottom: clamp(52px, 7vh, 80px);
  }

  .featured-work-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 1.35vh, 13px);
    max-width: clamp(520px, 82%, 680px);
    padding-inline: clamp(32px, 4vw, 56px);
  }

  .featured-work-eyebrow-row {
    margin: 0;
    width: min(380px, 100%);
  }

  .featured-work-title {
    margin: 0;
    font-size: clamp(2.15rem, 4.4vw, 3.05rem);
  }

  .featured-work-slashes-divider {
    margin: 0;
  }

  .featured-work-copy {
    margin: 0;
    max-width: clamp(300px, 85%, 48ch);
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    line-height: 1.5;
  }

  .featured-work-cta {
    margin-top: clamp(12px, 1.8vh, 18px);
  }

  .featured-carousel {
    margin-top: clamp(32px, 4vh, 48px);
  }
}

@media (max-width: 900px) {
  .featured-slide {
    flex-basis: clamp(220px, 68cqw, 640px);
    min-height: clamp(260px, 44cqw, 360px);
  }

  .featured-slide-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .featured-slide-cta {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 4px;
  }
}

@media (max-width: 768px) {
  .featured-work-inner {
    padding-top: clamp(28px, 4vh, 40px);
    padding-bottom: clamp(28px, 4vh, 40px);
  }

  .featured-work-header {
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .featured-work-title {
    font-size: clamp(1.95rem, 5.2vw, 2.65rem);
  }

  .featured-carousel {
    --featured-nav-overlap: 10px;
    padding-inline: clamp(16px, 4vw, 28px);
  }

  .featured-slide {
    flex-basis: clamp(200px, 72cqw, 500px);
    min-height: clamp(260px, 50cqw, 360px);
  }

}

@media (max-width: 600px) {
  .featured-work-inner {
    padding-block: clamp(28px, 4vh, 36px);
  }

  .featured-work-header {
    padding-inline: clamp(24px, 4vw, 40px);
  }

  .featured-work-eyebrow-rule {
    max-width: 72px;
  }

  .featured-work-title {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

  .featured-carousel {
    --featured-nav-overlap: 8px;
    padding-inline: clamp(14px, 3.5vw, 22px);
  }

  .featured-slide {
    flex-basis: clamp(190px, 78cqw, 480px);
    min-height: clamp(270px, 52cqw, 360px);
  }

  .featured-carousel-nav {
    width: 36px;
    height: 36px;
  }
}

/* ── Featured services ──────────────────────────────────────────────────── */

.featured-services {
  --featured-band-width: min(100%, 58%);
  --featured-band-max: 880px;
  --featured-grid-gap: clamp(12px, 1.4vw, 18px);
  --featured-header-grid-gap: clamp(24px, 3vh, 32px);
  --featured-stage-scale: 1;
  background-color: #000000;
}

.featured-services-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(72px, 10vh, 112px) clamp(38px, 4.4vw, 86px) clamp(40px, 5.5vh, 60px);
  box-sizing: border-box;
}

.featured-services-stage {
  width: 100%;
}

.featured-services-header {
  width: var(--featured-band-width);
  max-width: var(--featured-band-max);
  margin-inline: auto;
  margin-bottom: 0;
  position: relative;
  container-type: inline-size;
  --featured-title-size: clamp(2.35rem, 10.5cqi, 4.35rem);
  --featured-title-height: calc(var(--featured-title-size) * 0.9 * 2);
  --featured-watermark-height: calc(var(--featured-title-height) * 0.78);
  --featured-watermark-opacity: 0.08;
  --featured-watermark-opacity-peak: 0.14;
  --featured-watermark-glint-duration: 1.75s;
}

.featured-services-header-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  column-gap: var(--featured-grid-gap);
}

.featured-services-header-left {
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.6cqi, 16px);
  min-width: 0;
}

.featured-services-header-left-content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8cqi, 18px);
  flex: 1 1 auto;
  min-width: 0;
}

.featured-services-title-accent {
  flex: 0 0 var(--brand-accent-width);
  width: var(--brand-accent-width);
  align-self: stretch;
  background-color: var(--brand-red);
  clip-path: polygon(
    0 var(--brand-accent-bevel),
    100% calc(var(--brand-accent-bevel) - var(--brand-accent-slice)),
    100% calc(100% - var(--brand-accent-bevel)),
    0 calc(100% - var(--brand-accent-bevel) + var(--brand-accent-slice))
  );
}

.featured-services-title {
  margin: 0;
  min-width: 0;
  font-family: var(--font-title);
  font-size: var(--featured-title-size);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.featured-services-title-line {
  display: block;
}

.featured-services-copy {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 1.7cqi, 0.88rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.featured-services-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-width: 0;
}

.featured-services-header-right-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(12px, 1.8cqi, 18px);
  width: fit-content;
  max-width: 100%;
  min-height: 100%;
  margin-left: auto;
}

.featured-services-watermark-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--featured-title-height);
}

.featured-services-watermark-shimmer {
  position: relative;
  display: block;
  line-height: 0;
}

.featured-services-watermark {
  height: var(--featured-watermark-height);
  width: auto;
  display: block;
  object-fit: contain;
  object-position: right center;
  filter: brightness(0) invert(1);
  opacity: var(--featured-watermark-opacity);
  user-select: none;
  pointer-events: none;
}

.featured-services-watermark-glint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 0%,
    transparent 34%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(235, 242, 248, 0.22) 47%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(220, 230, 240, 0.55) 52%,
    rgba(235, 242, 248, 0.22) 55%,
    rgba(255, 255, 255, 0.04) 62%,
    transparent 68%,
    transparent 100%
  );
  background-size: 240% 100%;
  background-position: 130% 0;
  background-repeat: no-repeat;
  opacity: 0;
  mix-blend-mode: screen;
  -webkit-mask-image: url("../assets/icons/SVG/gands-thin-outline-logo.png");
  mask-image: url("../assets/icons/SVG/gands-thin-outline-logo.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right center;
  mask-position: right center;
  will-change: background-position, opacity;
}

.featured-services.is-watermark-glint-forward .featured-services-watermark {
  animation: featuredWatermarkBasePulse var(--featured-watermark-glint-duration) cubic-bezier(0.25, 1, 0.4, 1) forwards;
}

.featured-services.is-watermark-glint-forward .featured-services-watermark-glint {
  animation: featuredWatermarkGlint var(--featured-watermark-glint-duration) cubic-bezier(0.25, 1, 0.4, 1) forwards;
}

.featured-services.is-watermark-glint-reverse .featured-services-watermark {
  animation: featuredWatermarkBasePulse var(--featured-watermark-glint-duration) cubic-bezier(0.25, 1, 0.4, 1) reverse forwards;
}

.featured-services.is-watermark-glint-reverse .featured-services-watermark-glint {
  animation: featuredWatermarkGlint var(--featured-watermark-glint-duration) cubic-bezier(0.25, 1, 0.4, 1) reverse forwards;
}

@keyframes featuredWatermarkGlint {
  0% {
    background-position: 130% 0;
    opacity: 0;
  }

  14% {
    opacity: 0.95;
  }

  86% {
    opacity: 0.95;
  }

  100% {
    background-position: -30% 0;
    opacity: 0;
  }
}

@keyframes featuredWatermarkBasePulse {
  0%,
  100% {
    opacity: var(--featured-watermark-opacity);
  }

  42%,
  58% {
    opacity: var(--featured-watermark-opacity-peak);
  }
}

.featured-services-cta {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.featured-services-expand-all-wrap {
  display: none;
  justify-content: center;
  width: var(--featured-band-width);
  max-width: var(--featured-band-max);
  margin-inline: auto;
  margin-top: clamp(24px, 3vh, 32px);
}

button.featured-ghost-btn {
  appearance: none;
  -webkit-appearance: none;
}

.featured-services-expand-all {
  min-width: 17.5rem;
  padding-inline: 40px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  --expand-icon-size: 14px;
  --expand-icon-gap: 11px;
}

.featured-services-expand-all-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--expand-icon-gap);
}

.featured-services-expand-all [data-featured-services-expand-label] {
  display: flex;
  align-items: center;
  height: var(--expand-icon-size);
  line-height: 1;
}

.featured-services-expand-all:hover .featured-ghost-btn-arrow {
  transform: none;
}

.featured-services-expand-all .featured-ghost-btn-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--expand-icon-size);
  height: var(--expand-icon-size);
  overflow: visible;
}

.featured-services-expand-all .featured-expand-icon {
  width: var(--expand-icon-size);
  height: var(--expand-icon-size);
  display: block;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-expand-icon-corner {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-services-expand-all:hover .featured-expand-icon {
  transform: scale(1.12);
}

.featured-services-expand-all:hover .featured-expand-icon-corner--tl {
  transform: translate(-1.5px, -1.5px);
}

.featured-services-expand-all:hover .featured-expand-icon-corner--tr {
  transform: translate(1.5px, -1.5px);
}

.featured-services-expand-all:hover .featured-expand-icon-corner--bl {
  transform: translate(-1.5px, 1.5px);
}

.featured-services-expand-all:hover .featured-expand-icon-corner--br {
  transform: translate(1.5px, 1.5px);
}

.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--featured-grid-gap);
  width: var(--featured-band-width);
  max-width: var(--featured-band-max);
  margin-inline: auto;
  margin-top: var(--featured-header-grid-gap);
}

.featured-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 220px;
  --featured-service-border-color: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--featured-service-border-color);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.featured-service-card:hover {
  --featured-service-border-color: rgba(255, 255, 255, 0.28);
}

.featured-services.is-all-expanded .featured-service-card {
  --featured-service-border-color: rgba(255, 255, 255, 0.28);
}

.featured-service-card-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.featured-service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.featured-service-card-media--focal-down img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center bottom;
}

.featured-service-card-media--focal-down.featured-service-card-media--focal-left img {
  object-position: 40% bottom;
}

.featured-service-card-media--focal-down.featured-service-card-media--focal-up img {
  height: 106%;
  object-position: 42% 65%;
}

.featured-service-card:hover .featured-service-card-media img {
  transform: scale(1.04);
  filter: grayscale(100%) brightness(1.12);
}

.featured-services.is-all-expanded .featured-service-card .featured-service-card-media img {
  transform: scale(1.04);
  filter: grayscale(100%) brightness(1.12);
}

.featured-service-card:hover .featured-service-card-media--focal-down img {
  transform: scale(1.04);
  transform-origin: center bottom;
}

.featured-services.is-all-expanded
  .featured-service-card
  .featured-service-card-media--focal-down
  img {
  transform: scale(1.04);
  transform-origin: center bottom;
}

.featured-service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    transparent 60%
  );
  pointer-events: none;
}

.featured-service-card-peek {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 22px;
  padding: 4px 8px;
  background-color: var(--brand-red);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 4px),
    calc(100% - 4px) 100%,
    0 100%
  );
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.featured-service-card-peek-label {
  font-family: var(--font-title);
  font-size: clamp(0.58rem, 0.55vw, 0.64rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.featured-service-card-peek-label--tap {
  display: none;
}

@media (max-width: 1024px) {
  .featured-service-card-peek-label--hover {
    display: none;
  }

  .featured-service-card-peek-label--tap {
    display: block;
  }
}

@media (hover: none) {
  .featured-service-card-peek-label--hover {
    display: none;
  }

  .featured-service-card-peek-label--tap {
    display: block;
  }
}

.featured-service-card:hover .featured-service-card-peek,
.featured-service-card:focus-visible .featured-service-card-peek,
.featured-services.is-all-expanded .featured-service-card .featured-service-card-peek {
  opacity: 0.88;
}

.featured-service-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 1.6vw, 20px) clamp(14px, 1.6vw, 20px)
    clamp(16px, 1.8vw, 22px);
  box-sizing: border-box;
}

.featured-service-card-title {
  margin: 0;
  padding-right: 28px;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.featured-service-card-desc {
  margin: 8px 0 0;
  padding-right: 28px;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.featured-service-card-arrow {
  position: absolute;
  right: clamp(14px, 1.6vw, 20px);
  bottom: clamp(16px, 1.8vw, 22px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--brand-red);
  transition: transform 0.2s ease;
}

.featured-service-card-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.featured-service-card:hover .featured-service-card-arrow {
  transform: translateX(3px);
}

.featured-services.is-all-expanded .featured-service-card .featured-service-card-arrow {
  transform: translateX(3px);
}

.featured-service-card-overview {
  display: none;
}

@media (min-width: 601px) {
  .featured-services-expand-all-wrap {
    display: flex;
  }

  .featured-services-grid {
    overflow: visible;
  }

  .featured-service-card {
    overflow: visible;
    isolation: isolate;
  }

  .featured-service-card-media {
    z-index: 6;
  }

  .featured-service-card-body {
    z-index: 7;
  }

  .featured-service-card:hover {
    z-index: 20;
  }

  .featured-services.is-all-expanded .featured-service-card {
    z-index: 20;
  }

  .featured-service-card-overview {
    --overview-width: clamp(260px, 22vw, 340px);
    --overview-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --overview-ease-in: cubic-bezier(0.7, 0, 0.84, 0.22);
    --overview-duration-open: 0.9s;
    --overview-duration-close: 0.68s;
    display: block;
    position: absolute;
    top: -1px;
    bottom: -1px;
    z-index: 2;
    width: var(--overview-width);
    max-width: 0;
    height: auto;
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
    opacity: 1;
    backface-visibility: hidden;
    transition: max-width var(--overview-duration-close) var(--overview-ease-in);
  }

  .featured-service-card:nth-child(odd) .featured-service-card-overview {
    right: calc(100% - 1px);
    left: auto;
  }

  .featured-service-card:nth-child(even) .featured-service-card-overview {
    left: calc(100% - 1px);
    right: auto;
  }

  .featured-service-card:hover .featured-service-card-overview,
  .featured-services.is-all-expanded .featured-service-card .featured-service-card-overview {
    max-width: var(--overview-width);
    pointer-events: auto;
    transition: max-width var(--overview-duration-open) var(--overview-ease-out);
  }

  .featured-service-card-overview-inner {
    --overview-pad: clamp(18px, 2vw, 26px);
    --overview-accent-gap: clamp(10px, 1.6cqi, 16px);
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: var(--overview-width);
    min-width: var(--overview-width);
    min-height: 0;
    height: auto;
    padding: var(--overview-pad);
    background-color: #000000;
    border: none;
    box-sizing: border-box;
    pointer-events: none;
    backface-visibility: hidden;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
  }

  .featured-service-card-overview-body {
    display: flex;
    align-items: stretch;
    gap: var(--overview-accent-gap);
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
  }

  .featured-service-card-overview-accent-bar {
    flex: 0 0 var(--brand-accent-width);
    width: var(--brand-accent-width);
    align-self: stretch;
    margin-top: calc(-1 * (var(--brand-accent-bevel) - var(--brand-accent-slice)));
    padding-bottom: calc(var(--brand-accent-bevel) - var(--brand-accent-slice));
    background-color: var(--brand-red);
    clip-path: polygon(
      0 var(--brand-accent-bevel),
      100% calc(var(--brand-accent-bevel) - var(--brand-accent-slice)),
      100% calc(100% - var(--brand-accent-bevel)),
      0 calc(100% - var(--brand-accent-bevel) + var(--brand-accent-slice))
    );
    pointer-events: none;
  }

  .featured-service-card-overview-text {
    --overview-text-gap-tight: clamp(6px, 0.85cqi, 8px);
    --overview-text-gap-loose: clamp(10px, 1.15cqi, 12px);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .featured-service-card-overview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px, 1.2cqi, 12px);
    min-width: 0;
  }

  .featured-service-card:nth-child(odd) .featured-service-card-overview-inner {
    left: 0;
    right: auto;
    box-shadow:
      inset 0 1px 0 0 var(--featured-service-border-color),
      inset 0 -1px 0 0 var(--featured-service-border-color),
      inset 1px 0 0 0 var(--featured-service-border-color);
  }

  .featured-service-card:nth-child(even) .featured-service-card-overview-inner {
    right: 0;
    left: auto;
    box-shadow:
      inset 0 1px 0 0 var(--featured-service-border-color),
      inset 0 -1px 0 0 var(--featured-service-border-color),
      inset -1px 0 0 0 var(--featured-service-border-color);
  }

  .featured-service-card-overview-mark {
    flex: 0 0 auto;
    font-family: var(--font-body);
    font-size: clamp(0.58rem, 0.55vw, 0.64rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--brand-red);
    pointer-events: none;
  }

  .featured-service-card-overview-eyebrow {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--font-body);
    font-size: clamp(0.58rem, 0.55vw, 0.64rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--brand-red);
  }

  .featured-service-card-overview-title {
    margin: var(--overview-text-gap-tight) 0 0;
    font-family: var(--font-title);
    font-size: clamp(1.15rem, 1.45vw, 1.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .featured-service-card-overview-copy {
    margin: var(--overview-text-gap-loose) 0 0;
    font-family: var(--font-body);
    font-size: clamp(0.76rem, 0.82vw, 0.86rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }

  .featured-service-card-overview-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin: auto 0 0;
    margin-left: calc(var(--brand-accent-width) + var(--overview-accent-gap));
    padding-top: clamp(14px, 1.6cqi, 18px);
    font-family: var(--font-body);
    font-size: clamp(0.58rem, 0.55vw, 0.64rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    pointer-events: none;
  }

  .featured-service-card-overview-close-arrow {
    color: var(--brand-red);
    font-size: 0.9rem;
    line-height: 1;
  }
}

@media (max-width: 1024px) {
  .featured-services-inner {
    overflow: visible;
    padding-inline: clamp(16px, 2.5vw, 28px);
  }

  .featured-services-stage {
    zoom: var(--featured-stage-scale);
    width: 100%;
    margin-inline: auto;
  }

  @supports not (zoom: 1) {
    .featured-services-stage {
      zoom: unset;
      width: calc(100% / var(--featured-stage-scale));
      transform: scale(var(--featured-stage-scale));
      transform-origin: top center;
    }
  }

  .featured-services-header {
    --featured-title-size: clamp(1.75rem, 7.2cqi, 2.55rem);
    --featured-watermark-height: calc(var(--featured-title-height) * 1.05);
  }

  .featured-services-header-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    row-gap: 0;
  }

  .featured-services-header-right {
    justify-content: flex-end;
  }

  .featured-services-watermark-wrap {
    justify-content: flex-end;
  }

  .featured-services-watermark {
    object-position: right center;
  }

  .featured-services-watermark-glint {
    -webkit-mask-position: right center;
    mask-position: right center;
  }

  .featured-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--featured-grid-gap);
  }
}

@media (max-width: 768px) {
  .featured-services {
    --featured-band-width: 100%;
    --featured-band-max: none;
    --featured-stage-scale: 1;
    --featured-mobile-content-width: min(86%, 320px);
    --featured-mobile-stack-gap: clamp(14px, 3.6vw, 18px);
    --featured-mobile-title-copy-gap: clamp(8px, 2.2vw, 12px);
    --featured-header-grid-gap: clamp(24px, 4vh, 32px);
    --featured-grid-gap: 12px;
  }

  .featured-services-inner {
    padding-inline: clamp(12px, 2.6vw, 16px);
    padding-top: clamp(32px, 5vh, 44px);
    padding-bottom: clamp(28px, 4vh, 40px);
  }

  .featured-services-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    zoom: 1;
    width: 100%;
    transform: none;
  }

  @supports not (zoom: 1) {
    .featured-services-stage {
      width: 100%;
      transform: none;
      margin-bottom: 0;
    }
  }

  .featured-services-header,
  .featured-services-header-content,
  .featured-services-header-right,
  .featured-services-header-right-stack {
    display: contents;
  }

  .featured-services-header {
    --featured-title-size: clamp(1.75rem, 8.5vw, 2.35rem);
    --featured-watermark-height: clamp(56px, 14vw, 80px);
    --featured-watermark-opacity: 0.1;
  }

  .featured-services-watermark-wrap {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--featured-mobile-content-width);
    min-height: 0;
    margin: 0 auto var(--featured-mobile-stack-gap);
  }

  .featured-services-watermark-shimmer {
    margin-inline: auto;
  }

  .featured-services-watermark {
    height: var(--featured-watermark-height);
    object-position: center center;
  }

  .featured-services-watermark-glint {
    -webkit-mask-position: center center;
    mask-position: center center;
  }

  .featured-services-header-left {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--featured-mobile-content-width);
    margin: 0 auto var(--featured-header-grid-gap);
    text-align: center;
  }

  .featured-services-title-accent {
    display: none;
  }

  .featured-services-header-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--featured-mobile-title-copy-gap);
    width: 100%;
    text-align: center;
  }

  .featured-services-title {
    width: 100%;
    margin: 0;
    font-size: var(--featured-title-size);
    line-height: 0.92;
    text-align: center;
  }

  .featured-services-title-line {
    display: block;
    text-align: center;
  }

  .featured-services-copy {
    width: 100%;
    max-width: none;
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    line-height: 1.45;
    text-align: center;
  }

  .featured-services-grid {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 2vw, 11px);
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .featured-service-card {
    width: 100%;
    min-height: 176px;
  }

  .featured-service-card-media {
    aspect-ratio: 4 / 3;
  }

  .featured-service-card-body {
    padding: clamp(10px, 2.5vw, 14px) clamp(10px, 2.5vw, 12px)
      clamp(12px, 2.8vw, 16px);
  }

  .featured-service-card-title {
    padding-right: 20px;
    font-size: clamp(0.72rem, 3.1vw, 0.88rem);
    line-height: 1.08;
  }

  .featured-service-card-desc {
    margin-top: 6px;
    padding-right: 18px;
    font-size: clamp(0.58rem, 2.4vw, 0.68rem);
    line-height: 1.35;
  }

  .featured-service-card-arrow {
    right: clamp(10px, 2.5vw, 12px);
    bottom: clamp(12px, 2.8vw, 16px);
    width: 14px;
    height: 14px;
  }

  .featured-service-card-peek {
    min-width: 22px;
    min-height: 18px;
    padding: 3px 6px;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 3px),
      calc(100% - 3px) 100%,
      0 100%
    );
  }

  .featured-service-card-peek-label--tap {
    font-size: clamp(0.48rem, 2vw, 0.54rem);
    letter-spacing: 0.05em;
  }

  .featured-services-cta {
    order: 4;
    width: var(--featured-mobile-content-width);
    max-width: 320px;
    margin: clamp(20px, 4vh, 28px) auto 0;
    padding: 14px 24px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    gap: 8px;
  }

  .featured-services-cta .featured-ghost-btn-arrow {
    width: 14px;
    height: 14px;
  }

  .featured-services-cta .featured-ghost-btn-arrow svg {
    width: 14px;
    height: 14px;
  }

  .featured-services-expand-all-wrap {
    order: 5;
    width: var(--featured-mobile-content-width);
    max-width: 320px;
    margin-top: clamp(16px, 2.5vh, 22px);
  }
}

@media (max-width: 600px) {
  .featured-services-inner {
    padding: clamp(28px, 4.5vh, 36px) clamp(12px, 2.6vw, 16px)
      clamp(36px, 5vh, 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-carousel-track,
  .featured-slide,
  .featured-slide-overlay,
  .featured-slide-copy,
  .featured-slide-label,
  .featured-slide-cta,
  .featured-ghost-btn-arrow,
  .featured-expand-icon,
  .featured-expand-icon-corner,
  .featured-service-card-media img,
  .featured-service-card-arrow,
  .featured-service-card-peek,
  .featured-service-card-overview,
  .featured-service-card-overview-inner,
  .featured-services-watermark,
  .featured-services-watermark-glint {
    transition: none;
    animation: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --nav-inline-pad: clamp(32px, 5vw, 56px);
    --header-spacer-full: 128px;
    --header-spacer-shell: 100px;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: var(--nav-link-tracking);
  }

  .nav-phone-inner {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

  .nav-logo {
    width: 128px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-spacer-full: var(--header-spacer-tablet);
    --header-spacer-shell: 84px;
  }

  .nav-topbar-seo,
  .nav-topbar-divider {
    display: none;
  }

  .nav-topbar-inner {
    min-height: 28px;
    padding-block: 5px;
    align-items: center;
  }

  .nav-topbar-fast {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    flex: 0 0 auto;
    pointer-events: none;
  }

  .nav-topbar-fast-mark {
    display: block;
    height: 14px;
    width: auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-burger {
    display: block;
    margin-left: 0;
  }

  .nav-mobile-controls {
    display: flex;
  }

  .nav-shell {
    min-height: 84px;
    padding: 12px var(--nav-inline-pad);
  }

  .nav-logo {
    width: 112px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-inline-pad: clamp(24px, 4vw, 40px);
    --header-spacer-mobile: 96px;
    --header-spacer-full: var(--header-spacer-mobile);
    --header-spacer-shell: 76px;
  }

  .nav-topbar-inner {
    min-height: 22px;
    padding-block: 3px;
    align-items: center;
  }

  .nav-topbar-location {
    font-size: 0.54rem;
    letter-spacing: 0.1em;
    gap: 6px;
  }

  .nav-topbar-pin {
    width: 9px;
  }

  .nav-topbar-fast {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    flex: 0 0 auto;
    pointer-events: none;
  }

  .nav-topbar-fast-mark {
    display: block;
    height: 12px;
    width: auto;
  }

  .nav-shell {
    min-height: 76px;
  }

  .nav-logo {
    width: 100px;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-inline-pad: clamp(32px, 8vw, 40px);
  }

  .nav-shell {
    padding-inline: var(--nav-inline-pad);
  }

  .nav-topbar-inner {
    padding-inline: var(--nav-inline-pad);
  }

  .nav-mobile-controls {
    gap: 8px;
  }

  .nav-burger__frame {
    width: 44px;
    height: 44px;
  }

  .nav-mobile-phone .nav-burger__frame img {
    width: 18px;
    height: 18px;
  }
}

/* ── Laptop tier (1024–1439) ───────────────────────────────────────── */

@media (min-width: 1024px) and (max-width: 1439px) {
  :root {
    --nav-inline-pad: clamp(40px, 4.5vw, 72px);
    --header-spacer-full: 132px;
    --header-spacer-shell: 104px;
  }

  .hero {
    --hero-title-size: clamp(2.55rem, 3.6vw, 3.85rem);
    --hero-content-pad-y: clamp(42px, 6vh, 68px);
  }

  .hero-panel {
    width: min(48%, 520px);
    min-width: 380px;
  }

  .hero-actions {
    gap: clamp(10px, 1.1vw, 13px);
  }

  .hero-actions .hero-button,
  .hero-actions .hero-button-secondary {
    --hero-btn-slant: 6.5%;
    padding: clamp(13px, 1.4vw, 16px) clamp(12px, 1.5vw, 18px);
  }

  .hero-actions .hero-button-secondary {
    padding: clamp(13px, 1.4vw, 16px) clamp(14px, 1.6vw, 20px);
  }

  .hero-actions .hero-button-inner,
  .hero-actions .hero-button-secondary .hero-button-inner {
    gap: clamp(6px, 0.7vw, 9px);
    font-size: clamp(0.72rem, 0.95vw, 0.88rem);
    letter-spacing: 0.05em;
    line-height: 1.15;
  }

  .hero-actions .hero-button-secondary .hero-button-inner {
    font-size: clamp(0.74rem, 1vw, 0.9rem);
    letter-spacing: 0.055em;
    text-transform: none;
  }

  .hero-actions .hero-button img,
  .hero-actions .hero-button-icon {
    width: clamp(15px, 1.4vw, 18px);
    height: clamp(15px, 1.4vw, 18px);
  }

  .why-choose-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-detail-split__inner {
    gap: clamp(28px, 3vw, 40px);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2.5vw, 36px);
  }

  .site-footer-car-stage {
    height: clamp(130px, 16vh, 190px);
  }
}

/* ── Large desktop (scales from 1400px MacBook baseline) ─────────────── */

@media (min-width: 1401px) {
  .hero {
    --hero-min-height: max(calc(100svh - 156px), max(680px, 76svh));
    --hero-panel-content-pad: max(48px, calc(var(--hero-panel-slant) + 2.5rem));
    --hero-content-pad-y: clamp(50px, 7vh, 80px);
    --hero-title-size: clamp(2.85rem, 3.3vw, 4.85rem);
    --hero-eyebrow-size: 0.86rem;
    --hero-stack-gap: 20px;
  }

  .hero-image {
    object-position: 30% center;
  }

  .hero-panel {
    width: min(46%, clamp(560px, 40vw, 740px));
    min-width: 460px;
  }

  .hero-panel-body {
    padding: var(--hero-content-pad-y) clamp(28px, 2.8vw, 40px)
      var(--hero-content-pad-y) var(--hero-panel-content-pad);
  }

  .hero-eyebrow {
    margin-bottom: 0;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-button {
    padding: 16px 20px;
  }

  .hero-button-inner {
    font-size: 1rem;
  }

  .hero-trust-strip-main,
  .hero-trust-strip-cta {
    padding: 14px 16px;
  }

  .hero-trust-strip-score {
    font-size: 1.7rem;
  }

  .hero-location {
    font-size: 0.86rem;
    padding-top: 4px;
  }

  :root {
    --nav-inline-pad: clamp(64px, 6vw, 128px);
  }

  .nav-topbar-inner {
    min-height: 32px;
    padding-block: 7px;
  }

  .nav-topbar-location,
  .nav-topbar-seo {
    font-size: 0.72rem;
  }

  .nav-shell {
    padding: 16px var(--nav-inline-pad);
  }

  .nav-logo {
    width: 156px;
  }

  .nav-links a {
    font-size: clamp(1.2rem, 1.2vw, 1.55rem);
  }

  .nav-phone-inner {
    font-size: clamp(1.05rem, 1vw, 1.2rem);
  }
}

@media (min-width: 1920px) {
  .hero {
    --hero-min-height: max(calc(100svh - 164px), max(720px, 80svh));
    --hero-title-size: clamp(3rem, 3.5vw, 5.2rem);
    --hero-content-pad-y: clamp(56px, 7.8vh, 92px);
    --hero-stack-gap: 22px;
  }

  .hero-panel {
    width: min(44%, clamp(660px, 38vw, 800px));
  }
}

/* ── Customer reviews ─────────────────────────────────────────────────── */

.customer-reviews {
  background-color: #000000;
}

.customer-reviews-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(56px, 8vh, 88px) clamp(38px, 4.4vw, 86px)
    clamp(64px, 8vh, 96px);
  box-sizing: border-box;
  --customer-reviews-inline-pad: clamp(38px, 4.4vw, 86px);
  --customer-reviews-layout-cols: minmax(0, 0.38fr) minmax(0, 1fr);
  --customer-reviews-layout-gap: clamp(28px, 4vw, 56px);
}

.customer-reviews-intro {
  display: grid;
  grid-template-columns: var(--customer-reviews-layout-cols);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: var(--customer-reviews-layout-gap);
  row-gap: clamp(16px, 2.2vh, 22px);
  --customer-reviews-title-size: clamp(2.25rem, 3.75vw, 3.95rem);
}

.customer-reviews-intro-heading {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  padding-right: clamp(4px, 0.8vw, 8px);
}

.customer-reviews-eyebrow-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
}

.customer-reviews-eyebrow {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brand-red);
}

.customer-reviews-eyebrow-rule {
  flex: 1 1 auto;
  height: 1px;
  background-color: var(--brand-red);
}

.customer-reviews-title {
  margin: 16px 0 0;
  font-family: var(--font-title);
  font-size: var(--customer-reviews-title-size, clamp(2.25rem, 3.75vw, 3.95rem));
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.customer-reviews-title-line {
  display: block;
  white-space: nowrap;
}

.customer-reviews-title-line--accent {
  color: var(--brand-red);
}

.customer-reviews-intro-copy-text {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  max-width: min(54ch, 100%);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.customer-reviews-intro-media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.customer-reviews-intro-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  display: block;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.15) 8%,
      rgba(0, 0, 0, 0.65) 18%,
      #000 28%,
      #000 88%,
      rgba(0, 0, 0, 0.45) 95%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.28) 5%,
      #000 10%,
      #000 90%,
      rgba(0, 0, 0, 0.28) 95%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.15) 8%,
      rgba(0, 0, 0, 0.65) 18%,
      #000 28%,
      #000 88%,
      rgba(0, 0, 0, 0.45) 95%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.28) 5%,
      #000 10%,
      #000 90%,
      rgba(0, 0, 0, 0.28) 95%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.customer-reviews-intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 5%,
      rgba(0, 0, 0, 0.48) 14%,
      rgba(0, 0, 0, 0.16) 26%,
      transparent 34%
    ),
    linear-gradient(
      270deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.38) 5%,
      rgba(0, 0, 0, 0.1) 11%,
      transparent 15%
    );
}

.customer-reviews-panel {
  display: grid;
  grid-template-columns: var(--customer-reviews-layout-cols);
  align-items: start;
  gap: var(--customer-reviews-layout-gap);
  margin-top: clamp(48px, 6vh, 72px);
}

.customer-reviews-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}

.customer-reviews-summary-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}

.customer-reviews-summary-header {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
}

.customer-reviews-summary-eyebrow-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  width: 100%;
}

.customer-reviews-slashes-divider {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--brand-red);
}

.customer-reviews-summary-eyebrow {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brand-red);
}

.customer-reviews-summary-title {
  margin: clamp(12px, 1.8vh, 18px) 0 0;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.customer-reviews-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: clamp(18px, 2.5vh, 24px);
}

.customer-reviews-rating-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.customer-reviews-rating-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.customer-reviews-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--google-star);
}

.customer-reviews-star-half {
  background: linear-gradient(
    90deg,
    var(--google-star) 0%,
    var(--google-star) 50%,
    var(--google-star-empty) 50%,
    var(--google-star-empty) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.customer-reviews-star-empty {
  color: var(--google-star-empty);
}

.customer-reviews-rating-copy {
  margin: 0;
  flex: 1 1 100%;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.customer-reviews-rating-separator {
  margin: 0 0.35em;
  color: rgba(255, 255, 255, 0.45);
}

.customer-reviews-attribution {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.customer-reviews-cta {
  display: flex;
  align-self: stretch;
  width: 100%;
  justify-content: center;
  margin-top: clamp(24px, 3vh, 32px);
  box-sizing: border-box;
}

.customer-reviews-carousel {
  --reviews-slant: 7.5%;
  --reviews-clip: polygon(
    var(--reviews-slant) 0,
    100% 0,
    calc(100% - var(--reviews-slant)) 100%,
    0 100%
  );
  --reviews-card-pad-block: clamp(18px, 2.15vw, 25px);
  --reviews-card-pad-inline: max(
    clamp(18px, 2.3vw, 25px),
    calc(var(--reviews-slant) + 0.875rem)
  );
  --reviews-carousel-gap: 4px;
  position: relative;
  min-width: 0;
  outline: none;
}

.customer-reviews-carousel-viewport {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
  container-name: reviews-carousel;
}

.customer-reviews-carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--reviews-carousel-gap);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.customer-reviews-card {
  flex: 0 0 var(--reviews-card-basis, calc((100% - 12px) / 4));
  box-sizing: border-box;
  min-width: 0;
  max-width: var(--reviews-card-basis, none);
}

.customer-reviews-card-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: start;
  width: 100%;
  max-width: 100%;
  min-height: clamp(210px, 23vw, 270px);
  padding: var(--reviews-card-pad-block) var(--reviews-card-pad-inline);
  box-sizing: border-box;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.2s ease;
  --reviews-quote-line-count: 5;
}

.customer-reviews-card-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1a1a1a;
  clip-path: var(--reviews-clip);
  transition: background-color 0.2s ease;
}

.customer-reviews-card-link > * {
  position: relative;
  z-index: 1;
}

.customer-reviews-card-link:hover::before {
  background-color: #222222;
}

.customer-reviews-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(6px, 1.5vw, 12px);
  grid-row: 1;
  min-width: 0;
}

.customer-reviews-card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.customer-reviews-card-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.customer-reviews-card-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 0.82rem;
  line-height: 1;
  color: var(--google-star);
  flex: 0 1 auto;
  min-width: 0;
}

.customer-reviews-card-quote-shell {
  grid-row: 2;
  margin: clamp(14px, 2vh, 18px) 0 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.customer-reviews-card-quote {
  --reviews-quote-line-height: 1.5;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 400;
  font-style: normal;
  line-height: var(--reviews-quote-line-height);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--reviews-quote-line-count);
  line-clamp: var(--reviews-quote-line-count);
  overflow-wrap: break-word;
}

.customer-reviews-card-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  grid-row: 3;
  margin-top: clamp(10px, 1.4vh, 14px);
  min-width: 0;
  width: 100%;
  flex-shrink: 0;
}

.customer-reviews-card-author {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-reviews-card-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.customer-reviews-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: var(--brand-red);
  color: #ffffff;
  cursor: pointer;
  clip-path: var(--reviews-clip);
  transform: translateY(-50%);
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.customer-reviews-carousel-nav svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .customer-reviews-carousel-nav:hover {
    background-color: var(--brand-red-light);
  }
}

.customer-reviews-carousel-nav:active {
  background-color: var(--brand-red);
}

.customer-reviews-carousel-nav:focus {
  outline: none;
}

.customer-reviews-carousel-nav:focus-visible {
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 4px var(--brand-red);
}

.customer-reviews-carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.customer-reviews-carousel-nav--prev {
  left: -22px;
}

.customer-reviews-carousel-nav--next {
  right: -22px;
}

.customer-reviews-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(18px, 2.5vh, 24px);
}

.customer-reviews-carousel-dot {
  width: 24px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #2a2a2a;
  clip-path: polygon(
    var(--reviews-slant) 0,
    100% 0,
    calc(100% - var(--reviews-slant)) 100%,
    0 100%
  );
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.customer-reviews-carousel-dot.is-active {
  background-color: var(--brand-red);
}

@media (min-width: 1440px) {
  .customer-reviews-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.38fr);
  }

  .customer-reviews-carousel {
    order: -1;
  }
}

@media (max-width: 1024px) {
  .customer-reviews-carousel-nav--prev {
    left: -10px;
  }

  .customer-reviews-carousel-nav--next {
    right: -10px;
  }
}

@media (max-width: 1024px) and (min-width: 601px) {
  .customer-reviews-inner {
    --customer-reviews-layout-cols: minmax(0, 0.4fr) minmax(0, 0.6fr);
    --customer-reviews-layout-gap: clamp(20px, 2.8vw, 36px);
    padding-inline: clamp(32px, 4vw, 56px);
  }

  .customer-reviews-intro {
    grid-template-columns: var(--customer-reviews-layout-cols);
    grid-template-rows: auto auto;
    row-gap: clamp(12px, 1.5vh, 18px);
    --customer-reviews-title-size: clamp(2rem, 2.6vw, 3.15rem);
  }

  .customer-reviews-intro-heading {
    grid-column: 1;
    grid-row: 1;
    padding-right: clamp(4px, 0.6vw, 8px);
  }

  .customer-reviews-intro-media {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: stretch;
    aspect-ratio: unset;
    max-height: clamp(170px, 22vw, 240px);
    min-height: 0;
  }

  .customer-reviews-intro-copy-text {
    grid-column: 1;
    grid-row: 2;
    max-width: min(48ch, 100%);
    font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  }

  .customer-reviews-title {
    margin-top: clamp(10px, 1.2vh, 14px);
  }

  .customer-reviews-summary {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    max-width: 100%;
  }

  .customer-reviews-summary-content {
    width: max-content;
    max-width: 100%;
  }

  .customer-reviews-summary-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(10px, 1.35vh, 13px);
    width: max-content;
    max-width: 100%;
  }

  .customer-reviews-summary-eyebrow-row {
    justify-content: flex-start;
    align-items: center;
    gap: clamp(12px, 1.4vw, 16px);
    width: auto;
  }

  .customer-reviews-summary-title {
    margin: 0;
    font-size: clamp(2rem, 2.75vw, 2.85rem);
    line-height: 0.96;
  }

  .customer-reviews-rating {
    margin-top: clamp(14px, 1.8vh, 20px);
    width: max-content;
    max-width: 100%;
  }

  .customer-reviews-rating-copy {
    flex: 0 1 auto;
  }

  .customer-reviews-attribution {
    margin-top: 8px;
  }

  .customer-reviews-cta {
    margin-top: clamp(20px, 2.5vh, 28px);
    align-self: stretch;
    width: 0;
    min-width: 100%;
    box-sizing: border-box;
  }

  .customer-reviews-panel {
    grid-template-columns: 1fr auto;
    justify-content: center;
    align-items: start;
    gap: clamp(40px, 5vw, 72px);
    margin-top: clamp(20px, 2.5vh, 32px);
    width: 100%;
  }

  .customer-reviews-carousel {
    --reviews-slant: 6%;
    --reviews-card-pad-block: clamp(14px, 1.8vw, 20px);
    --reviews-card-pad-inline: max(
      clamp(12px, 1.8vw, 18px),
      calc(var(--reviews-slant) + 0.7rem)
    );
    --reviews-carousel-gap: 6px;
    order: -1;
    flex: 1 1 auto;
    align-self: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .customer-reviews-card-link {
    min-height: clamp(160px, 20vw, 210px);
  }

  .customer-reviews-card-logo {
    width: 16px;
    height: 16px;
  }

  .customer-reviews-card-stars {
    font-size: 0.74rem;
  }

  .customer-reviews-card-quote {
    font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  }

  .customer-reviews-card-footer {
    margin-top: clamp(10px, 1.4vh, 14px);
    gap: 3px;
  }

  .customer-reviews-card-author {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .customer-reviews-card-date {
    font-size: 0.6rem;
  }

  .customer-reviews-carousel-nav {
    width: 40px;
    height: 40px;
  }

  .customer-reviews-carousel-nav--prev {
    left: -20px;
  }

  .customer-reviews-carousel-nav--next {
    right: -20px;
  }

  .customer-reviews-carousel-dots {
    width: calc(100% - 36px);
    margin-inline: auto;
    gap: 3px;
    margin-top: clamp(10px, 1.4vh, 14px);
  }

  .customer-reviews-carousel-dot {
    width: 10px;
    height: 2px;
  }
}

@media (min-width: 769px) and (max-width: 1439px) {
  .customer-reviews-card-link {
    --reviews-quote-line-count: 4;
  }
}

@media (max-width: 768px) {
  .customer-reviews {
    overflow-x: clip;
  }

  .customer-reviews-inner {
    padding-top: clamp(16px, 2.5vh, 24px);
    padding-inline: clamp(24px, 4vw, 40px);
    --customer-reviews-inline-pad: clamp(24px, 4vw, 40px);
  }

  .customer-reviews-intro {
    --customer-reviews-mobile-stack-gap: clamp(14px, 3.6vw, 18px);
    --customer-reviews-mobile-title-copy-gap: clamp(10px, 2.8vw, 14px);
    --customer-reviews-mobile-media-gap: clamp(24px, 4vh, 32px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0;
    --customer-reviews-title-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .customer-reviews-intro-heading {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--customer-reviews-mobile-stack-gap);
    padding-right: 0;
    text-align: center;
  }

  .customer-reviews-eyebrow-row {
    justify-content: center;
    width: 100%;
  }

  .customer-reviews-eyebrow-rule {
    display: none;
  }

  .customer-reviews-title {
    margin: 0;
  }

  .customer-reviews-title-line {
    white-space: normal;
  }

  .customer-reviews-intro-copy-text {
    grid-column: 1;
    grid-row: 2;
    margin: var(--customer-reviews-mobile-title-copy-gap) 0 0;
    max-width: none;
    text-align: center;
  }

  .customer-reviews-intro-media {
    grid-column: 1;
    grid-row: 3;
    margin-top: var(--customer-reviews-mobile-media-gap);
    align-self: auto;
    width: calc(100% + 2 * var(--customer-reviews-inline-pad));
    max-width: none;
    margin-left: calc(-1 * var(--customer-reviews-inline-pad));
    margin-right: calc(-1 * var(--customer-reviews-inline-pad));
    aspect-ratio: 2.35 / 1;
    max-height: clamp(190px, 30vw, 230px);
  }

  .customer-reviews-intro-image {
    object-position: center 54%;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 3%,
      #000 7%,
      #000 93%,
      rgba(0, 0, 0, 0.25) 97%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 3%,
      #000 7%,
      #000 93%,
      rgba(0, 0, 0, 0.25) 97%,
      transparent 100%
    );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .customer-reviews-intro-media::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      transparent 16%
    );
  }

  .customer-reviews-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: clamp(32px, 4vh, 44px);
  }

  .customer-reviews-carousel {
    order: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: clamp(16px, 4.5vw, 24px);
    box-sizing: border-box;
    --reviews-slant: 5%;
    --reviews-card-pad-block: clamp(14px, 3.5vw, 18px);
    --reviews-card-pad-inline: clamp(10px, 2.8vw, 14px);
    --reviews-carousel-gap: 6px;
  }

  .customer-reviews-carousel-viewport {
    --reviews-mobile-cards: 3;
  }

  @supports (width: 100cqw) {
    .customer-reviews-card {
      flex: 0 0
        calc(
          (100cqw - (var(--reviews-mobile-cards) - 1) * var(--reviews-carousel-gap))
          / var(--reviews-mobile-cards)
        );
      width: calc(
        (100cqw - (var(--reviews-mobile-cards) - 1) * var(--reviews-carousel-gap))
        / var(--reviews-mobile-cards)
      );
      max-width: calc(
        (100cqw - (var(--reviews-mobile-cards) - 1) * var(--reviews-carousel-gap))
        / var(--reviews-mobile-cards)
      );
    }
  }

  .customer-reviews-card-link {
    min-height: clamp(168px, 42vw, 220px);
    --reviews-quote-line-count: 5;
  }

  .customer-reviews-card-logo {
    width: 14px;
    height: 14px;
  }

  .customer-reviews-card-stars {
    font-size: 0.68rem;
  }

  .customer-reviews-card-quote-shell {
    margin-top: clamp(8px, 1.2vh, 12px);
  }

  .customer-reviews-card-quote {
    --reviews-quote-line-height: 1.45;
    font-size: clamp(0.68rem, 2.6vw, 0.78rem);
  }

  .customer-reviews-card-footer {
    margin-top: clamp(8px, 1.2vh, 12px);
    gap: 3px;
  }

  .customer-reviews-card-author {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }

  .customer-reviews-card-date {
    font-size: 0.56rem;
  }

  .customer-reviews-carousel-nav {
    width: 32px;
    height: 32px;
  }

  .customer-reviews-carousel-nav svg {
    width: 13px;
    height: 13px;
  }

  .customer-reviews-carousel-nav--prev {
    left: 2px;
  }

  .customer-reviews-carousel-nav--next {
    right: 2px;
  }

  .customer-reviews-carousel-dots {
    width: calc(100% - 36px);
    margin-inline: auto;
    gap: 3px;
    margin-top: clamp(10px, 1.4vh, 14px);
  }

  .customer-reviews-carousel-dot {
    width: 10px;
    height: 2px;
  }

  .customer-reviews-summary {
    --customer-reviews-summary-stack-gap: clamp(14px, 3.6vw, 18px);
    --customer-reviews-summary-title-gap: clamp(10px, 2.8vw, 14px);
    --customer-reviews-summary-cta-gap: clamp(20px, 3.5vh, 28px);
    width: 100%;
    max-width: min(100%, 340px);
    align-items: center;
    gap: var(--customer-reviews-summary-cta-gap);
    text-align: center;
  }

  .customer-reviews-summary-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--customer-reviews-summary-stack-gap);
    width: 100%;
  }

  .customer-reviews-summary-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--customer-reviews-summary-title-gap);
    width: 100%;
  }

  .customer-reviews-summary-eyebrow-row {
    justify-content: center;
    gap: clamp(12px, 3vw, 16px);
    width: 100%;
  }

  .customer-reviews-slashes-divider {
    display: none;
  }

  .customer-reviews-summary-title {
    margin: 0;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    text-align: center;
  }

  .customer-reviews-rating {
    margin-top: 0;
    justify-content: center;
  }

  .customer-reviews-rating-copy {
    flex: 0 1 auto;
    text-align: center;
  }

  .customer-reviews-attribution {
    margin: 0;
    text-align: center;
  }

  .customer-reviews-cta {
    margin-top: 0;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .customer-reviews-inner {
    padding-inline: clamp(20px, 5vw, 32px);
    --customer-reviews-inline-pad: clamp(20px, 5vw, 32px);
  }

  .customer-reviews-panel {
    grid-template-columns: 1fr;
    margin-top: clamp(40px, 5vh, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-reviews-carousel-track {
    transition: none;
  }
}

/* ── Location Map ─────────────────────────────────────────────── */
/* Mobile card layout (≤768px): site-wide — all pages with .location-map */

.location-map {
  background-color: #000000;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 48px)
    clamp(56px, 8vw, 88px);
}

.location-map-frame {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.location-map-header {
  margin-bottom: 0;
}

.location-map-accent-row {
  --location-map-eyebrow-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.7vw, 7px);
  margin-bottom: clamp(6px, 0.8vw, 10px);
}

.location-map-accent-mark {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: calc(var(--location-map-eyebrow-size) * 152 / 98);
}

.location-map-eyebrow {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: var(--location-map-eyebrow-size);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
}

.location-map-accent-rule {
  flex: 1 1 auto;
  align-self: center;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--brand-red) 0%,
    var(--brand-red) 50%,
    rgba(185, 45, 45, 0.35) 72%,
    transparent 100%
  );
}

.location-map-title {
  margin: 0 0 clamp(6px, 0.9vh, 10px);
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.location-map-embed-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.location-map-embed-stage {
  position: relative;
  width: 100%;
  border-radius: clamp(5px, 0.5vw, 7px);
  overflow: hidden;
}

.location-map-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background-color: #1a1a1a;
}

.location-map-card {
  --location-map-card-section-gap: clamp(14px, 1.8vw, 18px);
  --location-map-card-row-gap: clamp(10px, 1.3vw, 12px);
  --location-map-card-icon-size: clamp(30px, 3vw, 32px);
  position: absolute;
  left: clamp(16px, 2.5vw, 32px);
  bottom: clamp(16px, 2.5vw, 32px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--location-map-card-section-gap);
  width: min(100% - clamp(32px, 5vw, 64px), 380px);
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2.2vw, 24px);
  box-sizing: border-box;
  border-radius: clamp(5px, 0.5vw, 7px);
  background-color: #1a1a1a;
  color: #ffffff;
}

.location-map-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.location-map-card-brand {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.location-map-card-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.location-map-card-rule {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: clamp(8px, 1vw, 10px);
  background-color: var(--brand-red);
}

.location-map-card-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0;
}

.location-map-card-rating-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.location-map-card-google-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(14px, 1.1vw, 17px);
  height: clamp(14px, 1.1vw, 17px);
  flex: 0 0 auto;
}

.location-map-card-google-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.location-map-card-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  line-height: 1;
  color: var(--google-star);
  filter: drop-shadow(0 0 6px rgba(var(--google-star-rgb), 0.22));
}

.location-map-card-star-half {
  background: linear-gradient(
    90deg,
    var(--google-star) 0%,
    var(--google-star) 50%,
    var(--google-star-empty) 50%,
    var(--google-star-empty) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.location-map-card-star-empty {
  color: var(--google-star-empty);
}

.location-map-card-rating-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.95vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.location-map-card-rating-separator {
  margin: 0 0.45em;
  color: rgba(255, 255, 255, 0.45);
}

.location-map-card-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--location-map-card-row-gap);
}

.location-map-card-detail {
  display: grid;
  grid-template-columns: var(--location-map-card-icon-size) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(10px, 1.2vw, 12px);
}

.location-map-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--location-map-card-icon-size);
  height: var(--location-map-card-icon-size);
  margin-top: 1px;
  background-color: #0d0d0d;
}

.location-map-card-icon img {
  width: clamp(14px, 1.6vw, 16px);
  height: clamp(14px, 1.6vw, 16px);
  display: block;
  filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(1742%)
    hue-rotate(338deg) brightness(88%) contrast(92%);
}

.location-map-card-icon-pin,
.location-map-card-icon-clock {
  width: clamp(14px, 1.6vw, 16px);
  height: clamp(14px, 1.6vw, 16px);
  display: block;
  background-color: var(--brand-red);
}

.location-map-card-icon-pin {
  -webkit-mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain
    no-repeat;
  mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain no-repeat;
}

.location-map-card-icon-clock {
  -webkit-mask: url("../assets/icons/clock-icon.svg") center / contain no-repeat;
  mask: url("../assets/icons/clock-icon.svg") center / contain no-repeat;
}

.location-map-card-text {
  margin: 0;
  padding-top: 1px;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.05vw, 0.82rem);
  line-height: 1.5;
  font-style: normal;
  color: rgba(255, 255, 255, 0.9);
}

.location-map-card-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-map-card-text a:hover {
  color: #ffffff;
}

.location-map-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 94%;
  margin-inline: auto;
}

.location-map-btn {
  flex: 1 1 calc(50% - 2.5px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 10px 12px;
  box-sizing: border-box;
  border-radius: clamp(4px, 0.4vw, 6px);
  font-family: var(--font-title);
  font-size: clamp(0.76rem, 1.15vw, 0.86rem);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.location-map-btn:hover {
  transform: scale(1.03);
}

.location-map-btn:active {
  transform: scale(0.98);
}

.location-map-btn img {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.location-map-btn--primary {
  background-color: var(--brand-red);
  color: #ffffff;
  border: 1px solid var(--brand-red);
}

.location-map-btn--primary img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.location-map-btn--primary:hover {
  background-color: var(--brand-red-light);
  border-color: var(--brand-red-light);
}

.location-map-btn--secondary {
  background-color: transparent;
  color: var(--brand-red);
  border: 1px solid var(--brand-red);
}

.location-map-btn--secondary img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(1742%)
    hue-rotate(338deg) brightness(88%) contrast(92%);
}

.location-map-btn--secondary:hover {
  color: var(--brand-red-light);
  border-color: var(--brand-red-light);
  background-color: rgba(185, 45, 45, 0.08);
}

@media (max-width: 900px) {
  .location-map-embed-wrap {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
    background-color: transparent;
  }

  .location-map-embed-stage {
    border-radius: clamp(5px, 0.5vw, 7px);
    overflow: hidden;
  }

  .location-map-embed {
    aspect-ratio: 4 / 3;
    flex: 0 0 auto;
  }

  .location-map-card {
    position: static;
    width: 100%;
    margin-top: 0;
    --location-map-card-section-gap: 16px;
    --location-map-card-row-gap: 12px;
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .location-map-card {
    --location-map-card-section-gap: 15px;
    --location-map-card-row-gap: 11px;
    --location-map-card-icon-size: 30px;
  }

  .location-map-card-title {
    line-height: 1.04;
  }

  .location-map-card-rating {
    gap: 8px 10px;
  }

  .location-map-btn {
    min-height: 44px;
    padding: 11px 14px;
    font-size: clamp(0.82rem, 3.2vw, 0.94rem);
    gap: 8px;
  }

  .location-map-btn img {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 520px) {
  .location-map {
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .location-map-card-actions {
    flex-direction: column;
    align-items: stretch;
    width: 94%;
  }

  .location-map-btn {
    flex: 1 1 auto;
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    font-size: clamp(0.8rem, 3.4vw, 0.92rem);
    gap: 8px;
  }

  .location-map-btn img {
    width: 17px;
    height: 17px;
  }
}

/* ── Footer Car Runway ────────────────────────────────────────── */

.site-footer-car-stage {
  position: relative;
  width: 100%;
  height: clamp(150px, 20vh, 230px);
  margin-top: -1px;
  background-color: #000000;
  overflow-x: clip;
  isolation: isolate;
  transform: translateZ(0);
}

@media (max-width: 768px) {
  .site-footer-car-stage {
    height: clamp(96px, 14vh, 140px);
  }

  .site-footer-car-wrap {
    height: clamp(28px, 4.2vw, 44px);
  }

  .site-footer-car-exhaust,
  .site-footer-car-glow {
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .site-footer-car-stage {
    height: clamp(72px, 12vh, 110px);
  }
}

.site-footer-car-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-footer-car-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  height: clamp(36px, 5.5vw, 64px);
  width: auto;
  aspect-ratio: 1279 / 369;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: flat;
  --exhaust-intensity: 0;
}

.site-footer-car {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.site-footer-car-glow {
  position: absolute;
  left: -5%;
  bottom: 26%;
  width: 22%;
  height: 42%;
  border-radius: 50%;
  pointer-events: none;
  opacity: calc(var(--exhaust-intensity) * 0.85);
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(255, 210, 90, 0.95) 0%,
    rgba(255, 130, 40, 0.65) 28%,
    rgba(220, 55, 20, 0.25) 55%,
    transparent 78%
  );
  filter: blur(5px);
  mix-blend-mode: screen;
  transform-origin: center;
}

.site-footer-car-wrap.is-exhaust-active .site-footer-car-glow {
  animation: footerCarGlowPulse 0.1s ease-in-out 3 alternate;
}

.site-footer-car-exhaust {
  position: absolute;
  left: -12%;
  bottom: 30%;
  width: 14%;
  height: 18%;
  pointer-events: none;
}

.site-footer-car-flame {
  position: absolute;
  left: 0;
  bottom: 8%;
  border-radius: 50% 12% 50% 80%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transform-origin: right center;
}

.site-footer-car-flame--core {
  width: 72%;
  height: 52%;
  background: linear-gradient(
    90deg,
    rgba(255, 245, 170, 0.98) 0%,
    rgba(255, 175, 55, 0.92) 42%,
    rgba(255, 85, 20, 0.55) 78%,
    transparent 100%
  );
  filter: blur(0.4px);
}

.site-footer-car-flame--outer {
  width: 100%;
  height: 78%;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 120, 35, 0.75) 0%,
    rgba(235, 45, 15, 0.45) 55%,
    transparent 100%
  );
  filter: blur(2px);
}

.site-footer-car-wrap.is-exhaust-active .site-footer-car-flame {
  opacity: calc(0.5 + var(--exhaust-intensity) * 0.5);
  animation: footerCarFlameFlicker 0.08s ease-in-out 4 alternate;
}

.site-footer-car-wrap.is-exhaust-active .site-footer-car-flame--outer {
  animation-duration: 0.09s;
}

.site-footer-car-sparks {
  position: absolute;
  left: 0;
  bottom: 24%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: #ffe08a;
  box-shadow:
    -6px 2px 0 0 rgba(255, 220, 120, 0.9),
    -12px -1px 0 0 rgba(255, 170, 60, 0.75),
    -18px 3px 0 0 rgba(255, 120, 40, 0.55),
    -10px 6px 0 0 rgba(255, 200, 90, 0.65);
}

.site-footer-car-wrap.is-exhaust-active .site-footer-car-sparks {
  opacity: calc(var(--exhaust-intensity) * 1);
  animation: footerCarSparkBurst 0.24s ease-out 1;
}

.site-footer-car-wrap.is-exhaust-active .site-footer-car-glow,
.site-footer-car-wrap.is-exhaust-active .site-footer-car-flame,
.site-footer-car-wrap.is-exhaust-active .site-footer-car-sparks {
  will-change: transform, opacity;
}

@keyframes footerCarGlowPulse {
  0% {
    transform: scale(0.92);
    filter: blur(5px);
  }

  100% {
    transform: scale(1.08);
    filter: blur(7px);
  }
}

@keyframes footerCarFlameFlicker {
  0% {
    transform: scaleX(0.82) scaleY(0.9) translateX(0);
  }

  100% {
    transform: scaleX(1.12) scaleY(1.06) translateX(-12%);
  }
}

@keyframes footerCarSparkBurst {
  0% {
    transform: translateX(0) scale(0.7);
    opacity: calc(var(--exhaust-intensity) * 0.95);
  }

  70% {
    opacity: calc(var(--exhaust-intensity) * 0.5);
  }

  100% {
    transform: translateX(-140%) scale(1.15);
    opacity: 0;
  }
}

.site-footer-car-stage.is-animating .site-footer-car-wrap {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-car-wrap {
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }

  .site-footer-car-glow,
  .site-footer-car-exhaust {
    display: none;
  }
}

/* ── Site Footer ──────────────────────────────────────────────── */

.site-footer {
  background-color: #000000;
  color: #ffffff;
  transform: translateZ(0);
}

.site-footer-top {
  height: 1px;
  background-color: var(--brand-red);
}

.site-footer-main {
  padding: clamp(40px, 6.25vw, 70px) clamp(25px, 6.25vw, 60px)
    clamp(35px, 5vw, 55px);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 3.75vw, 50px);
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer-brand,
.site-footer-col {
  position: relative;
  min-width: 0;
}

.site-footer-brand::after,
.site-footer-col:not(.site-footer-col--hours)::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(clamp(30px, 3.75vw, 50px) * -0.5);
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.site-footer-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: clamp(13px, 1.75vw, 18px);
}

.site-footer-logo {
  display: block;
  width: clamp(185px, 21vw, 265px);
  height: auto;
  margin: 0 0 3px;
  opacity: 0.48;
  filter: brightness(0) invert(1);
}

.site-footer-tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.06vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--brand-red);
}

.site-footer-blurb-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1.25vw, 13px);
  margin-bottom: clamp(20px, 2.5vw, 25px);
}

.site-footer-blurb {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  padding-bottom: clamp(10px, 1.25vw, 13px);
  border-bottom: 1px solid var(--brand-red);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.19vw, 1.1rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer-blurb-line {
  display: block;
}

.site-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(13px, 1.5vw, 15px);
}

.site-footer-contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
}

.site-footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: start;
  margin-top: 3px;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a.site-footer-contact-icon:hover {
  opacity: 0.85;
}

.site-footer-contact-icon img {
  width: clamp(18px, 2vw, 20px);
  height: clamp(18px, 2vw, 20px);
  display: block;
  filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(1742%)
    hue-rotate(338deg) brightness(88%) contrast(92%);
}

.site-footer-contact-icon-pin,
.site-footer-contact-icon-email,
.site-footer-contact-icon-clock {
  width: clamp(18px, 2vw, 20px);
  height: clamp(18px, 2vw, 20px);
  display: block;
  background-color: var(--brand-red);
}

.site-footer-contact-icon-pin {
  -webkit-mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain
    no-repeat;
  mask: url("../assets/icons/SVG/location-pin-three.svg") center / contain no-repeat;
}

.site-footer-contact-icon-email {
  -webkit-mask: url("../assets/icons/email-icon.svg") center / contain no-repeat;
  mask: url("../assets/icons/email-icon.svg") center / contain no-repeat;
}

.site-footer-contact-icon-clock {
  -webkit-mask: url("../assets/icons/clock-icon.svg") center / contain no-repeat;
  mask: url("../assets/icons/clock-icon.svg") center / contain no-repeat;
}

.site-footer-contact-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.19vw, 1.02rem);
  line-height: 1.45;
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-contact-text a:hover {
  color: #ffffff;
}

.site-footer-col-title {
  margin: 0 0 clamp(18px, 2.25vw, 23px);
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.06vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--brand-red);
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(10px, 1.25vw, 13px);
}

.site-footer-links a {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.19vw, 1.1rem);
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.site-footer-links a:hover {
  color: #ffffff;
}

.site-footer-hours-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
}

.site-footer-hours {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.19vw, 1.1rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-hours-rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: clamp(20px, 2.5vw, 25px) 0;
  background-color: rgba(255, 255, 255, 0.12);
}

.site-footer-call-btn {
  width: 100%;
  min-height: 52px;
  padding: 15px 20px;
}

.site-footer-call-btn .hero-button-inner {
  gap: 10px;
  font-size: clamp(0.78rem, 1.12vw, 0.9rem);
  letter-spacing: 0.08em;
}

.site-footer-call-btn img {
  width: 18px;
  height: 18px;
}

.site-footer-bar {
  position: relative;
  border-top: 1px solid var(--brand-red);
  background-image: var(--metal-scratch-lines);
  box-shadow: var(--metal-inset-highlight), var(--metal-inset-shadow);
  overflow: hidden;
}

.site-footer-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--metal-texture-url);
  background-size: var(--metal-texture-size);
  background-repeat: var(--metal-texture-repeat);
  background-position: var(--metal-texture-position);
  filter: var(--metal-texture-filter);
  pointer-events: none;
}

.site-footer-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--metal-depth-overlay);
  pointer-events: none;
}

.site-footer-bar-inner {
  position: relative;
  z-index: 1;
  --footer-bar-font-size: clamp(0.58rem, 0.62rem + 0.12vw, 0.72rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "credit taglines copyright";
  align-items: center;
  gap: clamp(8px, 1.25vw, 14px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 20px) clamp(20px, 4vw, 50px);
  box-sizing: border-box;
}

.site-footer-copyright {
  grid-area: copyright;
  margin: 0;
  justify-self: end;
  text-align: right;
  font-family: var(--font-body);
  font-size: var(--footer-bar-font-size);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-taglines {
  grid-area: taglines;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  justify-self: center;
  gap: 0.45em;
  font-family: var(--font-body);
  font-size: var(--footer-bar-font-size);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.site-footer-tagline-white {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-tagline-separator {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer-tagline-red {
  color: var(--brand-red);
}

.site-footer-credit {
  grid-area: credit;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  gap: 0.55em;
  min-width: 0;
  font-size: var(--footer-bar-font-size);
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer-credit:hover {
  opacity: 0.85;
}

.site-footer-credit-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-credit-logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 1.65em;
}

@media (max-width: 1100px) {
  .site-footer-bar-inner {
    --footer-bar-font-size: clamp(0.54rem, 0.58rem + 0.1vw, 0.66rem);
    gap: clamp(6px, 1vw, 10px);
    padding-inline: clamp(16px, 3vw, 32px);
  }

  .site-footer-credit-logo {
    height: 1.5em;
  }
}

@media (max-width: 1023px) and (min-width: 601px) {
  .site-footer-main {
    padding: clamp(28px, 4vw, 44px) clamp(20px, 3.5vw, 36px)
      clamp(24px, 3.5vw, 40px);
  }

  .site-footer-grid {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    justify-items: stretch;
    text-align: left;
  }

  .site-footer-brand,
  .site-footer-col {
    display: block;
    align-items: flex-start;
    width: auto;
    max-width: none;
  }

  .site-footer-brand::after,
  .site-footer-col:not(.site-footer-col--hours)::after {
    display: block;
    right: calc(clamp(14px, 2vw, 22px) * -0.5);
  }

  .site-footer-col--hours::before {
    display: none;
  }

  .site-footer-brand-lockup {
    align-items: flex-start;
    margin-bottom: clamp(10px, 1.4vw, 14px);
  }

  .site-footer-logo {
    width: clamp(128px, 17vw, 168px);
  }

  .site-footer-tagline {
    font-size: clamp(0.62rem, 0.85vw, 0.72rem);
  }

  .site-footer-blurb-block {
    align-items: flex-start;
    gap: clamp(8px, 1vw, 10px);
    margin-bottom: clamp(14px, 2vw, 18px);
  }

  .site-footer-blurb {
    align-items: flex-start;
    padding-bottom: clamp(8px, 1vw, 10px);
    font-size: clamp(0.76rem, 1vw, 0.86rem);
  }

  .site-footer-contact {
    justify-items: start;
    gap: clamp(10px, 1.2vw, 12px);
  }

  .site-footer-contact-item {
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 10px;
    text-align: left;
  }

  .site-footer-contact-icon {
    margin-top: 2px;
  }

  .site-footer-contact-icon img,
  .site-footer-contact-icon-pin,
  .site-footer-contact-icon-email,
  .site-footer-contact-icon-clock {
    width: clamp(14px, 1.6vw, 16px);
    height: clamp(14px, 1.6vw, 16px);
  }

  .site-footer-contact-text {
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    overflow-wrap: anywhere;
  }

  .site-footer-col-title {
    margin-bottom: clamp(12px, 1.6vw, 16px);
    font-size: clamp(0.62rem, 0.85vw, 0.72rem);
    text-align: left;
    width: auto;
  }

  .site-footer-links {
    justify-items: start;
    gap: clamp(7px, 0.9vw, 9px);
    width: auto;
  }

  .site-footer-links a {
    font-size: clamp(0.76rem, 1vw, 0.86rem);
  }

  .site-footer-hours-detail {
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 10px;
    width: auto;
    text-align: left;
  }

  .site-footer-hours {
    font-size: clamp(0.76rem, 1vw, 0.86rem);
  }

  .site-footer-hours-rule {
    width: 100%;
    max-width: none;
    margin: clamp(14px, 2vw, 18px) 0;
  }

  .site-footer-call-btn {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    align-self: stretch;
  }

  .site-footer-call-btn .hero-button-inner {
    gap: 8px;
    font-size: clamp(0.66rem, 0.9vw, 0.76rem);
    letter-spacing: 0.07em;
  }

  .site-footer-call-btn img {
    width: 15px;
    height: 15px;
  }

  .site-footer-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas: "credit taglines copyright";
    flex-direction: unset;
    align-items: center;
    text-align: unset;
    gap: clamp(6px, 1vw, 10px);
    padding: clamp(12px, 1.6vw, 16px) clamp(16px, 2.5vw, 28px);
    --footer-bar-font-size: clamp(0.5rem, 0.58rem + 0.08vw, 0.62rem);
  }

  .site-footer-taglines,
  .site-footer-copyright,
  .site-footer-credit {
    grid-area: unset;
    justify-self: unset;
  }

  .site-footer-taglines {
    justify-content: center;
    justify-self: center;
  }

  .site-footer-copyright {
    justify-self: end;
    text-align: right;
  }

  .site-footer-credit {
    justify-content: flex-start;
  }

  .site-footer-credit-logo {
    height: 1.45em;
  }

  .site-footer-car-stage {
    height: clamp(100px, 13vh, 150px);
  }

  .site-footer-car-wrap {
    height: clamp(28px, 4vw, 44px);
  }
}

@media (max-width: 768px) {
  .site-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(28px, 4vw, 40px);
    text-align: center;
  }

  .site-footer-brand,
  .site-footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
  }

  .site-footer-brand::after,
  .site-footer-col::after,
  .site-footer-col--hours::before {
    display: none;
  }

  .site-footer-brand-lockup,
  .site-footer-blurb-block,
  .site-footer-blurb {
    align-items: center;
  }

  .site-footer-contact {
    justify-items: center;
    width: 100%;
  }

  .site-footer-contact-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .site-footer-contact-icon {
    margin-top: 0;
  }

  .site-footer-col-title {
    text-align: center;
    width: 100%;
  }

  .site-footer-links {
    justify-items: center;
    width: 100%;
  }

  .site-footer-hours-detail {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
  }

  .site-footer-hours-rule {
    width: min(100%, 220px);
    max-width: 220px;
    margin-inline: auto;
  }

  .site-footer-call-btn {
    width: min(100%, 200px);
    min-height: 50px;
    padding: 14px 20px;
    align-self: center;
  }

  .site-footer-call-btn .hero-button-inner {
    gap: 10px;
    font-size: clamp(0.74rem, 1.05vw, 0.88rem);
    letter-spacing: 0.08em;
  }

  .site-footer-call-btn img {
    width: 17px;
    height: 17px;
  }

  .site-footer-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(16px, 2vh, 22px);
    max-width: 1180px;
    padding-inline: clamp(16px, 3vw, 32px);
  }

  .site-footer-taglines,
  .site-footer-copyright,
  .site-footer-credit {
    grid-area: unset;
    justify-self: center;
  }

  .site-footer-taglines {
    justify-content: center;
  }

  .site-footer-copyright {
    text-align: center;
  }

  .site-footer-credit {
    justify-content: center;
  }

  .site-footer-credit-logo {
    height: 1.65em;
  }
}

@media (max-width: 767px) {
  .site-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(35px, 6.25vw, 45px);
    text-align: center;
  }

  .site-footer-brand,
  .site-footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
    padding-bottom: clamp(30px, 5vw, 40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-footer-brand-lockup,
  .site-footer-blurb-block,
  .site-footer-blurb {
    align-items: center;
  }

  .site-footer-contact {
    justify-items: center;
    width: 100%;
  }

  .site-footer-contact-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .site-footer-contact-icon {
    margin-top: 0;
  }

  .site-footer-col-title {
    text-align: center;
    width: 100%;
  }

  .site-footer-links {
    justify-items: center;
    width: 100%;
  }

  .site-footer-hours-detail {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
  }

  .site-footer-hours-rule {
    width: min(100%, 220px);
    max-width: 220px;
    margin-inline: auto;
  }

  .site-footer-call-btn {
    width: min(100%, 200px);
    align-self: center;
  }

  .site-footer-col--hours {
    padding-bottom: 0;
    border-bottom: none;
  }

  .site-footer-brand::after,
  .site-footer-col::after,
  .site-footer-col--hours::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-footer-bar-inner {
    gap: clamp(16px, 2vh, 22px);
  }
}

@media (max-width: 520px) {
  .site-footer-main {
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .site-footer-bar-inner {
    padding-inline: clamp(16px, 4vw, 24px);
  }
}

/* Gallery page */
.gallery-hero .services-hero-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132%;
  height: 132%;
  min-height: calc(var(--services-hero-min-height) * 1.32);
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center 76%;
  filter: grayscale(0.48) brightness(0.5) saturate(1.08);
}

.gallery-grid-section {
  background-color: #000000;
  width: 100%;
  padding: clamp(24px, 3.5vh, 40px) clamp(28px, 4.2vw, 72px)
    clamp(52px, 7vh, 80px);
  box-sizing: border-box;
}

.gallery-grid {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: clamp(8px, 1vw, 12px);
}

.gallery-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background-color: #161616;
  overflow: hidden;
  transition: transform 0.28s ease;
}

.gallery-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #0a0a0a;
}

.gallery-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.gallery-card-media--challenger img {
  object-position: 28% 52%;
}

.gallery-card-media--corvette-c1-62 img {
  object-position: 18% 52%;
}

.gallery-card-media--svt-cobra img {
  object-position: 34% 52%;
}

.gallery-card-media--bel-air-55 img {
  object-position: 38% 52%;
}

.gallery-card-media--bel-air-56 img {
  object-position: 32% 52%;
}

.gallery-card-media--camaro-69 img {
  object-fit: cover;
  object-position: center 42%;
}

.gallery-card-media--chevelle-68 img {
  object-position: 32% 52%;
}

.gallery-card-media--camaro-67 img {
  object-position: 64% 52%;
}

.gallery-card-media--road-runner-68 img {
  object-position: 36% 52%;
}

.gallery-card-media--kellison-j5 img {
  object-position: 42% 52%;
}

.gallery-card-media--t-bucket img {
  object-position: 38% 52%;
}

.gallery-card-media--camaro-ss-68 img {
  object-position: center 52%;
  transform: scale(1.08);
  transform-origin: center center;
}

.gallery-card-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 0 clamp(10px, 1vw, 14px);
  flex: 0 0 auto;
  min-height: clamp(102px, 11.8vw, 112px);
  padding: clamp(12px, 1.4vw, 15px) clamp(13px, 1.5vw, 16px)
    clamp(13px, 1.5vh, 16px);
  box-sizing: border-box;
  background-color: #161616;
}

.gallery-card-tag {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 0.72vw, 0.64rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-red);
}

.gallery-card-title {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.12rem, 1.52vw, 1.34rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.gallery-card-specs {
  grid-column: 1;
  grid-row: 3;
  margin: clamp(6px, 0.7vh, 8px) 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.56rem, 0.7vw, 0.62rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.gallery-card-arrow {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
  justify-self: end;
  margin-bottom: 1px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 300;
  line-height: 1;
  color: var(--brand-red);
  transition: transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-card:hover .gallery-card-arrow {
    transform: translateX(4px);
  }
}

.gallery-cta.services-process .services-process-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.5vw, 48px);
}

.gallery-cta-btn {
  flex: 0 0 auto;
  align-self: center;
}

/* Gallery page — tablet (768–1100px): match large desktop layout */
@media (max-width: 1100px) and (min-width: 768px) {
  .gallery-cta.services-process .services-process-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 3.5vw, 48px);
  }

  .gallery-cta .services-process-intro {
    align-items: flex-start;
    text-align: left;
    margin-inline: 0;
    max-width: none;
  }

  .gallery-cta .services-process-eyebrow-row {
    justify-content: flex-start;
  }

  .gallery-cta .services-process-copy {
    margin-inline: 0;
    max-width: 34ch;
  }

  .gallery-cta-btn {
    align-self: center;
  }
}

/* Gallery page — phone only (≤767px). */
@media (max-width: 767px) {
  .gallery-cta.services-process .services-process-inner {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .gallery-cta .services-process-intro {
    align-items: center;
    width: 100%;
    max-width: min(90vw, 474px);
  }

  .gallery-cta .services-process-eyebrow-row {
    justify-content: center;
  }

  .gallery-cta .services-process-copy {
    max-width: 32ch;
    margin-inline: auto;
    text-align: center;
  }

  .gallery-cta-btn {
    align-self: center;
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-grid-section {
    padding-inline: clamp(20px, 4vw, 32px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 92vw);
    max-width: 420px;
    margin-inline: auto;
    gap: clamp(8px, 2vw, 10px);
  }

  .gallery-card-body {
    min-height: clamp(108px, 28vw, 124px);
    row-gap: clamp(4px, 0.55vh, 6px);
    column-gap: clamp(8px, 1.2vw, 10px);
    padding: clamp(10px, 1.3vw, 13px) clamp(10px, 1.4vw, 13px)
      clamp(11px, 1.4vh, 14px);
  }

  .gallery-card-tag {
    font-size: clamp(0.52rem, 2.1vw, 0.6rem);
  }

  .gallery-card-title {
    align-self: start;
    margin-top: clamp(2px, 0.35vh, 4px);
    font-size: clamp(0.92rem, 3.8vw, 1.1rem);
    line-height: 1.14;
    letter-spacing: 0.012em;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .gallery-card-specs {
    margin-top: clamp(4px, 0.65vh, 6px);
    font-size: clamp(0.5rem, 1.95vw, 0.58rem);
    line-height: 1.28;
  }

  .gallery-card-arrow {
    font-size: clamp(0.9rem, 3.4vw, 1.02rem);
    margin-bottom: 2px;
  }
}

@media (max-width: 480px) {
  .gallery-grid-section {
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .gallery-grid {
    width: min(100%, 94vw);
    max-width: 400px;
    gap: clamp(7px, 1.8vw, 9px);
  }

  .gallery-card-body {
    min-height: clamp(100px, 26vw, 118px);
  }

  .gallery-card-title {
    font-size: clamp(0.95rem, 4.2vw, 1.15rem);
    line-height: 1.12;
  }
}
