/* Southern Sewer — base + hero */

:root {
  --color-menu: #921a22;
  --color-accent: #b90606;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-card: #2e2e2e;
  --color-reliable-bg: #2e2e2e;
  --font-family: "Poppins", sans-serif;
  --container: 1240px;
  --site-gutter: 1.5rem;
  --header-height: 88px;
  --hero-height: clamp(760px, 100vh, 1000px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  max-width: 100%;
}

.site-main {
  overflow-x: clip;
  max-width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.site-main + .site-footer {
  margin-top: 0;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - calc(var(--site-gutter) * 2), var(--container));
  margin-inline: auto;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-menu {
  background: var(--color-menu);
  color: var(--color-white);
}

.btn-menu:hover {
  background: #7a151c;
}

.btn-hero {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 1.1rem 2.75rem;
  font-size: 20px;
  font-weight: 500;
  border-radius: 20px;
}

.btn-hero:hover {
  background: #9a0505;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  height: var(--header-height);
  background: rgba(140, 140, 140, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.brand-logo {
  width: auto;
  height: 48px;
  /*max-width: min(220px, 40vw);*/
}

.site-nav {
  justify-self: center;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.site-nav .menu-item-has-children,
.site-nav .has-dropdown {
  position: relative;
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  z-index: 50;
  min-width: min(320px, 90vw);
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  border-radius: 6px;
  background: rgba(30, 30, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu,
.site-nav .has-dropdown:hover > .sub-menu,
.site-nav .has-dropdown:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav .sub-menu li {
  display: block;
  width: 100%;
}

.site-nav .sub-menu a {
  display: block;
  width: 100%;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  border-bottom: none;
  white-space: nowrap;
}

.site-nav .sub-menu a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .sub-menu .current-menu-item > a {
  color: var(--color-menu);
  border-bottom: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  padding-bottom: 0.35rem;
  border-bottom: 3px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.85;
}

.site-nav a.is-active {
  color: var(--color-menu);
}

.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  color: var(--color-menu);
  border-bottom-color: var(--color-menu);
}

.site-nav a.is-active {
  border-bottom-color: var(--color-menu);
}

.nav-chevron {
  margin-top: 2px;
}

.header-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-contact__list li {
  margin: 0;
  padding: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

/* Hero */

.hero {
  position: relative;
  min-height: var(--hero-height);
  margin-top: calc(-1 * var(--header-height));
  overflow-x: clip;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.55) 0%,
    rgba(20, 20, 20, 0.35) 45%,
    rgba(20, 20, 20, 0.15) 100%
  );
}

.home .hero-bg::after {
  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.15) 0%,
    rgba(20, 20, 20, 0.35) 50%,
    rgba(20, 20, 20, 0.55) 100%
  );
}

.hero-vector {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero-vector--top {
  top: 0;
  left: 0;
  width: clamp(220px, 28vw, 408px);
  height: auto;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: var(--hero-height);
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-content {
  max-width: min(58vw, 820px);
  padding-top: 1rem;
}

.hero-content h1 {
  margin: 0 0 1.25rem;
  font-size: 80px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-content h1 br {
  display: none;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-content p {
  margin: 0 0 3rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 460px;
}

.hero-truck {
  position: absolute;
  top: 24%;
  right: 0;
  width: clamp(690px, 60vw, 1127px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  z-index: 5;
  pointer-events: none;
}

.home .hero-layout .hero-truck {
  position: relative;
  top: auto;
  right: auto;
  left: 0;
  flex: 0 0 auto;
  width: clamp(280px, 62vw, 890px);
  max-width: 890px;
  margin-left: 0;
  align-self: center;
}

@media (min-width: 1025px) {
  .home .hero {
    min-height: 100vh;
    min-height: 100svh;
    overflow: visible;
  }

  .home .hero-layout {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-height) + clamp(1.5rem, 4vh, 3rem))
      max(var(--site-gutter), calc((100vw - var(--container)) / 2))
      0
      0;
  }

  .home .hero-layout .hero-truck {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 890px;
    max-width: min(890px, 52vw);
    height: auto;
    transform: translateY(25%);
    z-index: 5;
  }

  .home .hero-layout .hero-inner.container {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: calc(60% - max(var(--site-gutter), calc((100vw - var(--container)) / 2)));
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .home .hero-layout .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    text-align: right;
  }

  .home .hero-layout .hero-content h1 {
    font-size: clamp(3.14rem, 5.03vw, 90px);
    max-width: 100%;
    margin: 0 0 1.25rem;
    margin-left: 0;
    text-align: right;
  }

  .home .hero-layout .hero-title-line {
    white-space: nowrap;
  }

  .home .hero-layout .hero-content p {
    max-width: min(480px, 100%);
    margin: 0 0 2.5rem;
    margin-left: auto;
    text-align: right;
  }

  .home .hero-layout .hero-content .btn-hero {
    align-self: flex-end;
  }

  .home .about-section {
    padding-top: clamp(9rem, 16vh, 13rem);
  }
}

.hero-float-banner {
  position: absolute;
  bottom: 0;
  width: clamp(130px, 14vw, 200px);
  height: auto;
  transform: translateY(60%);
  z-index: 6;
  pointer-events: none;
}

.hero-float-banner--left {
  left: 0;
}

.hero-float-banner--right {
  right: 0;
  width: clamp(120px, 13vw, 190px);
  z-index: 4;
}

/* About */

.about-section {
  position: relative;
  z-index: 2;
  overflow-x: clip;
  background: var(--color-white);
  padding: clamp(12rem, 22vh, 18rem) 0 5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.about-content h2 {
  margin: 0 0 1.5rem;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.1;
}

.about-content p {
  margin: 0 0 2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
  max-width: 520px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.5rem 1.25rem;
  background: var(--color-card);
  border-radius: 20px;
  text-align: center;
}

.about-card__number {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}

[data-counter] {
  font-variant-numeric: tabular-nums;
}

.about-card__text {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
}

/* Foundation */

.foundation-section {
  position: relative;
  overflow-x: clip;
  color: var(--color-white);
  padding: 5rem 0 5.5rem;
}

.foundation-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.foundation-title {
  position: absolute;
  top: 0;
  right: clamp(1.5rem, 8vw, 6rem);
  z-index: 2;
  margin: 0;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-accent);
  transform: translateY(-50%);
  pointer-events: none;
}

.foundation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: 3.5rem;
}

.foundation-cards {
  display: grid;
  grid-template-columns: repeat(2, 278px);
  gap: 1.25rem;
  justify-content: start;
}

.foundation-card {
  width: 278px;
  max-width: 100%;
  padding: 1.75rem 1.5rem;
  background: rgba(4, 4, 4, 0.38);
  border-radius: 20px;
}

.foundation-card__icon {
  width: auto;
  height: 52px;
  margin-bottom: 1.25rem;
}

.foundation-card__title {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
}

.foundation-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.foundation-aside {
  padding-top: 4.5rem;
}

.foundation-aside__title {
  margin: 0 0 1.5rem;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}

.foundation-aside__title .text-accent {
  color: var(--color-accent);
}

.foundation-aside__text {
  margin: 0 0 2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.foundation-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.foundation-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.foundation-check {
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  margin-top: 2px;
}

/* Reliable Solutions */

.reliable-section {
  position: relative;
  overflow-x: clip;
  background: var(--color-reliable-bg);
  color: var(--color-white);
  padding: 5rem 0 4rem;
}

.reliable-title-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align: center;
}

.reliable-title {
  margin: 0;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}

.reliable-float-vector {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: clamp(90px, 10vw, 150px);
  height: auto;
  transform: translateY(-35%);
  pointer-events: none;
}

.reliable-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 2rem;
  min-height: 530px;
  padding-top: 2rem;
}

.reliable-truck {
  position: absolute;
  top: -5rem;
  left: 0;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.3));
  z-index: 3;
  pointer-events: none;
}

.reliable-content {
  grid-column: 1 / -1;
  justify-self: start;
  width: min(720px, 50vw);
  max-width: 720px;
  margin-left: 50%;
  padding-right: 1.5rem;
}

.reliable-content__title {
  margin: 0 0 1.5rem;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}

.reliable-heading-line {
  display: block;
  white-space: nowrap;
}

.reliable-content__title .text-accent {
  color: var(--color-accent);
}

.reliable-content p {
  margin: 0 0 2rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* What We Offer */

.offer-section {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding: clamp(9rem, 16vh, 12rem) 0 clamp(8rem, 16vh, 12rem);
}

.offer-vector {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
}

.offer-vector--left {
  left: 0;
  top: 78%;
  width: clamp(90px, 11vw, 150px);
  transform: translateY(-50%);
}

.offer-vector--right {
  right: 0;
  top: -12%;
  width: clamp(90px, 11vw, 150px);
}

.offer-inner {
  position: relative;
  z-index: 1;
}

.offer-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.offer-header h2 {
  margin: 0 0 1rem;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-text);
}

.offer-header h2 .text-accent {
  color: var(--color-accent);
}

.offer-header p {
  margin: 0 auto;
  max-width: 480px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #000000;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.offer-card {
  position: relative;
  min-height: 432px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.offer-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 432px;
  padding: 1.75rem;
}

.offer-card__content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-white);
}

