/* JC Bandit LLC website
   Main colors intentionally follow existing orange / black branding. */

:root {
  --orange: #ff5a00;
  --orange-2: #ff8a00;
  --black: #090909;
  --charcoal: #141414;
  --charcoal-2: #1c1c1c;
  --gray: #747474;
  --light: #f6f6f4;
  --white: #ffffff;
  --line: rgba(255,255,255,.13);
  --shadow: 0 24px 65px rgba(0,0,0,.22);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #222;
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
section[id] { scroll-margin-top: 100px; }

.wrap {
  width: min(calc(100% - 38px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  background: var(--orange);
  color: var(--black);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.topbar-inner span:not(:last-child)::after {
  content: "•";
  margin-left: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,9,9,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { flex: 0 0 auto; }
.brand img {
  width: 290px;
  max-height: 84px;
  object-fit: contain;
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: 800;
  font-size: .92rem;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--orange-2); }
.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--orange);
  border-radius: 10px;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .035em;
  transition: .2s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.07);
}
.btn-small {
  min-height: 42px;
  padding-inline: 15px;
  font-size: .78rem;
}
.btn-outline {
  background: transparent;
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(244,123,32,.3), transparent 30%),
    linear-gradient(125deg, #050505 0%, #111 57%, #1a1009 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -100px -190px auto;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(244,123,32,.1);
  transform: rotate(18deg);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
  gap: 60px;
  align-items: center;
  padding-block: 84px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero h1,
.section h2,
.contact-strip h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 810px;
  font-size: clamp(3.4rem, 8vw, 7.3rem);
}
.hero-text {
  max-width: 760px;
  margin: 28px 0 20px;
  color: #dedede;
  font-size: 1.13rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}
.hero-trust span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  font-weight: 800;
  font-size: .82rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 24px 0 0;
  color: #bfbfbf;
  font-size: .92rem;
}
.hero-contact a { text-decoration: none; }
.hero-contact a:hover { color: var(--orange); }

.hero-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  background: var(--orange);
}
.hero-card-title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}
.hero-card p { color: #d4d4d4; }
.text-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 900;
}

.section { padding: 92px 0; }
.intro-section { background: var(--light); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.section h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}
.body-copy {
  color: #555;
  font-size: 1.06rem;
}
.body-copy p:first-child { margin-top: 0; }

.section-dark {
  color: var(--white);
  background: var(--black);
}
.section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 46px;
}
.section-heading.left {
  margin-left: 0;
  text-align: left;
}
.section-heading p:last-child {
  color: #bfbfbf;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.service-card p {
  margin: 0;
  color: #bdbdbd;
}
.more-services {
  margin-top: 38px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(244,123,32,.3);
  background: #101010;
}
.more-services h3 {
  margin: 0 0 18px;
  text-transform: uppercase;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-grid span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #e6e6e6;
  font-size: .9rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-grid article {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--light);
}
.feature-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: var(--black);
  font-weight: 900;
  font-size: 1.2rem;
}
.feature-grid h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
}
.feature-grid p {
  color: #666;
  margin-bottom: 0;
}

.promo-section {
  background: #efefec;
}
.promo-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.promo-copy p:not(.eyebrow) {
  color: #5e5e5e;
  font-size: 1.04rem;
  margin-bottom: 26px;
}
.promo-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
}
.promo-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.estimate-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(244,123,32,.18), transparent 25%),
    var(--black);
}
.estimate-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 55px;
  align-items: start;
}
.estimate-copy {
  position: sticky;
  top: 120px;
}
.estimate-copy p:not(.eyebrow) { color: #b8b8b8; }
.contact-stack {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}
.contact-stack a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.contact-stack strong {
  color: var(--orange);
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .1em;
}
.contact-stack span {
  overflow-wrap: anywhere;
  color: var(--white);
  font-weight: 800;
}

.estimate-form {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  color: #1c1c1c;
  box-shadow: var(--shadow);
}
.estimate-form label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d0d0d0;
  border-radius: 9px;
  background: #fbfbfb;
  padding: 12px 13px;
  color: #111;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,.15);
}
textarea { resize: vertical; }
.check-row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.check-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}
.form-note {
  margin: 12px 0 0;
  color: #777;
  text-align: center;
  font-size: .78rem;
}
.hidden {
  position: absolute;
  left: -9999px;
}

.faq-section { background: var(--white); }
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid #dedede;
  border-radius: 12px;
  background: #fafafa;
  padding: 0 18px;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
  text-transform: uppercase;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.4rem;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  color: #626262;
  margin-top: 0;
}

.contact-strip {
  color: var(--white);
  background: linear-gradient(120deg, #f47b20 0%, #e26208 100%);
  padding: 62px 0;
}
.contact-strip .eyebrow { color: var(--black); }
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.contact-strip h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}
.contact-strip-actions {
  display: flex;
  gap: 10px;
}
.contact-strip .btn {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.contact-strip .btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.8);
}

