/* ===========================================================
   Prime Buck Junk Removal
   =========================================================== */

@font-face{
  font-family:"Inter Tight";
  src:url("assets/fonts/InterTight-Variable.woff2") format("woff2-variations"),
      url("assets/fonts/InterTight-Variable.woff2") format("woff2");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
  font-display:swap;
}

:root{
  --ground:#131A0E;
  --brand:#31461E;
  --raised:#1B2614;
  --bone:#F2EEE3;
  --muted:#A8B39C;
  --clay:#B5462F;
  --clay-step:#C67561; /* WCAG AA-passing tint of clay, for small text on raised bg */
  --clay-lift:#C8502F;
  --line:rgba(242,238,227,.14);
  --line-soft:rgba(242,238,227,.07);
  --display:"Inter Tight",system-ui,sans-serif;
  --body:"Inter Tight",system-ui,-apple-system,sans-serif;
  --gutter:clamp(1.25rem,5vw,4.5rem);
  --max:76rem;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--ground);color:var(--bone);
  font-family:var(--body);line-height:1.6;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:var(--display);margin:0;letter-spacing:-.01em;line-height:1.08}
h1{font-weight:700;letter-spacing:-.01em}
h2{font-weight:700}
h3,h4{font-weight:600}

.skip{position:absolute;left:-9999px;top:0;background:var(--bone);color:var(--ground);padding:.75rem 1rem;z-index:100}
.skip:focus{left:0}

.wrap{max-width:var(--max);margin:0 auto;padding-inline:var(--gutter)}
.sect{padding-block:clamp(4rem,9vw,7rem);border-top:1px solid var(--line-soft)}
.sect--raised{background:var(--raised)}
.sect--brand{background:var(--brand)}

.eyebrow{font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);margin:0 0 1.1rem}
h2{font-size:clamp(1.85rem,4.6vw,2.9rem);text-wrap:balance}
h3{font-size:1.1rem}
.lede{font-size:1.05rem;color:var(--muted);max-width:58ch;margin:1.1rem 0 0}
.lede--light{color:#CFDCC2}
.muted{color:var(--muted);font-size:.95rem}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:2px;text-decoration:none;font-weight:600;
  transition:background-color .16s ease,color .16s ease,border-color .16s ease,transform .12s ease;
}
.btn--book{background:var(--clay);color:var(--bone);font-family:var(--display);
  font-size:1rem;padding:.95rem 1.6rem;border:0;cursor:pointer}
.btn--book:hover{background:var(--clay-lift)}
.btn--book:active{transform:scale(.98)}
.btn--ghost{border:1px solid var(--line);color:var(--bone);padding:.9rem 1.4rem;font-size:.95rem;font-weight:500}
.btn--ghost:hover{background:var(--bone);color:var(--brand);border-color:var(--bone)}
.btn--call{border:1px solid var(--line);color:var(--bone);padding:.6rem 1.05rem;font-size:.88rem;font-weight:500}
.btn--call:hover{background:var(--bone);color:var(--brand);border-color:var(--bone)}

/* ---------- nav ---------- */
.nav{
  position:sticky;top:0;z-index:40;height:70px;display:flex;align-items:center;
  background:rgba(19,26,14,.88);backdrop-filter:blur(10px);border-bottom:1px solid var(--line-soft);
}
.nav__inner{display:flex;align-items:center;gap:1.5rem;width:100%}
.brand{display:flex;align-items:center;text-decoration:none;margin-right:auto}
.brand img{width:auto;height:34px;display:block}
@media(min-width:620px){.brand img{height:38px}}
.nav__links{display:none;gap:1.6rem}
.nav__links a{color:var(--muted);font-size:.9rem;text-decoration:none}
.nav__links a:hover{color:var(--bone)}
.nav .btn--call{display:none}
.nav__cta{display:flex;align-items:center;gap:.6rem}
.nav .btn--book-sm{
  display:none;background:var(--clay);color:var(--bone);font-family:var(--display);
  font-size:.85rem;font-weight:700;padding:.6rem 1.05rem;border:0;cursor:pointer;text-decoration:none;
}
.nav .btn--book-sm:hover{background:var(--clay-lift)}
@media(min-width:620px){.nav .btn--call{display:inline-flex}.nav .btn--book-sm{display:inline-flex}}
@media(min-width:900px){.nav__links{display:flex}}