.offer-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}

.offer-card__link:hover {
  opacity: 0.85;
}

/* Equipment Partners */

.partners-section {
  position: relative;
  overflow-x: clip;
  background: var(--color-reliable-bg);
  color: var(--color-white);
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(4rem, 8vh, 6rem);
}

.partners-title-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: min(100% - 3rem, var(--container));
  transform: translateX(-50%);
  pointer-events: none;
}

.partners-hero-title {
  margin: 0;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  transform: translateY(-50%);
  white-space: nowrap;
}

.partners-inner {
  position: relative;
  z-index: 1;
  padding-top: 4.75rem;
}

.partners-title-equipment {
  color: var(--color-accent);
}

.partners-title-partners {
  display: inline-block;
  transform: translateY(0.45em);
  margin-left: 0.25em;
  color: var(--color-white);
}

.partners-hero-title--mobile,
.partners-subtitle--mobile {
  display: none;
}

.partners-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.partners-subtitle {
  margin: 0 0 0.75rem;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}

.partners-subtitle .text-accent {
  color: var(--color-accent);
}

.partners-header p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.partners-slider__viewport {
  overflow: hidden;
  container-type: inline-size;
}

.partners-slider__track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  backface-visibility: hidden;
}

.partners-slide {
  flex: 0 0 calc((100cqw - 3rem) / 3);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-white);
  border-radius: 20px;
  background: transparent;
}

.partners-slide img {
  width: auto;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.partners-slide__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.partners-slide__link:hover {
  opacity: 0.82;
}

.partners-slide__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.partners-slide.is-clone {
  pointer-events: none;
  user-select: none;
}

.partners-slider__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.partners-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.partners-nav-btn svg {
  display: block;
  width: 22px;
  height: 22px;
  shape-rendering: geometricPrecision;
}

.partners-nav-btn svg path {
  vector-effect: non-scaling-stroke;
}

.partners-nav-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: var(--color-white);
}

.partners-nav-btn:active {
  transform: scale(0.96);
}

.partners-nav-btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

/* Testimonials */

.testimonials-section {
  position: relative;
  overflow-x: clip;
  padding: clamp(4.6rem, 9.2vh, 6.9rem) 0 clamp(5.2rem, 9.2vh, 6.9rem);
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.testimonials-inner {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.testimonials-header h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-text);
}

.testimonials-header h2 .text-accent {
  color: var(--color-accent);
}

.testimonials-carousel {
  max-width: 920px;
  margin: 0 auto;
}

.testimonials-carousel__viewport {
  overflow: hidden;
}

.testimonials-carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonials-slide {
  flex: 0 0 100%;
  padding: 0 0.25rem;
}

