/* Mighty Dump and Demolition — Clean Local Pro
   Palette: cream ground, teal primary, purple micro accent, gold stars */

:root {
  --cream: #faf6ec;
  --cream-2: #f2ecdb;
  --paper: #fffdf6;
  --ink: #1c2b2d;
  --ink-soft: #4d5c5e;
  --teal: #176b6d;
  --teal-dark: #0e5153;
  --teal-soft: #e2efee;
  --purple: #4b3a8a;
  --gold: #e9a21b;
  --line: #e2dbc8;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(28, 43, 45, .10);
  --font-display: "Bricolage Grotesque", "Avenir Next Condensed", sans-serif;
  --font-body: "Instrument Sans", "Avenir Next", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; display: block; }
a { color: var(--teal); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(23,107,109,.35); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal-soft); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 236, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; line-height: 1.05; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--purple); }
.nav-phone { white-space: nowrap; }
.nav-phone .btn { padding: 11px 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(23,107,109,.10), transparent 60%),
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(23,107,109,.028) 38px 76px),
    var(--cream);
  padding: 64px 0 72px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: center; }
.hero h1 .loc { color: var(--teal); }
.hero-sub { font-size: 1.16rem; color: var(--ink-soft); max-width: 34em; margin: 18px 0 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 2px; }
.hero-photo { position: relative; }
.hero-photo img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  border: 6px solid var(--paper);
}
.hero-badge {
  position: absolute; left: -14px; bottom: 22px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow);
  padding: 10px 16px; font-weight: 700; font-size: .9rem;
  transform: rotate(-2deg);
}
.hero-badge span { color: var(--purple); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head p { color: var(--ink-soft); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem;
  color: var(--teal-soft); -webkit-text-stroke: 1.5px var(--teal);
  line-height: 1; margin-bottom: 10px;
}
.step p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* Quote form */
.quote { background: linear-gradient(180deg, var(--teal-dark), var(--teal)); color: #fff; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.quote h2 { color: #fff; }
.quote-side p { color: #d7e8e7; }
.quote-alt { margin-top: 22px; padding: 18px 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); }
.quote-alt strong { display: block; margin-bottom: 4px; }
.quote-alt a { color: #fff; font-weight: 700; }
.form-card { background: var(--paper); color: var(--ink); border-radius: 18px; box-shadow: var(--shadow); padding: 30px 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.field .hint { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; font-size: .85rem; color: var(--ink-soft); margin: 12px 0 0; }
.form-status { display: none; text-align: center; padding: 14px; border-radius: 10px; margin-top: 14px; font-weight: 600; }
.form-status.ok { display: block; background: var(--teal-soft); color: var(--teal-dark); }
.form-status.err { display: block; background: #fbeaea; color: #8c2f2f; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon { font-size: 1.7rem; margin-bottom: 12px; }
.card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* Why us */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-item { border-top: 3px solid var(--teal); background: var(--paper); border-radius: 0 0 var(--radius) var(--radius); padding: 18px 18px 20px; }
.why-item h3 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.pricing-line {
  margin-top: 34px; text-align: center; font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem;
  background: var(--paper); border: 2px dashed var(--teal); border-radius: var(--radius);
  padding: 20px 24px;
}
.pricing-line span { color: var(--teal); }

/* Before / after */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; aspect-ratio: 1; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after-img { clip-path: inset(0 0 0 50%); }
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0; z-index: 3;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: #fff; z-index: 2; pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,.4);
}
.ba-handle::after {
  content: "◀ ▶"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; color: var(--ink); font-size: .6rem; font-weight: 700;
  padding: 7px 9px; border-radius: 99px; white-space: nowrap;
}
.ba-tag { position: absolute; top: 10px; z-index: 2; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(28,43,45,.72); padding: 4px 10px; border-radius: 99px; pointer-events: none; }
.ba-tag.before { left: 10px; }
.ba-tag.after { right: 10px; }
.ba-caption { margin-top: 10px; font-weight: 600; font-size: .95rem; text-align: center; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review blockquote { margin: 0; font-size: .96rem; color: var(--ink); }
.review footer { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }

/* Owners */
.owners { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.owner-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.owner-photos figure { margin: 0; }
.owner-photos img { border-radius: var(--radius); border: 5px solid var(--paper); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.owner-photos figure:first-child img { transform: rotate(-1.5deg); }
.owner-photos figure:last-child img { transform: rotate(1.5deg); }
.owner-photos figcaption { text-align: center; font-weight: 700; margin-top: 10px; font-family: var(--font-display); }
.owners-copy p { color: var(--ink-soft); }

/* Areas */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 18px; list-style: none; }
.area-list li { background: var(--paper); border: 1px solid var(--line); border-radius: 99px; padding: 7px 16px; font-weight: 600; font-size: .92rem; }
.area-list li.county { background: var(--teal-soft); border-color: transparent; color: var(--teal-dark); }
.map-frame { border: 0; width: 100%; height: 340px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* FAQ */
.faq { max-width: 780px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; margin-bottom: 12px; }
.faq summary { font-weight: 700; padding: 14px 0; cursor: pointer; font-size: 1.02rem; }
.faq details[open] summary { color: var(--teal); }
.faq details p { margin: 0 0 16px; color: var(--ink-soft); }

/* Final CTA */
.final { text-align: center; background: var(--cream-2); }
.final .btn { margin: 6px; }
.final-phone { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; margin: 14px 0 4px; }
.final-phone a { text-decoration: none; color: var(--teal-dark); }

/* Footer */
footer.site { background: var(--ink); color: #c8d2d1; padding: 44px 0 110px; font-size: .92rem; }
footer.site .wrap { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
footer.site h3 { color: #fff; font-size: .95rem; }
footer.site a { color: #9fc6c5; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 6px; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.foot-brand img { width: 44px; height: 44px; }

/* Sticky mobile bar */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none;
  background: var(--paper); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(28,43,45,.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-bar a {
  flex: 1; text-align: center; text-decoration: none;
  font-weight: 700; font-size: .92rem;
  padding: 12px 6px; border-radius: 10px;
}
.sticky-call { background: var(--teal); color: #fff; }
.sticky-text { background: var(--purple); color: #fff; }
.sticky-quote { background: var(--teal-soft); color: var(--teal-dark); }

/* Reveal animation (only when JS is present to un-hide) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .quote-grid, .owners, .areas-grid { grid-template-columns: 1fr; }
  .steps, .cards, .ba-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: 1fr 1fr; }
  footer.site .wrap { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 0 56px; }
  .hero-photo { max-width: 420px; }
}
@media (max-width: 620px) {
  section { padding: 52px 0; }
  .steps, .cards, .ba-grid, .reviews-grid, .why, .form-row, footer.site .wrap, .owner-photos { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  .nav-phone .btn span.label { display: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
