:root {
  --ink: #102326;
  --muted: #526264;
  --green: #0f6b59;
  --blue: #173b63;
  --mint: #dff4ec;
  --paper: #f6fbf8;
  --cream: #fff7e8;
  --line: rgba(16, 35, 38, 0.14);
  --accent: #f2a65a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 35, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 16px 40px;
  background: rgba(246, 251, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
}

.brand img {
  width: 174px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.header-call {
  color: var(--white);
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 44px;
  align-items: stretch;
  padding: 54px 40px 44px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: 28px 0;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 880;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 850;
}

.lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #263b3d;
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 850;
  text-decoration: none;
}

.btn.primary {
  background: var(--accent);
  color: #2d1700;
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-facts div,
.service-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-facts div {
  min-height: 126px;
  padding: 14px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 4px 0 0;
  font-weight: 780;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.hero-media img,
.pickup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 35, 38, 0.86);
}

.media-note span {
  display: block;
  margin-bottom: 4px;
  color: #bfeadc;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.media-note strong {
  font-size: 18px;
  line-height: 1.2;
}

.service-strip {
  padding: 58px 40px 68px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 252px;
  padding: 20px;
}

.service-card.accent {
  background: var(--cream);
  border-color: rgba(242, 166, 90, 0.5);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.service-card p,
.pickup-copy p,
.location-copy p {
  color: var(--muted);
}

.pickup-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  max-width: 1180px;
  margin: 72px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pickup-image {
  min-height: 560px;
  background: var(--blue);
}

.pickup-copy {
  padding: 46px;
}

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

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

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

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

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 0 40px;
}

.location-copy {
  min-height: 390px;
  padding: 42px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}

.location-copy .eyebrow,
.location-copy p {
  color: #d7efe7;
}

.location-copy h2 {
  color: var(--white);
}

.contact-panel {
  padding: 32px;
}

.contact-panel img {
  width: 210px;
  margin-bottom: 30px;
}

.contact-panel dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.contact-panel a {
  color: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 40px;
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
  text-decoration: none;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .pickup-band,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-media,
  .pickup-image {
    min-height: 420px;
  }

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

  .pickup-band {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .brand,
  .brand img {
    width: 138px;
  }

  .header-call {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero,
  .service-strip,
  .location-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 34px;
    gap: 24px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .service-card {
    min-height: auto;
  }

  .media-note {
    position: static;
    width: auto;
    border-radius: 0;
  }

  .pickup-band {
    margin: 44px 16px;
  }

  .pickup-copy,
  .location-copy,
  .contact-panel {
    padding: 24px;
  }

  .steps li {
    grid-template-columns: 36px 1fr;
  }

  .steps li::before {
    width: 36px;
    height: 36px;
  }

  .site-footer {
    display: block;
    padding: 22px 16px;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 8px;
  }
}
