/* ===== Troy's Junk Removal ===== */
:root {
  --green: #6fae2f;
  --green-dark: #4d7d1f;
  --green-soft: #eef6e3;
  --charcoal: #23282a;
  --charcoal-2: #2f3639;
  --ink: #1b1f21;
  --muted: #5c6b6a;
  --paper: #f6f8f4;
  --white: #ffffff;
  --line: #e4e9e0;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(35, 40, 42, 0.10);
  --shadow-sm: 0 6px 18px rgba(35, 40, 42, 0.08);
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand__text { font-family: 'Space Grotesk', 'Manrope', sans-serif; letter-spacing: -0.02em; line-height: 1.05; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.eyebrow--light { color: #b6e08a; }
.accent { color: var(--green); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 12px 20px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn i { font-size: 1.1em; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn--phone { background: var(--charcoal); color: #fff; }
.btn--phone:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 248, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: var(--charcoal); color: #fff; font-size: 1.2rem; overflow: hidden;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__text { font-weight: 500; }
.brand__text strong { color: var(--green-dark); font-weight: 700; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-weight: 600; font-size: 0.95rem; color: var(--charcoal-2); transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--green-dark); }
.nav__links a.active { color: var(--green-dark); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--green); border-radius: 2px;
}
.nav__toggle {
  display: none; background: transparent; border: 1.5px solid var(--line); border-radius: 10px;
  width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; color: var(--charcoal); font-size: 1.4rem;
}
.nav__toggle:hover { border-color: var(--green); color: var(--green-dark); }

/* ===== Sub-page header ===== */
.pagehead { background: var(--charcoal); color: #eef1ee; padding: 58px 0 52px; }
.pagehead__inner { max-width: 720px; }
.pagehead .eyebrow { color: #b6e08a; }
.pagehead h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; margin-bottom: 16px; }
.pagehead p { color: #b9c2bf; font-size: 1.12rem; max-width: 40rem; }
.crumbs { font-size: 0.82rem; color: #8b9793; margin-bottom: 20px; letter-spacing: 0.02em; }
.crumbs a:hover { color: #bff08a; }

/* ===== Mini CTA band ===== */
.ctaband { background: var(--green); color: #fff; }
.ctaband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding: 46px 24px; }
.ctaband h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: #fff; max-width: 30rem; }
.ctaband p { color: #eaf5dc; margin-top: 6px; }
.btn--white { background: #fff; color: var(--green-dark); }
.btn--white:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }

/* ===== Hero ===== */
.hero { padding: 64px 0 40px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 700; margin-bottom: 22px; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 30rem; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__chips li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--charcoal-2); }
.hero__chips i { color: var(--green); font-size: 1.15rem; }

.hero__media { position: relative; }
.hero__media img { width: 100%; height: 540px; border-radius: 22px; box-shadow: var(--shadow); object-fit: cover; object-position: center 30%; }
.hero__badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--charcoal); color: #fff; border-radius: 16px;
  padding: 14px 20px; box-shadow: var(--shadow); border: 2px solid var(--green);
  display: flex; flex-direction: column; line-height: 1.15;
}
.hero__badge-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: #bff08a; }
.hero__badge-label { font-size: 0.8rem; color: #cfd6d3; }

/* ===== Trust strip (scrolling marquee) ===== */
.strip { background: var(--charcoal); color: #eef1ee; overflow: hidden; }
.strip__track { display: flex; width: max-content; padding: 16px 0; animation: strip-scroll 34s linear infinite; }
.strip:hover .strip__track { animation-play-state: paused; }
.strip__item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; padding: 0 30px; white-space: nowrap; flex-shrink: 0; }
.strip__item i { color: var(--green); font-size: 1.25rem; }
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ===== Before / After slider ===== */
.ba { position: relative; width: 100%; height: 540px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: pan-y; }
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ba__clip { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__line { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,0.12); pointer-events: none; }
.ba__knob { position: absolute; top: 50%; left: var(--pos, 50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--charcoal); display: grid; place-items: center; transform: translate(-50%, -50%); box-shadow: var(--shadow-sm); pointer-events: none; font-size: 1.25rem; border: 2px solid var(--green); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba__tag { position: absolute; bottom: 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(27,31,33,0.72); padding: 5px 12px; border-radius: 999px; pointer-events: none; }
.ba__tag--left { left: 14px; }
.ba__tag--right { right: 14px; }

/* ===== Home quote band ===== */
.homeqf { background: var(--green-soft); }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section--tint { background: var(--green-soft); }
.section--dark { background: var(--charcoal); color: #eef1ee; }
.section__head { max-width: 640px; margin-bottom: 52px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; margin-bottom: 14px; }
.section__sub { color: var(--muted); font-size: 1.08rem; }
.section--dark .section__sub { color: #b9c2bf; }
.section__cta { text-align: center; margin-top: 44px; }

/* ===== Services ===== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc i { font-size: 2.4rem; color: var(--green); display: block; margin-bottom: 16px; }
.svc h3 { font-size: 1.25rem; margin-bottom: 8px; }
.svc p { color: var(--muted); font-size: 0.98rem; }

/* ===== Steps ===== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; }
.step__num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: var(--green); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.3rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ===== Why ===== */
.why__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.why__copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.why__copy .section__sub { margin-bottom: 28px; }
.why__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.why__list li { display: flex; gap: 14px; }
.why__list i { color: var(--green); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.why__list strong { display: block; font-size: 1.02rem; margin-bottom: 2px; }
.why__list span { color: var(--muted); font-size: 0.92rem; }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about__media img { border-radius: 18px; box-shadow: var(--shadow); border: 3px solid var(--green); }
.about__copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.about__copy p { color: #c3ccc9; margin-bottom: 14px; max-width: 34rem; }
.about__thanks { color: #dfe6e3 !important; font-style: italic; border-left: 3px solid var(--green); padding-left: 16px; }
.about__contact { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 26px; }
.about__contact a { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #bff08a; }
.about__contact a:hover { color: #fff; }

/* About: light variant (About page) */
.about__grid--light .about__copy--light h2 { color: var(--ink); }
.about__copy--light p { color: var(--muted); }
.about__thanks--light { color: var(--ink) !important; }
.about__contact--light a { color: var(--green-dark); }
.about__contact--light a:hover { color: var(--ink); }
.why__list--wide { grid-template-columns: repeat(3, 1fr); }

/* Contact facts */
.quote__facts { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.quote__facts li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--charcoal-2); }
.quote__facts i { color: var(--green); font-size: 1.3rem; }

/* ===== Quote ===== */
.quote__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.quote__copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.quote__direct { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.quote__big {
  display: flex; align-items: center; gap: 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; transition: transform .15s, box-shadow .2s;
}
.quote__big:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quote__big i { font-size: 1.7rem; color: var(--green); }
.quote__big span { display: block; font-size: 0.82rem; color: var(--muted); }
.quote__big strong { font-size: 1.2rem; font-family: 'Space Grotesk', sans-serif; }

.quote__form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 0.98rem; color: var(--ink); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa6a2; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(111,174,47,0.18); background: #fff; }
.field textarea { resize: vertical; }
.form__note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
.field__opt { font-weight: 500; color: var(--muted); }
.form__success[hidden] { display: none; }
.form__success {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--green-soft); border: 1px solid #cbe4ab; border-radius: 14px;
  padding: 20px 22px; color: var(--ink);
}
.form__success i { font-size: 1.8rem; color: var(--green-dark); flex-shrink: 0; }
.form__success strong { display: block; font-size: 1.1rem; margin-bottom: 3px; }
.form__success span { color: var(--muted); font-size: 0.95rem; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #cfd6d3; padding: 54px 0 28px; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.footer__brand .brand__text { color: #fff; font-size: 1.15rem; }
.footer__brand .brand__text strong { color: #bff08a; }
.footer__brand p { font-size: 0.9rem; color: #9aa6a2; margin-top: 4px; max-width: 20rem; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-weight: 600; }
.footer__nav a:hover { color: #bff08a; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact a { display: flex; align-items: center; gap: 9px; font-weight: 600; }
.footer__contact a:hover { color: #bff08a; }
.footer__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; font-size: 0.85rem; color: #8b9793; }
.footer__legal a { display: flex; align-items: center; gap: 6px; }
.footer__legal a:hover { color: #bff08a; }
.footer__legal-links { display: flex; gap: 22px; }
.footer__legal-links a { display: inline; }

/* ===== Legal pages ===== */
.legal { max-width: 760px; }
.legal__updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 34px; }
.legal__intro { font-size: 1.08rem; color: var(--ink); margin-bottom: 8px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal p { color: var(--ink); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; color: var(--ink); }
.legal a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.legal__contact { margin-top: 8px; padding: 20px 24px; background: var(--green-soft); border-radius: var(--radius); }
.legal__contact p { margin-bottom: 4px; }

/* ===== Service area ===== */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.areas__col {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 26px 26px 28px;
}
.areas__col h3 {
  display: flex; align-items: center; gap: 9px; font-size: 1.2rem; color: #fff;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.areas__col h3 i { color: var(--green); font-size: 1.15rem; }
.areas__col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.areas__col li { display: flex; align-items: center; gap: 9px; font-size: 0.95rem; color: #c3ccc9; font-weight: 500; }
.areas__col li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero__grid, .why__grid, .about__grid, .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { order: 2; max-width: 420px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .why__list--wide { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .hero__media img { height: 460px; }
  .ba { height: 440px; max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .nav__toggle { display: inline-flex; order: 3; }
  .nav__inner { flex-wrap: wrap; height: auto; min-height: 72px; padding-top: 12px; padding-bottom: 12px; }
  .nav__links {
    order: 4; flex-basis: 100%; flex-direction: column; gap: 4px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
  }
  .nav__inner.open .nav__links { max-height: 320px; opacity: 1; padding: 8px 0 16px; }
  .nav__links a { padding: 10px 4px; font-size: 1.05rem; }
  .nav__links a.active::after { display: none; }
  .nav .btn--phone { order: 2; }
  .hero { padding: 44px 0 30px; }
  .section { padding: 68px 0; }
}
@media (max-width: 620px) {
  .services, .why__list { grid-template-columns: 1fr; }
  .btn--phone span, .nav .btn--phone { font-size: 0.85rem; }
  .hero__badge { left: 0; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .strip__inner { justify-content: flex-start; }
}