.testimonials-slide blockquote {
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonials-slide p::before {
  content: "\201C";
}

.testimonials-slide p::after {
  content: "\201D";
}

.testimonials-slide p {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}

.testimonials-slide footer {
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: #000000;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.testimonials-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.testimonials-dot.is-active {
  background: var(--color-white);
}

.testimonials-dot:hover {
  transform: scale(1.1);
}

/* Trusted + Built */

.trusted-block {
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

.trusted-section {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  background: var(--color-reliable-bg);
  color: var(--color-white);
  padding: 0 0 17px;
  min-height: calc(clamp(572px, 57.2vw, 968px) / 1.5 - 10px);
}

.trusted-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.trusted-title {
  margin: 0;
  font-size: 85px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.trusted-title-line {
  display: block;
  white-space: nowrap;
}

.trusted-truck {
  position: absolute;
  top: -10px;
  right: 0;
  width: clamp(572px, 57.2vw, 968px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.28));
  z-index: 3;
  pointer-events: none;
}

.built-section {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: var(--color-white);
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(5rem, 10vh, 7rem);
}

.trusted-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  width: clamp(110px, 12vw, 180px);
  height: auto;
  pointer-events: none;
  transform: translateY(-48.5%);
}

.built-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.built-title {
  margin: 0 0 1.75rem;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

.built-title .text-accent {
  color: var(--color-accent);
}

.built-text {
  margin: 0 0 2.25rem;
  max-width: 620px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
}

/* Footer */

.site-footer {
  position: relative;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  color: var(--color-white);
}

.site-footer__layout {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  width: 100%;
  max-width: 100%;
}

.site-footer__brand,
.site-footer__nav {
  position: relative;
  overflow-x: clip;
}

.site-footer__brand {
  background: #940000;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3rem, 5vw, 4rem);
}

.site-footer__nav {
  background: #2d2d2d;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(2.5rem, 4vw, 3.5rem);
}

.site-footer__ribbon {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.site-footer__ribbon--top {
  top: 0;
  left: 40%;
  width: clamp(220px, 30vw, 474px);
  height: auto;
}

.site-footer__ribbon--bottom {
  right: 0;
  bottom: 0;
  width: clamp(180px, 24vw, 343px);
  height: auto;
}

.site-footer__brand-inner,
.site-footer__nav-inner {
  position: relative;
  z-index: 3;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-decoration: none;
}

.site-footer__logo img {
  width: min(220px, 100%);
  height: auto;
}

.site-footer__tagline {
  margin: 0 0 2rem;
  max-width: 420px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-size: 16px;
  font-weight: 400;
}

.site-footer__contact a:hover {
  opacity: 0.85;
}

.site-footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.site-footer__column h3 {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.site-footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__column a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__column a:hover {
  color: var(--color-white);
}

.site-footer__meta p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__meta p + p {
  margin-top: 0.35rem;
}

/* Scroll reveal */

@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform, filter;
  }

  .scroll-reveal.scroll-reveal--fade-up {
    transform: translate3d(0, 40px, 0);
  }

  .scroll-reveal.scroll-reveal--fade-down {
    transform: translate3d(0, -32px, 0);
  }

  .scroll-reveal.scroll-reveal--from-right {
    transform: translate3d(56px, 28px, 0);
  }

  .scroll-reveal.scroll-reveal--from-left {
    transform: translate3d(-56px, 28px, 0);
  }

  .scroll-reveal.scroll-reveal--scale {
    transform: translate3d(0, 24px, 0) scale(0.9);
  }

  .scroll-reveal.scroll-reveal--rotate {
    transform: translate3d(0, 32px, 0) rotate(-3deg);
  }

  .scroll-reveal.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
    filter: blur(0);
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .btn-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .btn-menu {
    display: block;
  }

  .site-header.is-open .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 1rem;
    padding-block: 1rem;
    height: auto;
    min-height: var(--header-height);
  }

  .site-header.is-open {
    position: fixed;
    inset: 0;
    height: 100vh;
    background: rgba(18, 18, 18, 0.96);
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-header.is-open .site-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .site-header.is-open .site-nav .sub-menu {
    position: static;
    min-width: 0;
    margin: 0.5rem 0 0 1rem;
    padding: 0;
    border: none;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-open .site-nav .sub-menu a {
    padding: 0.45rem 0 0.45rem 1rem;
    font-size: 1rem;
    white-space: normal;
  }

  .site-header.is-open .site-nav .sub-menu a:hover {
    background: transparent;
    opacity: 0.85;
  }

  .site-header.is-open .site-nav a {
    color: var(--color-white);
    font-size: 1.1rem;
  }

  .site-header.is-open .site-nav a.is-active {
    color: var(--color-menu);
  }

  .site-header.is-open .btn-menu {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    min-height: auto;
    width: 100%;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 0;
    padding-right: 0;
    gap: 0;
  }

  .home .hero-layout .hero-inner.container {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-inner {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    align-items: flex-start;
    min-height: auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 8vw, 80px);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-truck,
  .home .hero-layout .hero-truck {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 1.25rem 0 0;
    align-self: stretch;
  }

  .hero-float-banner--left {
    width: clamp(100px, 18vw, 150px);
  }

  .hero-float-banner--right {
    width: clamp(90px, 16vw, 140px);
  }

  .about-section,
  .foundation-section,
  .offer-section,
  .trusted-block,
  .testimonials-section,
  .partners-section,
  .built-section,
  .site-footer {
    overflow-x: clip;
    max-width: 100%;
  }

  .about-section {
    padding-top: clamp(4rem, 10vh, 6rem);
  }

  .reliable-title-wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin-bottom: 2rem;
    pointer-events: auto;
  }

  .reliable-float-vector {
    top: 0;
    right: 0;
    transform: translateY(-25%);
  }

  .reliable-title {
    font-size: clamp(2.5rem, 10vw, 100px);
    white-space: normal;
  }

  .reliable-inner {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    padding: 0;
    min-height: auto;
  }

  .reliable-section {
    overflow-x: clip;
    max-width: 100%;
  }

  .reliable-truck {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: left center;
    margin: 1rem 0 -90px;
    align-self: stretch;
  }

  .reliable-content {
    grid-column: 1;
    max-width: none;
    margin-left: 0;
    padding: 2rem 1.5rem 0;
  }

  .reliable-content__title {
    font-size: clamp(2rem, 8vw, 60px);
  }

  .reliable-heading-line {
    white-space: normal;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .partners-title-wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-bottom: 1.5rem;
    pointer-events: auto;
    text-align: center;
  }

  .partners-hero-title--desktop,
  .partners-subtitle--desktop {
    display: none;
  }

  .partners-hero-title--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    transform: none;
    font-size: clamp(2.5rem, 10vw, 100px);
    text-align: center;
    white-space: normal;
  }

  .partners-title-line {
    display: block;
  }

  .partners-hero-title--mobile .partners-title-partners {
    transform: none;
    margin-left: 0;
  }

  .partners-inner {
    padding-top: 0;
  }

  .partners-header {
    text-align: center;
  }

  .partners-subtitle--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 8vw, 60px);
    text-align: center;
  }

  .partners-subtitle-line {
    display: block;
  }

  .partners-slide {
    flex: 0 0 100cqw;
  }

  .trusted-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    padding-bottom: clamp(18.2rem, 54.6vw, 23.4rem);
  }

  .trusted-section {
    display: block;
    min-height: auto;
    padding-bottom: 17px;
  }

  .trusted-title {
    font-size: clamp(2.5rem, 10vw, 85px);
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 0 15px;
  }

  .trusted-title-line {
    white-space: normal;
  }

  .trusted-truck {
    position: absolute;
    top: auto;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(100%, 640px);
    transform: none;
    margin-bottom: 1rem;
  }

  .trusted-ribbon {
    width: clamp(80px, 14vw, 130px);
  }

  .built-title {
    font-size: clamp(2rem, 8vw, 60px);
    white-space: normal;
  }

  .site-footer__layout {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__nav {
    overflow-x: clip;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-footer__ribbon--top {
    left: 40%;
    width: min(220px, 55vw);
  }

  .site-footer__ribbon--bottom {
    width: min(160px, 42vw);
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, var(--container));
    --site-gutter: 1rem;
  }

  .hero .container,
  .home .hero-layout .hero-inner.container {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.25rem;
  }

  .brand-logo {
    height: 40px;
  }

  .hero-vector--top {
    width: 180px;
  }

  .hero-truck {
    margin-top: 1rem;
    padding-inline: 0;
  }

  .about-section {
    padding-top: 2.5rem;
  }

  .about-content h2 {
    font-size: clamp(2rem, 8vw, 60px);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-content p {
    max-width: none;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .foundation-grid {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .foundation-aside {
    padding-top: 0;
  }

  .foundation-title {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    font-size: clamp(3rem, 12vw, 100px);
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .foundation-aside__title {
    font-size: clamp(2rem, 8vw, 60px);
  }
}

@media (max-width: 640px) {
  .foundation-section {
    padding: 3rem 0 4rem;
  }

  .foundation-cards {
    grid-template-columns: 1fr;
  }

  .foundation-card {
    width: 100%;
    text-align: center;
  }

  .foundation-card__icon {
    margin-inline: auto;
  }

  .offer-header h2 {
    font-size: clamp(2rem, 8vw, 60px);
  }

  .offer-card,
  .offer-card__content {
    min-height: 360px;
  }

  .partners-header {
    text-align: center;
  }

  .testimonials-header h2 {
    font-size: clamp(2rem, 8vw, 60px);
  }

  .testimonials-slide blockquote {
    padding: 2rem 1.5rem;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }
}

/* Popups */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

body.ss-popup-open {
  overflow: hidden;
}

.ss-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.ss-popup[hidden] {
  display: none !important;
}

.ss-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.ss-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.ss-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
}

.ss-popup__body {
  display: grid;
  gap: 1rem;
}

.ss-popup__image,
.ss-popup__video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.ss-popup__video--embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
}

.ss-popup__html {
  color: #1a1a1a;
}

.ss-popup__cta {
  justify-self: start;
}

/* About Us page */

.hero--services-page .hero-inner,
.hero--parts-page .hero-inner,
.hero--products-page .hero-inner,
.hero--about-page .hero-inner {
  flex: none;
  min-height: var(--hero-height);
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.hero--services-page .hero-inner,
.hero--parts-page .hero-inner,
.hero--products-page .hero-inner {
  justify-content: center;
}

.hero--services-page .hero-content,
.hero--parts-page .hero-content,
.hero--products-page .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 900px);
  margin-inline: auto;
  text-align: center;
}

.hero--services-page .hero-content h1,
.hero--parts-page .hero-content h1,
.hero--products-page .hero-content h1 {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.5vw, 80px);
}

