:root {
  color-scheme: light;
  --ink: #251b1b;
  --muted: #706464;
  --paper: #f8f5f2;
  --paper-strong: #ffffff;
  --line: rgba(94, 30, 31, 0.16);
  --red: #a32326;
  --red-deep: #671719;
  --red-soft: #f1dddc;
  --red-tint: #fbefee;
  --steel: #8a817c;
  --charcoal: #2a2222;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(94, 30, 31, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Aptos",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.5;
}

main,
section,
div,
article {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(31, 37, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 35, 38, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
}

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

svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--paper-strong);
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    color 260ms ease;
}

.site-header.is-elevated {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 238, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 800;
}

.brand-name {
  font-weight: 760;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
  font-size: 0.86rem;
}

.nav a {
  position: relative;
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  opacity: 1;
  transform: translateY(-1px);
}

.nav a.is-active::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-quicknav {
  position: fixed;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 35;
  display: none;
}

.mobile-quicknav-toggle {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: var(--red);
  color: var(--paper-strong);
  box-shadow: 0 16px 42px rgba(65, 18, 20, 0.28);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.mobile-quicknav-toggle:hover,
.mobile-quicknav-toggle:focus-visible,
.mobile-quicknav.is-open .mobile-quicknav-toggle {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(65, 18, 20, 0.36);
}

.mobile-quicknav-menu {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: grid;
  width: min(220px, calc(100vw - 32px));
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(163, 35, 38, 0.22);
  border-radius: 16px;
  background: var(--paper-strong);
  box-shadow: 0 24px 70px rgba(65, 18, 20, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: right bottom;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-quicknav.is-open .mobile-quicknav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-quicknav-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 820;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.mobile-quicknav-menu a:hover,
.mobile-quicknav-menu a:focus-visible {
  background: var(--red-tint);
  color: var(--red-deep);
  transform: translateX(-2px);
}

.mobile-quicknav-call {
  margin-top: 4px;
  background: var(--red);
  color: var(--paper-strong) !important;
}

.mobile-quicknav-call:hover,
.mobile-quicknav-call:focus-visible {
  background: var(--red-deep) !important;
  color: var(--paper-strong) !important;
}

.hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  display: block;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(31, 37, 34, 0.78) 0%, rgba(31, 37, 34, 0.34) 42%, rgba(31, 37, 34, 0.08) 100%),
    linear-gradient(0deg, rgba(31, 37, 34, 0.74) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-width: 0;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0 56px;
  color: var(--paper-strong);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 8.8rem);
  font-weight: 820;
  line-height: 0.9;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 252, 244, 0.78);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
  overflow-wrap: break-word;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 820px;
  margin-top: clamp(34px, 5vw, 56px);
}

.hero-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 760;
  backdrop-filter: blur(14px);
}

.hero-proof span:first-child {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 252, 244, 0.22);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(103, 23, 25, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper-strong);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.profile-grid h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.profile-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(36px, 6vw, 72px);
}

.timeline article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: end;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.timeline article:first-child {
  background: var(--red-deep);
  color: var(--paper-strong);
}

.timeline article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(163, 35, 38, 0.14), transparent 48%),
    var(--paper-strong);
}

.timeline span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--paper-strong);
  font-size: 0.76rem;
  font-weight: 840;
}

.timeline article:first-child span {
  background: var(--paper-strong);
  color: var(--red-deep);
}

.timeline h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 0.98;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.timeline article:first-child p {
  color: rgba(255, 255, 255, 0.76);
}

.profile-copy p,
.section-heading p {
  margin: 0;
}

.section-heading {
  display: grid;
  max-width: 780px;
  gap: 18px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.02rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.equipment-section {
  position: relative;
}

.equipment-section::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, var(--red-tint), transparent 54%),
    var(--paper);
}

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

.equipment-card {
  display: grid;
  gap: 24px;
  min-height: 520px;
  padding: 18px;
  border: 2px solid rgba(163, 35, 38, 0.18);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.equipment-card-red {
  border-color: var(--red-deep);
  background:
    linear-gradient(145deg, var(--red) 0%, var(--red-deep) 72%),
    var(--red-deep);
  color: var(--paper-strong);
}

.equipment-card h3 {
  margin: 6px 0 12px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 0.96;
}

.equipment-card p {
  margin: 0;
  color: var(--muted);
}

.equipment-card-red p {
  color: rgba(255, 255, 255, 0.72);
}

.equipment-label {
  font-size: 0.76rem;
  font-weight: 820;
  color: var(--red);
  text-transform: uppercase;
}

.equipment-card-red .equipment-label {
  color: var(--red-soft);
}

.equipment-visual {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f2eeee;
}

.equipment-visual picture,
.photo-trigger picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.equipment-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.equipment-card:hover .equipment-visual img {
  transform: scale(1.025);
}

.seo-services-section {
  position: relative;
}

.seo-services-section::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, var(--paper), var(--paper-strong) 42%, var(--red-tint)),
    var(--paper-strong);
}

