@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --background: #050505;
  --foreground: #ffffff;
  --navy: #071b31;
  --navy-deep: #041321;
  --black: #050505;
  --black-soft: #111315;
  --red: #d71920;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.site-nav__brand,
.site-nav__links,
.site-nav__products summary,
.section-products-link {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(14, 18, 22, 0.94), rgba(5, 5, 5, 0.98));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38), 0 3px 18px rgba(215, 25, 32, 0.2);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.contact-bar {
  max-height: 36px;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 25, 32, 0.5);
  background: linear-gradient(90deg, var(--black) 0%, #160708 50%, var(--black) 100%);
  opacity: 1;
  transition: max-height 180ms ease, opacity 140ms ease, border-color 180ms ease;
}

.contact-bar__inner {
  display: flex;
  min-height: 36px;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2.25rem);
}

.contact-bar a {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.contact-bar span {
  margin-right: 0.35rem;
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  min-height: 84px;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: min-height 180ms ease;
}

.site-nav a {
  color: #ffffff;
  text-decoration: none;
}

.site-nav__brand {
  display: flex;
  max-width: 215px;
  padding-left: 0.9rem;
  align-items: center;
  border-left: 4px solid var(--red);
  transition: max-width 180ms ease;
}

.site-nav__logo {
  display: block;
  width: 195px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transition: width 180ms ease, height 180ms ease;
}

.site-nav__links {
  display: flex;
  align-self: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.site-nav__links a {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 160ms ease, font-size 180ms ease;
}

.site-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a[aria-current="page"] {
  color: #ff555b;
}

.site-nav__products {
  position: relative;
  display: flex;
  align-items: stretch;
}

.site-nav__products summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
  transition: color 160ms ease, font-size 180ms ease;
}

.site-header--compact {
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.52), 0 2px 12px rgba(215, 25, 32, 0.22);
}

.site-header--compact .contact-bar {
  max-height: 0;
  border-bottom-color: transparent;
  opacity: 0;
}

.site-header--compact .site-nav {
  min-height: 68px;
}

.site-header--compact .site-nav__brand {
  max-width: 175px;
}

.site-header--compact .site-nav__logo {
  width: 155px;
  height: 58px;
}

.site-header--compact .site-nav__links a,
.site-header--compact .site-nav__products summary {
  font-size: 0.88rem;
}

.site-header--compact .products-menu {
  top: 74px;
}

.site-nav__products[open] summary,
.site-nav__products summary:hover,
.site-nav__products summary:focus-visible {
  color: #ff555b;
}

.site-nav__products summary::-webkit-details-marker {
  display: none;
}

