:root {
  --color-primary: #8b3a2b;
  --color-secondary: #2d2d2d;
  --color-accent: #b68d40;
  --color-bg-light: #e5e0d8;
  --color-bg-dark: #1a1a1a;
  --color-steel: #4a5568;
  --text-main: #2d2d2d;
  --text-muted: #575757;
  --text-on-dark: #f5f5f5;
  --surface: #efe9de;
  --surface-2: #ddd5c9;
  --surface-3: #f7f3ec;
  --shadow-soft: 0 24px 60px rgba(26, 26, 26, 0.1);
  --shadow-strong: 0 22px 48px rgba(45, 45, 45, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --safe-area-top: env(safe-area-inset-top, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #efe9de;
}

body {
  margin: 0;
  min-width: 320px;
  background-color: #efe9de;
  background:
    radial-gradient(circle at top right, rgba(182, 141, 64, 0.18), transparent 24%),
    linear-gradient(180deg, #efe7d9 0%, #e5e0d8 100%);
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(182, 141, 64, 0.2), transparent 30%),
    linear-gradient(180deg, #efe7d9 0%, #e5e0d8 100%);
  transition: opacity 380ms ease, visibility 380ms ease;
  background-size: 140% 140%, 100% 100%;
  animation: preloaderBackdropShift 3.2s ease-in-out infinite;
}

.site-preloader-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.site-preloader-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-primary), #63291f);
  color: var(--text-on-dark);
  font-family: "Roboto Slab", serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 32px rgba(99, 41, 31, 0.3);
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

.site-preloader-mark::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 24px;
  border: 2px solid rgba(139, 58, 43, 0.26);
  border-top-color: rgba(139, 58, 43, 0.9);
  border-right-color: rgba(182, 141, 64, 0.9);
  animation: preloaderSpin 1.3s linear infinite;
}

.site-preloader-mark::after {
  content: "";
  position: absolute;
  inset: -17px;
  border-radius: 30px;
  border: 1px solid rgba(139, 58, 43, 0.16);
}

.site-preloader-copy {
  margin: 0;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-preloader-track {
  position: relative;
  width: min(240px, 62vw);
  height: 8px;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.12);
  overflow: hidden;
}

.site-preloader-progress {
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(139, 58, 43, 0.9), rgba(182, 141, 64, 0.9));
  animation: preloaderSweep 1.25s ease-in-out infinite;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderSweep {
  0% {
    left: -35%;
  }

  100% {
    left: 100%;
  }
}

@keyframes preloaderBackdropShift {
  0%,
  100% {
    background-position: 0% 0%, 0 0;
  }

  50% {
    background-position: 100% 65%, 0 0;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.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-shell {
  width: min(calc(100% - 32px), 1280px);
  margin: 16px auto;
  border-radius: 34px;
  overflow: clip;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.site-header,
.section,
.site-footer {
  padding-left: clamp(20px, 4vw, 42px);
  padding-right: clamp(20px, 4vw, 42px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(239, 233, 222, 0.84);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-primary), #63291f);
  color: var(--text-on-dark);
  font-family: "Roboto Slab", serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.site-footer strong,
h1,
h2,
h3 {
  font-family: "Roboto Slab", serif;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a,
.phone-link {
  color: var(--text-muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a,
.phone-link,
.button,
.band-item span,
.contact-card span,
.fleet-list strong,
.service-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-nav a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.ui-icon {
  flex: 0 0 auto;
  font-size: 0.95em;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-primary), #6b281d);
  color: #fff;
  box-shadow: 0 16px 34px rgba(139, 58, 43, 0.22);
}

.button-primary:hover {
  background: linear-gradient(135deg, #6b281d, #4a1810);
}

.button-secondary {
  background: rgba(45, 45, 45, 0.08);
  color: var(--color-secondary);
}

.button-secondary:hover {
  background: rgba(45, 45, 45, 0.14);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(45, 45, 45, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-secondary);
}

.section {
  padding-top: clamp(48px, 9vw, 92px);
  padding-bottom: clamp(48px, 9vw, 92px);
}

.section-tight {
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  position: relative;
}

.hero-mobile-video {
  display: none;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--color-secondary);
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  max-width: 10ch;
}

.hero-text,
.section-heading p,
.service-card p,
.fleet-copy p,
.about-panel p,
.quote-copy p,
.band-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
}

.hero-metrics dt {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 10px 0 0;
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.hero-photo-stack {
  position: relative;
  min-height: 640px;
}

.hero-photo {
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-photo img,
.fleet-photo img,
.gallery-card img,
.service-media img {
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  width: min(100%, 520px);
  height: 610px;
  margin-left: auto;
  border-radius: 38px 38px 90px 38px;
}

.hero-photo-card {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 240px;
  height: 280px;
  border: 6px solid rgba(247, 243, 236, 0.9);
  border-radius: 28px;
}

.dispatch-card {
  position: absolute;
  right: 24px;
  bottom: -28px;
  max-width: 290px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.95));
  color: var(--text-on-dark);
}

.dispatch-label,
.service-tag,
.fleet-note-top,
.coverage-title {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dispatch-title,
.fleet-note-main {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.dispatch-detail,
.fleet-note-bottom {
  margin: 12px 0 0;
  color: rgba(245, 245, 245, 0.78);
  line-height: 1.6;
}

.credibility-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.band-item {
  padding: 22px 22px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
  margin: 0;
}

.band-item span,
.service-stat strong,
.contact-card strong,
.site-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-secondary);
  font-weight: 800;
}

.band-item p,
.service-stat span,
.contact-card span,
.site-footer p {
  margin: 8px 0 0;
}

.section-heading {
  max-width: 800px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 28px;
  align-items: end;
}

.services-section,
.gallery-section,
.quote-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 34px;
}

.service-card {
  display: grid;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  overflow: hidden;
  min-height: 100%;
}

.service-card-featured {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.service-card-featured-horizontal {
  grid-template-columns: 1fr;
}

.service-media {
  min-height: 100%;
}

.service-card-featured-horizontal .service-media {
  min-height: 300px;
  max-height: 340px;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.service-body h3,
.quote-copy h2,
.contact-strip h2,
.about-panel h2,
.fleet-copy h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.service-card h3 {
  margin: 0;
  color: var(--color-secondary);
  font-size: 1.6rem;
}

.service-points {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-muted);
}

.service-points li + li {
  margin-top: 8px;
}

.capacity-meter {
  width: 100%;
  height: 10px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.1);
  overflow: hidden;
}

.capacity-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.service-stat {
  margin-top: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(182, 141, 64, 0.12);
}

.fleet-section {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(45, 45, 45, 0.96));
  color: var(--text-on-dark);
}

.fleet-section .eyebrow,
.fleet-section h2,
.fleet-section strong,
.fleet-section p {
  color: inherit;
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: center;
}

.fleet-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.fleet-list div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.fleet-list p,
.fleet-note-bottom {
  color: rgba(245, 245, 245, 0.76);
}

.fleet-visuals {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
}

.fleet-photo,
.fleet-note,
.gallery-card {
  overflow: hidden;
  border-radius: 26px;
}

.fleet-photo.tall {
  grid-row: span 2;
  min-height: 640px;
}

.fleet-photo.short {
  min-height: 310px;
}

.fleet-photo.short-alt {
  min-height: 310px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 28px;
}

.gallery-card {
  position: relative;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.4);
}

.gallery-card--standard {
  aspect-ratio: 4 / 5;
}

.gallery-card--landscape {
  aspect-ratio: 5 / 4;
}

.gallery-card--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-card-button {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-card-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-more-button[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-figure {
  margin: 0;
  width: min(100%, 1180px);
  max-height: calc(100vh - 56px);
}

.gallery-lightbox-figure img {
  width: 100%;
  max-height: calc(100vh - 56px);
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.about-panel {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.52);
}

.quote-panel blockquote {
  margin: 26px 0 0;
  color: var(--color-primary);
  font-family: "Roboto Slab", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.coverage-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(74, 85, 104, 0.12), rgba(182, 141, 64, 0.16)),
    rgba(255, 255, 255, 0.42);
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 18px;
}

.service-area-map {
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(45, 45, 45, 0.08);
  position: relative;
  z-index: 1;
}

.leaflet-container {
  font-family: "Manrope", sans-serif;
  z-index: 1;
}

.leaflet-control {
  z-index: 2;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: rgba(26, 26, 26, 0.94);
  color: var(--text-on-dark);
}

.leaflet-popup-content {
  margin: 12px 14px;
  line-height: 1.45;
}

.leaflet-control-attribution {
  background: rgba(239, 233, 222, 0.88) !important;
  color: var(--text-muted);
}

.map-popup-title {
  margin: 0 0 4px;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-popup-copy {
  margin: 0;
  font-size: 0.92rem;
}

.coverage-cities span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.08);
  color: var(--color-secondary);
  font-weight: 800;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.contact-blocks {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-card,
.quote-form {
  border-radius: 28px;
}

.contact-card {
  display: block;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.5);
}

.contact-card span {
  color: var(--text-muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56));
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(45, 45, 45, 0.06);
  color: var(--color-secondary);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(182, 141, 64, 0.6);
  outline-offset: 1px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.form-note {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
  min-width: 220px;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(139, 58, 43, 0.94), rgba(26, 26, 26, 0.96));
  color: var(--text-on-dark);
}

.contact-strip h2,
.contact-strip .eyebrow {
  color: inherit;
}

.contact-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-strip .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-top: 34px;
  padding-bottom: 34px;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.92), rgba(45, 45, 45, 0.96));
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer strong {
  color: #fff;
  font-size: 1.08rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer-main {
  display: grid;
  gap: 8px;
  max-width: 62ch;
}

.site-footer-tagline {
  margin-top: 6px;
}

.site-footer-meta {
  font-size: 0.9rem;
}

.site-footer-credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.site-footer-credit .fa-heart {
  color: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(139, 58, 43, 0.45));
}

.site-footer-credit a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(182, 141, 64, 0.8);
  text-underline-offset: 2px;
}

