@font-face {
  font-family: "Stardos Stencil";
  src: url("/assets/fonts/stardos-stencil-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("/assets/fonts/public-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("/assets/fonts/public-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --navy: #102a43;
  --navy-2: #173f5f;
  --orange: #f36f21;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --ink: #16212b;
  --muted: #52616d;
  --line: #d9d2c5;
  --white: #fff;
  --green: #176b4d;
  --shadow: 0 14px 34px rgba(16, 42, 67, 0.14);
  --radius: 14px;
  --wrap: min(1180px, calc(100% - 40px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Public Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: var(--orange);
  color: var(--navy);
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffb27f;
  outline-offset: 4px;
}
h1,
h2,
h3 {
  font-family: "Stardos Stencil", "Barlow Condensed", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--navy);
  text-wrap: balance;
  margin: 0 0 0.55em;
}
h1 {
  font-size: clamp(3.25rem, 7vw, 5.8rem);
  max-width: 11ch;
}
h2 {
  font-size: clamp(2.45rem, 5vw, 4.2rem);
}
h3 {
  font-size: 1.75rem;
}
p {
  margin: 0 0 1.2em;
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 68ch;
}
.utility {
  background: var(--navy);
  color: #dce8ef;
  font-size: 0.82rem;
}
.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility a {
  color: var(--white);
  font-weight: 700;
}
.site-header {
  position: relative;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--navy);
}
.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
}
.site-nav a[aria-current="page"]:not(.nav-cta) {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy) !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  transition:
    transform 0.2s ease-out,
    background 0.2s ease-out;
}
.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: #ff8541;
}
.button-secondary {
  background: var(--navy);
  color: var(--white) !important;
}
.button-light {
  background: var(--white);
  color: var(--navy) !important;
}
.text-link {
  font-weight: 700;
  color: var(--navy);
  text-decoration-thickness: 2px;
}
.text-link.light {
  color: var(--white);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}
.hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: end;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 31, 49, 0.96) 0%,
      rgba(8, 31, 49, 0.82) 35%,
      rgba(8, 31, 49, 0.18) 68%
    ),
    url("/assets/images/hero-dumpster-driveway.webp") center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 0 120px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.6rem, 7.2vw, 6rem);
}
.hero-copy {
  max-width: 620px;
  font-size: 1.22rem;
  color: #e9f0f4;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.hero-note {
  display: block;
  margin-top: 18px;
  color: #cfdae2;
  font-size: 0.9rem;
}
.availability {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: var(--navy);
  overflow: hidden;
}
.availability::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -24%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .availability::after {
    animation: rail-scan 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.18s 1 both;
  }
}
@keyframes rail-scan {
  to {
    transform: translateX(710%);
  }
}
.availability .wrap {
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  font-weight: 700;
}
.availability span + span {
  border-left: 1px solid rgba(16, 42, 67, 0.28);
}
.section {
  padding: clamp(72px, 9vw, 118px) 0;
}
.section-tight {
  padding: 70px 0;
}
.surface {
  background: var(--cream);
}
.dark {
  background: var(--navy);
  color: #e8eff3;
}
.dark h2,
.dark h3 {
  color: var(--white);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head p {
  color: var(--muted);
}
.field-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  min-height: 100%;
}
.field-card h3 {
  margin-bottom: 12px;
}
.field-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--orange);
}
.field-card p {
  color: var(--muted);
}
.field-card a {
  font-weight: 700;
}
.load-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 2px solid var(--navy);
  background: var(--navy);
  gap: 2px;
}
.load-board article {
  background: var(--white);
  padding: 32px;
}
.load-board article:first-child {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.load-board h3 {
  margin: 12px 0;
}
.load-board p {
  color: var(--muted);
}
.load-board strong,
.load-code {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.load-board strong {
  color: var(--orange);
}
.load-code {
  color: var(--muted);
}
.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.image-frame figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(16, 42, 67, 0.9);
  color: #dfe9ee;
  font-size: 0.78rem;
}
.ribbed {
  background: repeating-linear-gradient(
    90deg,
    var(--navy) 0,
    var(--navy) 54px,
    var(--navy-2) 55px,
    var(--navy-2) 59px
  );
  color: var(--white);
}
.ribbed h2 {
  color: var(--white);
}
.ribbed .section-head p {
  color: #d8e5ed;
}
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.process article {
  padding: 38px;
  background: var(--white);
  position: relative;
}
.process article:nth-child(2) {
  background: var(--orange);
}
.process article + article {
  border-left: 1px solid var(--line);
}
.process h3 {
  margin-top: 0;
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.list-check li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--line);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 12px;
  background: var(--green);
  clip-path: polygon(0 46%, 18% 28%, 40% 50%, 82% 5%, 100% 22%, 41% 82%);
}
.band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.phone-display {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.mini-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.mini-proof span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
}
.faq-list {
  max-width: 880px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  font-size: 1.6rem;
  color: var(--orange);
}
.faq-list details[open] summary::after {
  content: "–";
}
.faq-list details p {
  padding: 0 50px 18px 0;
  color: var(--muted);
}
.page-hero {
  padding: 90px 0 70px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(3.2rem, 6vw, 4.9rem);
  max-width: 17ch;
}
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}
.contact-strip a,
.contact-strip div {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.contact-strip strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 13px;
  border-bottom: 1px solid var(--line);
}
.hours-table th {
  color: var(--navy);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.post-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card-body {
  padding: 28px;
}
.post-card h2 {
  font-size: 2rem;
}
.post-card p {
  color: var(--muted);
}
.post-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 15px;
}
.article-hero {
  padding: 60px 0 0;
  background: var(--cream);
}
.article-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 15ch;
}
.article-hero .lead {
  margin-bottom: 30px;
}
.article-image {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-image img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.article-image figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 10px 0;
}
.article-wrap {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding: 70px 0 100px;
}
.article-wrap h2 {
  font-size: 2.6rem;
  margin-top: 1.4em;
}
.article-wrap h3 {
  font-size: 1.7rem;
  margin-top: 1.5em;
}
.article-wrap a {
  color: #0d5c91;
}
.article-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.95rem;
}
.article-wrap th,
.article-wrap td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
}
.article-wrap th {
  background: var(--navy);
  color: var(--white);
}
.callout {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--cream);
  margin: 30px 0;
}
.source-note {
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.final-cta {
  background: var(--orange);
  padding: 70px 0;
}
.final-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.final-cta h2 {
  font-size: 3.5rem;
}
.final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.site-footer {
  background: #0a2135;
  color: #c9d5dd;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 50px;
}
.site-footer h2 {
  font:
    700 0.86rem/1 "Public Sans",
    sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--white);
}
.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
  color: #c9d5dd;
}
.footer-brand {
  display: flex;
  gap: 15px;
}
.footer-brand p {
  max-width: 300px;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2b455a;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 0.82rem;
}
.footer-base span {
  margin: 0;
}
.mobile-call {
  display: none;
}
@media (max-width: 900px) {
  :root {
    --wrap: min(100% - 32px, 720px);
  }
  .hours {
    display: none;
  }
  .menu-toggle {
    display: block;
    z-index: 25;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.28s ease-out;
  }
  .site-nav.is-open {
    transform: none;
  }
  .site-nav a {
    font-size: 1.35rem;
  }
  .grid-2,
  .band,
  .final-grid {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .load-board {
    grid-template-columns: 1fr;
  }
  .load-board article:first-child {
    grid-row: auto;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .process article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }
  .hero {
    min-height: 720px;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 31, 49, 0.94), rgba(8, 31, 49, 0.62)),
      url("/assets/images/hero-dumpster-driveway.webp") 64% center/cover
        no-repeat;
  }
  .availability .wrap {
    font-size: 0.82rem;
  }
  .contact-strip {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding-bottom: 58px;
  }
  .utility-inner span:first-child {
    display: none;
  }
  .utility-inner {
    justify-content: center;
  }
  .brand strong {
    font-size: 1.25rem;
  }
  .brand small {
    font-size: 0.69rem;
  }
  .brand img {
    width: 44px;
  }
  .hero {
    min-height: 690px;
  }
  .hero-inner {
    padding: 70px 0 150px;
  }
  .hero h1 {
    font-size: 3.55rem;
  }
  .hero-copy {
    font-size: 1.05rem;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .availability .wrap {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 9px 0;
  }
  .availability span {
    padding: 3px;
  }
  .availability span + span {
    border: 0;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 0;
  }
  .field-card {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-base {
    flex-direction: column;
    gap: 8px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 40;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--orange);
    color: var(--navy);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    padding: 15px;
  }
  .article-wrap table {
    display: block;
    overflow-x: auto;
  }
  .article-hero {
    padding-top: 46px;
  }
  .page-hero {
    padding: 60px 0 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