.site-nav__products summary::after {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.products-menu {
  position: fixed;
  z-index: 30;
  top: 126px;
  right: 0;
  left: 0;
  display: none;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  width: 100vw;
  padding: 2rem max(1.5rem, calc((100vw - 1180px) / 2));
  border-top: 4px solid var(--red);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  color: var(--black-soft);
}

.site-nav__products[open] .products-menu,
.site-nav__products:target .products-menu {
  display: grid;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav__products:hover .products-menu,
  .site-nav__products:focus-within .products-menu {
    display: grid;
  }
}

.products-menu__close {
  display: none;
}

.products-menu section {
  padding: 0 1.5rem;
}

.products-menu section + section {
  border-left: 1px solid #dce2e7;
}

.products-menu h2 {
  margin: 0 0 1.25rem;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.products-menu ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  color: #536475;
  font-size: 0.9rem;
  line-height: 1.35;
  list-style: none;
}

.products-menu li::before {
  margin-right: 0.55rem;
  color: var(--red);
  content: "—";
}

.products-menu a {
  color: #536475;
  text-decoration: none;
  transition: color 160ms ease;
}

.products-menu a:hover,
.products-menu a:focus-visible,
.products-menu a[aria-current="page"] {
  color: var(--red);
}

.products-menu__brochure-link {
  display: grid;
  gap: 0.35rem;
  min-height: 118px;
  padding: 1.15rem;
  align-content: end;
  border-left: 5px solid var(--red);
  background: var(--black);
  color: #ffffff !important;
}

.products-menu__brochure-link span {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.products-menu__brochure-link small {
  color: #cbd5dd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.products-menu__brochure-link:hover,
.products-menu__brochure-link:focus-visible {
  background: var(--red);
}

.section-products-link {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  align-items: center;
  background: var(--red);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.section-products-link:hover,
.section-products-link:focus-visible {
  background: #b90f15;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(470px, 58vh, 620px);
  padding: clamp(3rem, 6vh, 4.5rem) 0;
  place-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: -16px;
  background-image: url("assets/workshop-hero-professional.png");
  background-position: center 38%;
  background-size: cover;
  content: "";
  filter: blur(4px);
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(4, 12, 19, 0.66) 52%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 45%);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1180px, calc(100% - 3rem));
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.36);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 0.16em;
}

.hero__intro {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.introduction {
  display: grid;
  min-height: 360px;
  padding: clamp(4rem, 9vw, 8rem) 1.5rem;
  place-items: center;
  background: #ffffff;
  color: var(--black-soft);
  border-bottom: 6px solid var(--red);
}

.introduction p {
  width: min(900px, 100%);
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
  text-align: center;
}

.services-promo {
  padding: clamp(2rem, 4vw, 3.5rem) 1.5rem;
  background: #f3f1f1;
  color: #ffffff;
}

.services-promo__inner {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  border-top: 5px solid var(--red);
  background: var(--black-soft);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.services-promo__inner img {
  display: block;
  width: 100%;
  height: auto;
}

.services-promo__copy > p:first-child {
  margin: 0 0 0.65rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-promo__copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.services-promo__copy > p:last-child {
  max-width: 620px;
  margin: 0.9rem 0 0;
  color: #c8d2dc;
  font-size: 0.94rem;
  line-height: 1.6;
}

.services-promo__link {
  display: inline-flex;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #ffffff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

.services-promo__link:hover,
.services-promo__link:focus-visible {
  background: #b90f15;
  transform: translateY(-2px);
}

.mot-lanes {
  padding: clamp(3.5rem, 6vw, 5.5rem) 1.5rem;
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 25, 32, 0.25), transparent 30%),
    linear-gradient(135deg, #050505 0%, #10151b 58%, #050505 100%);
  color: #ffffff;
}

.mot-lanes__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.mot-lanes__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.mot-lanes__eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -0.75rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mot-lanes__header h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.mot-lanes__header > p:last-child {
  margin: 0;
  color: #cbd9e7;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.mot-lanes__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mot-feature {
  padding: 1.75rem clamp(1.1rem, 2.5vw, 2rem) 2rem;
}

.mot-feature + .mot-feature {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.mot-feature span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* Shared marker for feature and specification lists. */
.check-icon {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 1.45rem;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  line-height: 1;
  letter-spacing: 0 !important;
  box-shadow: 0 0 0 3px rgba(221, 30, 46, 0.12);
}

.mot-feature h3 {
  margin: 1.1rem 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
}

.mot-feature p {
  margin: 0;
  color: #b9c9d9;
  font-size: 0.95rem;
  line-height: 1.55;
}

.mot-pit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: #ffffff;
  color: var(--black-soft);
  box-shadow: 14px 14px 0 var(--red);
  border-top: 5px solid var(--red);
}

.mot-pit h3 {
  margin: 1.25rem 0 0;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.mot-pit ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.mot-pit li::marker {
  color: var(--red);
}

.vehicle-lifts {
  padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem;
  background: #f3f1f1;
  color: var(--black-soft);
}

.vehicle-lifts__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.vehicle-lifts__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.vehicle-lifts__eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vehicle-lifts__header h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.vehicle-lifts__header > p {
  margin: 0;
  color: #46596b;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.vehicle-lifts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.lift-card {
  min-height: 330px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: #ffffff;
  border-top: 4px solid var(--red);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.lift-card__number {
  margin: 0 0 3.5rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lift-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.lift-card > p:last-child {
  margin: 0;
  color: #536475;
  line-height: 1.65;
}

.wheel-equipment {
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
  background:
    radial-gradient(circle at 8% 92%, rgba(215, 25, 32, 0.22), transparent 30%),
    linear-gradient(145deg, #111315 0%, #071523 52%, #090a0c 100%);
  color: #ffffff;
}

.wheel-equipment__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.wheel-equipment__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.wheel-equipment__eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wheel-equipment__header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.wheel-equipment__header > p:last-child {
  margin: 0;
  color: #c5d1dc;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

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

.wheel-card {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 4px solid var(--red);
  background: linear-gradient(145deg, rgba(19, 23, 28, 0.98), rgba(5, 7, 10, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.wheel-card__label {
  margin: 0 0 3.25rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wheel-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.wheel-card > p:last-child {
  margin: 0;
  color: #becbd7;
  line-height: 1.65;
}

.about-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(430px, 62vh, 650px);
  padding: 4rem 1.5rem;
  align-items: end;
  overflow: hidden;
  background-image: url("assets/workshop-hero-professional.png");
  background-position: center 40%;
  background-size: cover;
}

.about-hero__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.14) 72%);
}

.about-hero__content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.about-hero__content a {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-hero__content > p {
  margin: 1.5rem 0 0.75rem;
  color: #e4e9ed;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.director-profile {
  padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem;
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 25, 32, 0.25), transparent 30%),
    linear-gradient(145deg, #050505, #071b31 62%, #10070b);
  color: #ffffff;
}

.director-profile__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.director-profile__portrait {
  position: relative;
  margin: 0;
}

.director-profile__portrait::before {
  position: absolute;
  z-index: 0;
  top: -14px;
  right: 14px;
  bottom: 14px;
  left: -14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 5px solid var(--red);
  content: "";
}

.director-profile__portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.42);
}

.director-profile__eyebrow {
  margin: 0 0 1rem;
  color: #ff6269;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.director-profile h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.director-profile h2 span {
  display: block;
  color: #ffffff;
}

.director-profile__content > p:not(.director-profile__eyebrow) {
  max-width: 720px;
  margin: 1.6rem 0 0;
  color: #c9d5df;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.75;
}

.director-profile__content > .director-profile__lead {
  padding-left: 1.5rem;
  border-left: 4px solid var(--red);
  color: #ffffff;
  font-size: clamp(1.12rem, 1.65vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .director-profile__inner {
    grid-template-columns: 1fr;
  }

  .director-profile__portrait {
    width: min(100%, 470px);
    margin: 0 auto;
  }
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 7vw, 7rem);
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  align-items: end;
  background: #ffffff;
  color: #122131;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.about-eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.about-intro > p {
  margin: 0;
  color: #4b5d6d;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.company-values {
  padding: clamp(4rem, 7vw, 6.5rem) 1.5rem;
  background:
    radial-gradient(circle at 92% 12%, rgba(215, 25, 32, 0.24), transparent 31%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 58%, #101018);
}

.company-values__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.value-card {
  grid-column: span 2;
  min-height: 270px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 4px solid var(--red);
  background: #ffffff;
  color: #122131;
}

.value-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.value-card span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-card h2 {
  margin: 3.25rem 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.value-card p {
  margin: 0;
  color: #536475;
  line-height: 1.6;
}

.design-installation {
  padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem;
  background: #ffffff;
  color: var(--black-soft);
}

.design-installation__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.design-installation__header {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccd4db;
}

.design-installation__header p {
  margin: 0;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.design-installation__header h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6.5vw, 6.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.85;
  text-transform: uppercase;
}

.design-installation__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.design-installation__copy {
  display: grid;
  gap: 2rem;
}

.design-installation__copy p {
  margin: 0;
  color: #354a5d;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.design-installation__copy p:first-child {
  padding-left: 1.5rem;
  border-left: 4px solid var(--red);
  color: #122131;
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  font-weight: 700;
  line-height: 1.6;
}

.turnkey-services {
  padding: clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 25, 32, 0.28), transparent 36%),
    linear-gradient(145deg, #050505, #12171d);
  color: #ffffff;
  border-top: 5px solid var(--red);
}

.turnkey-services h3 {
  margin: 0 0 2rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
}

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

.turnkey-services li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  padding: 1rem 0;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.turnkey-services li span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.brochure-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 25, 32, 0.28), transparent 28%),
    linear-gradient(145deg, #050505, #071b31 58%, #10070b);
  color: #ffffff;
}

.brochure-section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brochure-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}

.brochure-section__header p:first-child {
  margin: 0 0 1rem;
  color: #ff6269;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brochure-section__header h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.brochure-section__header > p {
  margin: 0;
  color: #d8e2eb;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.flipbook {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.flipbook__book {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  aspect-ratio: 1.425;
  perspective: 2200px;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.5));
}

.flipbook__book::after {
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.55));
  content: "";
  transform: translateX(-1px);
}

.flipbook__page {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: linear-gradient(135deg, #e8eaec, #ffffff);
}

.flipbook__page--left {
  box-shadow: inset -16px 0 24px -18px rgba(0, 0, 0, 0.75);
}

.flipbook__page--right {
  box-shadow: inset 16px 0 24px -18px rgba(0, 0, 0, 0.75);
}

.flipbook__page.is-empty {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.flipbook__page img,
.flipbook__turn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.flipbook__page.is-empty img {
  display: none;
}

.flipbook__turn {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  display: none;
  width: 50%;
  overflow: hidden;
  background: #ffffff;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.45, 0, 0.2, 1), filter 650ms ease;
}

.flipbook__turn--next {
  right: 0;
  display: block;
  transform-origin: left center;
}

.flipbook__turn--next.is-active {
  filter: brightness(0.72);
  transform: rotateY(-180deg);
}

.flipbook__turn--previous {
  left: 0;
  display: block;
  transform-origin: right center;
}

.flipbook__turn--previous.is-active {
  filter: brightness(0.72);
  transform: rotateY(180deg);
}

.flipbook__tap {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.flipbook__tap--previous {
  left: 0;
}

.flipbook__tap--next {
  right: 0;
}

.flipbook__tap:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: -4px;
}

.flipbook__controls {
  display: grid;
  grid-template-columns: auto minmax(150px, 1fr) auto;
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: center;
}

.flipbook__controls button,
.brochure-section__download {
  display: inline-flex;
  min-height: 46px;
  padding: 0.85rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.flipbook__controls button:hover,
.flipbook__controls button:focus-visible,
.brochure-section__download:hover,
.brochure-section__download:focus-visible {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.flipbook__controls button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

.flipbook__controls p {
  margin: 0;
  color: #d8e2eb;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.brochure-section__download {
  width: fit-content;
  margin: 1.5rem auto 0;
  border-color: var(--red);
}

@media (max-width: 760px) {
  .brochure-section__header {
    grid-template-columns: 1fr;
  }

  .flipbook__controls {
    grid-template-columns: repeat(2, 1fr);
  }

  .flipbook__controls p {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .brochure-section__download {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flipbook__turn {
    transition-duration: 1ms;
  }
}

.product-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(590px, 78vh, 760px);
  padding: clamp(11rem, 20vh, 15rem) 1.5rem clamp(4rem, 8vw, 7rem);
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.product-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: url("assets/workshop-hero-professional.png");
  background-position: center 42%;
  background-size: cover;
  content: "";
}

.product-hero__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.62) 55%, rgba(0, 0, 0, 0.18)), linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 60%);
}

.product-hero__content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.product-eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-hero h1 {
  margin: 0;
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.8;
  text-transform: uppercase;
}

.product-hero__content > p:not(.product-eyebrow) {
  max-width: 650px;
  margin: 2rem 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.55;
}

.product-cta {
  display: inline-flex;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #ffffff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.product-cta:hover,
.product-cta:focus-visible {
  background: #b90f15;
  transform: translateY(-2px);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 7vw, 7rem);
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  align-items: end;
  background: #ffffff;
  color: var(--black-soft);
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.product-intro h2,
.lift-benefits h2,
.lift-specification h2,
.product-contact h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-intro > p {
  margin: 0;
  color: #46596b;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.lift-catalogue {
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
  background: #f3f1f1;
  color: var(--black-soft);
}

.lift-catalogue__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lift-catalogue__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lift-catalogue__header h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.lift-catalogue__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.lift-catalogue__grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.lift-product-card {
  overflow: hidden;
  border-top: 5px solid var(--red);
  background:
    radial-gradient(circle at 100% 100%, rgba(215, 25, 32, 0.16), transparent 32%),
    linear-gradient(145deg, #15191d, #08090b);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  color: #ffffff;
}

.lift-product-card__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.86;
  border-bottom: 1px solid #dce2e7;
  background: #ffffff;
}

.lift-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lift-product-card__image::after {
  position: absolute;
  top: 0.8%;
  left: 42%;
  width: 16%;
  aspect-ratio: 1.32;
  background: #ffffff url("assets/wes-logo.png") center / contain no-repeat;
  content: "";
}

.lift-product-card__image--original-logo::after {
  display: none;
}

.two-post-lifts-page .lift-product-card__image::after {
  display: none;
}

.four-post-page .lift-product-card__image,
.scissor-lifts-page .lift-product-card__image,
.brake-testers-page .lift-product-card__image,
.headlight-testers-page .lift-product-card__image,
.emission-testers-page .lift-product-card__image,
.column-lifts-page .lift-product-card__image,
.tyre-changers-page .lift-product-card__image,
.wheel-alignment-page .lift-product-card__image,
.wheel-balancers-page .lift-product-card__image,
.air-conditioning-page .lift-product-card__image,
.jacking-beams-page .lift-product-card__image,
.pit-play-detectors-page .lift-product-card__image {
  aspect-ratio: 0.707;
}

.lift-product-card__content {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.lift-product-card__code {
  margin: 0 0 0.45rem;
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lift-product-card h3 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.lift-product-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
  color: #d5dde4;
  font-size: 0.92rem;
  line-height: 1.45;
}

.lift-product-card li::marker {
  color: var(--red);
}

.lift-product-card h4 {
  margin: 2rem 0 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lift-product-card dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.86rem;
}

.lift-product-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
}

.lift-product-card dt {
  color: #aebdca;
}

.lift-product-card dd {
  margin: 0;
  font-weight: 700;
}

.lift-product-card dd small {
  font-size: 0.7em;
  font-style: italic;
  font-weight: 500;
}

.lift-product-card__accessory {
  margin: 0;
  color: #d5dde4;
  font-size: 0.9rem;
}

.lift-product-card__description {
  margin: 0;
  color: #d5dde4;
  font-size: 0.92rem;
  line-height: 1.7;
}

.lift-benefits {
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 25, 32, 0.24), transparent 32%),
    linear-gradient(135deg, #050505 0%, #10151b 58%, #050505 100%);
}

.lift-benefits__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lift-benefits__inner > header {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lift-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lift-benefits article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.lift-benefits article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lift-benefits article span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lift-benefits h3 {
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lift-benefits article p {
  margin: 0;
  color: #becbd7;
  line-height: 1.65;
}

.lift-specification {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #f3f1f1;
  color: var(--black-soft);
  box-shadow: 0 0 0 100vmax #f3f1f1;
  clip-path: inset(0 -100vmax);
}

.lift-specification__copy > p:last-child {
  max-width: 650px;
  margin: 2rem 0 0;
  color: #46596b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.lift-specification ul {
  margin: 0;
  padding: 0;
  border-top: 5px solid var(--red);
  background: #ffffff;
  list-style: none;
}

.lift-specification li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem;
  align-items: center;
  border-bottom: 1px solid #dce2e7;
  font-weight: 700;
}

.lift-specification li span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.product-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(4rem, 7vw, 6rem) max(1.5rem, calc((100vw - 1180px) / 2));
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 25, 32, 0.3), transparent 30%),
    linear-gradient(135deg, #101315, #061423 65%, #09090b);
}

.product-contact__actions {
  display: grid;
  justify-items: start;
  gap: 1.25rem;
}

.product-email {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 0.25rem;
}

@media (max-width: 760px) {
  .services-promo__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .services-promo__inner img {
    width: min(260px, 100%);
  }

  .contact-bar__inner {
    min-height: 38px;
    width: calc(100% - 2rem);
    justify-content: center;
    gap: 0.8rem;
  }

  .contact-bar a {
    font-size: 0.62rem;
  }

  .contact-bar span {
    display: none;
  }

  .site-nav {
    min-height: 104px;
    width: calc(100% - 2rem);
    padding: 0.35rem 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .site-nav__brand {
    max-width: 120px;
    padding-left: 0.5rem;
    border-left-width: 3px;
  }

  .site-nav__logo {
    width: 108px;
    height: 54px;
  }

  .site-nav__links {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    gap: clamp(0.45rem, 2.2vw, 0.85rem);
  }

  .site-nav__links a {
    font-size: 0.64rem;
  }

  .site-nav__products summary {
    font-size: 0.64rem;
  }

  .site-header--compact .site-nav {
    min-height: 92px;
  }

  .site-header--compact .site-nav__logo {
    width: 96px;
    height: 46px;
  }

  .site-header--compact .site-nav__links a,
  .site-header--compact .site-nav__products summary {
    font-size: 0.6rem;
  }

  .site-header--compact .products-menu {
    top: 98px;
    max-height: calc(100vh - 98px);
  }

  .products-menu {
    top: 148px;
    right: 0;
    left: 0;
    grid-template-columns: 1fr;
    width: 100vw;
    max-height: calc(100vh - 148px);
    padding: 1.25rem;
    overflow-y: auto;
  }

  .products-menu__close {
    display: inline-flex;
    min-height: 42px;
    padding: 0.7rem 1rem;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--red);
    color: #ffffff;
    cursor: pointer;
    font: 900 0.78rem/1 "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .products-menu section {
    padding: 0.8rem 0;
  }

  .products-menu section + section {
    border-top: 1px solid #dce2e7;
    border-left: 0;
  }

  .section-products-link {
    grid-column: 1;
  }

  .hero {
    min-height: 560px;
    padding: 3.5rem 0;
  }

  .hero::before {
    background-position: 52% 38%;
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2rem;
    width: calc(100% - 2rem);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 4rem);
    line-height: 0.96;
  }

  .hero__intro {
    max-width: 34rem;
    font-size: 1.08rem;
  }

  .mot-lanes__header,
  .mot-pit,
  .vehicle-lifts__header,
  .wheel-equipment__header {
    grid-template-columns: 1fr;
  }

  .mot-lanes__eyebrow {
    margin-bottom: -0.5rem;
  }

  .mot-lanes__features {
    grid-template-columns: 1fr;
  }

  .mot-feature + .mot-feature {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .vehicle-lifts__grid {
    grid-template-columns: 1fr;
  }

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

  .lift-card__number {
    margin-bottom: 2rem;
  }

  .wheel-equipment__grid {
    grid-template-columns: 1fr;
  }

  .wheel-card__label {
    margin-bottom: 2rem;
  }

  .about-hero {
    min-height: 500px;
    background-position: center;
  }

  .about-intro {
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
  }

  .company-values__grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card:nth-child(4) {
    grid-column: auto;
    min-height: 0;
  }

  .value-card h2 {
    margin-top: 2rem;
  }

  .design-installation__header,
  .design-installation__content {
    grid-template-columns: 1fr;
  }

  .design-installation__header {
    gap: 1.25rem;
  }

  .product-hero {
    min-height: 650px;
    padding-top: 12rem;
  }

  .product-hero::before {
    background-position: 58% center;
  }

  .product-intro,
  .lift-specification,
  .product-contact {
    grid-template-columns: 1fr;
  }

  .product-intro,
  .lift-specification {
    width: calc(100% - 2rem);
  }

  .lift-benefits__grid {
    grid-template-columns: 1fr;
  }

  .lift-benefits article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .lift-benefits h3 {
    margin-top: 1.75rem;
  }

  .lift-catalogue__grid {
    grid-template-columns: 1fr;
  }

  .lift-product-card__image {
    aspect-ratio: auto;
  }

  .lift-product-card__image img {
    height: auto;
  }
}

.brands-hero {
  display: grid;
  min-height: 560px;
  padding: clamp(12rem, 22vw, 15rem) 1.5rem 5rem;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(4, 19, 33, 0.97) 0%, rgba(7, 27, 49, 0.82) 58%, rgba(7, 27, 49, 0.55) 100%),
    url("assets/workshop-hero-professional.png") center 40% / cover;
  color: #ffffff;
}

