:root {
  --ink: #161616;
  --ink-2: #2a2a2a;
  --yellow: #fdc213;
  --yellow-2: #e9ae00;
  --cream: #f3f0e9;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555049;
  --text-on-dark: #d9d9d9;
  --line-dark: #3a3a3a;
  --display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--yellow); color: var(--ink); padding: 10px 16px; font-weight: 700;
}
.skip:focus { left: 16px; top: 16px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.dark { background: var(--ink); color: var(--white); }
.light { background: var(--white); }
.accent { color: var(--yellow); }
.mono { font-family: var(--mono); }
.muted { color: var(--text-muted); }

/* ---------- Type ---------- */
.display {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  font-stretch: 82%;
}
h1.display { font-size: clamp(3rem, 8.5vw, 6.5rem); margin: 0 0 28px; }
.h2 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin: 0 0 24px; }
.eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.eyebrow.small { font-size: 0.78rem; margin: 36px 0 6px; }
.intro { max-width: 34em; font-size: 1.1rem; margin: 0 0 48px; color: var(--ink-2); }
h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: 1.6rem;
  font-stretch: 88%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 16px 28px;
  font-size: 1rem;
  transition: background-color .15s ease, transform .15s ease;
}
.btn:hover { background: var(--yellow-2); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible, a:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.btn-sm { padding: 12px 22px; font-size: 0.95rem; }
.btn-lg { padding: 20px 32px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; padding: 22px; font-size: 1.2rem; }

/* ---------- Hazard stripes ---------- */
.hazard {
  display: block;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 22px, var(--ink) 22px 44px);
}
.hazard-edge { height: 16px; }
.hazard-tab { position: absolute; right: -14px; top: -14px; width: 130px; height: 16px; z-index: 1; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #242424; }
.header-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 32px; padding-top: 14px; padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; background: var(--yellow); color: var(--ink);
  display: grid; place-items: center; flex: none;
}
.brand-mark svg { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--display); font-weight: 900; font-style: italic;
  font-size: 1.55rem; font-stretch: 92%; letter-spacing: -0.01em; color: var(--white); white-space: nowrap;
}
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; font-size: 1.02rem; }
.nav a:hover { color: var(--yellow); }
.header-cta { display: flex; align-items: center; gap: 24px; }
.phone { text-decoration: none; font-size: 1rem; }
.phone:hover { color: var(--yellow); }

/* ---------- Hero ---------- */
.hero-inner { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(64px, 8vw, 96px); display: grid; gap: 56px; }
.hero .lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text-on-dark); max-width: 30em; margin: 0 0 36px; }
.hero-media { position: relative; margin: 0; }
.hero-media img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }

/* ---------- Strip ---------- */
.strip { background: var(--yellow); color: var(--ink); }
.strip .hazard-edge { background: repeating-linear-gradient(-45deg, var(--ink) 0 22px, var(--yellow) 22px 44px); }
.strip-list {
  display: flex; flex-wrap: wrap; gap: 12px 52px; padding-top: 26px; padding-bottom: 30px;
  font-family: var(--display); font-weight: 800; font-stretch: 90%; text-transform: uppercase; font-size: 1.2rem; letter-spacing: -0.005em;
}

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; }

/* Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}
.card { border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--cream); display: flex; flex-direction: column; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 26px 24px 32px; }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; color: var(--text-muted); font-size: 1rem; line-height: 1.5; }

/* Options */
.options-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
.options-grid li { padding: 36px 28px 40px; border-color: var(--line-dark); border-style: solid; border-width: 0; }
.options-grid li:nth-child(odd) { border-right-width: 1px; }
.options-grid li:nth-child(-n+2) { border-bottom-width: 1px; }
.options-grid .mono { font-size: 0.9rem; display: block; margin-bottom: 14px; }
.options-grid h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 14px; }
.options-grid p { margin: 0; color: var(--text-on-dark); max-width: 26em; }
.options-note { border-top: 1px solid var(--line-dark); margin: 40px 0 0; padding-top: 28px; font-size: 1.15rem; color: var(--text-on-dark); }

/* Quote */
.quote-layout { display: grid; gap: 56px; align-items: start; }
.quote-copy .intro { margin-bottom: 0; max-width: 26em; }
.big-phone {
  font-family: var(--body); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem);
  text-decoration: none; letter-spacing: -0.01em; line-height: 1.2;
}
.big-phone:hover { color: var(--yellow-2); }

.quote-form {
  border: 2px solid var(--ink);
  padding: clamp(24px, 4vw, 40px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 22px;
  background: var(--white);
}
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1.05rem; color: var(--text-dark);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 14px 14px;
  width: 100%;
  min-height: 56px;
  appearance: none; -webkit-appearance: none;
}
.field select {
  border-radius: 8px;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='18' viewBox='0 0 12 18'%3E%3Cpath d='M2 7l4-4 4 4M2 11l4 4 4-4' fill='none' stroke='%23161616' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field textarea { resize: vertical; min-height: 120px; }
.field ::placeholder { color: #a6a29a; font-weight: 600; }
.field .invalid { border-color: #c62828; box-shadow: 0 0 0 1px #c62828; }
.form-status { margin: 14px 0 0; font-weight: 600; min-height: 1.6em; }
.form-status.error { color: #c62828; }
.form-status.ok { color: #1b6e2e; }

/* ---------- Footer ---------- */
.site-footer .wrap { padding-top: 56px; padding-bottom: 56px; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 8px 28px; margin: 36px 0 36px; font-size: 1rem; color: var(--text-on-dark); }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { color: var(--yellow); }
.copyright { margin: 0; color: var(--text-on-dark); font-size: 0.95rem; }

/* ---------- Responsive ---------- */
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .hero-media img { aspect-ratio: 4 / 3.2; }
  .fleet-grid { grid-template-columns: repeat(4, 1fr); }
  .strip-list { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; }
  .options-grid { grid-template-columns: repeat(4, 1fr); }
  .options-grid li { border-width: 0 1px 0 0 !important; }
  .options-grid li:last-child { border-right-width: 0 !important; }
  .quote-layout { grid-template-columns: 0.85fr 1.15fr; gap: 72px; }
}
@media (max-width: 860px) {
  .nav { margin-left: 0; order: 3; width: 100%; gap: 22px; }
  .header-cta { margin-left: auto; }
  .site-header { position: static; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .brand-name { font-size: 1.3rem; }
  .brand-mark { width: 38px; height: 38px; }
  .header-inner { gap: 12px 16px; }
  .header-cta { width: 100%; justify-content: space-between; gap: 12px; }
  .nav { order: 2; gap: 18px; font-size: 0.95rem; }
  .strip-list { font-size: 1.05rem; gap: 10px 28px; }
  .card-body { padding: 20px 16px 24px; }
  h3 { font-size: 1.25rem; }
  .card p { font-size: 0.92rem; }
  .options-grid { grid-template-columns: 1fr; }
  .options-grid li { border-right-width: 0 !important; border-bottom-width: 1px !important; padding: 28px 4px; }
  .options-grid li:last-child { border-bottom-width: 0 !important; }
  .quote-form { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
