/* ============================================================
   J&B Cleanouts & Hauling — Site Styles
   Black & Orange brand system
   ============================================================ */
:root {
  --black: #0b0b0d;
  --dark: #121216;
  --panel: #1a1a20;
  --panel-2: #202028;
  --line: #2c2c35;
  --orange: #f26a1b;
  --orange-hot: #ff7d2e;
  --orange-deep: #d95a10;
  --white: #ffffff;
  --muted: #b9bdc7;
  --muted-2: #8b8f9a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--orange-hot); text-decoration: none; }
a:hover { color: var(--orange); }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .5px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.35rem; letter-spacing: .6px; }
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange-hot);
  font-size: .95rem;
  margin-bottom: .6rem;
}
.accent { color: var(--orange-hot); }
p.lead { font-size: 1.13rem; color: var(--muted); }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--orange);
  color: #14100c;
  font-size: .88rem;
  font-weight: 600;
  padding: .45rem 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #14100c; text-decoration: underline; }
.topbar .tb-hours { opacity: .9; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 11, 13, .96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .65rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; color: var(--white); }
.brand img, .brand svg { width: 58px; height: 58px; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.25rem; line-height: 1.05; letter-spacing: .8px;
}
.brand-name span { color: var(--orange-hot); display: block; font-size: .82rem; letter-spacing: 2.2px; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav > ul { display: flex; gap: 1.35rem; list-style: none; align-items: center; }
.main-nav a.nav-link {
  color: var(--white); font-weight: 600; font-size: .98rem;
  padding: .4rem 0; border-bottom: 2px solid transparent;
}
.main-nav a.nav-link:hover, .main-nav li.active > a.nav-link { color: var(--orange-hot); border-bottom-color: var(--orange); }

.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--orange);
  border-radius: 10px; box-shadow: var(--shadow);
  min-width: 265px; padding: .55rem;
  opacity: 0; visibility: hidden; transition: .18s ease;
  max-height: 70vh; overflow: auto;
}
.drop.drop-wide { min-width: 560px; column-count: 2; column-gap: .35rem; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; }
.drop a {
  display: block; color: var(--white); font-size: .92rem; font-weight: 500;
  padding: .5rem .7rem; border-radius: 7px; break-inside: avoid;
}
.drop a:hover { background: var(--panel-2); color: var(--orange-hot); }