/* ---------- full-bleed hero background ---------- */
.hero{
  position:relative;isolation:isolate;
  min-height:clamp(34rem,88vh,54rem);
  display:flex;align-items:center;
  padding-block:clamp(4rem,10vw,7rem);
  overflow:hidden;
}
.hero__bg{position:absolute;inset:0;z-index:-2}
.hero__video{
  width:100%;height:100%;object-fit:cover;display:block;
  background:var(--raised);
}
/* legibility scrim: heavier on the left where the copy sits */
.hero__scrim{
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(90deg, rgba(19,26,14,.94) 0%, rgba(19,26,14,.82) 34%, rgba(19,26,14,.42) 62%, rgba(19,26,14,.28) 100%),
    linear-gradient(180deg, rgba(19,26,14,.72) 0%, rgba(19,26,14,.18) 30%, rgba(19,26,14,.55) 100%);
}
@media (max-width:760px){
  .hero__scrim{
    background:linear-gradient(180deg, rgba(19,26,14,.80) 0%, rgba(19,26,14,.62) 45%, rgba(19,26,14,.88) 100%);
  }
}
.hero__inner{position:relative;width:100%}
.hero__copy{max-width:36rem}
.hero__copy h1,
.hero__copy .eyebrow{
  -webkit-user-select:none;user-select:none;cursor:default;caret-color:transparent;
}
.hero__copy h1{text-shadow:0 2px 16px rgba(0,0,0,.55),0 1px 3px rgba(0,0,0,.85)}
.hero__copy .eyebrow{color:var(--bone);opacity:.88;text-shadow:0 2px 10px rgba(0,0,0,.6)}
.hero__copy .lede{
  color:var(--bone);opacity:.92;
  text-shadow:0 2px 14px rgba(0,0,0,.55),0 1px 3px rgba(0,0,0,.8);
  -webkit-user-select:none;user-select:none;cursor:default;caret-color:transparent;
}
.hero__actions{
  margin-top:1.9rem;display:flex;flex-wrap:wrap;gap:.9rem;
}
.hero__brand{
  width:min(70vw, 26rem);
  height:auto;
  display:block;
  margin-bottom:1.6rem;
  filter:drop-shadow(0 8px 30px rgba(19,26,14,.6));
}
@media(min-width:900px){.hero__brand{width:min(46vw, 30rem)}}
@media(max-width:680px){
  .hero__brand{display:none}
  .hero{padding-block:2.5rem 3rem;min-height:32rem}
}

.hero__badge{
  display:inline-flex;align-items:center;gap:.5rem;margin:1.4rem 0 0;
  font-size:.82rem;color:var(--bone);font-weight:500;
}
.hero__badge::before{
  content:"";width:.5rem;height:.5rem;border-radius:50%;background:var(--clay-step);
  box-shadow:0 0 0 3px rgba(198,117,97,.25);flex:none;
}

/* ---------- trust row ---------- */
.trustbar{border-top:1px solid var(--line-soft)}
.trustbar__inner{
  padding-block:1.5rem;display:grid;gap:.9rem 1.5rem;
  grid-template-columns:1fr;
}
@media(min-width:640px){.trustbar__inner{grid-template-columns:repeat(2,1fr)}}
@media(min-width:980px){.trustbar__inner{grid-template-columns:repeat(4,1fr)}}
.trustbar__item{display:flex;align-items:center;gap:.65rem;font-size:.88rem;color:var(--muted)}
.trustbar__item svg{width:20px;height:20px;flex:none;fill:none;stroke:var(--clay-step);stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round}

