:root {
  --ink: #111111;
  --muted: #5e625c;
  --paper: #fffdf7;
  --lime: #b7f20a;
  --lime-2: #d8ff52;
  --red: #c80f0f;
  --red-dark: #9d0606;
  --charcoal: #191a17;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--lime);
  color: #000;
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: clamp(180px, 18vw, 260px);
}

.brand img {
  filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.42));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover {
  color: var(--lime);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: "Lilita One", Inter, system-ui, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.22);
}

.button:focus-visible,
.header-cta:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.45);
}

.header-cta,
.button-primary {
  color: #0a0a08;
  background: var(--lime);
  border-color: #0a0a08;
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
  background: var(--lime-2);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.75);
}

.button-wide {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.15);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
}

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

.hero-bg {
  background: url("assets/poobusterz-clean-yard-hero.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.08) 100%),
    radial-gradient(circle at 12% 22%, rgba(183, 242, 10, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 440px);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 106px 0 54px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Lilita One", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.05rem, 6vw, 5.55rem);
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.46);
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.05rem);
}

h3 {
  margin: 0;
  font-family: "Lilita One", Inter, system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
}

.hero-lede {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span,
.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 900;
}

.quote-panel {
  align-self: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quote-panel h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.quote-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
}

select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: white;
  background: #22241f;
  font: inherit;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: white;
  background: #22241f;
  font: inherit;
  font-weight: 800;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.estimate {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 2px dashed rgba(183, 242, 10, 0.6);
  border-radius: var(--radius);
  background: rgba(183, 242, 10, 0.1);
}

.estimate span,
.estimate small {
  color: rgba(255, 255, 255, 0.76);
}

.estimate strong {
  color: var(--lime);
  font-family: "Lilita One", Impact, sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
}

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

#quote,
#services,
#how-it-works,
#service-area,
#faq {
  scroll-margin-top: 92px;
}

.problem-band {
  background: var(--charcoal);
  color: white;
  border-top: 8px solid var(--lime);
}

.problem-grid,
.final-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 7vw, 80px) 0;
}

.problem-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  font-weight: 700;
}

.services,
.steps,
.area,
.faq {
  padding: clamp(56px, 8vw, 92px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 44px);
}

.section-heading .eyebrow,
.area-copy .eyebrow,
.truck-copy .eyebrow,
.journey .eyebrow {
  color: var(--red);
}

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

.service-card,
.step-grid article,
.journey-list article {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.07);
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: #101010;
  background: var(--lime);
  font-family: "Lilita One", Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
}

.service-card p,
.step-grid p,
.journey-list p,
.area-copy p,
.truck-copy p,
.faq p {
  color: var(--muted);
  font-weight: 650;
}

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

.service-card ul {
  margin: 18px 0 0;
  padding-left: 19px;
  font-weight: 800;
}

.truck-section {
  padding: clamp(54px, 8vw, 88px) 0;
  color: white;
  background: var(--charcoal);
}

.truck-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.truck-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.truck-frame {
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mascot-section {
  padding: clamp(56px, 8vw, 92px) 0;
  background: linear-gradient(180deg, #fffdf7 0%, #f3f8ea 100%);
}

.mascot-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.mascot-standing {
  margin: 0;
  padding: clamp(16px, 2.4vw, 28px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(183, 242, 10, 0.5), rgba(237, 21, 21, 0.12)),
    white;
  box-shadow: var(--shadow);
}

.mascot-standing img {
  width: min(100%, 380px);
  margin: 0 auto;
}

.mascot-copy .eyebrow {
  color: var(--red);
}

.mascot-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.step-grid article {
  position: relative;
  overflow: hidden;
}

.step-grid span {
  display: block;
  color: var(--red);
  font-family: "Lilita One", Impact, sans-serif;
  font-size: 2.55rem;
  line-height: 1;
}

.journey {
  padding: clamp(56px, 8vw, 92px) 0;
  background: #eef5e5;
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.journey-list {
  display: grid;
  gap: 18px;
}

.journey-image {
  margin: 24px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.journey-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.area {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  min-height: 42px;
  color: white;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 1000;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  color: white;
  background: var(--charcoal);
}

.final-grid {
  grid-template-columns: 1fr auto;
}

.final-cta h2 {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.page-hero {
  position: relative;
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62)),
    url("assets/poobusterz-clean-yard-hero.png") center right / cover no-repeat;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 82px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 750;
}

.page-section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.page-section.alt {
  background: #eef5e5;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.body-copy {
  color: var(--muted);
  font-weight: 680;
}

.body-copy p {
  margin: 0 0 16px;
}

.body-copy ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.body-copy li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 750;
}

.body-copy li::before,
.check-list li::before {
  content: "OK";
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--red);
  font-family: "Lilita One", Inter, sans-serif;
  font-size: 0.78rem;
}

.detail-grid,
.location-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.detail-card,
.location-card,
.proof-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.07);
}

.detail-card h2,
.location-card h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
}

.detail-card p,
.location-card p,
.proof-card p {
  color: var(--muted);
  font-weight: 680;
}

.brand-callout {
  padding: clamp(30px, 5vw, 48px);
  border-radius: var(--radius);
  color: white;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.brand-callout h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.brand-callout p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

.mini-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.city-list a,
.city-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: white;
  background: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 900;
}

.local-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.local-proof span {
  padding: 16px;
  border-radius: var(--radius);
  color: #101010;
  background: var(--lime);
  font-family: "Lilita One", Inter, sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  color: white;
  background: #080808;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-grid img {
  width: 220px;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.52));
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-grid a {
  color: var(--lime);
  font-weight: 1000;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-inner,
  .problem-grid,
  .truck-grid,
  .mascot-grid,
  .journey-grid,
  .area,
  .split-layout,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    padding-top: 104px;
  }

  .quote-panel {
    align-self: auto;
  }

  .service-grid,
  .step-grid,
  .detail-grid,
  .location-grid,
  .faq-grid,
  .local-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-grid .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    width: 162px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.8vw, 3.55rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3.05rem);
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 92px;
  }

  .hero-lede {
    margin-top: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip {
    display: none;
  }

  .service-grid,
  .step-grid,
  .detail-grid,
  .location-grid,
  .faq-grid,
  .local-proof {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    padding: 118px 0 60px;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .service-card,
  .step-grid article,
  .journey-list article {
    padding: 18px;
  }
}

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