* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --navy: #082b52;
  --navy-dark: #051d38;
  --blue: #0b4f8a;
  --blue-light: #e8f1f9;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --text: #111827;
  --muted: #334155;
  --border: #64748b;
  --focus: #ffbf00;
  --max-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a {
  color: var(--navy);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-dark);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  border-bottom: 4px solid var(--navy-dark);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  color: var(--white);
  font-weight: 700;
}

.nav-button {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border: 2px solid var(--white);
  border-radius: 5px;
  text-decoration: none;
}

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffffff;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-dark);
}

h3 {
  font-size: 1.4rem;
  color: var(--navy-dark);
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.25rem;
  border: 3px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

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

.button-primary:hover {
  color: var(--white);
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

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

.button-secondary:hover {
  color: var(--navy-dark);
  background: var(--white);
}

.hero-card {
  padding: 2rem;
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-card h2 {
  font-size: 1.65rem;
}

.hero-card ul,
.eligible-card ul {
  margin: 0;
  padding-left: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--off-white);
  border-block: 1px solid var(--border);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card,
.eligible-card,
.contact-card {
  padding: 1.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.service-card p,
.contact-card p {
  margin-bottom: 0;
}

.haul-grid,
.contact-grid,
.callout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 3rem;
  align-items: center;
}

.notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 6px solid var(--navy);
  background: var(--white);
}

.callout {
  padding: 2rem;
  border: 2px solid var(--border);
  border-radius: 8px;
}

.callout .button {
  justify-self: end;
}

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

address {
  font-style: normal;
}

.site-footer {
  padding: 2rem 0;
  background: var(--navy-dark);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-grid,
  .haul-grid,
  .contact-grid,
  .callout {
    grid-template-columns: 1fr;
  }

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

  .callout .button {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .hero,
  .section {
    padding: 3.5rem 0;
  }

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

  .footer-inner {
    flex-direction: column;
  }

  .button-row,
  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