.header-cta { display: flex; align-items: center; gap: .8rem; }
.phone-link {
  display: flex; flex-direction: column; align-items: flex-end; color: var(--white); line-height: 1.15;
}
.phone-link small { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; }
.phone-link strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .5px; color: var(--orange-hot); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 700; text-transform: uppercase;
  font-family: var(--font-display); letter-spacing: 1.2px; font-size: 1.05rem;
  padding: .85rem 1.7rem; border-radius: 9px; border: 2px solid transparent;
  cursor: pointer; transition: .18s ease; text-align: center;
}
.btn-primary { background: var(--orange); color: #14100c; box-shadow: 0 6px 18px rgba(242, 106, 27, .35); }
.btn-primary:hover { background: var(--orange-hot); color: #14100c; transform: translateY(-2px); }
.btn-outline { border-color: var(--orange); color: var(--orange-hot); background: transparent; }
.btn-outline:hover { background: var(--orange); color: #14100c; }
.btn-ghost { border-color: var(--line); color: var(--white); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-hot); }
.btn-block { display: block; width: 100%; }
.btn-lg { font-size: 1.2rem; padding: 1rem 2.2rem; }

/* ---------- Mobile nav ---------- */
.nav-toggle {
  display: none; background: none; border: 2px solid var(--orange); border-radius: 8px;
  color: var(--orange-hot); font-size: 1.35rem; width: 46px; height: 44px; cursor: pointer;
}
.mobile-drawer {
  display: none; background: var(--dark); border-bottom: 2px solid var(--orange);
  padding: 1rem 0 1.4rem;
}
.mobile-drawer.open { display: block; }
.mobile-drawer ul { list-style: none; }
.mobile-drawer a { display: block; color: var(--white); font-weight: 600; padding: .6rem 0; border-bottom: 1px solid var(--line); }
.mobile-drawer a:hover { color: var(--orange-hot); }
.mobile-drawer .m-sub { padding-left: 1rem; }
.mobile-drawer .m-sub a { font-weight: 400; color: var(--muted); font-size: .95rem; }
.m-group-label {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--orange-hot); padding: .8rem 0 .25rem; font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(242, 106, 27, .16), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(242, 106, 27, .10), transparent 60%),
    linear-gradient(180deg, #101014 0%, var(--black) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-55deg, transparent 0 46px, rgba(255, 255, 255, .018) 46px 48px);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem;
  padding: 4.2rem 0 4.6rem; align-items: center;
}
.hero-copy p.lead { margin: 1.1rem 0 1.6rem; max-width: 34rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-points { list-style: none; display: grid; gap: .55rem; }
.hero-points li { display: flex; gap: .6rem; align-items: baseline; color: var(--muted); font-weight: 500; }
.hero-points li::before { content: "✔"; color: var(--orange-hot); font-weight: 800; }

/* ---------- Lead form card ---------- */
.form-card {
  background: var(--panel); border: 1px solid var(--line); border-top: 5px solid var(--orange);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.7rem 1.6rem 1.6rem;
}
.form-card h3 { margin-bottom: .25rem; font-size: 1.55rem; }
.form-card .form-sub { color: var(--muted); font-size: .92rem; margin-bottom: 1.1rem; }
.lead-form { display: grid; gap: .8rem; }
.lead-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.lead-form label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); display: block; margin-bottom: .3rem; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; background: var(--dark); border: 1px solid var(--line); border-radius: 8px;
  color: var(--white); padding: .75rem .85rem; font-family: var(--font-body); font-size: .98rem;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242, 106, 27, .22);
}
.lead-form textarea { resize: vertical; min-height: 88px; }
.form-note { font-size: .8rem; color: var(--muted-2); text-align: center; margin-top: .35rem; }
.jobber-embed {
  background: #ffffff; border-radius: 10px; padding: .9rem .9rem .5rem;
  min-height: 380px; overflow: hidden;
}
.jobber-embed iframe { width: 100% !important; }
.form-alt { text-align: center; margin-top: .6rem; font-size: .95rem; color: var(--muted); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.15rem 0; text-align: center;
}
.trust-item { display: flex; align-items: center; justify-content: center; gap: .6rem; }
.trust-item .t-ic { font-size: 1.4rem; color: var(--orange-hot); }
.trust-item strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; font-size: 1.02rem; }

/* ---------- Sections ---------- */
.section { padding: 4.2rem 0; }
.section-dark { background: var(--dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: 2.4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: .8rem; }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; transition: .18s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot)); opacity: 0; transition: .18s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(242, 106, 27, .55); }
.card:hover::before { opacity: 1; }
.card .c-ic { font-size: 1.9rem; margin-bottom: .7rem; }
.card h3 { margin-bottom: .5rem; }
.card h3 a { color: var(--white); }
.card h3 a:hover { color: var(--orange-hot); }
.card p { color: var(--muted); font-size: .96rem; flex: 1; }
.card .c-link { margin-top: .9rem; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: 1.2px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; counter-reset: step; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; position: relative; }
.step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--orange);
  line-height: 1; margin-bottom: .6rem;
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* Checklist */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.6rem; }
.checklist li { display: flex; gap: .6rem; align-items: baseline; color: var(--muted); }
.checklist li::before { content: "✔"; color: var(--orange-hot); font-weight: 800; }
.checklist.one-col { grid-template-columns: 1fr; }

/* Split section */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.split .side-panel {
  background: var(--panel); border: 1px solid var(--line); border-left: 5px solid var(--orange);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
}
.split .side-panel h3 { margin-bottom: .8rem; }
.split .side-panel p { color: var(--muted); }