.hero--services-page .hero-content p,
.hero--parts-page .hero-content p,
.hero--products-page .hero-content p {
  max-width: 680px;
  margin-inline: auto;
}

.hero--services-page .hero-bg::after,
.hero--parts-page .hero-bg::after,
.hero--products-page .hero-bg::after {
  background: rgba(20, 20, 20, 0.45);
}

@media (max-width: 1024px) {
  .hero--about-page .hero-inner,
  .hero--services-page .hero-inner,
  .hero--parts-page .hero-inner,
  .hero--products-page .hero-inner {
    min-height: auto;
  }
}

/* Services — Trusted Experience */

.services-trusted {
  position: relative;
  background: var(--color-white);
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.services-trusted__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.services-trusted__title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-text);
}

.services-trusted__title-line {
  display: block;
}

.services-trusted__title-line.text-accent {
  color: var(--color-accent);
}

.services-trusted__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
}

/* Sections wrap & floating ribbons (Parts + Services) */

.sections-wrap {
  position: relative;
  overflow: visible;
}

.sections-wrap__ribbon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  height: auto;
}

.sections-wrap__ribbon--left {
  left: 0;
  top: clamp(3rem, 8vh, 5rem);
  width: clamp(110px, 12vw, 224px);
}

.sections-wrap__ribbon--right {
  right: 0;
  top: clamp(10rem, 22vh, 14rem);
  width: clamp(105px, 11vw, 216px);
}

.services-trusted--ribbon,
.parts-carry {
  position: relative;
  z-index: 1;
}

/* Parts — Assistance */

.parts-assistance {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background: #2c2c2c;
  color: var(--color-white);
  padding: clamp(4.5rem, 9vh, 6.5rem) 0 clamp(5rem, 10vh, 7rem);
}

.parts-assistance__inner {
  position: relative;
  z-index: 1;
}

.parts-assistance__header {
  max-width: min(760px, 100%);
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.parts-assistance__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.parts-assistance__title-line {
  display: inline;
}

.parts-assistance__title-line.text-accent {
  color: var(--color-accent);
}

.parts-assistance__title-line + .parts-assistance__title-line {
  margin-left: 0.35em;
}

.parts-assistance__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.parts-assistance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 403px));
  justify-content: center;
  gap: 0.9375rem;
  width: min(100%, calc(403px * 3 + 0.9375rem * 2));
  margin-inline: auto;
}

