:root {
  --black: #000000;
  --black-2: #161616;
  --yellow: #f7c81e;
  --yellow-dark: #e0b30a;
  --white: #ffffff;
  --gray: #f4f4f1;
  --line: #e2e2dc;
  --text: #1a1a1a;
  --muted: #555550;
  --radius: 10px;
  --heading: "Oswald", "Arial Narrow", Impact, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  padding-bottom: 72px;
}

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

a { color: inherit; }
a[href^="tel:"], a[href^="sms:"] { white-space: nowrap; }

h1, h2, h3 {
  font-family: var(--heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 7vw, 3.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); text-transform: uppercase; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--yellow); color: var(--black); padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 10px; top: 10px; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px;
  font-family: var(--heading); font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; text-decoration: none;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: background-color .15s, color .15s, border-color .15s;
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--black-2); }
.btn-sm { min-height: 40px; padding: 8px 14px; font-size: 0.95rem; }
.btn-lg { min-height: 56px; padding: 14px 26px; font-size: 1.15rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--black); color: var(--white);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 72px; padding: 0 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 52px; height: 52px; }
.brand-name { font-family: var(--heading); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; display: none; }
.main-nav { display: none; gap: 32px; justify-content: center; }
.main-nav a { text-decoration: none; font-weight: 600; }
.main-nav a:hover { color: var(--yellow); }
.header-actions { display: none; gap: 10px; justify-content: flex-end; }

/* Hamburger */
.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 48px; height: 48px; padding: 0 11px;
  background: transparent; border: 2px solid #333; border-radius: 8px; cursor: pointer;
}
.menu-toggle span {
  display: block; height: 3px; width: 100%; background: var(--white); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] { border-color: var(--yellow); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--black); border-bottom: 3px solid var(--yellow);
  padding: 8px 16px 20px; box-shadow: 0 16px 30px rgba(0,0,0,.5);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; margin-bottom: 16px; }