/* Mobile: convert the trust row into an auto-scrolling marquee.
   The second .trustbar__group is an exact duplicate (aria-hidden) so the
   loop is seamless at -50% translation. Desktop keeps the original grid
   and never sees the duplicate. */
@media(max-width:639px){
  .trustbar{overflow:hidden}
  .trustbar__track{display:flex;width:max-content;animation:trustbar-marquee 16s linear infinite}
  .trustbar__group{
    display:flex;flex:none;align-items:center;gap:2.25rem;
    padding-block:1.1rem;padding-inline:1.25rem;
  }
  .trustbar__group.wrap{max-width:none}
  .trustbar__item{white-space:nowrap}
}
@keyframes trustbar-marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media(min-width:640px){
  .trustbar__group--dup{display:none}
}


@media (prefers-reduced-motion:reduce){
  .hero__video{display:none}
  .hero__bg{background-image:url("assets/gallery/1b1e936a-3a0d-45a4-ae5f-2948557972c9.webp");background-size:cover;background-position:center}
}

/* ---------- cards ---------- */
.grid{display:grid;gap:1px;background:var(--line-soft);margin-top:2.75rem;grid-template-columns:1fr}
@media(min-width:560px){.grid--haul{grid-template-columns:repeat(2,1fr)}}
@media(min-width:980px){.grid--haul{grid-template-columns:repeat(4,1fr)}}
.card{background:var(--ground);padding:1.6rem 1.4rem 1.8rem}
.card p{margin:.5rem 0 0;font-size:.93rem;color:var(--muted)}
.card h3 a{color:inherit;text-decoration:none;border-bottom:1px solid transparent}
.card h3 a:hover{border-bottom-color:var(--clay-step)}
.ico{width:38px;height:38px;margin-bottom:1rem;fill:none;stroke:var(--bone);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round}

/* ---------- steps ---------- */
.steps{list-style:none;margin:2.75rem 0 0;padding:0;display:grid;gap:1.75rem;grid-template-columns:1fr}
@media(min-width:760px){.steps{grid-template-columns:repeat(4,1fr);gap:1.25rem}}
.step{border-top:2px solid var(--bone);padding-top:1rem}
.step__n{font-family:var(--display);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--clay-step);display:block;margin-bottom:.5rem;font-weight:700}
.step p{margin:.45rem 0 0;font-size:.93rem;color:var(--muted)}

/* ---------- split + facts ---------- */
.split{display:grid;gap:clamp(2rem,5vw,3.5rem);grid-template-columns:1fr;align-items:start}
@media(min-width:900px){.split{grid-template-columns:1fr 1fr}}
.facts{list-style:none;margin:0;padding:0}
.facts li{border-top:1px solid var(--line-soft);padding:1.1rem 0}
.facts li:last-child{border-bottom:1px solid var(--line-soft)}
.facts p{margin:.4rem 0 0;font-size:.93rem;color:var(--muted)}

/* ---------- areas ---------- */
.areas{list-style:none;margin:2.25rem 0 0;padding:0;display:grid;grid-template-columns:repeat(2,1fr)}
@media(min-width:760px){.areas{grid-template-columns:repeat(4,1fr)}}
.areas li{border-top:1px solid rgba(242,238,227,.2);padding:.8rem .5rem .8rem 0;font-size:.95rem}

/* ---------- reviews ---------- */
.reviews{display:grid;gap:1px;background:var(--line-soft);margin-top:2.75rem;grid-template-columns:1fr}
@media(min-width:700px){.reviews{grid-template-columns:repeat(2,1fr)}}
.review{background:var(--ground);padding:1.8rem 1.6rem;margin:0}
.review__stars{color:var(--clay-step);font-size:1.1rem;letter-spacing:.15em;margin-bottom:.9rem}
.review blockquote{margin:0 0 1.1rem;font-size:1rem;line-height:1.6;color:var(--bone)}
.review figcaption{font-size:.85rem;font-weight:600;color:var(--muted)}
.reviews__cta{display:flex;gap:1rem;flex-wrap:wrap;margin-top:2rem}