.site-footer {
  background: #080808;
  color: #c7c7c7;
  padding: 60px 0 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr .7fr;
  gap: 38px;
}
.footer-logo {
  width: 240px;
  max-width: 100%;
  margin-bottom: 14px;
}
.footer-grid h3 {
  margin-top: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .08em;
}
.footer-grid a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
  overflow-wrap: anywhere;
}
.footer-grid a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
}

.mobile-actions { display: none; }

/* Utility / secondary pages */
.simple-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}
.simple-page main {
  padding: 80px 0;
}
.simple-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 38px;
  background: var(--white);
  color: #222;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.simple-card h1 {
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.simple-card h2 {
  margin-top: 34px;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.simple-card a { color: #b94f00; }
.centered { text-align: center; }
.status-code {
  color: var(--orange);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  line-height: .8;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .header-cta { display: none; }
  .site-nav { gap: 17px; }
  .hero-grid,
  .estimate-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 28px; }
  .estimate-copy { position: static; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 58px; }
  .topbar-inner {
    justify-content: space-between;
    gap: 8px;
    font-size: .62rem;
  }
  .topbar-inner span:not(:last-child)::after { display: none; }
  .header-inner { min-height: 86px; }
  .brand img { width: 168px; max-height: 72px; }
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px 19px 20px;
    background: #090909;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .site-nav.open { display: grid; }
  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .hero-grid {
    min-height: auto;
    padding-block: 62px;
  }
  .hero h1 { font-size: clamp(3rem, 16vw, 5.2rem); }
  .hero-card { padding: 25px; }
  .section { padding: 68px 0; }
  .two-col,
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-card { min-height: 220px; }
  .promo-grid { gap: 28px; }
  .estimate-form { padding: 22px; }
  .contact-strip-inner,
  .contact-strip-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-strip-actions .btn { width: 100%; }
  .mobile-actions {
    position: fixed;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 58px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    font-size: .8rem;
  }
  .mobile-actions a:last-child {
    background: var(--orange);
    color: var(--black);
  }
}


/* Jobber online booking embed */
.jobber-grid {
  align-items: start;
}
.jobber-booking-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  color: #1c1c1c;
  box-shadow: var(--shadow);
}
.jobber-card-heading {
  padding: 28px 30px 18px;
  border-bottom: 1px solid #e4e4e4;
}
.jobber-card-heading h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.jobber-card-heading p:last-child {
  margin-bottom: 0;
  color: #666;
}
.jobber-embed {
  min-height: 520px;
  padding: 8px 14px 22px;
  background: var(--white);
}
.jobber-embed > div {
  width: 100%;
}
.jobber-noscript {
  margin: 0;
  padding: 18px 28px 28px;
  color: #555;
}
.jobber-noscript a {
  color: #b94f00;
  font-weight: 800;
}

@media (max-width: 760px) {
  .jobber-card-heading {
    padding: 22px 18px 14px;
  }
  .jobber-embed {
    padding: 4px 4px 16px;
    min-height: 480px;
  }
}


/* Real project gallery */
.gallery-section {
  background: #f3f3f0;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  cursor: zoom-in;
}
.gallery-item-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, opacity .25s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  opacity: .92;
}
.gallery-item:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* Google customer reviews */
.reviews-section {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(244,123,32,.16), transparent 24%),
    #101010;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.review-stars {
  color: var(--orange);
  letter-spacing: .15em;
  font-size: 1.15rem;
}
.review-card blockquote {
  margin: 28px 0 30px;
  padding: 0;
  border: 0;
  color: #f2f2f2;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 700;
}
.review-person {
  display: grid;
  gap: 3px;
  margin-top: auto;
}
.review-person strong {
  color: var(--white);
  text-transform: uppercase;
}
.review-person span {
  color: #aaa;
  font-size: .82rem;
}

/* Project photo lightbox */
.gallery-lightbox[hidden] {
  display: none;
}
.gallery-lightbox {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.9);
}
.gallery-lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 25px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .project-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }
  .gallery-item-wide {
    grid-column: span 1;
  }
}


/* Direct Jobber booking CTA */
.direct-booking-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  color: #1c1c1c;
  box-shadow: var(--shadow);
}
.direct-booking-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.direct-booking-card p:not(.eyebrow):not(.form-note) {
  color: #666;
  margin-bottom: 24px;
}


/* JC BANDIT BLACK + HI-VIS ORANGE VERSION */
:root {
  --orange: #ff5a00;
  --orange-2: #ff8a00;
  --black: #050505;
  --charcoal: #111111;
  --charcoal-2: #171717;
  --light: #0c0c0c;
  --white: #ffffff;
}

