/* DumpStars LP. Brand: black + red #E03832 + white, bold italic, speed stripes. */
:root {
  --red: #e03832;
  --black: #0b0b0d;
  --dark: #16161a;
  --white: #ffffff;
  --off: #f4f4f5;
  --gray: #a1a1aa;
  --maxw: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, .display {
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: 0.75rem; }

.stripes {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 22px,
    var(--white) 22px 30px,
    transparent 30px 44px
  );
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* header */
header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1.25rem 0.125rem; max-width: var(--maxw); margin: 0 auto;
}
header.site img { width: 168px; height: auto; }
/* /hamilton has no phone link in the header, so the lone logo is centred. */
header.site.compact { justify-content: center; }
.header-call {
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  background: var(--red); padding: 0.55rem 1rem; border-radius: 6px;
  white-space: nowrap;
}
.header-call:hover { filter: brightness(1.1); }

/* hero */
.hero { position: relative; overflow: hidden; background: var(--dark); }
.hero-media { position: absolute; inset: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 45%; opacity: 0.38; }
/* Roll-off is the product shot, so let it read. Scrim keeps the copy legible. Both pages. */
.hero.rolloff .hero-media img { object-position: 50% 50%; opacity: 0.82; }
.hero.rolloff .hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,11,13,0.88) 0%, rgba(11,11,13,0.55) 30%, rgba(11,11,13,0.05) 58%);
}
.hero-inner { position: relative; padding: 3.5rem 1.25rem 3rem; max-width: var(--maxw); margin: 0 auto; }
.hero .kicker {
  color: var(--red); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.85rem; margin-bottom: 0.6rem;
}
.hero p.sub { font-size: clamp(1rem, 2.6vw, 1.25rem); color: var(--off); margin: 1rem 0 1.75rem; max-width: 34rem; }
.cta-stack { display: flex; flex-direction: column; gap: 0.75rem; max-width: 26rem; }
.btn-call {
  background: var(--red); color: var(--white); text-decoration: none; text-align: center;
  font-weight: 900; font-size: clamp(1.1rem, 1.7vw, 1.35rem); padding: 1rem 1.5rem; border-radius: 8px;
  box-shadow: 0 6px 24px rgba(224, 56, 50, 0.35); white-space: nowrap;
}
.btn-call small { white-space: normal; }
.btn-call small { display: block; font-weight: 600; font-size: 0.8rem; opacity: 0.9; }
.btn-book {
  background: transparent; color: var(--white); text-decoration: none; text-align: center;
  font-weight: 700; font-size: 1rem; padding: 0.8rem 1.5rem; border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-book:hover { border-color: var(--white); }
.hero .guarantee { margin-top: 1rem; font-size: 1.05rem; color: var(--off); }
.hero .guarantee strong { color: var(--red); text-transform: uppercase; font-style: italic; }
.hero .proof { margin-top: 0.6rem; color: var(--gray); font-size: 0.9rem; }
.hero .proof strong { color: var(--white); }

/* sections */
section { padding: 3rem 0; }
section.alt { background: var(--dark); }

/* size cards */
.sizes-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
/* two-card rows (weekend, concrete): cap width so a pair does not stretch the full wrap */
.sizes-grid.two-up { grid-template-columns: repeat(auto-fit, minmax(230px, 340px)); }
.card {
  background: var(--dark); border: 1px solid #26262c; border-radius: 10px;
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; position: relative;
}
section.alt .card { background: var(--black); }
.card .badge {
  position: absolute; top: -0.7rem; left: 1rem; background: var(--red);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem; border-radius: 4px;
}
.card h3 { font-size: 1.35rem; font-weight: 900; font-style: italic; text-transform: uppercase; }
.card .price { font-size: 1.9rem; font-weight: 900; color: var(--red); }
.card .price small { font-size: 0.85rem; color: var(--gray); font-weight: 600; }
.card ul { list-style: none; color: var(--off); font-size: 0.92rem; }
.card ul li { padding: 0.15rem 0; }
.card ul li::before { content: "\2605"; color: var(--red); margin-right: 0.5rem; font-size: 0.7rem; vertical-align: 1px; }
.card .fit { color: var(--gray); font-size: 0.85rem; }
.card a.btn-book { margin-top: auto; font-size: 0.95rem; padding: 0.65rem 1rem; }
.sizes-note { color: var(--gray); font-size: 0.88rem; margin-top: 1.25rem; }

/* contractors */
/* margin-bottom clears the card .badge, which hangs above the grid's top edge */
.lead { color: var(--off); font-size: 1.05rem; max-width: 36rem; margin-bottom: 1.5rem; }

/* trust */
.stars { color: var(--red); font-size: 1.3rem; letter-spacing: 0.15em; }
blockquote {
  border-left: 4px solid var(--red); padding: 0.5rem 0 0.5rem 1.25rem;
  font-size: 1.15rem; color: var(--off); margin: 1.25rem 0 0.5rem; max-width: 40rem;
}
blockquote footer { color: var(--gray); font-size: 0.9rem; margin-top: 0.5rem; }
.trust-points { display: grid; gap: 0.9rem; margin-top: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.trust-points div { background: var(--black); border: 1px solid #26262c; border-radius: 10px; padding: 1rem 1.25rem; }
.trust-points strong { display: block; margin-bottom: 0.25rem; }
.trust-points p { color: var(--gray); font-size: 0.92rem; }

/* faq */
.faq details {
  border-bottom: 1px solid #26262c; padding: 0.9rem 0;
}
.faq summary { font-weight: 700; cursor: pointer; font-size: 1.02rem; }
.faq p { color: var(--gray); margin-top: 0.5rem; font-size: 0.95rem; max-width: 44rem; }

/* footer */
footer.site {
  background: var(--dark); padding: 2.5rem 0 6.5rem; color: var(--gray); font-size: 0.88rem;
}
footer.site .cities { max-width: 44rem; line-height: 1.8; }
footer.site a { color: var(--off); }
footer.site .legal { margin-top: 1.25rem; }

/* sticky mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--red); text-align: center; text-decoration: none;
  font-weight: 900; font-size: 1.2rem; color: var(--white);
  padding: 0.95rem 1rem calc(0.95rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.45);
}
@media (min-width: 768px) {
  .callbar { display: none; }
  footer.site { padding-bottom: 2.5rem; }
  .cta-stack { flex-direction: row; }
  .btn-call { flex: 1.4; }
  .btn-book { flex: 1; display: flex; align-items: center; justify-content: center; }
}

.tons{width:100%;border-collapse:collapse;margin:1.5rem 0 .5rem;font-size:.95rem}
.tons th,.tons td{padding:.6rem .5rem;text-align:left;border-bottom:1px solid rgba(0,0,0,.12)}
.tons th{font-weight:700;text-transform:uppercase;letter-spacing:.03em;font-size:.8rem}
.tons td:last-child{font-weight:700}
@media (max-width:520px){.tons{font-size:.85rem}.tons th,.tons td{padding:.45rem .3rem}}

@media (max-width: 640px) {
  .hero.rolloff .hero-media img { object-position: 50% 30%; }
}

/* /hamilton split hero: copy on the left, photo on the right at full strength.
   Nothing overlaps the can, so the whole roll-off silhouette reads. */
/* The can is about 3.4:1. Anything squarer crops it, so the photo gets its own
   wide band under the copy instead of sitting behind it. */
@media (min-width: 901px) {
  .hero.split { display: flex; flex-direction: column; }
  .hero.split .hero-inner { order: 1; width: 100%; padding: 3rem 1.25rem 2rem; }
  .hero.split .hero-media { order: 2; }
  .hero.split .hero-media {
    position: relative; inset: auto; width: 100%;
    aspect-ratio: 3.4 / 1; max-height: 360px; overflow: hidden;
  }
  .hero.split .hero-media img { opacity: 1; object-position: 50% 52%; }
  .hero.split .hero-media::after { display: none; }
}
@media (max-width: 900px) {
  .hero.split { display: flex; flex-direction: column; }
  .hero.split .hero-inner { order: 1; width: 100%; }
  .hero.split .hero-media { order: 2; position: relative; inset: auto; height: 210px; }
  .hero.split .hero-media img { opacity: 1; object-position: 50% 50%; }
  .hero.split .hero-media::after { display: none; }
}