/* ---------- faq ---------- */
.faq{margin-top:2.25rem;border-top:1px solid var(--line-soft)}
.faq details{border-bottom:1px solid var(--line-soft)}
.faq summary{cursor:pointer;list-style:none;padding:1.3rem 2.5rem 1.3rem 0;position:relative;
  font-family:var(--display);font-weight:700;font-size:1.03rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";position:absolute;right:.25rem;top:1.05rem;font-size:1.4rem;
  font-weight:400;color:var(--muted);transition:transform .2s ease}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq p{margin:0 0 1.4rem;max-width:66ch;color:var(--muted);font-size:.95rem}

/* ---------- form ---------- */
.form{display:grid;gap:1rem;margin-top:2rem}
@media(min-width:680px){.form{grid-template-columns:repeat(2,1fr)}.field--full{grid-column:1/-1}}
.field{display:flex;flex-direction:column;gap:.4rem}
.field label{font-size:.78rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.field input,.field textarea{
  background:var(--ground);border:1px solid var(--line);color:var(--bone);
  font-family:var(--body);font-size:1rem;padding:.8rem .9rem;border-radius:2px;width:100%}
.field textarea{min-height:8rem;resize:vertical}
.field input:focus-visible,.field textarea:focus-visible{outline:2px solid var(--bone);outline-offset:1px}
.consent{display:flex;gap:.7rem;align-items:flex-start;font-size:.8rem;line-height:1.5;color:var(--muted)}
.consent input{margin-top:.2rem;width:1rem;height:1rem;accent-color:var(--clay);flex:none}


/* ---------- gallery ---------- */
.gal{
  display:grid;gap:.6rem;margin-top:2.5rem;
  grid-template-columns:repeat(2,1fr);
}
@media(min-width:640px){.gal{grid-template-columns:repeat(3,1fr)}}
@media(min-width:980px){.gal{grid-template-columns:repeat(4,1fr);gap:.75rem}}
.gal__item{
  margin:0;overflow:hidden;border-radius:2px;
  background:var(--ground);aspect-ratio:4/3;
  cursor:zoom-in;
}
.gal__item img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s cubic-bezier(.2,.7,.2,1),filter .3s ease;
  filter:saturate(.96) brightness(.98);
}
.gal__item:hover img{transform:scale(1.045);filter:saturate(1.04) brightness(1.02)}
/* give the layout some rhythm — a couple of items run taller */
@media(min-width:640px){
  .gal__item:nth-child(1){grid-row:span 2;aspect-ratio:4/6.2}
  .gal__item:nth-child(6){grid-row:span 2;aspect-ratio:4/6.2}
}

/* lightbox */
.lb{
  position:fixed;inset:0;z-index:100;display:none;
  align-items:center;justify-content:center;padding:5vh 4vw;
  background:rgba(10,14,8,.94);backdrop-filter:blur(6px);
}
.lb.is-open{display:flex}
.lb img{max-width:min(92vw,64rem);max-height:88vh;object-fit:contain;border-radius:2px;
  box-shadow:0 30px 80px rgba(0,0,0,.6)}
.lb__close{
  position:absolute;top:1.5rem;right:1.5rem;width:2.6rem;height:2.6rem;
  border:1px solid var(--line);background:rgba(19,26,14,.6);color:var(--bone);
  border-radius:2px;font-size:1.3rem;line-height:1;cursor:pointer;
}
.lb__close:hover{background:var(--bone);color:var(--brand)}
.lb__nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:2.8rem;height:2.8rem;border:1px solid var(--line);
  background:rgba(19,26,14,.6);color:var(--bone);border-radius:2px;
  font-size:1.4rem;cursor:pointer;
}
.lb__nav:hover{background:var(--bone);color:var(--brand)}
.lb__prev{left:1.25rem}
.lb__next{right:1.25rem}
@media(max-width:640px){.lb__nav{display:none}}

