@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: #0b0b0c;
  --graphite: #131416;
  --panel: #191a1e;
  --panel-2: #202126;
  --line: #303138;
  --line-strong: #46464c;
  --text: #f4f1ea;
  --muted: #aaa59c;
  --muted-2: #77736d;
  --red: #e23b2e;
  --red-dark: #b82620;
  --yellow: #ffcc32;
  --yellow-2: #ffb000;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: 1240px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 59, 46, 0.14), transparent 30rem),
    linear-gradient(180deg, #0b0b0c 0%, #111214 45%, #0b0b0c 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 204, 50, 0.86);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--yellow);
  color: #141006;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin: 0 auto;
}

.concept-bar {
  background: #e8e0d1;
  color: #1b1713;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.header-call {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 12px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.header-call:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.header-call {
  color: #141006;
  background: var(--yellow);
  border-color: var(--yellow);
}

.header-call:hover {
  color: #141006;
  background: var(--yellow-2);
  border-color: var(--yellow-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  color: var(--text);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.hero {
  min-height: min(760px, calc(100svh - 112px));
  display: grid;
  align-items: center;
  padding: 72px 0 42px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.kicker,
.label {
  display: block;
  margin: 0 0 10px;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.owner-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(46px, 7.2vw, 86px);
}

.hero-lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.hero-actions,
.owner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 0 18px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

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

.dispatch-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.board-image {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  min-height: 330px;
  box-shadow: var(--shadow);
}

.board-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(11, 11, 12, 0.74));
}

.board-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.board-panel,
.proof-grid > div,
.service-card,
.contact-card,
.badge-panel,
.location-matrix,
.owner-inner {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.board-panel {
  min-height: 132px;
  padding: 20px;
  border-radius: 6px;
}

.board-panel strong,
.proof-grid strong,
.contact-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
}

.board-panel strong {
  font-size: 22px;
}

.board-panel span:last-child,
.contact-card span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.panel-hot {
  background: linear-gradient(145deg, rgba(226, 59, 46, 0.28), rgba(255, 204, 50, 0.08));
  border-color: rgba(255, 204, 50, 0.5);
}

.board-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.proof-rail {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

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

.proof-grid > div {
  min-height: 108px;
  border-radius: 6px;
  padding: 18px;
}

.proof-grid strong {
  font-size: 19px;
}

.section {
  padding: 78px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.section h2,
.owner-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-head p,
.contact-copy p,
.safety p,
.story p,
.owner-cta p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border-radius: 8px;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.service-card > div {
  padding: 22px;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
}

.service-card p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-card a,
.inline-link,
.site-footer a {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-card a:hover,
.inline-link:hover,
.site-footer a:hover {
  color: var(--white);
}

.dispatch-path {
  background:
    linear-gradient(90deg, rgba(226, 59, 46, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: center;
}

.contact-copy h2 {
  margin: 0 0 18px;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card {
  display: block;
  border-radius: 6px;
  padding: 22px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-card:hover {
  border-color: var(--yellow);
  background: rgba(255, 204, 50, 0.06);
  transform: translateX(2px);
}

.contact-card strong {
  font-size: clamp(20px, 3vw, 30px);
  overflow-wrap: anywhere;
}

.safety-grid,
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.safety h2,
.story h2 {
  margin-bottom: 18px;
}

.safety .inline-link {
  display: inline-block;
  margin-top: 22px;
}

.badge-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-radius: 8px;
  padding: 18px;
  background: #f4f1ea;
}

.badge-panel img {
  width: 100%;
  min-height: 92px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #dad3c5;
  border-radius: 4px;
  padding: 12px;
}

.coverage {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.location-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.location-matrix span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  background: var(--panel);
  color: var(--text);
  font-weight: 600;
}

.story-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  min-height: 420px;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.owner-cta {
  padding: 0 0 78px;
}

.owner-inner {
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(226, 59, 46, 0.28), rgba(255, 204, 50, 0.06)),
    var(--panel);
}

.owner-inner > div {
  max-width: 790px;
}

.owner-inner p {
  margin-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: #080809;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.site-footer img {
  width: 210px;
  height: auto;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 680px;
  font-size: 14px;
}

.site-footer a {
  display: block;
  margin-top: 10px;
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

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

  .site-nav.is-open {
    position: fixed;
    inset: 103px 18px auto;
    display: grid;
    gap: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .hero-grid,
  .contact-grid,
  .safety-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .dispatch-board {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
  }

  .concept-bar {
    font-size: 11px;
    line-height: 1.35;
  }

  .brand img,
  .site-footer img {
    width: 178px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 34px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .board-image,
  .board-image img {
    min-height: 250px;
  }

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

  .proof-grid,
  .service-grid,
  .location-matrix,
  .badge-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section h2,
  .owner-cta h2 {
    font-size: 34px;
    line-height: 1.04;
  }

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

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

  .story-image,
  .story-image img {
    min-height: 270px;
  }

  .owner-cta {
    padding-bottom: 56px;
  }
}

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

  .button:hover,
  .contact-card:hover {
    transform: none;
  }
}
