:root {
  --black: #050505;
  --ink: #151515;
  --steel: #2a2a2a;
  --yellow: #f8c600;
  --yellow-dark: #c79c00;
  --white: #ffffff;
  --off: #f4f2ec;
  --line: #ded8c7;
  --muted: #605f58;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --condensed: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off);
  font-family: var(--body);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link,
.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:focus {
  top: 12px;
  left: 12px;
  z-index: 999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--black);
  background: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

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

.brand img {
  width: 158px;
}

.nav-menu {
  position: fixed;
  inset: 74px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(248, 198, 0, 0.34);
}

.nav-open .nav-menu,
.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  padding: 14px 10px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
  color: var(--yellow);
}

.nav-phone {
  color: var(--black) !important;
  background: var(--yellow);
  border-bottom: 0 !important;
  text-align: center;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 2px solid var(--yellow);
  background: transparent;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 3px;
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.hero-media {
  background: url("../img/bin-bros-hero.jpg") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.86) 36%, rgba(5, 5, 5, 0.34) 74%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.1) 46%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  padding: 64px 0 42px;
}

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

.eyebrow.dark {
  color: var(--yellow-dark);
}

.eyebrow.yellow {
  color: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 8vw, 4.3rem);
}

h2 {
  font-size: clamp(2.1rem, 7vw, 4rem);
}

h3 {
  font-size: 1.75rem;
}

.hero-subhead {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

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

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  color: var(--black);
  background: var(--yellow);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn.full {
  width: 100%;
}

.hero-packages {
  display: grid;
  gap: 14px;
}

.hero-card,
.package-card,
.contact-card,
.cart-panel {
  border-radius: var(--radius);
}

.hero-card {
  padding: 20px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid transparent;
  box-shadow: var(--shadow);
}

.hero-card.featured {
  border-color: var(--yellow);
}

.hero-card p,
.hero-card span {
  display: block;
  margin: 0;
  font-weight: 800;
  color: var(--steel);
}

.hero-card h2 {
  margin: 6px 0 8px;
  font-size: 3rem;
}

.hero-card .btn {
  width: 100%;
  margin-top: 16px;
}

.section {
  padding: 64px 0;
}

.intro-band {
  color: var(--white);
  background: var(--black);
  border-top: 8px solid var(--yellow);
}

.split,
.service-grid,
.faq-preview,
.contact-grid,
.order-layout {
  display: grid;
  gap: 28px;
}

.split p,
.service-grid p,
.faq-preview p,
.page-hero p {
  font-size: 1.05rem;
}

.section-heading {
  margin-bottom: 26px;
}

.row-heading {
  justify-content: space-between;
}

.benefit-grid,
.package-grid,
.addon-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid article {
  padding: 24px;
  background: var(--white);
  border-left: 8px solid var(--yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.benefit-grid h3 {
  margin-top: 12px;
}

.benefit-grid p,
.package-card p,
.timeline p,
.cart-note,
.muted {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
  border-radius: 50%;
}

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

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

.steps li,
.timeline article {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.steps span,
.timeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
  border-radius: 50%;
}

.steps strong {
  display: block;
  font-family: var(--condensed);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.steps p {
  color: rgba(255, 255, 255, 0.76);
}

.package-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 3px solid transparent;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.package-card.highlighted,
.package-card.is-selected {
  border-color: var(--yellow);
}

.package-count {
  display: block;
  color: var(--yellow-dark);
  font-family: var(--condensed);
  font-size: 5rem;
  line-height: 0.82;
}

.package-card .btn {
  width: 100%;
  margin-top: 16px;
}

.service-area {
  background:
    linear-gradient(135deg, rgba(248, 198, 0, 0.16), rgba(248, 198, 0, 0)),
    var(--white);
}

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

.area-list li {
  padding: 14px 16px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
}

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

summary {
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

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

.final-cta,
.page-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(248, 198, 0, 0.22), rgba(248, 198, 0, 0) 46%),
    var(--black);
}

.final-cta {
  padding: 56px 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 840px;
  margin: 0 auto 22px;
}

.page-hero {
  padding: 74px 0 64px;
  border-bottom: 8px solid var(--yellow);
}

.page-hero.short {
  padding-bottom: 52px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.order-layout {
  align-items: start;
}

.order-card label,
.contact-form label {
  display: block;
  margin: 18px 0 8px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.quantity,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
}

.quantity:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(248, 198, 0, 0.42);
  border-color: var(--yellow-dark);
}

.best-for {
  font-weight: 900;
}

.addons {
  margin-top: 34px;
}

.addon {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.addon input {
  width: 20px;
  height: 20px;
  accent-color: var(--yellow);
}

.addon strong,
.addon small {
  display: block;
}

.addon small {
  color: var(--muted);
}

.cart-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.cart-panel h2 {
  margin-bottom: 16px;
  font-size: 2.4rem;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cart-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cart-note,
.muted {
  font-size: 0.92rem;
}

.cart-note {
  color: rgba(255, 255, 255, 0.65);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.callout-list p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card,
.contact-form {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--yellow-dark);
  font-weight: 900;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1.6rem;
}

.site-footer a {
  color: var(--white);
  text-decoration-color: var(--yellow);
}

@media (min-width: 680px) {
  .benefit-grid,
  .package-grid.compact,
  .addon-grid,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-packages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-menu a {
    padding: 8px 0;
    border: 0;
    font-size: 0.88rem;
  }

  .nav-phone {
    padding: 10px 14px !important;
    border-radius: var(--radius);
  }

  .brand img {
    width: 188px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-grid {
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-packages {
    align-self: center;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 12px 18px;
  }

  .hero-card h2 {
    margin: 4px 0 6px;
    font-size: 2.2rem;
  }

  .hero-card .btn {
    min-height: 40px;
    margin-top: 10px;
    padding: 10px 14px;
  }

  .split,
  .service-grid,
  .faq-preview {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

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

  .package-grid.compact,
  .package-grid.order {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.8fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 50px;
  }

  .btn {
    width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.78));
  }

  .section {
    padding: 48px 0;
  }
}
