/* Mission Ready Supply Transport — Version 2 */
:root {
  --green: #26351f;
  --deep: #0e160f;
  --olive: #4b5f3a;
  --tan: #c6a94f;
  --cream: #f3eee3;
  --white: #ffffff;
  --ink: #171a15;
  --muted: #666b61;
  --border: rgba(23, 26, 21, 0.14);
  --shadow: 0 24px 60px rgba(8, 13, 8, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 17, 11, 0.98);
  border-bottom: 1px solid rgba(198, 169, 79, 0.48);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo {
  display: block;
  width: 245px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}
#navlinks {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 21px;
}
#navlinks a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
}
#navlinks a:not(.nav-call):hover { color: var(--tan); }
.nav-call {
  padding: 12px 16px;
  color: var(--deep) !important;
  background: var(--tan);
  border-radius: 4px;
}
.menu {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(198, 169, 79, 0.65);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}
.menu span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--tan);
}

/* Typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--tan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--olive); }
h1, h2, h3 {
  margin-top: 0;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: -0.025em;
}
h1 span {
  display: block;
  margin-top: 14px;
  color: var(--tan);
  font-size: .48em;
  line-height: 1.05;
}
.section-title {
  margin-bottom: 0;
  font-size: clamp(38px, 4.8vw, 66px);
  letter-spacing: -0.02em;
}
.lead {
  max-width: 660px;
  margin: 0 0 25px;
  color: rgba(255,255,255,.84);
  font-size: 17px;
}
.copy { color: var(--muted); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(75,95,58,.8), transparent 34%),
    linear-gradient(120deg, #070c08 0%, var(--deep) 60%, #26351f 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 560px;
  height: 560px;
  border: 2px solid rgba(198,169,79,.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(198,169,79,.035),
    0 0 0 84px rgba(198,169,79,.025);
}
.hero-camo {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    radial-gradient(ellipse at 15% 35%, #596b42 0 7%, transparent 8%),
    radial-gradient(ellipse at 36% 70%, #596b42 0 6%, transparent 7%),
    radial-gradient(ellipse at 70% 25%, #39482c 0 8%, transparent 9%),
    radial-gradient(ellipse at 88% 74%, #596b42 0 6%, transparent 7%);
  background-size: 310px 230px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr);
  gap: 70px;
  align-items: center;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 3px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}
.btn.primary { color: var(--deep); background: var(--tan); }
.btn.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.48); background: transparent; }
.btn:hover { transform: translateY(-1px); }
.full-width { width: 100%; }
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.trust span::before { content: "★"; margin-right: 7px; color: var(--tan); }
.dispatch-card {
  position: relative;
  padding: 38px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff, var(--cream));
  border-top: 5px solid var(--tan);
  box-shadow: var(--shadow);
}
.dispatch-emblem {
  position: absolute;
  top: -28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--deep);
  background: var(--tan);
  border: 6px solid var(--deep);
  transform: rotate(45deg);
}
.dispatch-emblem::first-letter { transform: rotate(-45deg); }
.dispatch-card h2 { font-size: clamp(31px, 3vw, 46px); }
.dispatch-card ul { margin: 24px 0; padding: 0; list-style: none; }
.dispatch-card li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.dispatch-card li::before { content: "→"; margin-right: 8px; color: var(--olive); font-weight: 800; }
.dispatch-card a { color: var(--green); font-weight: 800; text-decoration: none; }

.mission-strip {
  color: var(--white);
  background: #090f0a;
  border-top: 1px solid rgba(198,169,79,.5);
  border-bottom: 1px solid rgba(198,169,79,.5);
}
.strip-grid {
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
  font-family: Oswald, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.strip-grid span:not(:last-child) { border-right: 1px solid rgba(198,169,79,.35); }

/* Sections */
.section { padding: 88px 0; }
.heading-row {
  display: grid;
  grid-template-columns: 1.5fr .85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.heading-row > p { margin: 0; color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.services-section { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards article {
  padding: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(23,26,21,.11);
  border-top: 4px solid var(--tan);
  box-shadow: 0 16px 34px rgba(12,18,11,.08);
}
.service-icon { color: var(--olive); font-size: 42px; font-weight: 800; }
.cards h3 { margin: 34px 0 14px; font-size: 25px; }
.cards p { color: var(--muted); }

.dark-section { color: var(--white); background: var(--deep); }
.dark-section .heading-row > p { color: rgba(255,255,255,.7); }
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.12);
}
.benefits > div { padding: 28px; border-right: 1px solid rgba(255,255,255,.12); }
.benefits > div:last-child { border-right: 0; }
.benefits strong { color: var(--tan); text-transform: uppercase; }
.benefits p { margin-bottom: 0; color: rgba(255,255,255,.7); font-size: 13px; }
.compliance-note { margin-top: 22px; color: rgba(255,255,255,.55); font-size: 12px; }

.area { background: #e7ddc7; }
.cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cities span {
  padding: 22px 12px;
  text-align: center;
  font-weight: 700;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(23,26,21,.08);
}

/* Scheduling */
.schedule-section { background: var(--cream); }
.schedule-section h2 { margin-bottom: 10px; font-size: clamp(36px, 4vw, 56px); }
.calendar-shell {
  overflow: hidden;
  margin-top: 28px;
  background: var(--white);
  border: 2px solid rgba(198,169,79,.72);
  border-radius: 8px;
  box-shadow: 0 15px 38px rgba(10,15,9,.12);
}
.calendar-shell iframe { display: block; }

/* Quote */
.quote-section { background: var(--white); }
.quote-grid { display: grid; grid-template-columns: .75fr 1.2fr; gap: 80px; align-items: start; }
.contact { display: grid; gap: 9px; margin-top: 28px; font-size: 14px; font-weight: 700; }
.contact a { overflow-wrap: anywhere; text-decoration: none; }
form { padding: 35px; background: var(--cream); border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23,26,21,.16);
  border-radius: 2px;
  text-transform: none;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(75,95,58,.35);
  border-color: var(--olive);
}
textarea { resize: vertical; }
.status { min-height: 1.5em; margin-bottom: 0; color: var(--olive); font-size: 13px; }

/* Footer */
footer { padding: 54px 0 24px; color: rgba(255,255,255,.76); background: #080e09; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 44px; }
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-grid strong { color: var(--tan); text-transform: uppercase; }
.footer-grid a { overflow-wrap: anywhere; text-decoration: none; }
.footer-brand p { max-width: 330px; }
.footer-image { width: 240px; padding: 5px; background: #fff; border-radius: 5px; }
.copyright {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1050px) {
  #navlinks { gap: 14px; }
  #navlinks a { font-size: 12px; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { min-height: 78px; }
  .site-logo { width: 195px; height: 64px; }
  .menu { display: block; }
  #navlinks {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px 20px 18px;
    background: var(--deep);
    border-bottom: 1px solid rgba(198,169,79,.45);
    box-shadow: 0 20px 30px rgba(0,0,0,.3);
  }
  #navlinks.open { display: flex; }
  #navlinks a { padding: 14px 10px; }
  #navlinks .nav-call { margin-top: 6px; text-align: center; }
  .hero-grid, .two-col, .heading-row, .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 72px 0; }
  .dispatch-card { max-width: 620px; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefits > div:nth-child(2) { border-right: 0; }
  .benefits > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid span { padding: 14px 5px; }
  .strip-grid span:nth-child(2) { border-right: 0; }
  .strip-grid span:nth-child(-n+2) { border-bottom: 1px solid rgba(198,169,79,.35); }
}

@media (max-width: 600px) {
  .site-logo { width: 165px; height: 58px; }
  h1 { font-size: clamp(45px, 15vw, 67px); }
  .section { padding: 64px 0; }
  .cards, .form-row, .cities, .benefits, .footer-grid { grid-template-columns: 1fr; }
  .benefits > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .benefits > div:last-child { border-bottom: 0; }
  .strip-grid { font-size: 12px; }
  .dispatch-card, form { padding: 25px; }
  .calendar-shell iframe { height: 620px; }
}

/* Pickup request */
.pickup-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  align-items: start;
}
.pickup-intro { position: sticky; top: 130px; }
.request-notice {
  margin: 28px 0;
  padding: 22px;
  background: rgba(198,169,79,.16);
  border-left: 5px solid var(--tan);
}
.request-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-family: Oswald, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
.request-notice p { margin: 0; }
.request-steps { display: grid; gap: 14px; }
.request-steps > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}
.request-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}
.request-steps p { margin: 0; color: var(--muted); }
fieldset {
  min-width: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}
legend {
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 9px;
  color: var(--green);
  border-bottom: 1px solid var(--border);
  font-family: Oswald, sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin: 4px 0 20px;
  padding: 15px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}
.consent-label input { width: 18px; height: 18px; margin-top: 1px; }
.form-help { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

@media (max-width: 900px) {
  .pickup-grid { grid-template-columns: 1fr; gap: 40px; }
  .pickup-intro { position: static; }
}