.parts-assistance-card {
  position: relative;
  width: 100%;
  height: 532px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  will-change: transform;
}

.parts-assistance-card:hover,
.parts-assistance-card:focus-within {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.parts-assistance-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
  transition: background 0.35s ease;
}

.parts-assistance-card:hover .parts-assistance-card__shade,
.parts-assistance-card:focus-within .parts-assistance-card__shade {
  background: rgba(0, 0, 0, 0.72);
}

.parts-assistance-card__ribbon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  height: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.parts-assistance-card__ribbon--tr {
  top: 0;
  right: 0;
  width: clamp(70px, 18vw, 101px);
}

.parts-assistance-card__ribbon--bl {
  bottom: 0;
  left: 0;
  width: clamp(85px, 22vw, 125px);
}

.parts-assistance-card:hover .parts-assistance-card__ribbon,
.parts-assistance-card:focus-within .parts-assistance-card__ribbon {
  opacity: 1;
}

.parts-assistance-card__face {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
  color: var(--color-white);
  transition: opacity 0.35s ease;
}

.parts-assistance-card__face--default {
  justify-content: flex-end;
  opacity: 1;
}

.parts-assistance-card__face--details {
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.parts-assistance-card:hover .parts-assistance-card__face--default,
.parts-assistance-card:focus-within .parts-assistance-card__face--default {
  opacity: 0;
}

.parts-assistance-card:hover .parts-assistance-card__face--details,
.parts-assistance-card:focus-within .parts-assistance-card__face--details {
  opacity: 1;
  pointer-events: auto;
}

.parts-assistance-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
}

.parts-assistance-card__face--details .parts-assistance-card__title {
  margin-bottom: 0.85rem;
}

.parts-assistance-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
}

.parts-assistance-card__phone,
.parts-assistance-card__email,
.parts-assistance-card__address a {
  display: block;
  margin: 0.2rem 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-white);
  text-decoration: none;
}

.parts-assistance-card__email,
.parts-assistance-card__address a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.parts-assistance-card__address {
  margin-top: 0.15rem;
}

@media (max-width: 1024px) {
  .parts-assistance__grid {
    grid-template-columns: 1fr;
    width: min(403px, 100%);
  }

  .parts-assistance-card {
    height: auto;
    aspect-ratio: 403 / 532;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parts-assistance-card,
  .parts-assistance-card__shade,
  .parts-assistance-card__ribbon,
  .parts-assistance-card__face {
    transition: none;
  }

  .parts-assistance-card:hover,
  .parts-assistance-card:focus-within {
    transform: none;
    box-shadow: none;
  }
}

/* Services — Service Locations */

.service-locations {
  position: relative;
  overflow-x: clip;
  background: #2c2c2c;
  color: var(--color-white);
  padding: clamp(4.5rem, 9vh, 6.5rem) 0 clamp(5rem, 10vh, 7rem);
}

.service-locations__header {
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
  text-align: center;
}

.service-locations__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-locations__title-line {
  display: block;
  color: var(--color-white);
}

.service-locations__title-line.text-accent {
  color: var(--color-accent);
}

.service-locations__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.service-locations__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.location-card {
  position: relative;
  min-height: clamp(260px, 32vw, 360px);
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  will-change: transform;
}

.location-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.location-card--narrow {
  grid-column: span 5;
}

.location-card--wide {
  grid-column: span 7;
}

.location-card--half {
  grid-column: span 6;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
  transition: background 0.4s ease;
}

.location-card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 15%, rgba(0, 0, 0, 0.9) 100%);
}

.location-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(260px, 32vw, 360px);
  padding: 1.5rem 1.75rem;
}

.location-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
}

.location-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  cursor: pointer;
  text-align: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.location-card:hover .location-card__link {
  transform: translateX(4px);
}

.location-card__link svg {
  transition: transform 0.25s ease;
}

.location-card:hover .location-card__link svg {
  transform: translateX(3px);
}

.location-card__link:hover {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .location-card,
  .location-card::after,
  .location-card__link,
  .location-card__link svg {
    transition: none;
  }

  .location-card:hover {
    transform: none;
    box-shadow: none;
  }

  .location-card:hover .location-card__link,
  .location-card:hover .location-card__link svg {
    transform: none;
  }
}

/* Products — Category grid */

.product-categories {
  position: relative;
  overflow-x: clip;
  background: #2c2c2c;
  color: var(--color-white);
  padding: clamp(4.5rem, 9vh, 6.5rem) 0 clamp(5rem, 10vh, 7rem);
}

.product-categories__header {
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
  text-align: center;
}

.product-categories__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.product-categories__title-line {
  display: block;
  color: var(--color-white);
}

.product-categories__title-line.text-accent {
  color: var(--color-accent);
}

.product-categories__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.product-categories__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-category-card {
  position: relative;
  min-height: clamp(260px, 32vw, 360px);
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  will-change: transform;
}

.product-category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.product-category-card--full {
  grid-column: span 12;
}

.product-category-card--narrow {
  grid-column: span 5;
}

.product-category-card--wide {
  grid-column: span 7;
}

.product-category-card--half {
  grid-column: span 6;
}

.product-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.82) 100%);
  transition: background 0.35s ease;
  pointer-events: none;
}

.product-category-card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.product-category-card__link {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.product-category-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(260px, 32vw, 360px);
  padding: 1.75rem;
}

.product-category-card__logo {
  display: block;
  width: auto;
  max-width: min(180px, 70%);
  max-height: 48px;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left bottom;
}

.product-category-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
}

.product-category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-category-card:hover .product-category-card__cta {
  opacity: 0.9;
}

.product-category-card__cta svg {
  transition: transform 0.2s ease;
}

.product-category-card:hover .product-category-card__cta svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .product-category-card,
  .product-category-card::after,
  .product-category-card__cta,
  .product-category-card__cta svg {
    transition: none;
  }

  .product-category-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-category-card:hover .product-category-card__cta svg {
    transform: none;
  }
}

/* Service location modal */

body.location-modal-open {
  overflow: hidden;
}

.location-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  margin: 0;
}

.location-modal[hidden] {
  display: none !important;
}