body {
  background: #050505;
  color: #f4f4f4;
}

.topbar {
  background: linear-gradient(90deg, #ff4d00 0%, #ff6a00 50%, #ff4d00 100%);
  color: #050505;
  box-shadow: 0 6px 20px rgba(255,90,0,.28);
}

.site-header {
  background: rgba(5,5,5,.98);
  border-bottom: 1px solid rgba(255,90,0,.22);
}

.site-nav a {
  color: #ffffff;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ff7a00;
}

.hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(255,90,0,.33), transparent 28%),
    linear-gradient(125deg, #030303 0%, #0d0d0d 60%, #261005 100%);
}
.hero h1,
.hero-card-title,
.section h2,
.contact-strip h2 {
  color: #ffffff;
}
.eyebrow,
.service-number,
.text-link {
  color: #ff5a00;
}
.hero-card {
  border: 1px solid rgba(255,90,0,.35);
  background: rgba(12,12,12,.88);
}

.intro-section,
.gallery-section,
.faq-section,
.poster-section {
  background: #0b0b0b;
  color: #ffffff;
}
.intro-section .body-copy,
.intro-section .body-copy p,
.gallery-section .section-heading p,
.faq-section p,
.poster-section .section-heading p {
  color: #cfcfcf;
}

.section-dark,
.reviews-section,
.estimate-section {
  background:
    linear-gradient(180deg, rgba(255,90,0,.08), transparent 15%),
    #050505;
}

.service-card,
.review-card,
.feature-grid article,
.faq-list details,
.jobber-embed-card {
  border: 1px solid rgba(255,90,0,.25);
  background:
    linear-gradient(180deg, rgba(255,90,0,.07), rgba(255,255,255,.01)),
    #111111;
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0,0,0,.34);
}

.service-card h3,
.feature-grid h3,
.review-person strong,
.faq-list summary {
  color: #ffffff;
}
.service-card p,
.feature-grid p,
.review-card blockquote,
.review-person span,
.faq-list details p {
  color: #c8c8c8;
}

.more-services {
  border-color: rgba(255,90,0,.3);
  background: #0d0d0d;
}
.pill-grid span,
.service-pill-link {
  border-color: rgba(255,90,0,.35);
  color: #ffffff;
  background: rgba(255,90,0,.06);
}

.feature-grid article {
  background:
    linear-gradient(180deg, rgba(255,90,0,.09), rgba(255,255,255,.01)),
    #101010;
}
.feature-mark {
  background: #ff5a00;
  color: #050505;
}

.poster-section {
  padding-top: 86px;
  padding-bottom: 86px;
}
.single-poster {
  width: min(100%, 760px);
  margin: 34px auto 0;
  overflow: hidden;
  border: 3px solid #ff5a00;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 28px rgba(255,90,0,.18);
}
.single-poster img {
  width: 100%;
  height: auto;
}

.jobber-embed-card {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  color: #111111;
}
.jobber-embed-card > div {
  min-height: 420px;
}

.booking-backup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.booking-backup p {
  width: 100%;
  margin: 0 0 4px;
  color: #cccccc;
  text-align: center;
  font-weight: 800;
}

.btn {
  background: #ff5a00;
  border-color: #ff5a00;
  color: #050505;
  box-shadow: 0 10px 22px rgba(255,90,0,.22);
}
.btn-outline,
.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: #ff5a00;
}
.btn:hover,
.btn:focus-visible {
  filter: brightness(1.08);
}

.contact-strip {
  background: linear-gradient(90deg, #ff4d00, #ff6a00);
}
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,90,0,.22);
}

@media (max-width: 760px) {
  .single-poster {
    border-width: 2px;
    border-radius: 14px;
  }
  .jobber-embed-card {
    padding: 10px;
  }
}


/* --- FINAL JC BANDIT LOGO / HERO POLISH UPDATE --- */
.header-inner {
  min-height: 108px;
}

.brand img {
  width: 360px;
  max-width: min(56vw, 360px);
  max-height: 96px;
  filter: drop-shadow(0 10px 24px rgba(255, 92, 0, .18));
}

.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,92,0,.42), transparent 26%),
    radial-gradient(circle at 18% 88%, rgba(255,92,0,.14), transparent 28%),
    linear-gradient(122deg, #020202 0%, #090909 54%, #231005 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(-24px, 2vw, 28px);
  top: 42px;
  width: min(44vw, 520px);
  aspect-ratio: 1 / 1;
  background: url('/logo.png') no-repeat center / contain;
  opacity: .16;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 18px 44px rgba(255, 90, 0, .18));
}

.hero-grid {
  min-height: 690px;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, .68fr);
  gap: 62px;
  padding-block: 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 860px;
  text-shadow: 0 3px 18px rgba(0,0,0,.4);
}