.site-footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.site-footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.site-footer-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

body.nav-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: min(560px, calc(100% - 40px));
  padding: 18px;
  border-radius: 20px;
  background: rgba(26, 26, 26, 0.95);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cookie-banner-title {
  margin: 0;
  font-weight: 800;
}

.cookie-banner-copy {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.cookie-banner-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner .button-secondary,
.cookie-banner .cookie-banner-decline {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.cookie-banner .button-secondary:hover,
.cookie-banner .cookie-banner-decline:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-banner .button-secondary:focus-visible,
.cookie-banner .cookie-banner-decline:focus-visible {
  outline: 2px solid rgba(182, 141, 64, 0.95);
  outline-offset: 2px;
}

.cookie-preferences-button {
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(247, 243, 236, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split-heading,
  .fleet-layout,
  .quote-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-template-columns: 1fr;
  }

  .service-card-featured-horizontal .service-media {
    min-height: 260px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .hero-photo-stack {
    min-height: 560px;
  }

  .hero-photo-main {
    width: 100%;
    height: 520px;
  }
}

@media (max-width: 820px) {
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--safe-area-top);
    background: #efe9de;
    z-index: 30;
    pointer-events: none;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding-top: calc(18px + var(--safe-area-top));
    background: #efe9de;
  }

  .header-actions {
    display: none;
  }

  .hero-visual,
  .fleet-visuals {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 70svh;
    align-items: flex-end;
    padding-bottom: clamp(32px, 8vw, 56px);
  }

  .hero-mobile-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      #F4F0E9 0%,
      rgba(244, 240, 233, 0.55) 9%,
      rgba(20, 20, 20, 0.72) 42%,
      rgba(10, 10, 10, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    color: var(--text-on-dark);
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    color: #fff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }

  .hero-copy .eyebrow {
    color: #e8ac4a;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }

  .hero-copy .hero-text {
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    margin-top: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  }

  .hero-metrics div {
    background: rgba(20, 20, 20, 0.28);
    backdrop-filter: blur(6px);
  }

  .hero-metrics dt {
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-metrics dd {
    color: #fff;
  }

  .button-secondary {
    background: rgba(20, 20, 20, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-metrics div {
    padding: 14px 12px;
  }

  .hero-metrics dt {
    font-size: 0.7rem;
  }

  .hero-metrics dd {
    font-size: 0.9rem;
  }

  .credibility-band {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-card--wide {
    grid-column: span 2;
  }

  .hero-photo-stack {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    overflow: hidden;
  }

  .hero-photo-main,
  .hero-photo-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 240px;
    margin: 0;
    border-width: 0;
    border-radius: 22px;
  }

  .dispatch-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    max-width: none;
  }

  .fleet-photo.tall,
  .fleet-photo.short,
  .service-area-map {
    min-height: 260px;
  }

  .contact-strip,
  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .cookie-banner .button {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .hero-photo-main,
  .hero-photo-card {
    height: 180px;
  }

  .site-header {
    gap: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--landscape,
  .gallery-card--standard {
    grid-column: auto;
    aspect-ratio: 1;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .section h2,
  .service-body h3,
  .quote-copy h2,
  .contact-strip h2,
  .about-panel h2,
  .fleet-copy h2,
  .section-heading h2 {
    line-height: 1.02;
  }

  .contact-strip .button,
  .form-actions .button {
    width: 100%;
  }
}