.location-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.location-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  min-height: clamp(320px, 55vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

@media (min-width: 1025px) {
  .location-modal__dialog {
    width: 800px;
    height: 400px;
    min-height: 400px;
    max-width: calc(100% - 2.5rem);
  }
}

.location-modal__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.location-modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.location-modal__ribbon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  height: auto;
}

.location-modal__ribbon--tr {
  top: 0;
  right: 0;
  width: clamp(70px, 18vw, 101px);
}

.location-modal__ribbon--bl {
  bottom: 0;
  left: 0;
  width: clamp(85px, 22vw, 125px);
}

.location-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
}

.location-modal__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 55vw, 420px);
  padding: 2.75rem 1.75rem 2rem;
  text-align: center;
  color: var(--color-white);
}

@media (min-width: 1025px) {
  .location-modal__content {
    min-height: 400px;
    height: 100%;
    padding: 2.5rem 2rem;
  }
}

.location-modal__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.location-modal__contact {
  margin: 0 0 0.85rem;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1.4;
}

.location-modal__phone,
.location-modal__email,
.location-modal__address-line {
  display: block;
  margin: 0.2rem 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-white);
}

.location-modal__phone {
  text-decoration: none;
}

.location-modal__email,
.location-modal__address-line {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.location-modal__office {
  margin: 0.65rem 0 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1.45;
}

.location-modal__contact[hidden],
.location-modal__phone[hidden],
.location-modal__email[hidden],
.location-modal__address[hidden],
.location-modal__office[hidden] {
  display: none !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.hero--about-page .hero-content h1 {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.5vw, 80px);
}

.hero--about-page .hero-truck {
  /*width: clamp(320px, 48vw, 690px);
  max-width: 690px;*/
  width:auto;
  max-width: 800px;
  top: 24%;
  right: 0;
}

.hero-title-line--single {
  white-space: normal;
}

.hero--category .hero-content h1 br {
  display: block;
}

.about-page-intro {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--color-white);
  padding: clamp(4rem, 9vh, 6.5rem) 0 clamp(5rem, 10vh, 7rem);
}

.about-page-intro__inner {
  position: relative;
  z-index: 2;
}

.about-page-intro .container {
  position: relative;
  z-index: 2;
}

.about-page-intro__title {
  margin: 0 0 1.75rem;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about-page-intro__title-line {
  display: block;
  color: var(--color-text);
}

.about-page-intro__title-line.text-accent {
  color: var(--color-accent);
}

.about-page-intro__text {
  margin: 0 0 2.25rem;
  max-width: 560px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
}

.about-page-intro__float {
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(180px, 22vw, 420px);
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero--about-page .hero-truck {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 1;
    order: 1;
    align-self: flex-end;
    width: min(78vw, 690px);
    max-width: 690px;
    margin: 1.5rem 0 0 auto;
    padding: 0;
    transform: none;
  }

  .hero--about-page .hero-inner {
    order: 0;
    z-index: 2;
  }

  .about-page-intro__float {
    width: clamp(140px, 28vw, 260px);
    opacity: 0.55;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-hero {
    width: 100%;
    justify-content: center;
  }
}

/* About — Leadership */

.about-leadership {
  position: relative;
  overflow: visible;
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(4rem, 8vh, 6rem);
}

@media (min-width: 1025px) {
  .about-leadership {
    background-image: url("../img/clientsaybackground.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-position-y: 35px;
    background-size: cover;
  }
}

.about-leadership__header {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.about-leadership__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about-leadership__title-line {
  display: block;
  color: var(--color-text);
}

.about-leadership__title-line.text-accent {
  color: var(--color-accent);
}

.about-leadership__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

.about-leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.leader-card {
  border-radius: 20px;
  overflow: hidden;
}

.leader-card__photo-wrap {
  position: relative;
  aspect-ratio: 360 / 504;
  overflow: hidden;
  border-radius: 20px;
}

.leader-card__photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.leader-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-card__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 1.35rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  pointer-events: none;
}

.leader-card__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.leader-card__role {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.leader-card__link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.leader-card__link:hover {
  opacity: 0.85;
}

@media (min-width: 1025px) {
  .about-leadership__header {
    margin-top: clamp(-5rem, -9vh, -6.5rem);
    margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
  }

  .about-leadership__title {
    font-size: clamp(3rem, 5vw, 72px);
  }
}

/* Leader modal */

body.leader-modal-open {
  overflow: hidden;
}

.leader-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  margin: 0;
}

.leader-modal[hidden] {
  display: none !important;
}

.leader-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.leader-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #2e2e2e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.leader-modal__ribbon {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  height: auto;
}

.leader-modal__ribbon--tr {
  top: 0;
  right: 0;
  width: clamp(70px, 18vw, 101px);
}

.leader-modal__ribbon--bl {
  bottom: 0;
  left: 0;
  width: clamp(85px, 22vw, 125px);
}

.leader-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
}

.leader-modal__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.leader-modal__photo-wrap {
  padding: 1.5rem 0 1.5rem 1.5rem;
}

.leader-modal__photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  object-position: top;
}

.leader-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 2rem 1.5rem;
  color: var(--color-white);
}

