:root{
  --primary:#22c55e;
  --bg:#000000;
  --panel:#0b0b0b;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --border:#1f2933;
  --alt:#050505;
  --shadow: 0 18px 40px rgba(0,0,0,.65);
  --radius: 22px;
}

*{box-sizing:border-box}
body{
  font-family:Arial,sans-serif;
  margin:0;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
img{max-width:100%;display:block}
.container{max-width:1100px;margin:auto;padding:30px 20px}

.muted{color:var(--muted)}
.tiny{font-size:13px}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
}
.btn-primary{background:var(--primary);color:#06240f}
.btn-outline{border-color:#374151;color:var(--text);background:transparent}

/* Top splash: full-image background + junk accents */
.top-splash{
  position:relative;
  border-bottom:1px solid var(--border);
  background:#ffffff;
  overflow:hidden;
  min-height: 520px;
}

/* Base logo image stretched to cover the whole section */
.top-splash::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("assets/hero-bg.jpg");
  background-size:cover;          /* stretch across the whole section */
  background-position:center;
  background-repeat:no-repeat;
  filter: contrast(1.02) brightness(1.02);
  pointer-events:none;
}

/* Add extra junk texture around the logo so it's not plain white */
.top-splash::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(0,0,0,.08), rgba(0,0,0,.55) 60%),
    url("assets/junk-pattern.png");
  background-repeat: no-repeat, repeat;
  background-size: cover, 520px auto;
  background-position: center, center;
  mix-blend-mode: multiply;
  opacity: .95;
  pointer-events:none;
}

.splash-slogan{
  position:absolute;
  top:18px;
  left:0;
  right:0;
  text-align:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--primary);          /* same green as Junk It */
  font-size: 28px;
  z-index: 3;
  padding: 0 14px;
  text-transform: none;
  font-family: "Trebuchet MS", "Verdana", "Arial", sans-serif;
  text-shadow: 0 2px 16px rgba(0,0,0,.65);
}
.splash-slogan-just{
  color: var(--primary);
}

.splash-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 520px;
  gap: 16px;
  align-items: end;
  z-index: 2;
  padding-top: 70px; /* room for slogan */
  padding-bottom: 28px;
}
/* Keep left empty so background shows */
.splash-logo{min-height: 360px}

/* Move quote box more to the right and make it feel like a layer on top */
.splash-cta{
  justify-self: end;
  margin-right: 6px;
  background: rgba(11,11,11,.88);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(8px);
  max-width: 520px;
}
.splash-cta h2{margin:0 0 6px}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

@media (max-width:900px){
  .top-splash{min-height: 560px}
  .splash-slogan{font-size: 22px}
  .splash-grid{grid-template-columns:1fr; padding-top: 72px}
  .splash-cta{justify-self: stretch; max-width: 100%; margin-right: 0}
}

/* Sticky header */
.site-header{
  position:sticky;
  top:0;
  background:rgba(0,0,0,.90);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  z-index:10;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:10px 0;
}
.brand-logo{
  height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#000;
}
.header-actions{display:flex;gap:10px;align-items:center}

/* Hero */
.hero{
  text-align:center;
  background:var(--alt);
  padding:52px 0;
  border-bottom:1px solid var(--border);
}
.hero-cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.lead{color:var(--muted);margin:8px 0}

.section{padding:44px 0}
.section.alt{
  background:var(--alt);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.split-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:start}
.services{columns:2;gap:28px;margin:0;padding-left:18px}
.small-note{font-size:14px;color:var(--muted);margin-top:12px}

