:root {
  --blue: #12395d;
  --blue-dark: #071b2f;
  --blue-mid: #1e5d8b;
  --sky: #d8ebf8;
  --cream: #f7f4ea;
  --white: #ffffff;
  --ink: #172029;
  --muted: #61707c;
  --line: #d5dde3;
  --grass: #3f7b31;
  --safety: #f2b544;
  --rust: #a84d2f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 12px clamp(18px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--blue);
  display: flex;
  gap: 12px;
  text-decoration: none;
}

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

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

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-weight: 800;
}

nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  background:
    linear-gradient(105deg, rgba(7, 27, 47, 0.96) 0%, rgba(18, 57, 93, 0.9) 58%, rgba(30, 93, 139, 0.78) 100%),
    var(--blue-dark);
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  min-height: calc(100vh - 79px);
  padding: 74px clamp(22px, 6vw, 92px) 54px;
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  color: var(--safety);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.lead {
  color: #edf6fb;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.58;
  max-width: 760px;
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(23, 32, 41, 0.18);
  border-radius: 6px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--safety);
  border-color: var(--safety);
  color: var(--blue-dark);
}

.button.light {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.proof-row span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #eef7fb;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 9px 12px;
}

.shop-photo-card {
  align-self: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.photo-wrap {
  aspect-ratio: 16 / 9;
  background: var(--blue-dark);
  overflow: hidden;
  position: relative;
}

.photo-wrap > img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.status-card {
  align-items: center;
  background: var(--white);
  color: var(--ink);
  display: grid;
  gap: 16px;
  grid-template-columns: 70px minmax(0, 1fr);
  padding: 18px;
}

.status-card img {
  height: 70px;
  object-fit: contain;
  width: 70px;
}

.status-card span {
  color: var(--blue-mid);
  display: block;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  font-size: 1.28rem;
  margin: 5px 0 6px;
}

.status-hours {
  color: var(--grass);
  display: block;
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 9px;
}

.status-card p,
.section-head p,
.service-grid p,
.seasonal-copy p,
.shop-copy p,
.faq-grid p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-strip article {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 22px clamp(20px, 4vw, 42px);
}

.contact-strip strong {
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-strip a,
.contact-strip span {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.4;
}

.section {
  padding: 78px clamp(22px, 6vw, 92px);
}

.section-head {
  max-width: 830px;
}

.service-grid,
.dropoff-grid,
.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article,
.dropoff-grid article,
.faq-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.service-grid article {
  border-top: 5px solid var(--blue-mid);
  min-height: 210px;
}

.service-grid b {
  color: var(--blue-mid);
  display: block;
  margin-bottom: 24px;
}

.blue-section {
  background: var(--blue);
  color: var(--white);
}

.blue-section .section-head p,
.blue-section .dropoff-grid p {
  color: #dcecf6;
}

.dropoff-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dropoff-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.dropoff-grid span {
  color: var(--safety);
  display: block;
  font-weight: 900;
  margin-bottom: 12px;
}

.seasonal-section,
.shop-section,
.shoppilot-section,
.contact-section {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
}

.seasonal-section {
  background: var(--sky);
}

.season-card,
.shop-list,
.contact-card,
.request-form {
  border-radius: 8px;
}

.season-card {
  background: var(--white);
  border-left: 8px solid var(--safety);
  color: var(--ink);
  padding: 24px;
}

.season-card strong {
  color: var(--blue);
  display: block;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.season-card ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.shop-section {
  background: var(--white);
}

.shop-list {
  background: var(--blue-dark);
  color: var(--white);
  display: grid;
  gap: 10px;
  padding: 22px;
}

.shop-list span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-weight: 850;
  padding: 14px;
}

.shoppilot-section {
  background: #eef5f9;
}

.shoppilot-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.pilot-panel {
  background: var(--blue-dark);
  border-radius: 8px;
  color: var(--white);
  overflow: hidden;
}

.pilot-header {
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 4px;
  padding: 20px;
}

.pilot-header span {
  color: var(--safety);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pilot-header strong {
  font-size: 1.25rem;
}

.pilot-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 20px;
}

.pilot-grid span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  font-weight: 850;
  min-height: 52px;
  padding: 14px;
}

.faq-section {
  background: #eef3f6;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-section {
  background: var(--cream);
}

.contact-card,
.request-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}

.contact-card {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

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

.request-form {
  display: grid;
  gap: 14px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 7px;
}

input,
textarea {
  border: 1px solid #c5d1d9;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 22px clamp(22px, 6vw, 92px);
}

.site-footer a {
  color: #e4eef5;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .service-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dropoff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .seasonal-section,
  .shop-section,
  .shoppilot-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .shop-photo-card {
    max-width: 760px;
    width: 100%;
  }

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

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

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding-top: 44px;
  }

  .photo-wrap {
    aspect-ratio: 4 / 3;
  }

  .photo-wrap > img {
    object-position: 42% center;
  }

  .service-grid,
  .dropoff-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 0;
  }

  .status-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .status-card img {
    height: 56px;
    width: 56px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