.leader-modal__name {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.leader-modal__role {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.leader-modal__bio {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-white);
}

/* About — Our Solutions */

.about-solutions {
  position: relative;
  overflow: hidden;
  background: var(--color-reliable-bg);
  color: var(--color-white);
  padding: clamp(5rem, 10vh, 7rem) 0 4rem;
}

.about-solutions__vector {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.about-solutions__vector--right {
  top: 50%;
  right: 0;
  width: clamp(100px, 12vw, 135px);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.85;
}

.about-solutions__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-solutions__media {
  grid-column: 1 / span 4;
  min-width: 0;
  display: flex;
  justify-content: flex-start;
}

.about-solutions__truck {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: min(480px, 100%);
  max-width: 480px;
  height: auto;
  margin-left: 0;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.about-solutions__content {
  grid-column: 5 / span 8;
  min-width: 0;
  width: auto;
  max-width: none;
  margin-right: 0;
  padding-top: 0;
  padding-right: max(var(--site-gutter), calc((100vw - var(--container)) / 2));
}

.about-solutions__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}

.about-solutions__text {
  margin: 0 0 1.75rem;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.about-solutions__list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.about-solutions__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.about-solutions__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
}

/* About — Florida Map */

.about-florida-map {
  position: relative;
  background: var(--color-white);
  padding: clamp(4.5rem, 9vh, 6.5rem) 0 clamp(5rem, 10vh, 7rem);
}

.about-florida-map__header {
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
  text-align: center;
}

.about-florida-map__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about-florida-map__title-line {
  display: block;
  color: var(--color-text);
}

.about-florida-map__title-line.text-accent {
  color: var(--color-accent);
}

.about-florida-map__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

.florida-map {
  position: relative;
  width: min(100%, 724px);
  margin: 0 auto;
  container-type: inline-size;
}

.florida-map__image {
  display: block;
  width: 100%;
  height: auto;
}

.florida-map__marker {
  position: absolute;
  left: var(--marker-x);
  top: var(--marker-y);
  z-index: 2;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.florida-map__dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(185, 6, 6, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.florida-map__marker:hover .florida-map__dot,
.florida-map__marker:focus-visible .florida-map__dot,
.florida-map__marker.is-active .florida-map__dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 5px rgba(185, 6, 6, 0.28);
}

.florida-map__tooltip {
  position: absolute;
  z-index: 5;
  min-width: 220px;
  max-width: 260px;
  padding: 1rem 1.15rem;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.florida-map__tooltip-region {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-accent);
}

.florida-map__tooltip-name {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.florida-map__tooltip-link {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text);
  text-decoration: none;
}

.florida-map__tooltip-link--email {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.florida-map__marker:hover .florida-map__tooltip,
.florida-map__marker:focus-visible .florida-map__tooltip,
.florida-map__marker.is-active .florida-map__tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.florida-map__tooltip--top-left {
  bottom: calc(100% + 14px);
  right: calc(100% - 4px);
}

.florida-map__tooltip--right {
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
}

.florida-map__marker:hover .florida-map__tooltip--right,
.florida-map__marker:focus-visible .florida-map__tooltip--right,
.florida-map__marker.is-active .florida-map__tooltip--right {
  transform: translateY(-50%);
}

.florida-map__tooltip--left {
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
}

.florida-map__marker:hover .florida-map__tooltip--left,
.florida-map__marker:focus-visible .florida-map__tooltip--left,
.florida-map__marker.is-active .florida-map__tooltip--left {
  transform: translateY(-50%);
}

.florida-map__tooltip--bottom-right {
  top: calc(100% + 14px);
  left: calc(100% - 4px);
}

/* Florida map modal (mobile) */

body.florida-map-modal-open {
  overflow: hidden;
}

.florida-map-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  margin: 0;
}

.florida-map-modal[hidden] {
  display: none !important;
}

.florida-map-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.florida-map-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 16px;
  background: var(--color-white);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.florida-map-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
}

.florida-map-modal__region {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-accent);
}

.florida-map-modal__name {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.florida-map-modal__phone,
.florida-map-modal__email {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-text);
  text-decoration: none;
}

.florida-map-modal__email {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.florida-map-modal__phone[hidden],
.florida-map-modal__email[hidden] {
  display: none;
}

@media (max-width: 768px) {
  .about-page-intro__float {
    display: none;
  }

  .florida-map {
    overflow: visible;
  }

  .florida-map__tooltip {
    display: none !important;
  }

  .services-trusted__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

  .parts-assistance__grid {
    grid-template-columns: 1fr;
    width: min(403px, 100%);
  }

  .location-card--narrow,
  .location-card--wide,
  .location-card--half,
  .product-category-card--full,
  .product-category-card--narrow,
  .product-category-card--wide,
  .product-category-card--half {
    grid-column: auto;
  }
}

/* About — Bottom CTA */

.about-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: clamp(420px, 55vh, 560px);
  margin: 0;
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.site-main > .about-cta:last-child {
  margin-bottom: 0;
}

.about-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.about-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.about-cta__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about-cta__title-line {
  display: block;
  color: var(--color-text);
  white-space: nowrap;
}

.about-cta__title-line.text-accent {
  color: var(--color-accent);
}

.about-cta__text {
  margin: 0 0 2rem;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-white);
}

.about-cta__inner .btn-hero {
  margin-inline: auto;
}

@media (max-width: 640px) {
  .about-cta__title-line {
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .about-leadership__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .leader-modal__layout {
    grid-template-columns: 1fr;
  }

  .leader-modal__photo-wrap {
    padding: 1.5rem 1.5rem 0;
  }

  .leader-modal__content {
    padding: 1.5rem;
  }

  .about-solutions__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-solutions__media,
  .about-solutions__content {
    grid-column: 1 / -1;
  }

  .about-solutions__truck {
    max-width: min(100%, 480px);
    margin-inline: auto;
  }

  .about-solutions__content {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--site-gutter);
  }
}

@media (max-width: 768px) {
  .about-leadership__grid {
    max-width: 100%;
  }
}

/* Product category single */

.hero--category {
  overflow: visible;
}

.hero--category .hero-bg {
  background: #4a4b4b;
}

.hero--category .hero-bg::after {
  display: none;
}

.hero-category-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero--category .hero-layout--category {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: var(--hero-height);
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 0;
}

.hero--category .hero-layout--category .hero-truck {
  position: relative;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero--category-image-right .hero-content {
  max-width: min(520px, 100%);
  text-align: left;
}

.hero--category-image-right .hero-content h1 {
  text-transform: uppercase;
  font-size: clamp(2.25rem, 5vw, 80px);
}

@media (min-width: 1025px) {
  .hero--category-image-left .hero-layout--category {
    display: flex;
    align-items: center;
    min-height: clamp(620px, 85vh, 900px);
    padding: calc(var(--header-height) + clamp(1.5rem, 4vh, 3rem))
      max(var(--site-gutter), calc((100vw - var(--container)) / 2))
      clamp(2rem, 5vh, 4rem)
      0;
  }

  .hero--category-image-left .hero-layout--category .hero-truck {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 890px;
    max-width: min(890px, 52vw);
    height: auto;
    transform: translateY(-2%);
    z-index: 5;
  }

  .hero--category-image-left .hero-layout--category .hero-inner.container {
    position: relative;
    z-index: 6;
    width: calc(60% - max(var(--site-gutter), calc((100vw - var(--container)) / 2)));
    max-width: none;
    margin: 0 0 0 40%;
    padding: 0;
    display: block;
  }

  .hero--category-image-left .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: min(700px, 100%);
    padding-left: 150px;
    box-sizing: border-box;
    text-align: left;
  }

  .hero--category-image-left .hero-category-badge {
    align-self: flex-start;
  }

  .hero--category-image-left .hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 72px);
    text-align: left;
  }

  .hero--category-image-left .hero-content p {
    max-width: min(700px, 100%);
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .hero--category-image-right .hero-layout--category {
    display: block;
    min-height: clamp(620px, 85vh, 900px);
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 0;
  }

  .hero--category-image-right .hero-layout--category .hero-truck {
    position: absolute;
    top: 10%;
    right: 0;
    left: auto;
    width: auto;
    max-width: min(800px, 53vw);
    transform: translateY(22%);
    z-index: 5;
  }

  .hero--category-image-right .hero-layout--category .hero-inner.container {
    position: relative;
    z-index: 3;
    padding-top: 2rem;
  }

  .hero--category-image-right .hero-content {
    max-width: min(700px, 100%);
  }
}