/* Carousel */
.carousel{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.carousel-head{padding:14px 16px;border-bottom:1px solid var(--border)}
.carousel-media{position:relative}
.carousel-media img{width:100%;height:420px;object-fit:cover;display:block}
.carousel-badge{
  position:absolute;left:12px;top:12px;
  background:rgba(0,0,0,.75);
  border:1px solid var(--border);
  padding:6px 10px;border-radius:999px;
  font-weight:900;color:var(--text)
}
.carousel-foot{padding:12px 16px;border-top:1px solid var(--border)}
.carousel-caption{font-weight:900;margin-bottom:10px;color:var(--muted)}
.carousel-controls{display:flex;gap:10px;flex-wrap:wrap}
.chip{
  appearance:none;border:1px solid var(--border);
  background:#000;color:var(--text);
  padding:10px 12px;border-radius:999px;
  font-weight:900;cursor:pointer;
}

/* Owner */
.owner-section{display:flex;gap:30px;align-items:center}
.owner-photo{max-width:280px;border-radius:18px;border:1px solid var(--border);background:#000}

/* Quote form: bubbly + 2 columns */
form{max-width:920px}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:16px 0 16px;
}
label{
  display:block;
  font-weight:900;
  font-size:13px;
  color:var(--text);
}
.req{color:var(--primary);font-weight:900}
input, textarea{
  width:100%;
  margin-top:8px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid #cbd5e1;
  background:#ffffff;
  color:#0f172a;
  font:inherit;
}
textarea{resize:vertical}
.span-2{grid-column:1 / -1}

.quote-bubble{
  margin-top:16px;
  max-width:920px;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.35);
  border-radius:22px;
  padding:14px 16px;
  color:var(--text);
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

/* Reviews + footer */
.reviews-placeholder{font-size:16px;color:var(--muted)}
.site-footer{text-align:center;border-top:1px solid var(--border);padding:28px 12px;color:var(--muted)}

.mobile-call{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:14px;z-index:20;
  width:min(92vw, 1100px);
  display:none;text-align:center;
  padding:14px 18px;border-radius:999px;
  text-decoration:none;font-weight:900;
  background:var(--primary);color:#06240f;
  box-shadow:0 16px 30px rgba(34,197,94,.35);
  border:1px solid rgba(6,78,59,.35);
}

@media (max-width:900px){
  .splash-grid{grid-template-columns:1fr}
  .split-grid{grid-template-columns:1fr}
  .services{columns:1}
  .carousel-media img{height:320px}
  .owner-section{flex-direction:column;align-items:flex-start}
  .mobile-call{display:block}
  .header-actions .btn-outline{display:none}
  .form-grid{grid-template-columns:1fr}
  .span-2{grid-column:auto}
}


/* v18 hero logo: ensure it renders */
.splash-logo-img{max-width:100%;height:auto;}



/* v19 hero fixes: clean white background, big logo in back, no extra logo box, CTA pushed right */
.top-splash{
  background:#ffffff !important;
}

.top-splash::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("assets/logo.jpg") !important;
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size: min(1100px, 92vw) auto !important;
  opacity:1 !important;
  pointer-events:none !important;
}

/* Remove any patterned overlay */
.top-splash::after{
  content:"";
  position:absolute;
  inset:0;
  background:#ffffff !important;
  pointer-events:none !important;
}

/* In case any splash-logo styles linger, hide them */
.splash-logo{display:none !important;}

/* Push the CTA box hard to the right so it doesn't cover the logo */
.splash-cta{
  right: 16px !important;
  left: auto !important;
  margin-right: 0 !important;
  max-width: 360px !important;
}

/* On very wide screens, keep it even further right */
@media (min-width:1200px){
  .splash-cta{ right: 8px !important; }
}



/* v20 hero: centered large logo + quote box on RIGHT (no overlap) */
.top-splash{
  background:#ffffff !important;
  position:relative !important;
}

/* Centered logo "watermark" behind */
.top-splash::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("assets/logo.jpg") !important;
  background-repeat:no-repeat !important;
  background-position:center !important;
  /* Keep the logo large like v12, but sized to leave room for the right quote box */
  background-size: 880px auto !important;
  pointer-events:none !important;
}

/* No pattern overlay */
.top-splash::after{
  content:"";
  position:absolute;
  inset:0;
  background:#ffffff !important;
  pointer-events:none !important;
}

/* Make sure the hero content sits above the background */
.top-splash > *{
  position:relative;
  z-index:2;
}

/* Quote bubble locked to the right side */
.splash-cta{
  position:absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 24px !important;
  left: auto !important;
  margin: 0 !important;
  max-width: 340px !important;
  z-index: 5 !important;
}

/* Keep the slogan at the top */
.splash-slogan{
  z-index: 6 !important;
}

/* Responsive: shrink background logo a bit and stack CTA under on small screens */
@media (max-width: 900px){
  .top-splash::before{
    background-size: 520px auto !important;
  }
  .splash-cta{
    position: static !important;
    transform: none !important;
    margin: 14px auto 0 !important;
    max-width: 520px !important;
  }
}



/* v21: BIGGER centered logo + CTA HARD RIGHT (no overlap) */
.top-splash::before{
  /* make the logo bigger across the first section */
  background-size: min(1250px, 96vw) auto !important;
}

