/* ============================================================
   Big Valley Junk Removal — styles.css
   Palette from logo: sage green #5E8B63, charcoal #2E322E,
   warm gray, off-white, gold accent for the guarantee seal.
   ============================================================ */

:root {
  --green: #5E8B63;
  --green-dark: #4A6E4E;
  --green-deep: #38513C;
  --charcoal: #2E322E;
  --charcoal-soft: #3B423B;
  --gray: #8A9187;
  --gray-line: #e3e5df;
  --cream: #F7F6F2;
  --white: #ffffff;
  --gold: #D9A441;
  --gold-dark: #BE8A2C;
  --ink: #23261F;
  --muted: #616860;

  --shadow-sm: 0 2px 8px rgba(46,50,46,.08);
  --shadow-md: 0 12px 30px rgba(46,50,46,.12);
  --shadow-lg: 0 24px 60px rgba(46,50,46,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --nav-h: 74px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; line-height: 1.1; color: var(--charcoal); font-weight: 700; }

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  font-size: .82rem;
  color: var(--green);
  margin-bottom: .6rem;
}
.eyebrow--light { color: #cfe0d0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .95rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-dark); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--charcoal); color: #dfe3dc; font-size: .84rem; }
.topbar__inner { display: flex; align-items: center; gap: 1.2rem; height: 38px; }
.topbar__spacer { flex: 1; }
.topbar__phone { font-weight: 600; color: #fff; }
.topbar__phone:hover { color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-line);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav__logo { height: 54px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: .05em; font-size: .95rem; color: var(--charcoal);
  position: relative; padding: .3rem 0;
}
.nav__link:not(.nav__cta):after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--green); transition: width .25s ease;
}
.nav__link:not(.nav__cta):hover { color: var(--green); }
.nav__link:not(.nav__cta):hover:after { width: 100%; }
.nav__cta { color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--charcoal); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: url('images/banner.jpg') center 40% / cover no-repeat;
  color: #fff;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,34,30,.9) 0%, rgba(30,34,30,.72) 42%, rgba(46,50,46,.35) 100%);
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 2rem; padding: 5rem 22px; width: 100%; }
.hero__content { max-width: 640px; }
.hero__eyebrow {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .22em;
  font-weight: 600; color: var(--gold); font-size: .9rem; margin-bottom: 1rem;
}
.hero__title { font-family: 'Anton', sans-serif; font-weight: 400; color: #fff; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: .5px; }
.hero__title span { color: var(--green); -webkit-text-stroke: 0; }
.hero__text { font-size: 1.18rem; margin: 1.4rem 0 2rem; color: #e9ede8; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; font-family: 'Oswald', sans-serif; font-size: .95rem; letter-spacing: .02em; color: #dce6dd; }

/* Guarantee seal */
.seal { position: relative; width: 190px; height: 190px; margin-left: auto; flex-shrink: 0; transform: rotate(-12deg); filter: drop-shadow(0 10px 20px rgba(0,0,0,.35)); }
.seal__star { position: absolute; inset: 0; width: 100%; height: 100%; }
.seal__star polygon { fill: var(--gold); stroke: #fff; stroke-width: 3; }
.seal__inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--charcoal); }
.seal__top { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .06em; }
.seal__check { font-size: 1.6rem; line-height: 1; margin: 2px 0; font-weight: 700; }
.seal__bottom { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: .9rem; letter-spacing: .04em; line-height: 1.05; }

/* ---------- Hero entrance animation (plays ~1.1s after load) ---------- */
@keyframes bvSlideIn {
  from { opacity: 0; transform: translateX(-42px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bvStampIn {
  0%   { opacity: 0; transform: translateY(-95px) rotate(-30deg) scale(.5); }
  70%  { opacity: 1; transform: translateY(0) rotate(-7deg) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) rotate(-12deg) scale(1); }
}
.hero__eyebrow, .hero__title, .hero__text, .hero__actions, .hero__trust {
  opacity: 0;
  animation: bvSlideIn 1.6s cubic-bezier(.2, .7, .2, 1) both;
}
.hero__eyebrow { animation-delay: .5s; }
.hero__title   { animation-delay: .7s; }
.hero__text    { animation-delay: .9s; }
.hero__actions { animation-delay: 1.1s; }
.hero__trust   { animation-delay: 1.3s; }
.seal { opacity: 0; animation: bvStampIn 1.8s cubic-bezier(.2, .8, .25, 1) both; animation-delay: 1.5s; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__text, .hero__actions, .hero__trust, .seal {
    animation: none;
    opacity: 1;
  }
}

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section--alt { background: #eef0ea; }
.section__head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section__lead { color: var(--muted); font-size: 1.1rem; margin-top: .9rem; }

/* ---------- Pillars ---------- */
.pillars { background: var(--charcoal); color: #fff; padding: 4.5rem 0; }
.pillars__head { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.pillars__title { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.pillars__sub { color: #c3c9c1; margin-top: 1rem; font-size: 1.08rem; }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.pillar { background: var(--charcoal-soft); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; transition: transform .2s ease, border-color .2s ease; }
.pillar:hover { transform: translateY(-5px); border-color: var(--green); }
.pillar__icon { font-size: 2.2rem; margin-bottom: .7rem; }
.pillar h3 { color: #fff; font-size: 1.25rem; margin-bottom: .5rem; }
.pillar p { color: #b9c0b7; font-size: .96rem; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3.5rem; }
.svc { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc__img { height: 180px; background-size: cover; background-position: center; }
.svc__body { padding: 1.3rem 1.3rem 1.6rem; }
.svc__body h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.svc__body p { color: var(--muted); font-size: .96rem; }

/* Items we take */
.items { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 2.6rem; text-align: center; }
.items__title { font-size: 1.9rem; }
.items__lead { color: var(--muted); max-width: 620px; margin: .7rem auto 1.8rem; }
.items__grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; text-align: left; }
.items__grid li {
  background: var(--cream); border: 1px solid var(--gray-line); border-radius: 10px;
  padding: .7rem 1rem; font-weight: 500; font-size: .95rem; position: relative; padding-left: 2.1rem;
}
.items__grid li:before { content: '✔'; color: var(--green); font-weight: 700; position: absolute; left: .9rem; }
.items__more { display: none; }
.items.expanded .items__more { display: block; }
.items__toggle {
  margin-top: 1.6rem; background: none; border: 2px solid var(--green); color: var(--green);
  font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  padding: .6rem 1.4rem; border-radius: 999px; cursor: pointer; transition: .2s;
}
.items__toggle:hover { background: var(--green); color: #fff; }
.items__cta { margin-top: 2rem; }
.items__note { color: var(--muted); font-size: .92rem; margin-top: .9rem; }
.items__note a { color: var(--green); font-weight: 600; }

/* ---------- Pricing / calculator ---------- */
.calc { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2.6rem; max-width: 900px; margin: 0 auto; }
.calc__label { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .95rem; color: var(--charcoal); display: block; margin-bottom: .7rem; text-align: center; }
.calc__row { display: flex; gap: .7rem; max-width: 520px; margin: 0 auto; }
.calc__input { flex: 1; padding: .95rem 1.1rem; border: 2px solid var(--gray-line); border-radius: 999px; font-size: 1.05rem; font-family: inherit; text-align: center; letter-spacing: .1em; }
.calc__input:focus { outline: none; border-color: var(--green); }
.calc__result { text-align: center; margin-top: 1.1rem; font-weight: 600; font-size: 1.05rem; min-height: 1.4rem; }
.calc__result.ok { color: var(--green-dark); }
.calc__result.no { color: #b4472f; }

.loads { margin-top: .5rem; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2.2rem; }
.loads__title { text-align: center; font-size: 1.5rem; }
.loads__sub { text-align: center; color: var(--muted); font-size: .95rem; margin: .5rem auto 1.8rem; max-width: 560px; }
.loads__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: end; }
.load { background: var(--cream); border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 1.2rem 1rem 1.4rem; text-align: center; position: relative; }
.load--pop { border-color: var(--green); box-shadow: 0 0 0 2px var(--green) inset; }
.load__bar { height: 70px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: .8rem; }
.load__bar span { display: block; width: 26px; background: linear-gradient(var(--green), var(--green-deep)); border-radius: 5px 5px 0 0; }
.load h4 { font-size: 1.15rem; }
.load__desc { color: var(--muted); font-size: .82rem; margin: .2rem 0 .5rem; }
.load__price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--green-dark); }
.loads__note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 1.6rem; }
.loads__note a { color: var(--green); font-weight: 600; }

/* Trash tiers */
.trash { max-width: 1000px; margin: 3.5rem auto 0; }
.trash__head { text-align: center; margin-bottom: 1.8rem; }
.trash__head h3 { font-size: 1.7rem; }
.trash__head p { color: var(--muted); margin-top: .4rem; }
.trash__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.plan { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius); padding: 1.6rem 1.3rem; text-align: center; position: relative; transition: transform .2s ease; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--feature { border-color: var(--gold); box-shadow: var(--shadow-md); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--charcoal); font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: .72rem; letter-spacing: .06em; padding: .25rem .8rem; border-radius: 999px; }
.plan__name { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green-dark); font-size: 1.2rem; }
.plan__vol { color: var(--muted); font-size: .9rem; margin: .3rem 0 .8rem; }
.plan__price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 2.2rem; color: var(--charcoal); }
.plan__price span { font-size: .95rem; color: var(--muted); font-weight: 500; }
.plan__extra { font-size: .82rem; color: var(--muted); margin-top: .7rem; line-height: 1.4; }
.trash__cta { text-align: center; margin-top: 2rem; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.about__body p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.about__body .section__title { text-align: left; }
.about__stats { display: flex; gap: 2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.about__stats div { display: flex; flex-direction: column; }
.about__stats strong { font-family: 'Oswald', sans-serif; font-size: 1.35rem; color: var(--green-dark); text-transform: uppercase; }
.about__stats span { color: var(--muted); font-size: .9rem; }

/* ---------- Mission ---------- */
.mission { background: linear-gradient(120deg, var(--green-deep), var(--green)); color: #fff; padding: 4.5rem 0; }
.mission__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mission__inner h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.3rem); font-weight: 600; line-height: 1.28; margin-bottom: 2rem; }
.mission__inner .eyebrow { margin-bottom: 1rem; }

/* ---------- Work / gallery ---------- */
.work__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; user-select: none; background: #ddd;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { z-index: 1; }
.ba__before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; z-index: 2; border-right: 3px solid #fff; }
.ba__before-wrap .ba__img { width: 100vw; max-width: none; }
.ba__label { position: absolute; bottom: 12px; z-index: 3; background: rgba(30,34,30,.78); color: #fff; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; padding: .3rem .7rem; border-radius: 6px; pointer-events: none; }
.ba__label--before { left: 12px; }
.ba__label--after { right: 12px; }
.ba__handle { position: absolute; top: 0; bottom: 0; width: 44px; z-index: 4; transform: translateX(-50%); cursor: ew-resize; display: flex; align-items: center; justify-content: center; }
.ba__handle:before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: #fff; }
.ba__grip { width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 1rem; font-weight: 700; z-index: 1; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius); margin-bottom: .9rem; overflow: hidden; transition: box-shadow .2s ease; }
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 1.12rem; color: var(--charcoal); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:after { content: '+'; font-size: 1.6rem; color: var(--green); font-weight: 400; transition: transform .2s ease; line-height: 1; }
.faq__item[open] summary:after { transform: rotate(45deg); }
.faq__answer { padding: 0 1.4rem 1.3rem; }
.faq__answer p { color: var(--muted); }

/* ---------- Estimate band ---------- */
.estimate { background: var(--charcoal); color: #fff; padding: 4.5rem 0; text-align: center; }
.estimate__inner h2 { color: #fff; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: .5px; }
.estimate__big { font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--gold); font-size: clamp(1.3rem, 3vw, 2rem); text-transform: uppercase; letter-spacing: .05em; margin: .4rem 0 .3rem; }
.estimate__sub { color: #c3c9c1; font-size: 1.1rem; margin-bottom: 2rem; }
.estimate__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.4rem; }
.contact__form { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 2.4rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; color: var(--charcoal); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 2px solid var(--gray-line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.contact__status { text-align: center; margin-top: 1rem; font-weight: 600; min-height: 1.2rem; }
.contact__status.ok { color: var(--green-dark); }
.contact__status.err { color: #b4472f; }

.contact__info { background: linear-gradient(150deg, var(--green-deep), var(--green)); color: #fff; border-radius: var(--radius-lg); padding: 2.4rem; }
.contact__info h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1.3rem; }
.contact__list { list-style: none; }
.contact__list li { display: flex; gap: .9rem; margin-bottom: 1.2rem; font-size: .98rem; color: #eaf1ea; }
.contact__list strong { color: #fff; font-family: 'Oswald', sans-serif; font-weight: 500; letter-spacing: .03em; }
.contact__list a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact__ic { font-size: 1.2rem; flex-shrink: 0; }
.contact__fb { display: inline-block; margin-top: .6rem; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4); color: #fff; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; padding: .6rem 1.2rem; border-radius: 999px; transition: .2s; }
.contact__fb:hover { background: #fff; color: var(--green-dark); }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: #c3c9c1; padding-top: 3.5rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer__logo { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: .04em; line-height: 1; }
.footer__logo span { display: block; color: var(--green); font-size: 1.05rem; letter-spacing: .16em; margin-top: .2rem; }
.footer__tag { margin-top: 1rem; max-width: 340px; font-size: .95rem; }
.footer__col h4 { color: #fff; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: #c3c9c1; margin-bottom: .55rem; font-size: .95rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .85rem; text-align: center; }

/* ---------- Merged pricing + service-area map ---------- */
.pa-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.8rem; align-items: stretch; margin-bottom: 2.2rem; }
.map-card { position: relative; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 1rem; }
#map { width: 100%; height: 460px; border-radius: var(--radius); position: relative; z-index: 0; background: #dfe3dc; }
.map-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--gray-line); font-size: .8rem; color: var(--muted); }
.map-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.lg-swatch { width: 13px; height: 13px; border-radius: 50%; }
.map-hint { color: var(--muted); font-size: .8rem; margin-top: .5rem; text-align: center; }
.hq-star { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: #fff; background: var(--gold); border: 2px solid #fff; border-radius: 50%; font-size: 16px; line-height: 1; box-shadow: 0 2px 6px rgba(0,0,0,.4); }
.leaflet-container { font-family: 'Inter', sans-serif; }
.leaflet-popup-content { font-family: 'Inter', sans-serif; font-size: .9rem; line-height: 1.4; }
.leaflet-popup-content strong { font-family: 'Oswald', sans-serif; color: var(--charcoal); }

.calc-panel { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 1.8rem; display: flex; flex-direction: column; }
.calc-panel .calc__label { text-align: left; }
.calc-panel .calc__row { max-width: none; }
.calc-panel .calc__result { text-align: left; }
.county-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.2rem; }
.county-chips span { background: var(--cream); border: 1px solid var(--gray-line); border-radius: 999px; padding: .35rem .8rem; font-size: .82rem; font-weight: 500; }
.svc-note { margin-top: auto; background: linear-gradient(150deg, var(--green-deep), var(--green)); color: #fff; border-radius: var(--radius); padding: 1.3rem; }
.svc-note h4 { color: #fff; font-size: 1.12rem; margin-bottom: .35rem; }
.svc-note p { color: #e7f0e7; font-size: .9rem; margin-bottom: .9rem; }

@media (max-width: 900px) {
  .pa-grid { grid-template-columns: 1fr; }
  #map { height: 380px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pillars__grid, .services__grid, .items__grid, .trash__grid { grid-template-columns: repeat(2, 1fr); }
  .loads__grid { grid-template-columns: repeat(3, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__hours { display: none; }
  .nav__links {
    position: fixed; top: var(--nav-h); right: 0; left: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 22px 1.5rem; border-bottom: 1px solid var(--gray-line);
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .3s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__link { padding: .9rem 0; border-bottom: 1px solid var(--gray-line); }
  .nav__cta { margin-top: .8rem; text-align: center; }
  .nav__toggle { display: flex; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { min-height: auto; }
  .hero__inner { flex-direction: column; align-items: flex-start; padding: 3.5rem 22px; }
  .seal { margin: 1.5rem auto 0; width: 150px; height: 150px; }
  .work__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pillars__grid, .services__grid, .items__grid, .trash__grid, .loads__grid { grid-template-columns: 1fr; }
  .calc, .items, .contact__form, .contact__info { padding: 1.6rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