.product-category-cards {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  padding: clamp(4rem, 8vh, 6rem) 0 clamp(5rem, 10vh, 7rem);
}

@media (min-width: 1025px) {
  .product-category-cards {
    padding: clamp(6rem, 8vh, 6rem) 0 clamp(5rem, 10vh, 7rem);
  }
}

.product-category-cards__empty {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.product-category-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-category-cards__grid .product-card:only-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(280px, 28vw, 360px);
  padding: 1.75rem 1.75rem 1.75rem 1.25rem;
  border-left: 10px solid var(--color-accent);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  outline: none;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.product-card__number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-text);
  transition: opacity 0.3s ease, color 0.35s ease;
}

.product-card__default {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.3s ease;
}

.product-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.75rem 1.75rem 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.product-card__title {
  margin: 1.25rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.35s ease;
}

.product-card__title--hover {
  margin: 0 0 1rem;
  color: var(--color-white);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
  transition: color 0.35s ease;
}

.product-card__link--hover {
  margin-top: 1.25rem;
  color: var(--color-white);
}

.product-card__body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.product-card__body p {
  margin: 0 0 0.75rem;
}

.product-card__body p:last-child {
  margin-bottom: 0;
}

.product-card:hover,
.product-card:focus-within {
  background: #4a4b4b;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-card__number,
.product-card:focus-within .product-card__number {
  opacity: 0;
}

.product-card:hover .product-card__default .product-card__title,
.product-card:focus-within .product-card__default .product-card__title {
  color: var(--color-white);
}

.product-card:hover .product-card__default,
.product-card:focus-within .product-card__default {
  opacity: 0;
}

.product-card:hover .product-card__hover,
.product-card:focus-within .product-card__hover {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .product-category-page .product-card.scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.92);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      background-color 0.35s ease,
      box-shadow 0.35s ease;
    transition-delay: var(--reveal-delay, 0s);
  }

  .product-category-page .product-card.scroll-reveal.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .product-category-page .hero--category .scroll-reveal {
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
  }
}

@media (max-width: 1024px) {
  .hero--category .hero-layout--category {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: calc(var(--header-height) + 1rem);
  }

  .hero--category .hero-layout--category .hero-truck {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 1.25rem 0 0;
    transform: none;
  }

  .hero--category-image-right .hero-layout--category .hero-truck {
    align-self: flex-end;
    width: min(78vw, 690px);
    margin-left: auto;
  }

  .product-category-cards__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card__default,
  .product-card__hover,
  .product-card__number,
  .product-card__title {
    transition: none;
  }
}

/* Contact page — compact hero (separate from .hero to avoid 100vh min-height) */

.contact-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-height));
  height: 70vh;
  height: 70svh;
  max-height: none;
  overflow: hidden;
  color: var(--color-white);
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.contact-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.4);
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  padding-top: var(--header-height);
  padding-bottom: 1.25rem;
}

.contact-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 720px);
  margin-inline: auto;
  text-align: center;
}

.contact-hero__content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-hero__title {
  display: block;
  white-space: normal;
}

.contact-hero__content p {
  margin: 0;
  max-width: 560px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.6;
}

.contact-sections-wrap {
  position: relative;
  overflow: visible;
}

.contact-sections-wrap__ribbon--left {
  top: clamp(2rem, 6vh, 4rem);
}

.contact-sections-wrap__ribbon--right {
  top: clamp(8rem, 18vh, 12rem);
}

.contact-main {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vh, 5rem) 0 clamp(5rem, 10vh, 7rem);
}

.contact-main__inner {
  position: relative;
  z-index: 2;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-panel__info {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: #940000;
  color: var(--color-white);
}

.contact-panel__info-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.contact-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-panel__item a {
  color: inherit;
  text-decoration: none;
}

.contact-panel__item a:hover {
  opacity: 0.88;
}

.contact-panel__icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.95;
}

.contact-panel__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

.contact-panel__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-panel__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.contact-panel__form {
  grid-column: span 8;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-white);
}

.contact-form__notice {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form__notice--success {
  background: #e8f5e9;
  color: #1b5e20;
}

.contact-form__notice--error {
  background: #fdecea;
  color: #b71c1c;
}

.contact-form__row {
  display: grid;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

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

.contact-form__field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  background: transparent;
  font: inherit;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-bottom-color: var(--color-accent);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 5rem;
}

.contact-form__subject {
  margin: 1.75rem 0 1.25rem;
  padding: 0;
  border: none;
}

.contact-form__subject legend {
  padding: 0;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.contact-form__subject-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.contact-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-text);
}

.contact-form__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__radio-ui {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.contact-form__radio input:checked + .contact-form__radio-ui::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #1a1a1a;
}

.contact-form__field--message {
  margin-top: 0.5rem;
}

.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
}

.contact-form__submit {
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: #1a1a1a;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover {
  background: #333;
}

@media (max-width: 1024px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel__info,
  .contact-panel__form {
    grid-column: 1 / -1;
  }

  .contact-form__row--2 {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    justify-content: stretch;
  }

  .contact-form__submit {
    width: 100%;
  }
}
