@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  --ink: #080909;
  --graphite: #121315;
  --slate: #1a1c1f;
  --steel: #2a2d31;
  --steel-strong: #3a3f45;
  --bone: #f3f0e8;
  --ash: #a4a7ad;
  --muted: #747980;
  --amber: #f3b51b;
  --amber-soft: rgba(243, 181, 27, 0.14);
  --green: #7fb08d;
  --danger: #ec6a45;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(243, 181, 27, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 88px 88px, 88px 88px, auto;
  color: var(--bone);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--amber);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(243, 181, 27, 0.8);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  left: 16px;
  top: 16px;
  z-index: 20;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--amber);
  color: var(--ink);
}

.concept-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 9px 18px;
  border-bottom: 1px solid var(--steel);
  background: #050606;
  color: var(--ash);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.concept-bar a {
  color: var(--amber);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 9, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--ash);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--ash);
  font-size: 14px;
  font-weight: 600;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.header-cta,
.button--primary {
  background: var(--amber);
  color: #161001;
}

.header-cta:hover,
.button--primary:hover {
  background: #ffd35b;
  color: #161001;
}

.button--secondary {
  border-color: var(--steel-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--bone);
}

.button--secondary:hover {
  border-color: var(--amber);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--bone);
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.menu-toggle__icon::before {
  transform: translateY(-7px);
}

.menu-toggle__icon::after {
  transform: translateY(5px);
}

.section,
.trust-strip,
.careers-strip,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.section--surface {
  width: 100%;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 19, 21, 0.82);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-top: 54px;
}

.eyebrow,
.card-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 78px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.2vw, 48px);
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.hero__lead {
  max-width: 700px;
  color: var(--ash);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 8px 11px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ash);
  font-size: 13px;
  font-weight: 700;
}

.hero__media {
  position: relative;
  min-height: 590px;
}

.hero__media > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border: 1px solid var(--steel-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dispatch-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(243, 181, 27, 0.38);
  border-radius: var(--radius);
  background: rgba(8, 9, 9, 0.86);
  backdrop-filter: blur(12px);
}

.dispatch-panel a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--steel);
}

.dispatch-panel strong {
  color: var(--bone);
}

.dispatch-panel span {
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -28px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: rgba(18, 19, 21, 0.95);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 22px;
  border-right: 1px solid var(--steel);
}

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

.trust-strip span {
  display: block;
  margin-bottom: 16px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.trust-strip p,
.section-heading p,
.service-card p,
.safety-copy p,
.location-card p,
.careers-strip p,
.site-footer p {
  color: var(--ash);
}

.trust-strip p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  max-width: none;
  align-items: end;
}

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

.service-card,
.location-card,
.owner-cta {
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: rgba(8, 9, 9, 0.52);
}

.service-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card a {
  margin-top: auto;
  color: var(--amber);
  font-weight: 800;
}

.fleet-section {
  padding-bottom: 58px;
}

.fleet-board {
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(18, 19, 21, 0.9);
}

.fleet-row {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr 0.45fr;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--steel);
}

.fleet-row:last-child {
  border-bottom: 0;
}

.fleet-row--head {
  min-height: 48px;
  background: rgba(243, 181, 27, 0.09);
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.fleet-row span:nth-child(2) {
  color: var(--ash);
}

.fleet-row a {
  color: var(--amber);
  font-weight: 800;
}

.safety-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.safety-media {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 14px;
  align-items: end;
}

.safety-media img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
}

.safety-media img:first-child {
  height: 430px;
}

.safety-media img:last-child {
  height: 300px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ash);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  content: "";
}

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

.location-card {
  min-height: 245px;
  padding: 24px;
}

.location-card--accent {
  border-color: rgba(243, 181, 27, 0.42);
  background: var(--amber-soft);
}

address {
  min-height: 60px;
  margin-bottom: 24px;
  color: var(--ash);
  font-style: normal;
}

.location-card a {
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.careers-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin-block: 44px 80px;
  padding: 28px;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(243, 181, 27, 0.12), rgba(127, 176, 141, 0.08)),
    var(--graphite);
}

.careers-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 38px);
}

.careers-strip p {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  padding-bottom: 34px;
}

.owner-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  margin-bottom: 22px;
}

.owner-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(27px, 3.2vw, 42px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  gap: 32px;
  align-items: start;
  padding: 26px 0 0;
  border-top: 1px solid var(--steel);
}

.footer-grid img {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ash);
  font-weight: 700;
}

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

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

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

  .site-nav.is-open {
    position: fixed;
    inset: 92px 18px auto;
    z-index: 15;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--steel);
    border-radius: var(--radius);
    background: #0b0c0d;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--steel);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero,
  .safety-section,
  .section-heading--split,
  .owner-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero__media,
  .hero__media > img {
    min-height: 0;
    height: 520px;
  }

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

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

  .trust-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--steel);
  }

  .fleet-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fleet-row--head {
    display: none;
  }

  .careers-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .concept-bar {
    justify-content: flex-start;
    font-size: 11px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    max-width: 145px;
  }

  .section {
    padding: 54px 0;
  }

  .section,
  .trust-strip,
  .careers-strip,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .section--surface {
    width: 100%;
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media,
  .hero__media > img {
    height: 470px;
  }

  .dispatch-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .dispatch-panel a {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .trust-strip,
  .service-grid,
  .location-grid,
  .safety-media {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--steel);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .service-card {
    grid-template-rows: 210px 1fr;
  }

  .service-card img {
    height: 210px;
  }

  .safety-media img:first-child,
  .safety-media img:last-child {
    height: 260px;
  }

  .careers-strip,
  .owner-cta,
  .location-card {
    padding: 22px;
  }
}

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