.services-heading {
  display: grid;
  max-width: 920px;
  gap: 18px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.services-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.services-heading p:not(.section-kicker) {
  max-width: 76ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  display: grid;
  gap: 18px;
  min-height: 310px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(163, 35, 38, 0.18);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(163, 35, 38, 0.38);
  box-shadow: 0 28px 78px rgba(94, 30, 31, 0.16);
}

.service-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--red-tint);
  color: var(--red);
  font-weight: 840;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card-red {
  background:
    linear-gradient(145deg, var(--red) 0%, var(--red-deep) 78%),
    var(--red-deep);
  color: var(--paper-strong);
}

.service-card-red span {
  background: var(--paper-strong);
  color: var(--red);
}

.service-card-red p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card-soft {
  border-color: rgba(163, 35, 38, 0.24);
  background: var(--red-tint);
}

.equipment-card dl {
  display: grid;
  gap: 0;
  align-self: end;
  margin: 0;
  border-top: 1px solid var(--line);
}

.equipment-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.equipment-card dt {
  color: var(--muted);
}

.equipment-card dd {
  margin: 0;
  font-weight: 780;
  text-align: right;
}

.equipment-card-red dl,
.equipment-card-red dl div {
  border-color: rgba(255, 255, 255, 0.16);
}

.equipment-card-red dt {
  color: rgba(255, 255, 255, 0.58);
}

.drivers-section {
  width: 100%;
  margin: 0;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--paper-strong), var(--red-tint));
}

.drivers-inner,
.request-inner,
.contact-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.drivers-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.driver-card {
  display: grid;
  position: relative;
  gap: 20px;
  min-height: auto;
  align-content: start;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(163, 35, 38, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.driver-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  content: "";
  background: var(--red);
}

.driver-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.96;
}

.driver-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.driver-card .equipment-label {
  color: var(--red);
}

.request-section {
  width: 100%;
  margin: 0;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 54px);
  border-top: 8px solid var(--red);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--paper-strong), var(--red-tint));
}

.request-inner {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(163, 35, 38, 0.18);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.request-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-top: 0;
}

.request-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(163, 35, 38, 0.16);
  border-radius: var(--radius);
  background: var(--red-tint);
}

.request-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--paper-strong);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 840;
}

.request-step h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.76rem);
}

.request-step p {
  margin: 0;
  color: var(--muted);
}

.request-step-card:nth-child(4n + 1),
.request-step-card:nth-child(4n) {
  background: var(--paper-strong);
}

.request-step-card:nth-child(2) span,
.request-step-card:nth-child(3) span {
  color: var(--red);
  background: var(--paper-strong);
  border: 1px solid rgba(163, 35, 38, 0.26);
}

.photo-section {
  width: 100%;
  padding-right: clamp(18px, 4vw, 54px);
  padding-left: clamp(18px, 4vw, 54px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(163, 35, 38, 0.22), transparent 28%),
    var(--charcoal);
  color: var(--paper-strong);
}

.photo-gallery {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: clamp(20px, 4vw, 42px);
}

.photo-gallery-heading {
  display: grid;
  max-width: 980px;
  gap: 16px;
}

.photo-gallery-heading .section-kicker {
  color: var(--red-soft);
}

.photo-gallery-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.55rem, 7.6vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.photo-gallery-heading p:not(.section-kicker) {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 252, 244, 0.72);
}

.gallery-shell {
  display: grid;
  gap: 14px;
}