.brands-hero__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.brands-hero__inner > p:first-child {
  margin: 0 0 1rem;
  color: #ff686d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brands-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.75rem, 9vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.85;
  text-transform: uppercase;
}

.brands-hero__inner > p:last-child {
  max-width: 680px;
  margin: 1.75rem 0 0;
  color: #d6e0e8;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.brands-showcase {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: #e9eef2;
}

.brand-carousel {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 1rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.brand-carousel__track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: brand-carousel-scroll 68s linear infinite;
}

.brand-carousel:hover .brand-carousel__track,
.brand-carousel:focus-within .brand-carousel__track {
  animation-play-state: paused;
}

.brand-carousel__slide {
  display: grid;
  width: clamp(260px, 30vw, 340px);
  height: 210px;
  margin: 0;
  padding: clamp(1rem, 2vw, 2rem);
  place-items: center;
  flex: 0 0 auto;
  border-bottom: 5px solid var(--red);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 19, 33, 0.14);
}

.brand-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes brand-carousel-scroll {
  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-carousel {
    overflow-x: auto;
    mask-image: none;
    scroll-snap-type: x mandatory;
  }

  .brand-carousel__track {
    animation: none;
  }

  .brand-carousel__slide {
    scroll-snap-align: center;
  }

  .footer-reveal-ready .site-footer {
    transition: none;
  }
}