/* FAQ */
.faq-list { display: grid; gap: .8rem; max-width: 52rem; }
details.faq {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 0;
}
details.faq[open] { border-color: rgba(242, 106, 27, .55); }
details.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-weight: 600; padding: 1.05rem 1.2rem; font-size: 1.02rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--orange-hot); font-size: 1.5rem; font-weight: 700; line-height: 1; }
details.faq[open] summary::after { content: "–"; }
details.faq .faq-a { padding: 0 1.2rem 1.1rem; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(100deg, var(--orange-deep), var(--orange) 55%, var(--orange-hot));
  color: #14100c; padding: 3.2rem 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #14100c; }
.cta-band p { font-weight: 600; margin-top: .4rem; max-width: 36rem; }
.cta-band .btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.cta-band .btn-dark:hover { background: #1d1d22; transform: translateY(-2px); }
.cta-band .cta-phone { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: #14100c; display: block; }

/* Page hero (interior pages) */
.page-hero { padding: 3.4rem 0 2.8rem; position: relative; overflow: hidden;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(242, 106, 27, .18), transparent 60%),
    linear-gradient(180deg, #101014, var(--black));
  border-bottom: 1px solid var(--line);
}
.breadcrumbs { font-size: .85rem; color: var(--muted-2); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--orange-hot); }
.page-hero p.lead { margin-top: 1rem; max-width: 44rem; }

/* Content + sidebar layout */
.content-layout { display: grid; grid-template-columns: 1fr 370px; gap: 2.6rem; align-items: start; padding: 3.2rem 0 4rem; }
.content-main h2 { margin: 2.2rem 0 .9rem; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--muted); margin-bottom: 1.05rem; }
.content-main ul.checklist { margin: 1rem 0 1.4rem; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 1.3rem; }
.side-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.3rem;
}
.side-card h3 { margin-bottom: .8rem; font-size: 1.2rem; }
.side-card ul { list-style: none; display: grid; gap: .1rem; }
.side-card ul a { display: block; color: var(--muted); padding: .42rem .5rem; border-radius: 7px; font-size: .95rem; }
.side-card ul a:hover { background: var(--panel-2); color: var(--orange-hot); }
.side-card ul li.current a { color: var(--orange-hot); font-weight: 600; }
.side-card.call-card { text-align: center; border-top: 4px solid var(--orange); }
.side-card.call-card .cc-phone { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--orange-hot); display: block; margin: .3rem 0 .6rem; }
.side-card.call-card p { color: var(--muted); font-size: .9rem; }

/* Areas strip */
.areas-strip { display: flex; flex-wrap: wrap; gap: .6rem; }
.areas-strip a {
  background: var(--panel); border: 1px solid var(--line); color: var(--muted);
  padding: .45rem 1rem; border-radius: 999px; font-size: .92rem; font-weight: 600;
}
.areas-strip a:hover { border-color: var(--orange); color: var(--orange-hot); }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; border-top: 3px solid var(--orange); padding: 3.4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 2.2rem; margin-bottom: 2.2rem; }
.footer-grid h4 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--orange-hot); margin-bottom: .9rem; font-size: 1.05rem;
}
.footer-grid ul { list-style: none; display: grid; gap: .4rem; }
.footer-grid a { color: var(--muted); font-size: .93rem; }
.footer-grid a:hover { color: var(--orange-hot); }
.footer-about p { color: var(--muted); font-size: .93rem; margin-top: .8rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-brand img, .footer-brand svg { width: 54px; height: 54px; }
.f-contact li { color: var(--muted); font-size: .93rem; display: flex; gap: .55rem; }
.f-contact .ic { color: var(--orange-hot); }
.social-row { display: flex; gap: .7rem; margin-top: 1rem; }
.social-row a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700;
}
.social-row a:hover { border-color: var(--orange); color: var(--orange-hot); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 1.3rem; display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; color: var(--muted-2); font-size: .84rem;
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: var(--dark); border-top: 2px solid var(--orange);
  padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr; gap: .7rem;
}
.mobile-cta-bar .btn { padding: .7rem .5rem; font-size: 1rem; }

/* ---------- Thank you ---------- */
.thanks-wrap { text-align: center; padding: 5.5rem 0; max-width: 42rem; margin: 0 auto; }
.thanks-ic { font-size: 3.4rem; margin-bottom: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; padding: 3rem 0 3.4rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .trustbar .container { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; padding-bottom: 64px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .lead-form .row-2 { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: grid; }
  .phone-link small { display: none; }
  .phone-link strong { font-size: 1.1rem; }
  .brand img, .brand svg { width: 46px; height: 46px; }
  .brand-name { font-size: 1.05rem; }
  .topbar .tb-hours { display: none; }
  .cta-band .container { flex-direction: column; text-align: center; }
}
