:root {
  --ink: #071829;
  --ink-soft: #233447;
  --paper: #fffaf0;
  --surface: #ffffff;
  --muted: #f1f5f4;
  --line: #d7ded9;
  --gold: #f7b500;
  --green: #2d8a63;
  --red: #b43d2f;
  --steel: #66737f;
  --shadow: 0 20px 45px rgba(7, 24, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-banner {
  background: #cfe7f5;
}

.top-banner img {
  width: 100%;
  min-height: 260px;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
}

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

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--steel);
  font-size: 0.78rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: var(--ink-soft);
}

.site-nav a,
.call-link,
.button,
.dispatch-panel a,
.text-link,
.service-card a,
.service-link,
.request-form input,
.request-form select,
.request-form textarea {
  min-height: 44px;
}

.site-nav a {
  padding: 11px 13px;
  border-radius: 6px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #e8eee9;
}

.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.hero-copy,
.interior-hero {
  padding: clamp(36px, 6vw, 84px) 0;
  background: linear-gradient(180deg, #fffaf0 0%, #f6efe0 100%);
}

.hero-grid,
.interior-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.hero-text {
  max-width: 790px;
}

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

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

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

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.lead,
.interior-hero p,
.section-heading p {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.cta-row-tight {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 6px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(247, 181, 0, 0.2);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button-light {
  background: white;
  color: var(--ink);
}

.hero-checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 800;
}

.hero-checks li {
  position: relative;
  padding-left: 26px;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--green);
}

.dispatch-panel,
.contact-card {
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 26px;
  box-shadow: var(--shadow);
}

.dispatch-panel span,
.contact-card h2 {
  color: var(--gold);
}

.dispatch-panel strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.dispatch-panel p,
.contact-card li {
  color: #dce5ea;
}

.dispatch-panel a {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 900;
}

.section {
  padding: clamp(46px, 7vw, 86px) 0;
  background: var(--surface);
}

#delivery-request {
  scroll-margin-top: 96px;
}

.section-muted {
  background: var(--muted);
}

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

.section-dark p,
.section-dark span {
  color: #dce5ea;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.narrow {
  max-width: 850px;
}

.service-grid,
.service-link-grid,
.region-grid,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.region-grid article,
.service-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(7, 24, 41, 0.06);
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.service-card p,
.region-grid p {
  color: var(--ink-soft);
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.image-feature,
.split,
.service-detail,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.image-feature.reverse img {
  order: 2;
}

.image-feature img,
.interior-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-grid {
  grid-template-columns: 0.75fr 1.5fr 0.75fr;
  align-items: stretch;
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

figcaption {
  min-height: 76px;
  padding: 16px;
  color: #eef5f1;
  font-weight: 800;
}

.ad-image-source {
  min-height: 100vh;
  padding: clamp(38px, 6vw, 82px) 0;
  background: var(--surface);
}

.ad-image-source h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
}

.ad-image-grid {
  display: grid;
  gap: 22px;
}

.ad-image-grid figure {
  border: 1px solid var(--line);
  background: var(--ink);
}

.ad-image-grid img {
  width: 100%;
  aspect-ratio: 7 / 3;
  object-fit: cover;
}

.ad-image-grid figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
}

.ad-image-grid figcaption span {
  color: #dce5ea;
}

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

.lane-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.steps li::before {
  content: counter(steps);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span,
.feature-list,
.contact-card ul {
  color: var(--ink-soft);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.final-cta {
  padding: clamp(34px, 6vw, 62px) 0;
  background: var(--green);
  color: white;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta .eyebrow {
  color: #ffe08a;
}

.site-footer {
  background: #07111d;
  color: white;
  padding: 46px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-grid p,
.footer-grid a,
.footer-brand small {
  color: #dce5ea;
}

.footer-grid h2 {
  color: var(--gold);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 18px;
  text-align: center;
  color: #b9c4cb;
  font-size: 0.88rem;
}

.service-link {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.service-link span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
}

.service-link strong {
  display: block;
  line-height: 1.25;
}

.service-detail {
  align-items: start;
}

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

.feature-list li {
  border-left: 6px solid var(--gold);
  border-radius: 6px;
  background: #fffaf0;
  padding: 14px 16px;
}

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

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.request-grid-form {
  align-items: start;
}

.contact-card {
  background: white;
  color: var(--ink);
}

.contact-card h2 {
  color: var(--ink);
}

.contact-card p,
.contact-card li {
  color: var(--ink-soft);
}

.contact-card ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.form-head h2 {
  margin-bottom: 8px;
}

.form-head p:last-child,
.form-note {
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.checkbox-group legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #bfcbc4;
  border-radius: 6px;
  background: #fbfdfc;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(247, 181, 0, 0.35);
  border-color: var(--ink);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 16px;
}

.checkbox-group legend {
  padding: 0 8px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-weight: 800;
}

.checkbox-group input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-submit {
  width: min(100%, 260px);
}

.form-note {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.form-alert {
  margin: 0;
  border-left: 6px solid var(--red);
  border-radius: 6px;
  background: #fff4ef;
  color: var(--ink);
  padding: 12px 14px;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.request-aside {
  display: grid;
  gap: 18px;
}

.request-aside img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.request-aside .contact-card {
  box-shadow: var(--shadow);
}

.request-aside .button {
  margin-top: 12px;
}

.mobile-call {
  display: none;
}

@media (max-width: 980px) {
  .header-row {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero-grid,
  .interior-grid,
  .contact-grid,
  .request-grid,
  .image-feature,
  .split,
  .service-detail,
  .process-grid,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-link-grid,
  .region-grid,
  .form-grid,
  .checkbox-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  figure img {
    height: 280px;
  }

  .image-feature.reverse img {
    order: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 1160px);
  }

  .top-banner img {
    min-height: 210px;
    object-position: center top;
  }

  .brand small {
    display: none;
  }

  .call-link {
    display: none;
  }

  .site-nav a {
    padding: 10px 11px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .service-grid,
  .service-link-grid,
  .region-grid,
  .lane-list,
  .form-grid,
  .checkbox-group,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(7, 24, 41, 0.28);
  }

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