.contact-hero {
  display: grid;
  min-height: 520px;
  padding: clamp(12rem, 22vw, 15rem) 1.5rem 5rem;
  align-items: end;
  background:
    radial-gradient(circle at 82% 28%, rgba(215, 25, 32, 0.38), transparent 33%),
    linear-gradient(90deg, rgba(2, 10, 18, 0.98) 0%, rgba(7, 27, 49, 0.88) 58%, rgba(4, 12, 20, 0.72) 100%),
    url("assets/workshop-hero-professional.png") center 42% / cover;
  color: #ffffff;
}

.contact-hero__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.contact-hero__inner > p:first-child {
  margin: 0 0 1rem;
  color: #ff686d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.72), 0 0 42px rgba(215, 25, 32, 0.2);
  text-transform: uppercase;
}

.contact-hero__inner > p:last-child {
  max-width: 660px;
  margin: 1.75rem 0 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 25, 32, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff, #f5f7f9);
  color: #122131;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.contact-section__intro > p:first-child {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-section__intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.contact-section__intro > p:not(:first-child) {
  margin: 1.75rem 0 0;
  color: #263c50;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.7;
}

.contact-section__direct {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.contact-section__direct a {
  width: fit-content;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration-color: var(--red);
  text-underline-offset: 0.3em;
}

.contact-form {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border-top: 5px solid var(--red);
  background: linear-gradient(145deg, #f8fafb, #e9eef2);
  box-shadow: 0 24px 55px rgba(4, 19, 33, 0.18), 0 0 0 1px rgba(7, 27, 49, 0.08);
}

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

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 2px solid #9eabb6;
  border-radius: 0;
  background: #ffffff;
  color: #122131;
  font: inherit;
  font-size: 1rem;
}

.form-field input {
  min-height: 52px;
  padding: 0 0.9rem;
}

.form-field textarea {
  min-height: 180px;
  padding: 0.9rem;
  line-height: 1.5;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(215, 25, 32, 0.15);
}

.contact-form button {
  min-height: 50px;
  margin-top: 1.75rem;
  padding: 0.85rem 1.5rem;
  border: 0;
  background: linear-gradient(135deg, #e51d28, #a90812);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.24);
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #b90f15;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.site-footer {
  position: static;
  inset: auto;
  display: block;
  border-top: 5px solid var(--red);
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.28), transparent 28%),
    linear-gradient(135deg, #03101d, var(--navy-deep) 55%, #10080d);
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.site-footer__brand p,
.site-footer__brand strong {
  display: block;
  margin: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-footer__brand strong {
  color: var(--red);
}

.site-footer__logo {
  display: block;
  width: min(340px, 100%);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.site-footer__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
}

.site-footer h2 {
  margin: 0 0 1.25rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer address,
.site-footer__details p {
  margin: 0;
  color: #c6d1db;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.75;
}

.site-footer__details a {
  display: block;
  width: fit-content;
  color: #ffffff;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(215, 25, 32, 0.7);
  text-underline-offset: 0.3em;
}

.site-footer__details a + a {
  margin-top: 0.65rem;
}

.site-footer__details a:hover,
.site-footer__details a:focus-visible {
  color: #ff6368;
}

.site-footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__base p {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  color: #8090a0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-terms {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.3);
}

.site-terms summary {
  position: relative;
  display: flex;
  min-height: 76px;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.1rem 3.5rem 1.1rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}

.site-terms summary::-webkit-details-marker {
  display: none;
}

.site-terms summary::after {
  position: absolute;
  right: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  content: "";
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}

.site-terms[open] summary::after {
  transform: translateY(3px) rotate(225deg);
}

.site-terms summary span {
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-terms summary small {
  color: #aebdca;
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: right;
}

.site-terms__content {
  width: min(1040px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #c9d4de;
}

.site-terms__heading {
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left: 5px solid var(--red);
}

.site-terms__heading p {
  margin: 0 0 0.65rem;
  color: #ff6269;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-terms__heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-terms__content section {
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-terms__content h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-terms__content p,
.site-terms__content li {
  font-size: 0.9rem;
  line-height: 1.75;
}

.site-terms__content p {
  margin: 0.8rem 0 0;
}

.site-terms__content ol,
.site-terms__content ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.site-terms__content li::marker {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 700px) {
  .site-terms summary {
    width: calc(100% - 2rem);
    padding-right: 2rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .site-terms summary small {
    text-align: left;
  }

  .site-terms__content {
    width: calc(100% - 2rem);
  }
}

.coverage-section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  border-top: 6px solid var(--red);
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 25, 32, 0.18), transparent 28%),
    linear-gradient(135deg, #050505 0%, #071b31 72%, #0a2948 100%);
  color: #ffffff;
}

.coverage-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(2.5rem, 7vw, 7rem);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.coverage-section__copy {
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.coverage-section__eyebrow {
  margin: 0 0 1rem;
  color: #ff686d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coverage-section h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.coverage-section__copy > p:not(.coverage-section__eyebrow) {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: #d8e0e7;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  line-height: 1.65;
}

.coverage-section__link {
  display: inline-flex;
  min-height: 48px;
  margin-top: 2rem;
  padding: 0.9rem 1.35rem;
  align-items: center;
  background: var(--red);
  color: #ffffff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.coverage-section__link:hover,
.coverage-section__link:focus-visible {
  background: #ffffff;
  color: var(--black);
}

.coverage-section__map {
  margin: 0;
  padding: clamp(0.65rem, 1.5vw, 1rem);
  border-bottom: 5px solid var(--red);
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.coverage-section__map img {
  display: block;
  width: 100%;
  height: auto;
}

.project-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(680px, 82vh, 820px);
  padding: clamp(10rem, 18vh, 13rem) 1.5rem clamp(4rem, 8vw, 6rem);
  align-items: flex-end;
  overflow: hidden;
  background: url("assets/workshop-hero-professional.png") center 42% / cover;
}

.project-hero__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(215, 25, 32, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(2, 8, 14, 0.97), rgba(4, 18, 31, 0.78) 62%, rgba(0, 0, 0, 0.5));
}

.project-hero__content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.project-hero__content img {
  display: block;
  width: clamp(210px, 24vw, 330px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
}

.project-hero__content > p:first-of-type,
.project-eyebrow {
  margin: 0 0 1rem;
  color: #ff555b;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
}

.project-hero__content > p:last-child {
  max-width: 720px;
  margin: 1.75rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.6;
}

.project-overview,
.project-turnkey,
.project-consultancy,
.project-stages {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.project-overview {
  background: #ffffff;
  color: var(--black-soft);
}

.project-overview__inner,
.project-turnkey__inner,
.project-consultancy__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.project-overview__copy,
.project-turnkey__copy,
.project-consultancy__copy {
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.project-overview h2,
.project-turnkey h2,
.project-consultancy h2,
.project-stages h2 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-overview__copy > p:last-child,
.project-consultancy__copy > p:last-of-type {
  margin: 1.75rem 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.project-source-crop {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-bottom: 5px solid var(--red);
  background: #e9edf0;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.project-source-crop img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}

.project-source-crop--office {
  aspect-ratio: 255 / 190;
}

.project-source-crop--office img {
  top: -79%;
  left: -7.8%;
  width: 226.3%;
}

.project-source-crop--inspection {
  aspect-ratio: 270 / 165;
}

.project-source-crop--inspection img {
  top: -234.5%;
  left: -100%;
  width: 213.7%;
}

.project-source-crop--layout {
  aspect-ratio: 277 / 177;
}

.project-source-crop--layout img {
  top: -316%;
  left: -97.5%;
  width: 208.3%;
}

.project-turnkey {
  background: linear-gradient(135deg, #050505, #071b31 72%);
  color: #ffffff;
}

.project-turnkey__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.project-turnkey ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.project-turnkey li {
  padding: 1rem 0.75rem 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.project-turnkey li::before {
  margin-left: -1.6rem;
  margin-right: 0.7rem;
  color: var(--red);
  content: "●";
}

.project-stages {
  background: #e9eef2;
  color: var(--black-soft);
}

.project-stages__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.project-stages header {
  max-width: 850px;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 6px solid var(--red);
}

.project-stages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: #bfc9d1;
}

.project-stages article {
  min-height: 290px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
}

.project-stages article span {
  color: var(--red);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.project-stages article h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.project-stages article p {
  margin: 0;
  color: #526170;
  line-height: 1.6;
}

.project-consultancy {
  background: #ffffff;
  color: var(--black-soft);
}

.project-consultancy__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.project-consultancy__copy a {
  display: inline-flex;
  min-height: 48px;
  margin-top: 2rem;
  padding: 0.9rem 1.3rem;
  align-items: center;
  background: var(--red);
  color: #ffffff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-consultancy__copy a:hover,
.project-consultancy__copy a:focus-visible {
  background: var(--black);
}

.footer-reveal-ready .site-footer {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-reveal-ready .site-footer.site-footer--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero,
.product-hero,
.about-hero,
.brands-hero,
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::after,
.product-hero::after,
.about-hero::after,
.brands-hero::after,
.contact-hero::after {
  display: flex;
  position: absolute;
  z-index: 8;
  top: clamp(7.75rem, 12vw, 9.25rem);
  left: 50%;
  width: clamp(300px, 35vw, 500px);
  height: clamp(210px, 28vw, 330px);
  padding-bottom: 0;
  align-items: flex-end;
  justify-content: center;
  background: transparent url("assets/wes-logo-transparent.png") center / contain no-repeat;
  color: #ffffff;
  content: "";
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.55));
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.75);
  transform: translateX(-50%);
  white-space: pre-line;
}

.hero::after {
  width: clamp(300px, 35vw, 500px);
  height: clamp(210px, 28vw, 330px);
  background-size: contain;
  content: "";
}

.product-hero::after,
.brands-hero::after,
.contact-hero::after {
  left: 75%;
  width: clamp(320px, 38vw, 500px);
  background-size: contain;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.product-hero::after {
  display: none;
}

.product-hero__content::before {
  display: block;
  width: clamp(240px, 27vw, 360px);
  aspect-ratio: 3 / 2;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  background: transparent url("assets/wes-logo-transparent.png") left center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.55));
}

.hero {
  min-height: clamp(620px, 76vh, 760px);
}

.hero__content {
  margin-top: clamp(13rem, 24vw, 16rem);
}

@media (max-width: 700px) {
  .project-hero {
    min-height: 740px;
    padding-top: 10rem;
  }

  .project-hero__content img {
    width: min(72vw, 280px);
  }

  .project-overview__inner,
  .project-turnkey__inner,
  .project-consultancy__inner {
    grid-template-columns: 1fr;
  }

  .project-turnkey ul,
  .project-stages__grid {
    grid-template-columns: 1fr;
  }

  .project-source-crop--office {
    order: 2;
  }

  .project-stages article {
    min-height: 0;
  }

  .coverage-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .coverage-section__inner {
    grid-template-columns: 1fr;
  }

  .coverage-section__copy {
    padding-left: 1rem;
  }

  .coverage-section__map {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .hero::after,
  .product-hero::after,
  .about-hero::after,
  .brands-hero::after,
  .contact-hero::after {
    top: 9.5rem;
    left: 50%;
    width: min(86vw, 290px);
    height: 195px;
    background-size: contain;
    font-size: 2rem;
  }

  .hero::after {
    width: min(86vw, 290px);
    height: 195px;
    background-size: contain;
  }

  .hero {
    min-height: 650px;
  }

  .hero__content {
    margin-top: 13.5rem;
  }

  .product-hero__content::before {
    width: min(72vw, 280px);
    margin-bottom: 1.25rem;
  }

  .brand-carousel__slide {
    width: min(78vw, 320px);
    height: 190px;
  }

  .contact-section,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    width: calc(100% - 2rem);
  }

  .form-field--wide {
    grid-column: auto;
  }

  .site-footer__inner,
  .site-footer__details {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    width: calc(100% - 2rem);
  }

  .site-footer__base p {
    width: calc(100% - 2rem);
  }
}

/* Keep the decorative hero logo clear of all mobile hero copy. */
@media (max-width: 700px) {
  .about-hero,
  .brands-hero,
  .contact-hero {
    min-height: 720px;
    padding-top: 23rem;
    padding-bottom: 4rem;
  }

  .hero {
    min-height: 820px;
    padding-top: 23rem;
    padding-bottom: 4rem;
    place-items: end center;
  }

  .hero__content {
    margin-top: 0;
  }
}
