:root {
  --ink: #101820;
  --muted: #5a6673;
  --paper: #f7f5ef;
  --white: #ffffff;
  --red: #c92f24;
  --red-dark: #9f2219;
  --blue: #1b5b79;
  --green: #53745b;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 170px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.header-actions a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.header-actions a:hover,
.product-card a:hover {
  color: var(--red);
}

.header-actions {
  display: none;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-actions a {
  border: 1px solid var(--line);
  padding: 9px 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--ink);
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 22, 0.78), rgba(8, 15, 22, 0.42) 46%, rgba(8, 15, 22, 0.08) 78%),
    linear-gradient(0deg, rgba(8, 15, 22, 0.28), rgba(8, 15, 22, 0));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), rgba(247, 245, 239, 0));
}

.hero-content {
  width: min(660px, calc(100% - 36px));
  margin: 42px 0 96px clamp(18px, 7vw, 100px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcf62;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 0.94;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-controls {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 96px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.slider-arrow,
.slider-toggle,
.slider-dot {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(16, 24, 32, 0.46);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.slider-arrow:hover,
.slider-toggle:hover,
.slider-dot:hover {
  background: rgba(201, 47, 36, 0.82);
  border-color: rgba(255, 255, 255, 0.78);
}

.slider-arrow {
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
}

.slider-dot.is-active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.12);
}

.slider-toggle {
  min-height: 44px;
  padding: 0 13px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 2px solid currentColor;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background-color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.category-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--ink);
}

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.7);
  transition: transform 280ms ease, filter 280ms ease;
}

.category-tile span {
  position: absolute;
  inset: auto 18px 18px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(0.86);
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.split,
.service-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split p,
.service-band p,
.contact-section p,
.product-card p,
.rental-grid p,
.site-footer p {
  color: var(--muted);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.brand-row img {
  max-height: 42px;
  width: auto;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.brand-row span {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.feature-image,
.service-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card,
.rental-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
}

.product-card img,
.rental-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card img.logo-image {
  object-fit: contain;
  padding: 34px;
  background: var(--white);
}

.product-card div,
.rental-grid article {
  padding: 22px;
}

.product-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.rentals {
  background: #e9eee8;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rental-grid article {
  background: var(--white);
}

.rental-grid article > *:not(img) {
  margin-left: 0;
}

.service-band {
  color: var(--white);
  background: var(--ink);
}

.service-band .eyebrow,
.service-band p {
  color: rgba(255, 255, 255, 0.78);
}

.service-band .eyebrow {
  color: #ffcf62;
}

.pro-shop {
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery img:first-child {
  grid-row: span 2;
}

.contact-section {
  align-items: start;
  background: var(--paper);
}

.locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.locations article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.locations a {
  color: var(--red);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 52px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #0c1117;
}

.site-footer img {
  width: 180px;
  padding: 12px;
  background: var(--white);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 7vw, 100px) 72px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink) var(--page-image, none) center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 15, 22, 0.82), rgba(8, 15, 22, 0.42), rgba(8, 15, 22, 0.14));
}

.page-hero-content {
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.content-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.page-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.page-list li {
  padding: 14px 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  font-weight: 800;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-list img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: -24px -24px 20px;
  max-width: calc(100% + 48px);
}

.service-list h3 {
  font-size: 1.15rem;
}

.detail-band {
  background: var(--ink);
  color: var(--white);
}

.detail-band p {
  color: rgba(255, 255, 255, 0.78);
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-cards article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.location-cards a {
  color: var(--red);
  font-weight: 900;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-cta .button.secondary {
  color: var(--ink);
  background: transparent;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header.nav-open .site-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }

  .site-header.nav-open .header-actions a {
    flex: 1 1 150px;
    text-align: center;
  }

  .category-band {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .split,
  .service-band,
  .contact-section,
  .site-footer,
  .intro-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .rental-grid,
  .service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 138px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    margin: 18px 18px 112px;
  }

  .hero-controls {
    right: 18px;
    bottom: 18px;
    left: 18px;
    justify-content: center;
    gap: 7px;
  }

  .slider-arrow,
  .slider-toggle {
    height: 40px;
    min-height: 40px;
  }

  .slider-arrow {
    width: 40px;
  }

  .slider-toggle {
    padding: 0 10px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .button {
    width: 100%;
  }

  .category-band,
  .trust-strip,
  .locations,
  .location-cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 420px;
    padding: 92px 18px 58px;
  }

  .category-tile {
    min-height: 170px;
  }

  .gallery {
    grid-auto-rows: 210px;
  }

  .gallery img:first-child {
    grid-row: auto;
  }
}