.gallery-stage {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 244, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    #161212;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.photo-trigger,
.gallery-thumb {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.gallery-main {
  width: 100%;
  height: 100%;
}

.photo-trigger:focus-visible,
.gallery-thumb:focus-visible,
.gallery-control:focus-visible,
.mobile-quicknav-toggle:focus-visible,
.mobile-quicknav-menu a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.gallery-main picture,
.gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-main img {
  object-fit: cover;
  background: #181414;
  transition:
    opacity 220ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-main.is-contain img {
  object-fit: contain;
}

.gallery-main:hover img,
.gallery-main:focus-visible img {
  transform: scale(1.015);
}

.gallery-main.is-swapping img {
  opacity: 0.24;
  transform: scale(0.995);
}

.gallery-main span,
.gallery-thumb span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--red);
  color: var(--paper-strong);
  font-size: 0.74rem;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.gallery-stage figcaption {
  position: absolute;
  top: 16px;
  left: 16px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(22, 18, 18, 0.54);
  color: rgba(255, 252, 244, 0.74);
  font-size: 0.86rem;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-control {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 252, 244, 0.2);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.08);
  color: var(--paper-strong);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  border-color: var(--red-soft);
  background: var(--red);
  transform: translateY(-1px);
}

.gallery-count {
  min-width: 64px;
  color: rgba(255, 252, 244, 0.78);
  font-weight: 820;
  text-align: center;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumb {
  height: clamp(86px, 9vw, 122px);
  overflow: hidden;
  border: 1px solid rgba(255, 252, 244, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.08);
}

.gallery-thumb picture,
.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-thumb img {
  object-fit: cover;
  opacity: 0.84;
  transition:
    opacity 180ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img,
.gallery-thumb.is-active img {
  opacity: 1;
  transform: scale(1.04);
}

.gallery-thumb.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 2px var(--red);
}

.facebook-section {
  width: 100%;
  margin: 0;
  padding-right: clamp(18px, 4vw, 54px);
  padding-left: clamp(18px, 4vw, 54px);
  background:
    linear-gradient(135deg, var(--red-tint), var(--paper-strong) 52%, var(--red-tint)),
    var(--paper-strong);
}

.facebook-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(340px, 1.3fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.facebook-copy {
  max-width: 520px;
}

.facebook-button {
  width: fit-content;
  margin-top: 8px;
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-strong);
}

.facebook-embed {
  display: grid;
  justify-items: center;
  padding: clamp(14px, 2.4vw, 24px);
  border: 2px solid rgba(163, 35, 38, 0.22);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow:
    0 26px 80px rgba(94, 30, 31, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.facebook-embed iframe {
  display: block;
  width: min(500px, 100%);
  max-width: 100%;
  height: min(560px, 68vh);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.contact-section {
  width: 100%;
  margin: 0;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(135deg, var(--red-tint) 0%, var(--paper-strong) 48%, var(--red-tint) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
  align-items: stretch;
}

.contact-intro {
  max-width: none;
  min-height: 480px;
  align-content: end;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, var(--red) 0%, var(--red-deep) 78%),
    var(--red-deep);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-intro .section-kicker {
  color: var(--red-soft);
}

.contact-intro p:not(.section-kicker) {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  align-content: stretch;
  border: 1px solid rgba(163, 35, 38, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-link {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 3.2vw, 34px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.contact-link span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
}

.contact-link-strong {
  background: var(--red);
  color: var(--paper-strong);
}

.contact-link-strong span {
  color: var(--red-soft);
}

.contact-facebook {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  color: var(--red);
  font-weight: 820;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.contact-facebook:hover,
.contact-facebook:focus-visible {
  background: var(--red-soft);
  color: var(--red-deep);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 92px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(163, 35, 38, 0.18);
  border-left: 8px solid var(--red);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 18px 52px rgba(94, 30, 31, 0.08);
}

.faq-list h3 {
  margin: 0 0 10px;
  font-size: clamp(1.18rem, 2.2vw, 1.62rem);
  line-height: 1.08;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(37, 27, 27, 0.86);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  gap: 12px;
  width: min(1040px, 100%);
  max-height: 88svh;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.lightbox figcaption {
  color: var(--paper-strong);
  font-weight: 760;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
  cursor: pointer;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 840px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .mobile-quicknav {
    display: block;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-inner {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding: 96px 16px 56px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.6vw, 3.55rem);
    line-height: 0.94;
   }

  .hero-copy {
    max-width: min(100%, 21rem);
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(31, 37, 34, 0.82), rgba(31, 37, 34, 0.36)),
      linear-gradient(0deg, rgba(31, 37, 34, 0.82), transparent 54%);
  }

  .button {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .hero-actions,
  .hero-proof {
    width: 100%;
  }

  .hero-proof span {
    max-width: 100%;
  }

  .profile-grid,
  .timeline,
  .equipment-grid,
  .equipment-cards,
  .service-grid,
  .drivers-layout,
  .request-layout,
  .contact-layout,
  .facebook-panel,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    gap: 20px;
  }

  .photo-gallery-heading h2 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 0.96;
  }

  .photo-gallery-heading p:not(.section-kicker) {
    max-width: 34ch;
  }

  .gallery-stage {
    aspect-ratio: 4 / 3;
  }

  .gallery-main span {
    right: 10px;
    bottom: 10px;
  }

  .gallery-stage figcaption {
    display: none;
  }

  .gallery-controls {
    justify-content: space-between;
  }

  .gallery-thumbs {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .gallery-thumb {
    flex: 0 0 152px;
    height: 104px;
    scroll-snap-align: start;
  }

  .drivers-section,
  .request-section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .equipment-card {
    min-height: auto;
  }

  .timeline article {
    min-height: 190px;
  }

  .request-inner {
    padding: 18px;
  }

  .request-steps {
    grid-template-columns: 1fr;
  }

  .request-step {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .faq-heading {
    position: static;
  }

  .facebook-button {
    width: 100%;
  }

  .facebook-embed {
    padding: 12px;
  }

  .contact-section {
    background: var(--red-tint);
  }

  .contact-intro {
    min-height: auto;
    padding: 30px 22px;
  }

  .request-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .gallery-main.is-swapping img {
    opacity: 1;
    transform: none;
  }
}
