:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5f676f;
  --soft: #f5f6f7;
  --paper: #ffffff;
  --line: #dfe3e7;
  --dark: #081014;
  --dark-2: #111b20;
  --dark-3: #17242a;
  --orange: #ff3d08;
  --orange-2: #ff5a13;
  --orange-dark: #c43008;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 16px 38px rgba(8, 16, 20, 0.14);
  --container: 1180px;
  --font: "Arial Narrow", "Roboto Condensed", "Oswald", "Arial", sans-serif;
  --body-font: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  letter-spacing: 0;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, color 180ms ease;
}

.dark-header {
  color: #fff;
  background: rgba(5, 11, 14, 0.96);
}

.light-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
}

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

.brand-logo {
  width: 220px;
  max-height: 66px;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  transform: rotate(-30deg);
}

.brand-mark span {
  position: absolute;
  width: 25px;
  height: 25px;
  background: var(--orange);
  border: 4px solid currentColor;
}

.brand-mark span:nth-child(1) {
  left: 0;
  top: 6px;
  color: #fff;
}

.brand-mark span:nth-child(2) {
  right: 0;
  top: 0;
  color: #31383e;
  background: #fff;
}

.brand-mark span:nth-child(3) {
  right: 3px;
  bottom: 0;
  color: #fff;
  background: #31383e;
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--orange);
  font-family: var(--font);
  font-size: 36px;
  font-style: italic;
  font-weight: 900;
}

.brand-copy small {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.desktop-nav a {
  position: relative;
  padding: 33px 0 30px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--orange);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.btn,
.icon-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 23px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.icon-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.icon-button:focus-visible,
.text-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 61, 8, 0.24);
  outline-offset: 2px;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 10px 18px rgba(255, 61, 8, 0.22);
}

.btn.dark {
  color: #fff;
  background: var(--dark);
}

.btn.outline,
.btn.ghost {
  color: currentColor;
  border: 1px solid currentColor;
  background: transparent;
}

.btn.full {
  width: 100%;
}

