:root {
  --paper: #f8f8f5;
  --white: #ffffff;
  --ink: #151717;
  --muted: #5e6665;
  --line: rgba(21, 23, 23, 0.12);
  --line-strong: rgba(21, 23, 23, 0.22);
  --carbon: #202424;
  --forest: #1f5c4d;
  --blue: #0b6f92;
  --amber: #b5741d;
  --danger: #9f2d2d;
  --shadow: 0 20px 60px rgba(13, 22, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 34px;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 248, 245, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(16, 24, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  color: #303837;
  font-size: 14px;
}

.site-nav a:hover {
  background: rgba(31, 92, 77, 0.09);
}

.nav-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(21, 23, 23, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.nav-call svg,
.button svg,
.direct-contact svg,
.check-list svg,
.proof-grid svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px 34px 56px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-courier-pickup.png");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(248, 248, 245, 0.96) 0%, rgba(248, 248, 245, 0.82) 35%, rgba(248, 248, 245, 0.08) 72%),
    linear-gradient(0deg, rgba(248, 248, 245, 0.46), rgba(248, 248, 245, 0.02));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 28px;
  color: #313938;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(18, 25, 24, 0.18);
}

.button.primary:hover {
  background: #000;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(21, 23, 23, 0.2);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.button.secondary:hover {
  border-color: rgba(21, 23, 23, 0.38);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 820px;
  margin: 42px 0 0;
}

.hero-facts div {
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: #26302f;
  font-weight: 800;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 34px;
}

.intro-copy {
  color: #323b3a;
  font-size: 19px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

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

.service-card,
.proof-grid > div,
.quote-form,
.thanks-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 42px rgba(20, 30, 29, 0.06);
}

.service-card {
  min-height: 286px;
  padding: 28px;
}

.service-card.featured {
  background: var(--carbon);
  color: var(--white);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.icon-pill {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(31, 92, 77, 0.12);
  color: var(--forest);
}

.service-card.featured .icon-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #bdebdc;
}

.icon-pill.large {
  width: 54px;
  height: 54px;
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 54px;
  align-items: center;
}

.capability-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e9ece9;
  box-shadow: var(--shadow);
}

.capability-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.capability-copy p {
  color: #33403d;
  font-size: 18px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 46px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.check-list svg {
  margin-top: 2px;
  color: var(--blue);
}

.proof {
  padding-top: 70px;
}

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

.proof-grid > div {
  min-height: 234px;
  padding: 24px;
}

.proof-grid svg {
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
  color: var(--forest);
}

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

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: 82px 0 40px;
}

.quote-copy {
  align-self: start;
  position: sticky;
  top: 118px;
}

.quote-copy h2 {
  font-size: 48px;
}

.quote-copy p {
  color: #34403e;
  font-size: 18px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.direct-contact a:first-child {
  color: var(--danger);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.bot-field {
  display: none;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-row.two {
  grid-template-columns: repeat(2, 1fr);
}

label,
fieldset {
  min-width: 0;
}

label span,
legend {
  display: block;
  margin-bottom: 8px;
  color: #293331;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 23, 0.16);
  border-radius: 8px;
  background: #fbfbf9;
  color: var(--ink);
  outline: 0;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 136px;
  padding: 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 111, 146, 0.14);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-group legend {
  grid-column: 1 / -1;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f7f4;
  cursor: pointer;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}

.checkbox-group label span {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 20px;
  margin: -6px 0 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  color: var(--danger);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 34px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 800;
}

.thanks-page {
  min-height: 100svh;
  background:
    linear-gradient(0deg, rgba(248, 248, 245, 0.86), rgba(248, 248, 245, 0.86)),
    url("assets/hero-courier-pickup.png") center / cover;
}

.thanks-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px;
}

.thanks-shell .brand {
  position: fixed;
  top: 24px;
  left: 28px;
}

.thanks-panel {
  width: min(680px, 100%);
  padding: 42px;
}

.thanks-panel h1 {
  font-size: 48px;
}

.thanks-panel p {
  color: #35413f;
  font-size: 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 104px 22px 38px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(248, 248, 245, 0.95) 0%, rgba(248, 248, 245, 0.76) 52%, rgba(248, 248, 245, 0.24) 100%),
      linear-gradient(0deg, rgba(248, 248, 245, 0.5), rgba(248, 248, 245, 0.08));
  }

  h1 {
    font-size: 54px;
  }

  h2,
  .quote-copy h2 {
    font-size: 38px;
  }

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

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

  .trust-strip span:nth-child(2) {
    border-right: 0;
  }

  .trust-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section,
  .quote-section {
    width: min(100% - 32px, 760px);
  }

  .intro,
  .capability,
  .quote-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quote-copy {
    position: static;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .nav-call {
    min-height: 38px;
    padding: 0 11px;
  }

  .nav-call span {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding: 92px 18px 30px;
    align-items: end;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(248, 248, 245, 0.98) 0%, rgba(248, 248, 245, 0.9) 48%, rgba(248, 248, 245, 0.2) 100%);
  }

  h1 {
    max-width: 10.5ch;
    font-size: 38px;
    line-height: 1.02;
  }

  h2,
  .quote-copy h2,
  .thanks-panel h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lede {
    max-width: 32ch;
    font-size: 17px;
  }

  .eyebrow {
    max-width: 31ch;
    line-height: 1.25;
  }

  .hero-copy,
  .hero-actions {
    max-width: calc(100vw - 36px);
  }

  .hero-actions {
    display: grid;
    width: calc(100vw - 36px);
  }

  .button {
    width: 100%;
  }

  .button {
    max-width: 100%;
  }

  .hero-facts,
  .trust-strip,
  .service-grid,
  .proof-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 24px;
  }

  .hero-facts div {
    min-height: 78px;
  }

  .trust-strip span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .service-card,
  .proof-grid > div {
    min-height: auto;
  }

  .quote-section {
    margin-bottom: 40px;
    padding-top: 58px;
  }

  .quote-form {
    padding: 18px;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .thanks-shell {
    padding: 18px;
  }

  .thanks-shell .brand {
    position: static;
    justify-self: start;
    margin-bottom: 18px;
  }

  .thanks-panel {
    padding: 24px;
  }
}