/* shove the quote box all the way to the right edge */
.splash-cta{
  right: 0px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  max-width: 320px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/* give a little breathing room so it doesn't visually touch the logo */
@media (min-width: 900px){
  .top-splash::before{
    background-size: min(1350px, 96vw) auto !important;
  }
}

/* On very wide screens, keep CTA pinned to the edge */
@media (min-width: 1200px){
  .splash-cta{ right: 0px !important; }
}



/* v22: move CTA to top-right (red circle area) and move slogan near bottom-left (purple arrow area) */
.splash-cta{
  position:absolute !important;
  top: 92px !important;
  right: 18px !important;
  left: auto !important;
  transform: none !important;
  max-width: 340px !important;
  z-index: 6 !important;
}

/* Remove slogan from top: place it near bottom-left */
.splash-slogan{
  position:absolute !important;
  top: auto !important;
  bottom: 46px !important;
  left: 64px !important;
  right: auto !important;
  text-align: left !important;
  font-family: "Luckiest Guy","Comic Sans MS","Trebuchet MS",cursive !important;
  font-size: 42px !important;
  letter-spacing: .5px !important;
  text-shadow: none !important;
  transform: rotate(-6deg);
  z-index: 7 !important;
}

/* Keep it readable on small screens */
@media (max-width: 900px){
  .splash-slogan{
    position: static !important;
    transform: none !important;
    text-align: center !important;
    margin-top: 10px !important;
    font-size: 28px !important;
  }
  .splash-cta{
    position: static !important;
    margin: 12px auto 0 !important;
    max-width: 520px !important;
  }
}



/* v23 tweaks: push CTA fully right (no overlap) + bigger slogan centered on left side */
.splash-cta{
  right: 0px !important;          /* all the way to the edge */
  top: 92px !important;
  max-width: 300px !important;     /* a bit narrower so it clears the logo */
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/* Slogan: bigger + more centered on the LEFT side */
.splash-slogan{
  top: 58% !important;
  bottom: auto !important;
  left: 90px !important;
  right: auto !important;
  transform: translateY(-50%) rotate(-6deg) !important;
  font-size: 56px !important;
  max-width: 520px !important;
  line-height: 1.05 !important;
}

/* Keep mobile sensible */
@media (max-width: 900px){
  .splash-slogan{
    position: static !important;
    transform: none !important;
    text-align: center !important;
    font-size: 32px !important;
    max-width: none !important;
    margin: 10px auto 0 !important;
  }
  .splash-cta{
    position: static !important;
    margin: 12px auto 0 !important;
    max-width: 520px !important;
    border-radius: 22px !important;
  }
}



/* v24: ONLY requested changes
   - Remove floating quote box (splash-cta)
   - Slogan split into 2 lines, JUST emphasized
*/
.splash-cta{ display:none !important; }

/* Position slogan on left side, mid-height, clean */
.splash-slogan{
  position:absolute !important;
  top: 58% !important;
  left: 90px !important;
  transform: translateY(-50%) rotate(-6deg) !important;
  font-family: "Luckiest Guy","Comic Sans MS","Trebuchet MS",cursive !important;
  color: var(--accent, #35b26f) !important;
  font-size: 44px !important;
  line-height: 1.05 !important;
  letter-spacing: .5px !important;
  text-align:left !important;
  z-index: 7 !important;
}

.splash-slogan .slogan-just{
  display:inline-block;
  font-size: 62px !important;
  letter-spacing: 1px !important;
}

/* Mobile: keep readable */
@media (max-width: 900px){
  .splash-slogan{
    position: static !important;
    transform: none !important;
    text-align: center !important;
    margin: 10px auto 0 !important;
    left: auto !important;
    top: auto !important;
    font-size: 32px !important;
  }
  .splash-slogan .slogan-just{
    font-size: 44px !important;
  }
}



/* v25 slogan: Looney Tunes vibe, JUST emphasized */
.splash-slogan{
  font-family: "Luckiest Guy", "Comic Sans MS", cursive !important;
  font-weight: 800 !important;
  font-size: 42px !important;
  letter-spacing: 1px !important;
}

.splash-slogan .slogan-just{
  display:block;
  font-size: 86px !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  margin-top: -4px;
}



/* v26 slogan font: easy-to-read cursive */
.splash-slogan{
  font-family: "Pacifico", cursive !important;
  font-weight: 400 !important;
}

.splash-slogan .slogan-just{
  font-size: 92px !important;
}

/* Bigger text for 'What We Remove' list */
.what-we-remove li{
  font-size: 22px !important;
  line-height: 1.5 !important;
  font-weight: 600;
}



/* v29: Green accent behind Call / Quote section */

.call-section, .cta-section, section.call, section.cta {
  background-color: #35b26f !important;
  color: #ffffff !important;
  padding: 60px 20px;
}

.call-section h2,
.cta-section h2,
section.call h2,
section.cta h2,
.call-section p,
.cta-section p,
section.call p,
section.cta p {
  color: #ffffff !important;
}

.call-section .btn,
.cta-section .btn,
section.call .btn,
section.cta .btn {
  background-color: #ffffff !important;
  color: #35b26f !important;
  font-weight: 600;
  border-radius: 30px;
}

.big-close {
    font-size: 28px;
    text-align: center;
    margin-top: 20px;
}

/* ----------------------------
   Fix: hero slogan shifting on resize
   Force a single, stable position and responsive sizing.
-----------------------------*/
.splash-slogan{
  position:absolute !important;
  top:18px !important;
  left:0 !important;
  right:0 !important;
  bottom:auto !important;
  transform:none !important;
  text-align:center !important;
  padding:0 12px !important;
  color:var(--green) !important;
  font-weight:900 !important;
  font-size:clamp(18px, 2.2vw, 28px) !important;
  line-height:1.1 !important;
  white-space:nowrap !important;
  text-shadow:0 1px 0 rgba(0,0,0,.25) !important;
}
.splash-slogan .slogan-just{
  font-size:1.35em !important;
}
@media (max-width:700px){
  .splash-slogan{white-space:normal !important;}
}

/* visually hidden utility */
.sr-only{position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