/* ---------- footer ---------- */
.foot{background:var(--raised);padding-block:clamp(3rem,6vw,4.5rem) 2.25rem;border-top:1px solid var(--line-soft)}
.foot__grid{display:grid;gap:2.25rem;grid-template-columns:1fr}
@media(min-width:760px){.foot__grid{grid-template-columns:1.3fr 1fr 1fr 1fr}}
.foot h4{font-size:.72rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin:0 0 .9rem}
.foot__links{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.foot__social{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.foot__social a{font-size:.85rem;color:var(--muted);text-decoration:none;border-bottom:1px solid transparent}
.foot__social a:hover{color:var(--bone);border-bottom-color:var(--clay-step)}
.foot a{color:var(--bone);text-decoration:none;font-size:.93rem}
.foot a:hover{text-decoration:underline}
.tel{font-size:1.05rem;font-weight:600}
.hours{display:grid;grid-template-columns:auto 1fr;gap:.3rem 1rem;margin:0;font-size:.93rem;color:var(--muted)}
.hours dt,.hours dd{margin:0}
.legal{margin:2.5rem 0 0;padding-top:1.4rem;border-top:1px solid var(--line-soft);
  font-size:.76rem;color:var(--muted);line-height:1.6}
.legal--tail{margin-top:.9rem;padding-top:0;border-top:none}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition-duration:.01ms!important}
}

/* ---------- form status message ---------- */
.form__status{margin:.85rem 0 0;font-size:.9rem;min-height:1.2em}
.form__status--ok{color:var(--bone)}
.form__status--err{color:var(--clay-step)}
.form__reassure{margin:.6rem 0 0;font-size:.82rem;color:var(--muted)}

/* ---------- photo upload field ---------- */
.field--photos .dropzone{
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:.4rem;
  border:1px dashed var(--line);border-radius:2px;padding:1.4rem 1rem;cursor:pointer;
  color:var(--muted);font-size:.85rem;text-align:center;transition:border-color .15s ease,background-color .15s ease;
}
.field--photos .dropzone:hover,.field--photos .dropzone:focus-visible{border-color:var(--bone);background:rgba(242,238,227,.03)}
.field--photos input[type="file"]{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
.field--photos .dropzone svg{width:24px;height:24px;stroke:var(--muted);fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.photo-previews{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.75rem}
.photo-previews:empty{margin-top:0}
.photo-preview{position:relative;width:64px;height:64px;border-radius:2px;overflow:hidden;border:1px solid var(--line)}
.photo-preview img{width:100%;height:100%;object-fit:cover}
.photo-preview button{
  position:absolute;top:0;right:0;width:1.3rem;height:1.3rem;border:0;cursor:pointer;
  background:rgba(19,26,14,.85);color:var(--bone);font-size:.85rem;line-height:1;
}

/* ---------- sticky mobile call/text bar ---------- */
.mobilebar{
  position:fixed;left:0;right:0;bottom:0;z-index:50;display:none;
  grid-template-columns:1fr 1fr;gap:1px;background:var(--line-soft);
  border-top:1px solid var(--line);
  box-shadow:0 -8px 24px rgba(0,0,0,.35);
}
.mobilebar a{
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.95rem 1rem;font-family:var(--display);font-weight:700;font-size:.92rem;
  text-decoration:none;
}
.mobilebar a svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;flex:none}
.mobilebar__call{background:var(--clay);color:var(--bone)}
.mobilebar__text{background:var(--raised);color:var(--bone)}
@media(max-width:680px){
  .mobilebar{display:grid}
  body{padding-bottom:68px}
}