.mobile-menu nav a {
  padding: 14px 4px; text-decoration: none; border-bottom: 1px solid #222;
  font-family: var(--heading); font-size: 1.3rem; text-transform: uppercase; letter-spacing: .03em;
}
.mobile-menu nav a:hover { color: var(--yellow); }
.mobile-menu-contact { display: grid; gap: 10px; }
.backup-link { text-align: center; color: #cfcfcf; padding: 8px; }

/* Hero */
.hero { background: var(--black); color: var(--white); padding: 48px 0 56px; }
.hero-inner { display: flex; align-items: center; gap: 40px; }
.hero-copy { flex: 1; }
.eyebrow {
  display: inline-block; margin-bottom: 14px;
  color: var(--yellow); font-family: var(--heading); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-sub { font-size: 1.2rem; color: #e8e8e8; margin-bottom: 26px; }
.hero-buttons { display: grid; gap: 12px; margin-bottom: 18px; }
.hero-note { color: #cfcfcf; font-size: 0.95rem; margin: 0; }
.hero-note a { color: var(--yellow); }
.hero-note + .hero-note { margin-top: 6px; }
.hero-logo-wrap { display: none; flex-shrink: 0; position: relative; }
.hero-logo-wrap::before {
  content: ""; position: absolute; inset: -60px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,200,30,.14) 0%, rgba(247,200,30,0) 65%);
}
.hero-logo { position: relative; width: 340px; height: 340px; }

/* Info strip */
.info-strip { background: var(--yellow); color: var(--black); }
.info-grid { display: grid; grid-template-columns: 1fr; }
.info-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 16px 10px; text-decoration: none;
}
.info-item + .info-item { border-top: 1px solid rgba(0,0,0,.15); }
.info-item strong { font-family: var(--heading); font-size: 1.2rem; text-transform: uppercase; }
.info-item span { font-size: 0.95rem; }
.stars { color: var(--black); letter-spacing: 2px; font-size: 1.1rem; }

/* Sections */
.section { padding: 64px 0; }
.section-gray { background: var(--gray); }
.section-dark { background: var(--black); color: var(--white); }
.section-sub { color: #cfcfcf; margin-top: -6px; margin-bottom: 28px; }
.section h2 { margin-bottom: 24px; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.steps li { background: var(--gray); border-radius: var(--radius); padding: 24px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-family: var(--heading); font-weight: 700; font-size: 1.2rem; margin-bottom: 10px;
}
.steps p { margin: 0; color: var(--muted); }

/* What we haul */
.services-lead { font-size: 1.15rem; color: var(--muted); margin: -10px 0 28px; max-width: 620px; }
.haul-grid { display: grid; gap: 16px; }
.haul-card {
  background: var(--white); border-radius: 14px; padding: 26px;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.haul-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.haul-card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 6px; }
.haul-card p { color: var(--muted); margin-bottom: 16px; }
.haul-icon {
  width: 56px; height: 56px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
}
.haul-icon svg {
  width: 30px; height: 30px; fill: none; stroke: var(--yellow);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tags li {
  font-size: .9rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  background: var(--gray); border: 1px solid var(--line);
}
.haul-feature { background: var(--yellow); border-color: var(--yellow); }
.haul-feature p { color: #3a3000; }
.haul-feature .tags li { background: rgba(255,255,255,.55); border-color: transparent; }
.haul-dark { background: var(--black); border-color: var(--black); color: var(--white); }
.haul-dark p { color: #cfcfcf; }
.haul-dark .haul-icon { background: var(--yellow); }
.haul-dark .haul-icon svg { stroke: var(--black); }
.haul-dark .tags li { background: #1c1c1c; border-color: #2c2c2c; color: var(--white); }
.haul-cta {
  margin-top: 20px; padding: 20px 24px; border-radius: 14px;
  border: 2px dashed #c9c9c0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.haul-cta p { margin: 0; }

/* Pricing */
.pricing { display: grid; gap: 28px; align-items: center; }
.price-card {
  background: var(--black); color: var(--white); border-radius: var(--radius);
  padding: 32px; text-align: center; border: 3px solid var(--yellow);
}
.price-label { margin: 0; font-family: var(--heading); text-transform: uppercase; letter-spacing: .08em; color: var(--yellow); }
.price { margin: 0; font-family: var(--heading); font-weight: 700; font-size: 4.5rem; line-height: 1.1; }
.checklist { padding-left: 0; list-style: none; margin: 0 0 1.2em; }
.checklist li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 14px; height: 14px; background: var(--yellow); border-radius: 3px;
}

/* Reviews */
#reviews h2, #reviews .section-sub { text-align: center; }
.carousel { max-width: 820px; margin: 0 auto 36px; }
.carousel-track { display: grid; gap: 16px; }
.review {
  margin: 0; background: var(--black-2); border-radius: 14px; padding: 28px 24px;
  border-top: 3px solid var(--yellow);
  display: flex; flex-direction: column; justify-content: center;
}
.review .stars { color: var(--yellow); font-size: 1.3rem; }
.review blockquote { margin: 12px 0 16px; color: #ececec; font-size: 1.05rem; line-height: 1.6; }
.review figcaption { font-family: var(--heading); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; color: var(--yellow); }
.carousel-controls { display: none; }

/* Once the script runs, stack the reviews and show one at a time */
.carousel.is-ready .carousel-track { gap: 0; }
.carousel.is-ready .review {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden; transform: translateX(16px);
  transition: opacity .35s, transform .35s, visibility .35s;
}
.carousel.is-ready .review.is-active { opacity: 1; visibility: visible; transform: none; }
.carousel.is-ready .carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 18px;
}
.carousel-btn {
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: transparent; color: var(--white); border: 2px solid var(--white);
  font-size: 1.4rem; line-height: 1;
  transition: background-color .15s, color .15s, border-color .15s;
}
.carousel-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.carousel-count { font-family: var(--heading); font-size: 1.3rem; min-width: 64px; text-align: center; letter-spacing: .05em; }

/* About */
.about { max-width: 800px; margin: 0 auto; text-align: center; }
.about p { font-size: 1.1rem; color: #333; }
.about .about-lead { font-size: 1.3rem; color: var(--text); font-weight: 500; }
.eyebrow-dark { color: #9a7a00; }
.perks { list-style: none; padding: 0; margin: 36px 0 0; display: grid; gap: 14px; }
.perks li {
  background: var(--black); color: var(--white); border-radius: 14px; padding: 22px;
  border-bottom: 4px solid var(--yellow); text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.perks strong { font-family: var(--heading); font-size: 1.25rem; text-transform: uppercase; color: var(--yellow); letter-spacing: .03em; }
.perks span { color: #d8d8d8; font-size: .98rem; }

/* FAQ */
.faq { max-width: 860px; }
.faq h2 { text-align: center; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 2px solid var(--line); border-radius: 12px; background: var(--white); }
.faq-list details[open] { border-color: var(--yellow); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 20px; position: relative;
  font-weight: 700; font-size: 1.08rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700;
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

/* Area and restrictions */
.two-col { display: grid; gap: 40px; }
.county-list, .no-list { list-style: none; padding: 0; margin: 0 0 1em; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.county-list li::before { content: "\2713  "; color: var(--black); font-weight: 700; }
.no-list li::before { content: "\2715  "; color: #b3261e; font-weight: 700; }
.recycle-title { margin-top: 24px; }

/* Quote form */
.quote { display: grid; gap: 24px; max-width: 760px; }
.quote-form { background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,.06); border-radius: var(--radius); padding: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; }
.optional { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  padding: 12px 14px; border: 2px solid var(--line); border-radius: 8px; background: var(--white);
}
.field input[type="file"] { padding: 10px; }
.field input:focus, .field textarea:focus { border-color: var(--black); outline: none; box-shadow: 0 0 0 3px var(--yellow); }
.field-row { display: grid; gap: 0 16px; }
.hidden-field { position: absolute; left: -9999px; }

/* Footer */
.site-footer { background: var(--black); color: #d8d8d8; padding: 48px 0 24px; border-top: 3px solid var(--yellow); }
.footer-grid { display: grid; gap: 24px; }
.site-footer h3 { color: var(--yellow); text-transform: uppercase; }
.site-footer a { color: var(--white); }
.copyright { margin-top: 24px; font-size: .9rem; color: #9a9a9a; }

/* Mobile contact bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 12px; background: var(--black); border-top: 3px solid var(--yellow);
}
.mobile-bar .btn { width: 100%; }

/* Simple pages */
.simple-page { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.simple-page .container { max-width: 640px; }

/* Tablet and up */
@media (min-width: 720px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .info-item + .info-item { border-top: 0; border-left: 1px solid rgba(0,0,0,.15); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .haul-grid { grid-template-columns: repeat(2, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .review { padding: 40px 48px; }
  .review blockquote { font-size: 1.3rem; }
  .header-inner { padding: 0 24px; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .hero-buttons { display: flex; flex-wrap: wrap; }
  .pricing { grid-template-columns: 280px 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 120px 1fr 1fr; }
  .brand-name { display: inline; }
}

/* Desktop */
@media (min-width: 1000px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; padding: 0 32px; }
  .main-nav, .header-actions { display: flex; }
  .menu-toggle, .mobile-menu { display: none; }
  .hero { padding: 72px 0 80px; }
  .hero-logo-wrap { display: block; }
  .haul-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .haul-feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; padding: 36px; }
  .haul-feature h3 { font-size: 2rem; }
  .haul-feature .haul-icon { width: 72px; height: 72px; }
  .haul-feature .haul-icon svg { width: 40px; height: 40px; }
  .haul-dark { grid-column: span 2; }
  .perks { grid-template-columns: repeat(4, 1fr); }
}