.hero-text {
  max-width: 740px;
}

.hero-trust span {
  border: 1px solid rgba(255, 90, 0, .3);
  background: rgba(255,255,255,.04);
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255,90,0,.5);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    linear-gradient(180deg, rgba(16,16,16,.97), rgba(8,8,8,.96));
  box-shadow:
    0 24px 50px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.07), transparent 42%);
}

.hero-card-title {
  max-width: 12ch;
}

.hero-card p,
.hero-card .text-link {
  position: relative;
  z-index: 1;
}

.hero-card .text-link {
  display: inline-block;
  margin-top: 8px;
  letter-spacing: .03em;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 92px;
  }

  .brand img {
    width: 250px;
    max-width: 52vw;
    max-height: 84px;
  }

  .hero::before {
    width: min(54vw, 340px);
    top: 72px;
    right: -28px;
    opacity: .12;
  }

  .hero-grid {
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .brand img {
    width: 210px;
    max-width: 60vw;
    max-height: 72px;
  }

  .hero::before {
    width: 250px;
    top: 86px;
    right: -45px;
    opacity: .11;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 78px 60px;
  }
}


/* Clean JC BANDIT logo-only asset update */
.brand img {
  width: 380px;
  max-width: min(58vw, 380px);
  max-height: 102px;
  object-fit: contain;
}
.footer-logo {
  width: 340px;
  max-width: 100%;
}
@media (max-width: 980px) {
  .brand img { width: 280px; max-width: 54vw; max-height: 88px; }
}
@media (max-width: 720px) {
  .brand img { width: 220px; max-width: 62vw; max-height: 76px; }
}


/* =========================================================
   FINAL MOBILE LAYOUT FIX — MUST STAY AT END OF STYLESHEET
   Prevents late desktop hero rules from overriding phone CSS.
   ========================================================= */
@media (max-width: 980px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    min-width: 0;
    min-height: auto;
    gap: 30px;
    align-items: stretch;
  }

  .hero-copy,
  .hero-card {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .hero-copy {
    display: block;
  }

  .hero h1,
  .hero-text,
  .hero-contact,
  .hero-card-title,
  .hero-card p,
  .hero-card .text-link {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-card-title {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 78px !important;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 88px);
  }

  .brand img {
    width: 178px !important;
    max-width: 100% !important;
    max-height: 62px !important;
    object-fit: contain;
  }

  .menu-toggle {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    width: 230px;
    top: 78px;
    right: -58px;
    opacity: .075;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    padding-block: 48px 54px !important;
    gap: 28px !important;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .eyebrow {
    font-size: .72rem;
    line-height: 1.2;
    letter-spacing: .12em;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.8rem) !important;
    line-height: .92;
    letter-spacing: -.055em;
  }

  .hero-text {
    width: 100%;
    margin: 22px 0 18px;
    font-size: 1.03rem;
    line-height: 1.58;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 24px;
  }

  .hero-trust span {
    padding: 7px 10px;
    font-size: .74rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-contact {
    display: grid;
    gap: 5px;
    margin-top: 20px;
    font-size: .85rem;
  }

  .hero-contact > span[aria-hidden="true"] {
    display: none;
  }

  .hero-card {
    position: relative;
    z-index: 2;
    padding: 24px 22px 24px 26px !important;
    margin: 0;
  }

  .hero-card::before {
    top: 22px;
    bottom: 22px;
    width: 4px;
  }

  .hero-card-title {
    font-size: 1.65rem;
    line-height: 1.05;
  }

  .hero-card p {
    font-size: .98rem;
  }

  .hero-card .text-link {
    display: block;
    font-size: .9rem;
    line-height: 1.35;
  }

  .section {
    padding: 58px 0;
  }

  .two-col,
  .service-grid,
  .feature-grid,
  .footer-grid,
  .estimate-grid,
  .promo-grid,
  .field-row {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .service-card {
    min-height: 0;
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-item,
  .gallery-item-wide {
    grid-column: auto !important;
  }

  .jobber-embed-card {
    width: 100%;
    max-width: 100%;
    padding: 8px !important;
    overflow: hidden;
  }

  .single-poster {
    width: 100%;
  }

  .mobile-actions {
    min-height: 60px;
  }

  .mobile-actions a {
    min-width: 0;
    padding: 0 5px;
    font-size: .74rem;
  }

  .footer-logo {
    width: min(260px, 82vw);
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(calc(100% - 26px), var(--max));
  }

  .brand img {
    width: 158px !important;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14.5vw, 4rem) !important;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }
}


/* WHY JC BANDIT: ORANGE BOXES REMOVED */
.feature-grid article > h3 {
  margin-top: 0;
}