.btn.compact {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.login-btn {
  min-width: 110px;
}

.logout-btn {
  min-width: 96px;
  padding-inline: 18px;
}

.header-actions .btn.primary {
  min-width: 150px;
}

.icon-button {
  width: 44px;
  min-height: 44px;
  padding: 0;
  color: currentColor;
  border: 1px solid currentColor;
  background: transparent;
}

.nav-toggle {
  display: none;
}

.mobile-nav {
  position: absolute;
  top: 86px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-nav button {
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  text-align: left;
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 900;
}

.mobile-nav button.active,
.mobile-nav button:hover {
  color: var(--orange);
  background: #fff1ec;
}

.hero {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  color: #fff;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 14, 0.94) 0%, rgba(5, 11, 14, 0.76) 34%, rgba(5, 11, 14, 0.2) 72%),
    linear-gradient(180deg, rgba(5, 11, 14, 0.16), rgba(5, 11, 14, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font);
  font-size: 72px;
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 span,
.section-heading p,
.section-heading h2 span,
.coverage-copy h2 span,
.capacity-banner h2 span,
.team-cta h2 span {
  color: var(--orange);
}

.hero p {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 21px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.trust-strip,
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 25px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
}

.trust-strip article,
.stats-strip article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip article:first-child,
.stats-strip article:first-child {
  padding-left: 0;
}

.trust-strip article:last-child,
.stats-strip article:last-child {
  border-right: 0;
}

.trust-strip span,
.stats-strip span,
.orange-icon,
.round-icon {
  color: var(--orange);
}

.trust-strip svg,
.stats-strip svg {
  width: 48px;
  height: 48px;
}

.trust-strip strong,
.stats-strip strong {
  display: block;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip p,
.stats-strip small {
  display: block;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.35;
}

.stats-strip strong {
  font-size: 35px;
  line-height: 0.9;
}

.stats-strip small {
  max-width: 120px;
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
}

.light-stats {
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.light-stats article {
  border-right-color: var(--line);
}

.light-stats p,
.light-stats small {
  color: var(--ink);
}

.section {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0;
}

.white-section {
  width: 100%;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  background: #fff;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading p {
  margin: 0 0 4px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.cta-band h2,
.site-footer h3,
.modal h2,
.team-cta h2 {
  margin: 0;
  font-family: var(--font);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.service-feature-grid {
  display: grid;
  gap: 28px;
}

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

.two-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card,
.service-wide-card,
.vehicle-card,
.job-card,
.team-card,
.help-card,
.contact-card,
.mission-card,
.quick-support,
.site-form,
.fleet-glance,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 16, 20, 0.06);
}

.service-card {
  position: relative;
  min-height: 392px;
  padding: 18px 26px 28px;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 176px;
  object-fit: contain;
  margin-bottom: 8px;
}

.round-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.round-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3,
.service-wide-card h3,
.vehicle-card h3,
.job-card h3,
.team-card h3,
.help-card h3,
.value-card h3,
.mission-card h3,
.process-step h3 {
  margin: 14px 0 8px;
  font-family: var(--font);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p,
.service-wide-card p,
.vehicle-card p,
.job-card p,
.team-card p,
.help-card p,
.value-card p,
.mission-card p,
.process-step p,
.section p,
.modal p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--orange);
  background: transparent;
  font-size: 14px;
}

.text-link.center {
  justify-self: center;
  margin-top: 8px;
}

.about-split {
  display: grid;
  grid-template-columns: 0.52fr 0.82fr;
  min-height: 360px;
}

.dark-panel {
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(255, 61, 8, 0.14), transparent 18rem),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.about-copy {
  padding: 38px max(36px, calc((100vw - var(--container)) / 2));
}

.about-copy h2::after,
.site-footer h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 14px;
  background: var(--orange);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.about-media {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.stat-overlay {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}

.stat-overlay article {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--line);
}

.stat-overlay article:last-child {
  border-right: 0;
}

.stat-overlay span {
  color: var(--orange);
}

.stat-overlay strong {
  display: block;
  font-family: var(--font);
  font-size: 28px;
  line-height: 1;
}

.stat-overlay small {
  display: block;
  max-width: 85px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff4b0d);
}

.cta-band p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.cta-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
}

.cta-icon svg {
  width: 38px;
  height: 38px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.light-outline {
  color: #fff;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 28% 45%, rgba(255, 61, 8, 0.12), transparent 20rem),
    linear-gradient(135deg, #0a1115, #111d22);
}

.footer-grid {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.7fr 1.35fr;
  gap: 40px;
  padding: 42px 0 34px;
}

.compact-footer .footer-grid {
  grid-template-columns: 1fr 1.2fr 0.8fr;
}

.site-footer h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.contact-mini {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-mini li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.contact-mini svg {
  color: #fff;
}

.footer-brand {
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.footer-brand .brand {
  min-width: auto;
}

.footer-brand .brand-logo {
  width: min(310px, 100%);
  max-height: 120px;
}

.footer-brand .brand-copy strong {
  font-size: 58px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.footer-links a.active,
.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom span {
  margin-right: auto;
}

.footer-bottom button,
.social-row button {
  color: inherit;
  background: transparent;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--dark);
  background: #fff;
  font-weight: 800;
}

.site-form {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer .site-form h3 {
  margin-bottom: 4px;
}

.site-form h3 {
  margin: 0 0 6px;
  color: inherit;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid #aeb5bb;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}

.site-form textarea {
  resize: vertical;
}

.site-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: inherit !important;
  font-weight: 500 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.story-grid,
.fleet-overview,
.split-feature,
.support-split,
.contact-layout,
.careers-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.story-grid img,
.split-feature img,
.careers-intro img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1.55fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.mission-card {
  padding: 32px;
  border: 0;
  border-right: 1px solid var(--line);
  box-shadow: none;
}

.mission-card .orange-icon svg {
  width: 44px;
  height: 44px;
}

.values-panel {
  padding: 28px;
}

.values-panel h3,
.hiring-panel h3,
.fleet-glance h3,
.roles-list h3 {
  margin: 0 0 18px;
  font-family: var(--font);
  font-size: 21px;
  text-transform: uppercase;
}

.mini-value-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.value-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  color: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.dark-panel .value-card {
  color: var(--ink);
}

.value-card span {
  color: var(--orange);
}

.value-card span svg {
  width: 36px;
  height: 36px;
}

.value-card h3 {
  margin-top: 0;
  font-size: 17px;
}

.value-card p {
  margin: 0;
  font-size: 13px;
}

.coverage-split {
  display: grid;
  grid-template-columns: 0.8fr 0.6fr 1fr;
  align-items: stretch;
  background: #fff;
}

.coverage-copy,
.map-card,
.coverage-split img {
  min-height: 330px;
}

.coverage-copy {
  padding: 40px max(24px, calc((100vw - var(--container)) / 2));
}

.coverage-copy h2,
.capacity-banner h2 {
  margin: 0 0 18px;
  font-family: var(--font);
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.map-card {
  display: grid;
  place-items: center;
  padding: 22px;
  background: #f6f7f8;
}

.uk-map {
  position: relative;
  width: min(250px, 100%);
  aspect-ratio: 0.72;
  opacity: 0.95;
  background:
    radial-gradient(circle at 42% 18%, #c8ccd0 0 2px, transparent 2px),
    radial-gradient(circle at 50% 24%, #c8ccd0 0 2px, transparent 2px),
    radial-gradient(circle at 58% 33%, #c8ccd0 0 2px, transparent 2px),
    radial-gradient(circle at 45% 42%, #c8ccd0 0 2px, transparent 2px),
    radial-gradient(circle at 54% 52%, #c8ccd0 0 2px, transparent 2px),
    radial-gradient(circle at 47% 62%, #c8ccd0 0 2px, transparent 2px),
    radial-gradient(circle at 56% 72%, #c8ccd0 0 2px, transparent 2px);
  background-size: 18px 18px;
  clip-path: polygon(45% 0, 58% 10%, 54% 24%, 67% 35%, 57% 45%, 66% 57%, 58% 68%, 62% 83%, 48% 100%, 38% 88%, 24% 83%, 35% 66%, 25% 55%, 33% 40%, 28% 25%, 38% 14%);
}

.uk-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 18px;
  height: 18px;
  border: 4px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(255, 61, 8, 0.28);
}

.uk-map span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.uk-map i {
  position: absolute;
  height: 2px;
  background: var(--orange);
  transform-origin: left;
}

.uk-map i:nth-of-type(1) {
  left: 48%;
  top: 33%;
  width: 58px;
  transform: rotate(28deg);
}

.uk-map i:nth-of-type(2) {
  left: 61%;
  top: 48%;
  width: 48px;
  transform: rotate(82deg);
}

.uk-map i:nth-of-type(3) {
  left: 51%;
  top: 60%;
  width: 40px;
  transform: rotate(24deg);
}

.process-choice {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
}

.process-panel,
.why-panel {
  min-width: 0;
  padding: 44px;
}

.process-panel > *,
.why-panel > * {
  max-width: none;
}

.process-row,
.hiring-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--orange);
}

.process-step > span svg {
  width: 44px;
  height: 44px;
}

.process-step b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
}

.process-step h3 {
  font-size: 16px;
}

.process-step p {
  font-size: 13px;
}

.service-wide-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
}

.service-wide-card img {
  width: 100%;
  height: 170px;
  align-self: center;
  object-fit: contain;
}

.fleet-overview {
  grid-template-columns: 1.2fr 0.8fr;
}

.feature-list-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.feature-list-inline .value-card {
  grid-template-columns: 36px 1fr;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.fleet-glance {
  padding: 26px;
}

.table-rows {
  display: grid;
  gap: 0;
}

.table-rows div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.table-rows div:last-child {
  border-bottom: 0;
}

.table-rows span {
  color: rgba(255, 255, 255, 0.86);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vehicle-card {
  padding: 18px 18px 22px;
}

.vehicle-card img {
  width: 100%;
  height: 136px;
  object-fit: contain;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: inherit;
  font-size: 14px;
}

.check-list svg {
  color: var(--orange);
}

.equipment-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 24px max(24px, calc((100vw - var(--container)) / 2));
}

.equipment-strip article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.equipment-strip article:last-child {
  border-right: 0;
}

.equipment-strip span {
  color: var(--orange);
}

.equipment-strip strong {
  display: block;
  font-family: var(--font);
  text-transform: uppercase;
}

.equipment-strip p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.split-feature {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}

.capacity-banner {
  display: grid;
  grid-template-columns: 0.85fr 0.8fr 0.65fr;
  gap: 28px;
  align-items: center;
  padding: 32px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 16, 20, 0.96), rgba(8, 16, 20, 0.72)),
    url("./assets/logistics/hero-truck.png") center / cover;
}

.capacity-banner .map-card {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.06);
}

.capacity-banner blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.55;
}

.careers-intro {
  grid-template-columns: 0.95fr 1.25fr;
}

.benefit-strip {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 14px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-strip span {
  display: grid;
  justify-items: center;
  align-items: start;
  gap: 8px;
  min-height: 70px;
  padding: 10px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-strip span:last-child {
  border-right: 0;
}

.benefit-strip svg {
  color: var(--orange);
  width: 28px;
  height: 28px;
}

.hiring-section {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 32px;
}

.roles-list {
  align-self: start;
}

.hiring-panel {
  padding: 26px;
}

.hiring-panel .process-step {
  color: #fff;
}

.hiring-panel .process-step p {
  color: rgba(255, 255, 255, 0.82);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.job-card,
.help-card {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 24px 18px;
  text-align: center;
}

.job-card .round-icon {
  color: #fff;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
  color: var(--orange-dark);
  font-size: 13px;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.job-meta svg {
  width: 15px;
  height: 15px;
}

.job-meta.big {
  justify-content: flex-start;
  gap: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-locked {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  text-align: center;
}

.admin-locked-copy {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.admin-shell {
  min-height: calc(100vh - 86px);
  padding: 34px max(24px, calc((100vw - var(--container)) / 2)) 54px;
  background: #f6f8f9;
}

.admin-shell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-shell-header p {
  margin: 0 0 4px;
  color: var(--orange);
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
}

.admin-shell-header h1 {
  margin: 0;
  font-family: var(--font);
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
}

.admin-shell-header span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.admin-panel {
  border-top: 1px solid var(--line);
}

.admin-shell .admin-panel {
  width: 100%;
  padding: 0;
  border-top: 0;
}

.admin-panel-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-panel-intro strong {
  color: var(--orange);
  font-family: var(--font);
  font-size: 18px;
  text-transform: uppercase;
}

.admin-panel-intro span {
  color: var(--muted);
}

.admin-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.admin-dashboard-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-dashboard-panel h3 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 24px;
  text-transform: uppercase;
}

.admin-dashboard-panel > p {
  margin: 0 0 18px;
  color: var(--muted);
}

.admin-job-form,
.admin-account-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.admin-job-form textarea {
  min-height: 128px;
}

.admin-job-list,
.admin-account-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.admin-account-list {
  grid-template-columns: 1fr;
}

.admin-job-row,
.admin-account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-job-row div,
.admin-account-row div {
  display: grid;
  gap: 4px;
}

.admin-job-row strong,
.admin-account-row strong {
  font-family: var(--font);
  font-size: 18px;
  text-transform: uppercase;
}

.admin-job-row span,
.admin-account-row span {
  color: var(--muted);
  font-size: 14px;
}

.btn.danger {
  color: var(--orange-dark);
  border-color: var(--orange-dark);
}

.admin-account-row .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.empty-state {
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.careers-contact {
  display: grid;
  grid-template-columns: 0.9fr 0.75fr 1fr;
  align-items: stretch;
  color: #fff;
  background: var(--dark);
}

.careers-contact > div {
  padding: 32px max(24px, calc((100vw - var(--container)) / 2));
}

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

.careers-contact .site-form {
  padding: 32px max(24px, calc((100vw - var(--container)) / 2)) 32px 24px;
}

.contact-layout {
  grid-template-columns: 1fr 0.85fr;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-card {
  display: grid;
  justify-items: center;
  min-height: 196px;
  padding: 24px 12px;
  color: var(--ink);
  text-align: center;
}

.contact-card span {
  color: var(--orange);
}

.contact-card span svg {
  width: 42px;
  height: 42px;
}

.contact-card strong {
  margin-top: 12px;
  color: var(--orange);
  font-family: var(--font);
  text-transform: uppercase;
}

.contact-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}

.support-box {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 430px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-box .orange-icon svg {
  width: 54px;
  height: 54px;
}

.support-box strong,
.support-box b,
.support-box small {
  display: block;
}

.support-box strong {
  color: var(--orange);
  font-family: var(--font);
  text-transform: uppercase;
}

.support-box b {
  font-size: 25px;
}

.support-box small {
  color: var(--muted);
}

.enquiry-panel {
  padding: 28px;
}

.enquiry-panel .site-form h3 {
  color: #fff;
  font-size: 28px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.support-split {
  grid-template-columns: 1.1fr 0.9fr;
}

.coverage-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
}

.coverage-card .uk-map {
  position: absolute;
  right: 40px;
  top: 34px;
  width: 210px;
  opacity: 0.55;
}

.coverage-card p,
.coverage-card .check-list {
  max-width: 420px;
}

.quick-support {
  padding: 28px;
}

.quick-support h2 {
  margin: 0 0 18px;
  font-family: var(--font);
  text-transform: uppercase;
}

.quick-link {
  width: 100%;
  display: grid;
  grid-template-columns: 26px 1fr 18px;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  text-align: left;
}

.quick-link span {
  color: var(--orange);
}

.quick-link:hover {
  color: var(--orange);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.team-card {
  overflow: hidden;
  text-align: center;
}

.team-photo {
  height: 190px;
  background-size: 560%;
  background-position: center;
}

.coming-soon-photo {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 61, 8, 0.1), rgba(10, 17, 21, 0.08)),
    #f4f6f7;
  border-bottom: 1px solid var(--line);
}

.coming-soon-photo span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 61, 8, 0.22);
  border-radius: var(--radius);
  color: var(--orange);
  background: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-photo.focus-1 { background-position: 0% 45%; }
.team-photo.focus-2 { background-position: 24% 46%; }
.team-photo.focus-3 { background-position: 50% 46%; }
.team-photo.focus-4 { background-position: 73% 46%; }
.team-photo.focus-5 { background-position: 100% 46%; }

.team-card h3 {
  margin: 20px 12px 4px;
}

.team-card strong {
  color: var(--orange);
  font-family: var(--font);
  text-transform: uppercase;
}

.team-card p {
  padding: 0 16px;
  font-size: 14px;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: 14px auto 20px;
  border-radius: 3px;
  color: #fff;
  background: var(--orange);
}

.people-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 34px max(24px, calc((100vw - var(--container)) / 2));
}

.people-strip .value-card {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.people-strip .value-card:last-child {
  border-right: 0;
}

.people-strip .value-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.people-strip .value-card h3 {
  font-size: 24px;
}

.team-cta {
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 42px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background-size: cover;
  background-position: center right;
  box-shadow: inset 0 0 0 2000px rgba(8, 16, 20, 0.58);
}

.team-cta div {
  max-width: 440px;
}

.team-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.66);
}

.modal {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 52px);
  overflow: auto;
  padding: 36px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border-color: transparent;
}

.modal-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.modal-heading h2 {
  padding-right: 48px;
  font-size: 42px;
}

.modal-heading p {
  margin: 0;
}

.modal-media {
  height: 210px;
  margin: -36px -36px 28px;
  background-size: cover;
  background-position: center;
}

.modal-actions {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.modal-subtitle {
  margin: 24px 0 0;
  color: var(--orange);
  font-family: var(--font);
  text-transform: uppercase;
}

.application-form {
  gap: 14px;
}

.file-drop {
  min-height: 150px;
  place-items: center;
  padding: 24px;
  border: 1px dashed #aeb5bb;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-drop svg {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.file-drop span {
  color: var(--muted);
  font-weight: 500;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.policy-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.policy-list p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 120;
  width: min(520px, calc(100% - 32px));
  transform: translateX(-50%);
  padding: 16px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--dark);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 700;
}

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

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 188px;
    max-height: 58px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .two-col,
  .job-grid,
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vehicle-grid,
  .help-grid,
  .contact-cards,
  .people-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-strip,
  .equipment-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .equipment-strip article:nth-child(3n),
  .benefit-strip span:nth-child(3n) {
    border-right: 0;
  }

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

  .trust-strip article:nth-child(2),
  .stats-strip article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 840px) {
  .site-header {
    height: auto;
    min-height: 76px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand-logo {
    width: 160px;
    max-height: 50px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark span {
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .brand-copy strong {
    font-size: 30px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-nav {
    top: 76px;
  }

  .hero {
    min-height: 560px;
    background-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 11, 14, 0.98) 0%, rgba(5, 11, 14, 0.84) 58%, rgba(5, 11, 14, 0.3) 100%),
      linear-gradient(180deg, rgba(5, 11, 14, 0.2), rgba(5, 11, 14, 0.48));
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions,
  .cta-actions,
  .contact-options {
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .white-section {
    width: 100%;
    padding: 36px 16px;
  }

  .three-col,
  .two-col,
  .story-grid,
  .mission-values,
  .coverage-split,
  .process-choice,
  .fleet-overview,
  .vehicle-grid,
  .split-feature,
  .capacity-banner,
  .careers-intro,
  .hiring-section,
  .job-grid,
  .careers-contact,
  .contact-layout,
  .help-grid,
  .support-split,
  .team-grid,
  .people-strip,
  .footer-grid,
  .compact-footer .footer-grid,
  .trust-strip,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .stats-strip,
  .equipment-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-strip article,
  .stats-strip article,
  .equipment-strip article,
  .people-strip .value-card,
  .mission-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 16px 0;
  }

  .light-stats article,
  .mission-card {
    border-bottom-color: var(--line);
  }

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

  .about-copy {
    padding: 32px 16px;
  }

  .stat-overlay {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    margin: 220px 16px 16px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 16px;
  }

  .cta-icon {
    margin: 0 auto;
  }

  .footer-grid,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-bottom span {
    flex-basis: 100%;
  }

  .admin-shell {
    min-height: calc(100vh - 76px);
    padding: 24px 16px 38px;
  }

  .admin-shell-header {
    display: grid;
  }

  .admin-shell-header h1 {
    font-size: 36px;
  }

  .form-grid,
  .mini-value-grid,
  .why-grid,
  .process-row,
  .hiring-row,
  .feature-list-inline,
  .benefit-strip,
  .equipment-strip,
  .admin-dashboard,
  .admin-job-list,
  .admin-account-list {
    grid-template-columns: 1fr;
  }

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

  .process-choice {
    width: 100%;
  }

  .coverage-copy,
  .process-panel,
  .why-panel,
  .careers-contact > div,
  .careers-contact .site-form {
    padding: 28px 16px;
  }

  .coverage-split img,
  .careers-contact img {
    min-height: 260px;
  }

  .coverage-card .uk-map {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto 0;
  }

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

  .team-photo {
    height: 240px;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .modal {
    padding: 24px;
  }

  .modal-media {
    margin: -24px -24px 22px;
  }

  .modal-heading h2 {
    font-size: 34px;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 134px;
  }

  .brand-copy strong {
    font-size: 26px;
  }

  .brand-copy small {
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .btn {
    width: 100%;
  }

  .contact-cards,
  .stat-overlay {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .footer-brand .brand-copy strong {
    font-size: 42px;
  }
}
