/* ==========================================================================
   Yelo Autosports — main.css
   Design tokens + Bootstrap 5 overrides. Mobile-first.
   ========================================================================== */

:root {
  --yelo-yellow: #ffd200;        /* TODO: confirm exact brand yellow */
  --yelo-yellow-hover: #ffdf40;
  --yelo-black: #0b0b0d;
  --yelo-dark: #141417;
  --yelo-gray: #9a9aa3;
  --yelo-light: #f5f5f7;
  --yelo-font-display: "Bungee", system-ui, sans-serif;
  --yelo-font-body: "Inter", system-ui, sans-serif;
  --yelo-font-copy: "Montserrat", system-ui, sans-serif;
}

html { overflow-x: clip; }
body {
  background: var(--yelo-black);
  color: var(--yelo-light);
  font-family: var(--yelo-font-body);
  padding-top: 72px; /* fixed nav offset */
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--yelo-font-display); font-weight: 400; }
p { font-family: var(--yelo-font-copy); }

/* Skip link */
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 2000;
  background: var(--yelo-yellow); color: var(--yelo-black); padding: .5rem 1rem; }

/* --- Nav ------------------------------------------------------------- */
.yelo-nav { background: rgba(11, 11, 13, .9); backdrop-filter: blur(12px); font-family: var(--yelo-font-copy); }
.navbar-brand .brand-yelo { color: var(--yelo-yellow); font-weight: 800; letter-spacing: .05em; }
.navbar-brand .brand-sub  { color: var(--yelo-light);  font-weight: 300; letter-spacing: .2em; font-size: .8em; }
.nav-logo-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 90px; height: 90px;
  background: rgba(11, 11, 13, .9); border-radius: 50%;
  padding: 8px; box-sizing: border-box;
  transform: scale(1.97); transform-origin: top left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo-wrap.nav-logo--compact { transform: scale(1); }
.nav-logo { width: 100%; height: auto; display: block; }
.yelo-nav { overflow: visible; }
.navbar-brand { overflow: visible; }
.footer-logo { height: 65px; width: auto; display: block; }
.yelo-nav .nav-link { color: var(--yelo-light); }
.yelo-nav .nav-link:hover, .yelo-nav .nav-link.active { color: var(--yelo-yellow); }
.yelo-offcanvas { background: var(--yelo-dark); color: var(--yelo-light); }
.mobile-nav-list .nav-link { color: var(--yelo-light); font-size: 1.25rem; padding: .75rem 0; }
.mobile-nav-secondary .nav-link { font-size: 1rem; color: var(--yelo-gray); padding: .5rem 0; }
.mobile-nav-secondary .nav-link:hover, .mobile-nav-secondary .nav-link:focus { color: var(--yelo-yellow); }

/* Mobile sticky action bar */
.mobile-action-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1030;
  display: flex; }
.mobile-action-bar a { flex: 1; text-align: center; padding: .9rem; font-weight: 700;
  text-decoration: none; font-family: var(--yelo-font-copy); }
.action-call { background: var(--yelo-dark); color: var(--yelo-light); }
.action-book { background: var(--yelo-yellow); color: var(--yelo-black); }
@media (max-width: 991.98px) {
  body { padding-bottom: 56px; }
}

/* --- Buttons ---------------------------------------------------------- */
.btn { font-family: var(--yelo-font-copy); }
.btn-yelo { background: var(--yelo-yellow); color: var(--yelo-black); font-weight: 700;
  border: 2px solid var(--yelo-yellow); }
.btn-yelo:hover, .btn-yelo:focus { background: var(--yelo-yellow-hover); color: var(--yelo-black);
  border-color: var(--yelo-yellow-hover); }
.btn-yelo-outline { border: 2px solid var(--yelo-yellow); color: var(--yelo-yellow); }
.btn-yelo-outline:hover, .btn-yelo-outline.active { background: var(--yelo-yellow); color: var(--yelo-black); }
.btn-yelo--current { background: transparent; color: var(--yelo-yellow); cursor: default; pointer-events: none; }
.btn-yelo--current:hover, .btn-yelo--current:focus { background: transparent; color: var(--yelo-yellow); }
.link-yelo { color: var(--yelo-yellow); }
.link-yelo:hover { color: var(--yelo-yellow-hover); }

/* --- Sections ---------------------------------------------------------- */
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-dark { background: var(--yelo-dark); }
.section-title { font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 1rem; padding-bottom: 1.5rem; text-transform: uppercase; text-align: center; }
.section-lead { color: var(--yelo-gray); max-width: 60ch; margin-bottom: 2rem; }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; min-height: 88svh; display: flex; align-items: center;
  overflow: hidden; }
.hero-compact { min-height: 40svh; }
.hero-bg { position: absolute; inset: -15% 0; width: 100%; height: 130%; object-fit: cover;
  will-change: transform; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,.55), rgba(11,11,13,.85)); }
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { color: var(--yelo-yellow); text-transform: uppercase;
  letter-spacing: .25em; font-size: .85rem; font-weight: 600; }
.hero-title { font-size: clamp(2rem, 6vw, 4rem); font-weight: 400; max-width: 18ch; text-transform: uppercase; }
.hero-sub { color: var(--yelo-gray); font-size: clamp(1rem, 2.5vw, 1.3rem); max-width: 50ch; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-trust { margin-top: 1.25rem; color: var(--yelo-gray); }
.stars { color: var(--yelo-yellow); letter-spacing: .15em; }
@media (max-width: 991.98px) {
  .hero { min-height: calc(88svh - 56px); margin-top: -56px;
    align-items: flex-end; padding-bottom: 2.5rem; text-align: left; }
  .hero-ctas { display: none; }
}

/* --- Trust bar / marquee -------------------------------------------------- */
.trust-bar { background: var(--yelo-yellow); color: var(--yelo-black); overflow: hidden;
  padding: .75rem 0; }
.trust-track { display: flex; width: max-content; }
.trust-list { display: flex; gap: 3rem; margin: 0; padding: 0 1.5rem; list-style: none;
  font-weight: 700; white-space: nowrap; }

/* --- Cards ---------------------------------------------------------------- */
.service-card { position: relative; background: var(--yelo-dark); border: 1px solid #232329;
  border-radius: 1rem; padding: 2rem; height: 100%;
  transition: transform .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-6px); border-color: var(--yelo-yellow); }
.service-card-featured { border-color: rgba(255, 210, 0, .4); }
.service-card-media { aspect-ratio: 16 / 9; border-radius: .75rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; color: var(--yelo-gray);
  border: 1px solid #2c2c33;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1c1c21, #26262d); }
.service-card-img { width: 100%; height: 100%; object-fit: cover; border-radius: .75rem; display: block; }
.category-intro-section {
  background: linear-gradient(135deg, var(--yelo-yellow), #ffb800);
  color: var(--yelo-black);
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.category-intro-row { gap: 0; }
.category-intro-h2 { text-transform: uppercase; font-size: 3.75rem; line-height: 1.05; text-align: left; }
.category-intro-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid #fff; }
.category-intro-text-col { padding: clamp(2rem, 4vw, 3rem); }
.category-intro-text-col p { font-weight: 700; }
@media (min-width: 992px) {
  .category-intro-heading-col { border-bottom: none; border-right: 3px solid #fff; }
}
.category-brand-section {
  background-color: var(--yelo-black);
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.category-brand-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.category-brand-section .container { position: relative; z-index: 1; }
.category-brand-panel {
  background: rgba(11, 11, 13, 0.90);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: .75rem;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.category-brand-panel .section-title { text-transform: uppercase; color: var(--yelo-yellow); }
.category-brand-panel .lead { font-weight: 700; padding-bottom: 1.5rem; border-bottom: 2px solid var(--yelo-yellow); margin-bottom: 1.5rem; }
.page-about .category-brand-panel { margin-inline: auto 0; text-align: left; }
.page-about .category-brand-bg { background-position: center top; }
.brand-logo-inline-wrap { margin-bottom: 1.5rem; }
.brand-logo-inline { max-height: 64px; width: auto; display: block; margin-inline: auto; }
.brand-logo-placeholder {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem; padding: 1.25rem 2rem;
  border: 2px dashed rgba(255,255,255,.2); border-radius: .75rem; color: var(--yelo-gray);
}
.brand-logo-placeholder span { font-weight: 700; font-size: 1.1rem; color: var(--yelo-light); letter-spacing: .05em; }
.brand-logo-placeholder small { font-size: .8rem; }
.service-card-title { font-weight: 400; color: var(--yelo-light); }
.service-card-tagline { color: var(--yelo-yellow); font-size: .95rem; }
.service-card-desc { color: var(--yelo-gray); }
.why-card { background: #ffffff; border: 1px solid #e6e6e9; border-radius: 1rem; padding: 1.5rem; height: 100%; color: var(--yelo-black); transition: transform .2s, border-color .2s; }
.why-card:hover { transform: translateY(-3px); border-color: var(--yelo-yellow); }
.why-card h3 { color: var(--yelo-black); font-weight: 400; padding-bottom: .6rem; border-bottom: 2px solid var(--yelo-yellow); margin-bottom: .75rem; }
.why-card p { color: #34343a; font-size: .95rem; }
.child-card { display: flex; justify-content: space-between; align-items: center;
  background: var(--yelo-dark); border: 1px solid #232329; border-radius: .75rem;
  padding: 1.25rem 1.5rem; color: var(--yelo-light); text-decoration: none;
  transition: border-color .3s ease; }
.child-card:hover { border-color: var(--yelo-yellow); color: var(--yelo-yellow); }

/* --- Gallery ----------------------------------------------------------------- */
.gallery-item { position: relative; border-radius: .75rem; overflow: hidden; }
.gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  transition: transform .4s ease; background: var(--yelo-dark); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tag { position: absolute; bottom: .5rem; left: .5rem;
  background: rgba(11,11,13,.8); color: var(--yelo-yellow); font-size: .75rem;
  padding: .2rem .6rem; border-radius: 99px; }
/* --- Before/After --------------------------------------------------------------- */
.ba-frame { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 16/9; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  background: var(--yelo-dark); }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0;
  cursor: ew-resize; }
.ba-control:focus-within .ba-frame { outline: 3px solid var(--yelo-yellow); }

/* --- Recent Work ------------------------------------------------------------------ */
.recent-work-section { background: var(--yelo-black); color: var(--yelo-light); padding: clamp(3rem, 8vw, 6rem) 0; }
.recent-work-row { gap: 0; }
.recent-work-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: var(--yelo-black); }
@media (min-width: 992px) {
  .recent-work-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.recent-work-content-col { padding: clamp(2rem, 4vw, 3rem); }
.recent-work-section .gallery-grid > div { width: 100%; max-width: 100%; }
.recent-work-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}

/* --- Home Services ---------------------------------------------------------------- */
.home-services-section { background: #f1f1f3; color: var(--yelo-black); padding: clamp(3rem, 8vw, 6rem) 0; }
.home-services-row { gap: 0; }
.home-services-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: #f1f1f3; }
@media (min-width: 992px) {
  .home-services-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.home-services-content-col { padding: clamp(2rem, 4vw, 3rem); }
.home-services-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: .75rem;
}
.home-services-lead { color: #34343a; margin-bottom: 0; }

/* --- Why Yelo --------------------------------------------------------------------- */
.why-yelo-section { background: var(--yelo-black); color: var(--yelo-light); padding: clamp(3rem, 8vw, 6rem) 0; }
.why-yelo-row { gap: 0; }
.why-yelo-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: var(--yelo-black); }
@media (min-width: 992px) {
  .why-yelo-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.why-yelo-content-col { padding: clamp(2rem, 4vw, 3rem); }
.why-yelo-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}

/* --- FAQ sections (30/70 black) --------------------------------------------------- */
.site-faq-section { background: var(--yelo-black); color: var(--yelo-light); padding: clamp(3rem, 8vw, 6rem) 0; }
.site-faq-row { gap: 0; }
.site-faq-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: var(--yelo-black); }
@media (min-width: 992px) {
  .site-faq-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.site-faq-content-col { padding: clamp(2rem, 4vw, 3rem); }
.site-faq-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}

/* --- Social ------------------------------------------------------------------------- */
.social-section { background: var(--yelo-black); color: var(--yelo-light); padding: clamp(3rem, 8vw, 6rem) 0; }
.social-row { gap: 0; }
.social-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: var(--yelo-black); }
@media (min-width: 992px) {
  .social-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.social-content-col { padding: clamp(2rem, 4vw, 3rem); }
.social-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}
.social-lead { color: var(--yelo-gray); font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 46ch; margin-bottom: 2rem; }
.social-links.social-links-lg.list-inline { display: flex; flex-wrap: wrap; gap: 1rem; }
.social-links.social-links-lg .list-inline-item { margin-right: 0; }
.social-links.social-links-lg a { width: auto; height: auto; border-radius: 99px; padding: .75rem 1.5rem;
  gap: .6rem; font-family: var(--yelo-font-copy); font-weight: 600; }
.social-links.social-links-lg a svg { width: 24px; height: 24px; }
.social-links.social-links-lg a:hover, .social-links.social-links-lg a:focus-visible { background: var(--yelo-yellow); color: var(--yelo-black); }

/* --- Home FAQ (30/70 white) ------------------------------------------------------- */
.home-faq-section { background: #f1f1f3; color: var(--yelo-black); padding: clamp(3rem, 8vw, 6rem) 0; }
.home-faq-row { gap: 0; }
.home-faq-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: #f1f1f3; }
@media (min-width: 992px) {
  .home-faq-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.home-faq-content-col { padding: clamp(2rem, 4vw, 3rem); }
.home-faq-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: .75rem;
  color: var(--yelo-black);
}
.home-faq-lead { color: #34343a; margin-bottom: 0; }

/* --- Reviews ---------------------------------------------------------------------- */
.reviews-section { background: #f1f1f3; color: var(--yelo-black); padding: clamp(3rem, 8vw, 6rem) 0; }
.reviews-row { gap: 0; }
.reviews-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); }
@media (min-width: 992px) {
  .reviews-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.reviews-content-col { padding: clamp(2rem, 4vw, 3rem); }
.reviews-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}
.reviews-section .carousel-inner { min-height: 260px; }
.reviews-section .carousel-item.active,
.reviews-section .carousel-item-next,
.reviews-section .carousel-item-prev { min-height: 260px; display: flex !important; align-items: center; justify-content: center; }
.reviews-section .carousel-control-prev-icon,
.reviews-section .carousel-control-next-icon { filter: invert(1); }
.review-quote { max-width: 60ch; margin: 0 auto; text-align: center; padding: 0 3rem; }
.review-quote footer { color: #34343a; }

/* --- CTA band --------------------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--yelo-yellow), #ffb800);
  color: var(--yelo-black); padding: clamp(3rem, 8vw, 5rem) 0; }
.cta-band-row { gap: 0; }
.cta-band-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid #fff; }
@media (min-width: 992px) {
  .cta-band-heading-col { border-bottom: none; border-right: 3px solid #fff; }
}
.cta-band-content-col { padding: clamp(2rem, 4vw, 3rem); }
.cta-title { font-size: 3.75rem; line-height: 1.05; font-weight: 400; text-transform: uppercase;
  text-align: left; margin-bottom: 0; }
.cta-band .btn-outline-light { border-color: var(--yelo-black); color: var(--yelo-black); }
.cta-actions { display: flex; gap: .75rem; justify-content: flex-start; flex-wrap: wrap;
  margin-top: 1.5rem; }

/* --- Accordion / FAQ -------------------------------------------------------------- */
.yelo-accordion .accordion-item { background: var(--yelo-dark); border: 1px solid #232329;
  color: var(--yelo-light); }
.yelo-accordion .accordion-button { background: var(--yelo-dark); color: var(--yelo-light);
  font-weight: 600; }
.yelo-accordion .accordion-button:not(.collapsed) { background: var(--yelo-dark);
  color: var(--yelo-yellow); box-shadow: none; }
.yelo-accordion .accordion-button::after,
.yelo-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffd200'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c%2fsvg%3e");
}
.yelo-accordion .accordion-body { color: var(--yelo-gray); }
.accordion-header { font-family: var(--yelo-font-copy); }

/* --- FAQ sidebar layout ------------------------------------------------------------- */
.faq-page-body { background: var(--yelo-black); color: var(--yelo-light); }
.faq-layout { display: flex; gap: 3rem; align-items: flex-start;
  padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(2rem, 5vw, 4rem); }
.faq-content { flex: 1; min-width: 0; }
.faq-section { padding-top: clamp(2rem, 5vw, 3.5rem); scroll-margin-top: calc(72px + 1rem); }
.faq-section:first-child { padding-top: 0; }

/* Desktop sidebar */
.faq-sidebar { width: 180px; flex-shrink: 0; position: sticky; top: calc(72px + 2rem); }
.faq-sidenav { display: flex; flex-direction: column; }
.faq-sidenav-heading { font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--yelo-gray); margin-bottom: .75rem; }
.faq-sidenav-link { color: var(--yelo-gray); text-decoration: none; font-size: .9rem;
  padding: .45rem .75rem; border-left: 2px solid #2a2a32;
  transition: color .2s, border-color .2s; line-height: 1.35; }
.faq-sidenav-link:hover { color: var(--yelo-light); border-left-color: #555; }
.faq-sidenav-link.active { color: var(--yelo-yellow); border-left-color: var(--yelo-yellow);
  font-weight: 600; }

/* Mobile horizontal sticky nav */
.faq-mobile-nav { position: sticky; top: 72px; z-index: 200;
  background: var(--yelo-dark); border-bottom: 1px solid #232329;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.faq-mobile-nav::-webkit-scrollbar { display: none; }
.faq-mobile-nav-track { display: flex; gap: .5rem; padding: .65rem 1rem; white-space: nowrap; }
.faq-chip { color: var(--yelo-gray); text-decoration: none; font-size: .82rem; font-weight: 600;
  padding: .35rem .85rem; border-radius: 99px; border: 1px solid #2a2a32;
  transition: color .15s, background .15s, border-color .15s; flex-shrink: 0; }
.faq-chip:hover { color: var(--yelo-light); border-color: #555; }
.faq-chip.active { color: var(--yelo-black); background: var(--yelo-yellow);
  border-color: var(--yelo-yellow); }

@media (max-width: 991.98px) {
  /* account for site nav (72px) + sticky mobile FAQ nav (~44px) */
  .faq-section { scroll-margin-top: calc(72px + 44px + 0.5rem); }
}

/* --- Footer ------------------------------------------------------------------------- */
.site-footer { background: #060607; color: var(--yelo-gray); }
.footer-heading { color: var(--yelo-light); text-transform: uppercase; letter-spacing: .1em; }
.footer-links a, .footer-contact a, .footer-bottom a { color: var(--yelo-gray);
  text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: var(--yelo-yellow); }
.footer-links li { padding: .25rem 0; }
.footer-ownership, .footer-discount { color: var(--yelo-gray); font-size: .9rem; line-height: 1.55; }
.footer-ownership { margin-bottom: .75rem; }
.footer-ownership strong, .footer-discount strong { color: var(--yelo-yellow); }
.footer-bottom { border-top: 1px solid #1c1c21; }
.social-links a { display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid #232329;
  color: var(--yelo-gray); text-decoration: none; transition: border-color .2s ease, color .2s ease; }
.social-links a:hover, .social-links a:focus-visible { border-color: var(--yelo-yellow); color: var(--yelo-yellow); }
.recent-work-follow p { color: var(--yelo-gray); }
.recent-work-social { justify-content: center; }
.recent-work-social.list-inline { display: flex; }

/* --- Breadcrumbs ---------------------------------------------------------------------- */
.yelo-breadcrumbs { background: var(--yelo-dark); padding: .75rem 0; }
.yelo-breadcrumbs a { color: var(--yelo-gray); }
.yelo-breadcrumbs .active { color: var(--yelo-yellow); }

/* --- Misc -------------------------------------------------------------------------------- */
.city-links a { color: var(--yelo-light); }
.city-links a:hover { color: var(--yelo-yellow); }
.map-embed { background: var(--yelo-dark); border-radius: 1rem; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* --- Contact page sections -------------------------------------------------------------- */
.contact-form-section { background: #f1f1f3; color: var(--yelo-black); padding: clamp(3rem, 8vw, 6rem) 0; }
.contact-form-row { gap: 0; }
.contact-form-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: #f1f1f3; }
@media (min-width: 992px) {
  .contact-form-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.contact-form-content-col { padding: clamp(2rem, 4vw, 3rem); }
.contact-form-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}

.contact-info-section { background: var(--yelo-black); color: var(--yelo-light); padding: clamp(3rem, 8vw, 6rem) 0; }
.contact-info-row { gap: 0; }
.contact-info-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: var(--yelo-black); }
@media (min-width: 992px) {
  .contact-info-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.contact-info-content-col { padding: clamp(2rem, 4vw, 3rem); }
.contact-info-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}

/* --- Contact form --------------------------------------------------------------------- */
.contact-form .form-control, .contact-form .form-select { background: #fff3e5;
  border-color: #707070; color: var(--yelo-black); }
.contact-form .form-control:focus, .contact-form .form-select:focus { background: #fff3e5;
  color: var(--yelo-black); border-color: var(--yelo-yellow); box-shadow: 0 0 0 .25rem rgba(255, 210, 0, .15); }
.contact-form .form-control::placeholder { color: #8a7a63; }
.contact-form .form-label { color: var(--yelo-black); font-weight: 600; }
.contact-form .text-required { color: #dc3545; font-weight: 700; }
.contact-form .form-text { color: #55555c; }
.contact-form .form-control.is-invalid, .contact-form .form-select.is-invalid { border-color: #dc3545; }
.contact-form .form-control.is-invalid:focus, .contact-form .form-select.is-invalid:focus {
  border-color: #dc3545; box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .18); }
.contact-form .ts-wrapper.is-invalid .ts-control { border-color: #dc3545; }
.contact-form .ts-wrapper.is-invalid.focus .ts-control { border-color: #dc3545; box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .18); }
.contact-form .form-check-input { background-color: #fff3e5; border-color: #707070; }
.contact-form .form-check-input:checked { background-color: var(--yelo-black); border-color: var(--yelo-black); }
.contact-form .form-check-input:focus { border-color: var(--yelo-yellow); box-shadow: 0 0 0 .25rem rgba(255, 210, 0, .15); }
.contact-form .form-check-label { color: var(--yelo-black); }
.contact-form select.form-select option { background: #fff3e5; color: var(--yelo-black); }
.form-status { font-weight: 600; }
.form-status--success { color: #4ade80; }
.form-status--error { color: #f87171; }
.vehicle-select-group { display: none; }
.js .vehicle-select-group { display: block; }

/* Tom Select (Make/Model) — matches the rest of the form's #fff3e5 fields */
.contact-form .ts-wrapper.form-select { padding: 0; }
.contact-form .ts-control { background: #fff3e5; border-color: #707070; color: var(--yelo-black);
  box-shadow: none; }
.contact-form .ts-control input { color: var(--yelo-black); }
.contact-form .ts-wrapper.single .ts-control { background: #fff3e5; }
.contact-form .ts-wrapper.focus .ts-control { border-color: var(--yelo-yellow); box-shadow: 0 0 0 .25rem rgba(255, 210, 0, .15); }
.contact-form .ts-dropdown { background: #fff3e5; border-color: #707070; color: var(--yelo-black); }
.contact-form .ts-dropdown .option { color: var(--yelo-black); }
.contact-form .ts-dropdown .active { background: var(--yelo-yellow); color: var(--yelo-black); }
.contact-form .ts-dropdown .no-results { color: #8a7a63; }
.contact-form .ts-wrapper.disabled .ts-control { background: #fff3e5; opacity: .5; }

/* --- Booking iframe ----------------------------------------------------------------- */
.page-book .mobile-action-bar { display: none; }
.page-book { padding-bottom: 0; }
.book-iframe-wrap { width: 100%; height: calc(100vh - 72px); }
.book-iframe { width: 100%; height: 100%; border: none; display: block; margin-top: 44px; }

/* Focus visibility (WCAG 2.4.7) */
:focus-visible { outline: 3px solid var(--yelo-yellow); outline-offset: 2px; }

/* --- Packages / pricing (Urable hybrid) ------------------------------------------------- */
.packages-section { background: var(--yelo-black); color: var(--yelo-light); padding: clamp(3rem, 8vw, 6rem) 0; }
.packages-row { gap: 0; }
.packages-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: var(--yelo-black); }
@media (min-width: 992px) {
  .packages-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.packages-content-col { padding: clamp(2rem, 4vw, 3rem); }
.packages-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: .75rem;
}
.packages-lead { color: var(--yelo-gray); margin-bottom: 0; }
.package-card { display: flex; flex-direction: column; width: 100%; position: relative;
  background: var(--yelo-dark); border: 1px solid #232329; border-radius: 1rem;
  padding: 2rem 1.5rem; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.package-card:hover, .package-card:focus-within { transform: translateY(-4px);
  border-color: var(--yelo-yellow); box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .35); }
.package-card--featured { border-color: var(--yelo-yellow);
  box-shadow: 0 0 0 1px var(--yelo-yellow), 0 1rem 2.5rem rgba(0, 0, 0, .4); }
.package-badge { position: absolute; top: -.75rem; right: 1.25rem;
  background: var(--yelo-yellow); color: var(--yelo-black); font-size: .7rem;
  font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; }
.package-name { margin-bottom: .5rem; }
.package-price { margin-bottom: 1rem; line-height: 1.1; }
.package-price-note { display: block; font-size: .8rem; color: var(--yelo-gray);
  text-transform: uppercase; letter-spacing: .03em; }
.package-price-amount { font-family: var(--yelo-font-display); font-size: 2rem;
  font-weight: 400; color: var(--yelo-light); }
.package-blurb { color: var(--yelo-gray); margin-bottom: 1.25rem; }
.package-features { margin-bottom: 1.5rem; display: grid; gap: .5rem; }
.package-features li { display: flex; align-items: flex-start; gap: .55rem;
  color: var(--yelo-light); font-size: .95rem; }
.package-check { color: var(--yelo-yellow); font-weight: 800; flex: 0 0 auto; }
.packages-disclaimer { color: var(--yelo-gray); }

/* --- Product page benefit cards --------------------------------------------------------- */
.benefit-icon { color: var(--yelo-yellow); margin-bottom: 1rem; display: flex; justify-content: center; }
.benefit-icon svg { width: 128px; height: 128px; }
.benefit-card { background: var(--yelo-dark); border: 1px solid #232329; border-radius: 1rem;
  padding: 1.5rem; transition: transform .25s ease, border-color .25s ease; }
.benefit-card:hover { transform: translateY(-3px); border-color: var(--yelo-yellow); }
.benefit-card h3 { color: var(--yelo-light); margin-bottom: .5rem; }
.benefit-card p { color: var(--yelo-gray); font-size: .95rem; }

/* --- Team & training photo cards (About page) ----------------------------------------------- */
.team-card, .training-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.team-photo { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.team-card-body { padding: 1.5rem; }

/* --- Mobile nav sub-links (product pages) ----------------------------------------------- */
.mobile-subnav { margin: 0 0 .25rem; padding-left: .9rem; border-left: 1px solid #232329; }
.mobile-subnav .nav-link { padding-top: .35rem; padding-bottom: .35rem; font-size: .95rem;
  color: var(--yelo-gray); }
.mobile-subnav .nav-link:hover, .mobile-subnav .nav-link:focus { color: var(--yelo-yellow); }

/* --- Nav density + dropdowns (8 category parents) ----------------------------------------- */
.yelo-nav .nav-link { padding-left: .7rem; padding-right: .7rem; }
.yelo-nav .dropdown-menu { max-height: 80vh; overflow-y: auto; }

/* Mobile offcanvas accordion (dark theme) */
.mobile-nav-accordion .accordion-item { background: transparent; border: 0;
  border-bottom: 1px solid #232329; }
.mobile-nav-accordion .accordion-button { background: transparent; color: var(--yelo-light);
  font-size: 1.15rem; font-weight: 600; padding: .85rem 0; box-shadow: none; }
.mobile-nav-accordion .accordion-button:not(.collapsed) { color: var(--yelo-yellow);
  background: transparent; }
.mobile-nav-accordion .accordion-button::after { filter: brightness(0) invert(1); }
.mobile-nav-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(82%) sepia(60%) saturate(1000%) hue-rotate(360deg); }
.mobile-nav-accordion .accordion-button:focus-visible { outline: 2px solid var(--yelo-yellow);
  outline-offset: 2px; }

/* --- Grouped service sections (category pages) -------------------------------------------- */
.service-group { background: var(--yelo-black); color: var(--yelo-light); padding: clamp(3rem, 8vw, 6rem) 0; scroll-margin-top: 90px; }
.service-group-row { gap: 0; }
.service-group-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: var(--yelo-black); }
@media (min-width: 992px) {
  .service-group-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.service-group-content-col { padding: clamp(2rem, 4vw, 3rem); }
.service-group-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}
.service-menu-card { scroll-margin-top: 90px; }
.smc-long { color: var(--yelo-gray); font-size: .9rem; margin-bottom: 1.1rem; padding-inline: 1rem; }

/* Card image placeholder (swap for real photos later) */
.smc-media { aspect-ratio: 16 / 10; border-radius: .75rem; margin-bottom: 1.1rem;
  position: relative; display: flex; align-items: center; justify-content: center; color: var(--yelo-gray);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1c1c21, #26262d);
  border: 1px solid #2c2c33; overflow: hidden; }
.smc-media--placeholder { align-items: flex-start; padding: 1rem; margin-bottom: 0; }
.smc-name--overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  margin: 0; padding: .65rem .85rem;
  color: var(--yelo-light) !important;
  background: linear-gradient(transparent, rgba(11,11,13,.85));
  border-radius: 0 0 .75rem .75rem;
}
.service-menu-card--featured .smc-media { border-color: rgba(255, 210, 0, .35); }


/* --- Services menu page (/services/) ---------------------------------------------------- */
/* Sticky category quick-nav: horizontal chips, scrollable on mobile */
.service-menu-nav { position: sticky; top: 72px; z-index: 1020;
  background: rgba(11, 11, 13, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid #232329; }
.service-menu-nav-list { display: flex; gap: .5rem; overflow-x: auto;
  padding: .75rem 0; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.service-menu-chip { flex: 0 0 auto; display: inline-block; white-space: nowrap;
  padding: .4rem .9rem; border-radius: 999px; border: 1px solid #2c2c33;
  color: var(--yelo-light); text-decoration: none; font-size: .85rem; font-weight: 600;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.service-menu-chip:hover, .service-menu-chip:focus-visible {
  background: var(--yelo-yellow); color: var(--yelo-black); border-color: var(--yelo-yellow); }
@media (max-width: 991.98px) { .service-menu-nav { top: 56px; } }

.service-menu-cat { scroll-margin-top: 130px; }
.service-menu-cat-head { margin-bottom: 2.5rem; }

.service-menu-card { display: flex; flex-direction: column; width: 100%; position: relative;
  background: var(--yelo-dark); border: 1px solid #232329; border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-menu-card:hover, .service-menu-card:focus-within { transform: translateY(-4px);
  border-color: var(--yelo-yellow); box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .35); }
.service-menu-card--featured { border-color: var(--yelo-yellow);
  box-shadow: 0 0 0 1px var(--yelo-yellow), 0 1rem 2.5rem rgba(0, 0, 0, .4); }
.smc-name { color: var(--yelo-light); margin-bottom: .35rem; text-transform: uppercase; padding-inline: 1rem; }
.smc-duration { display: flex; align-items: center; gap: .35rem; color: var(--yelo-gray); padding-inline: 1rem;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: .75rem; }
.smc-blurb { color: var(--yelo-gray); font-size: .95rem; margin-bottom: 1.1rem; padding-inline: 1rem; }
.smc-price { margin-top: auto; margin-bottom: 1.25rem; line-height: 1.1; padding-inline: 1rem; }
.smc-price-note { display: block; font-size: .75rem; color: var(--yelo-gray); padding-inline: 1rem;
  text-transform: uppercase; letter-spacing: .03em; }
.smc-price-amount { font-family: var(--yelo-font-display); font-size: 2rem; font-weight: 400;
  color: var(--yelo-light); }
.smc-tiers { margin-bottom: 1.25rem; display: grid; gap: .4rem; padding-inline: 1rem; }
.smc-tiers li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding-bottom: .4rem; border-bottom: 1px dashed #2c2c33; }
.smc-tiers li:last-child { border-bottom: 0; padding-bottom: 0; }
.smc-tier-label { color: var(--yelo-gray); font-size: .9rem; }
.smc-tier-amount { color: var(--yelo-yellow); font-weight: 800; white-space: nowrap; }

/* ==========================================================================
   Service cards — white surface, dark text, bold yellow titles.
   Placed last so it overrides the dark base rules above. (Keep at file end.)
   ========================================================================== */
.service-menu-card { background: #ffffff; color: #2a2a2e; border: 1px solid #e6e6e9;
  border-radius: 1rem; padding: 1.5rem; box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .12); }
.service-menu-card:hover, .service-menu-card:focus-within { transform: translateY(-4px);
  border-color: var(--yelo-yellow); box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .28); }
.service-menu-card--featured { border-color: var(--yelo-yellow);
  box-shadow: 0 0 0 2px var(--yelo-yellow), 0 1rem 2.5rem rgba(0, 0, 0, .25); }
/* uniform spacing: equal gap below every block, flush at the bottom */
.service-menu-card > * { margin-bottom: .75rem; }
.service-menu-card > *:last-child { margin-bottom: 0; }

.service-menu-card .smc-media { aspect-ratio: 16 / 10; border-radius: .75rem;
  margin-bottom: 1.25rem; border: 1px solid #e6e6e9; color: #b3b3ba; overflow: hidden;
  background: repeating-linear-gradient(45deg, #ececed 0 12px, #f5f5f6 12px 24px); }
.service-menu-card .smc-img { width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .35s ease; }
.service-menu-card:hover .smc-img, .service-menu-card:focus-within .smc-img { transform: scale(1.04); }

.service-menu-card .smc-name { color: var(--yelo-black); font-weight: 400; }
.service-menu-card .smc-duration { color: #6b6b73; }
.service-menu-card .smc-blurb { color: #34343a; }
.service-menu-card .smc-long { color: #55555d; }
.service-menu-card .smc-price-note { color: #6b6b73; }
.service-menu-card .smc-price-amount { color: var(--yelo-black); }
.service-menu-card .smc-tiers li { border-bottom-color: #ececef; }
.service-menu-card .smc-tier-label { color: #44444c; }
.service-menu-card .smc-tier-amount { color: var(--yelo-black); }

/* --- Category benefits section (30/70, white bg, dark cards) ---------------------- */
.category-benefits-section { background: #f1f1f3; color: var(--yelo-black); padding: clamp(3rem, 8vw, 6rem) 0; }
.category-benefits-row { gap: 0; }
.category-benefits-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: #f1f1f3; }
@media (min-width: 992px) {
  .category-benefits-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.category-benefits-content-col { padding: clamp(2rem, 4vw, 3rem); }
.category-benefits-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}
.category-benefits-section .benefit-card { background: var(--yelo-dark); color: var(--yelo-light); border-color: #232329; box-shadow: none; }
.category-benefits-section .benefit-card:hover { border-color: var(--yelo-yellow); box-shadow: 0 1rem 2.5rem rgba(0,0,0,.35); }
.category-benefits-section .benefit-card h3 { color: var(--yelo-light); font-weight: 400; padding-bottom: .6rem; border-bottom: 2px solid var(--yelo-yellow); }
.category-benefits-section .benefit-card p { color: var(--yelo-gray); }

/* ============================================================
   Tint Visualizer  (partials/tint-slider.php)
   ============================================================ */
.tint-viz-section {
  background: #f1f1f3;
  color: var(--yelo-black);
}
.tint-viz-row { gap: 0; }
.tint-viz-heading-col { padding: clamp(2rem, 4vw, 3rem); border-bottom: 3px solid var(--yelo-yellow); position: sticky; top: 88px; z-index: 10; background: #f1f1f3; }
@media (min-width: 992px) {
  .tint-viz-heading-col { border-bottom: none; border-right: 3px solid var(--yelo-yellow); }
}
.tint-viz-content-col { padding: clamp(2rem, 4vw, 3rem); }
.tint-viz-h2 {
  font-family: var(--yelo-font-display); font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.05;
  text-transform: uppercase; text-align: left; margin-bottom: 0;
}
/* Control colours on light background */
.tint-viz-section .tint-vehicle-seg { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.12); }
.tint-viz-section .tint-vehicle-btn { color: #34343a; }
.tint-viz-section .tint-vehicle-input:checked + .tint-vehicle-btn { color: var(--yelo-black); }
.tint-viz-section .tint-vehicle-glider { background: var(--yelo-yellow); box-shadow: 0 0 18px rgba(255,210,0,.45); }
.tint-viz-section .tint-readout-caption { color: #34343a; }
.tint-viz-section .tint-readout-value { color: var(--yelo-black); }
.tint-viz-section .tint-scale { color: #34343a; }
.tint-viz-section .tint-disclaimer { color: #34343a; }
/* WCAG-compliant legal status text on light background */
.tint-viz-section .tint-legal-status[data-state="legal"]   { color: #15803d; }
.tint-viz-section .tint-legal-status[data-state="limit"]   { color: #78350f; }
.tint-viz-section .tint-legal-status[data-state="illegal"] { color: #991b1b; }

.tint-viz { max-width: 920px; margin-inline: auto; }

/* --- Vehicle toggle (segmented control) --- */
.tint-vehicle { border: 0; padding: 0; margin: 0 0 1.25rem; }
.tint-vehicle-seg {
  position: relative; display: inline-grid; grid-auto-flow: column;
  grid-auto-columns: 1fr; gap: 0; padding: 4px; border-radius: 999px;
  background: #17171b; border: 1px solid #2a2a31;
}
.tint-vehicle-input { position: absolute; opacity: 0; pointer-events: none; }
.tint-vehicle-btn {
  position: relative; z-index: 2; cursor: pointer; user-select: none;
  min-width: 108px; text-align: center; padding: .55rem 1.4rem; border-radius: 999px;
  font-weight: 700; color: var(--yelo-gray); transition: color .2s ease;
  -webkit-text-stroke: .5px #000; text-stroke: .5px #000;
}
.tint-vehicle-input:checked + .tint-vehicle-btn { color: var(--yelo-black); }
.tint-vehicle-input:focus-visible + .tint-vehicle-btn {
  outline: 3px solid var(--yelo-yellow); outline-offset: 2px;
}
.tint-vehicle-glider {
  position: absolute; z-index: 1; top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px); border-radius: 999px; background: var(--yelo-yellow);
  box-shadow: 0 0 18px rgba(255, 210, 0, .45);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.tint-viz[data-vehicle="suv"] .tint-vehicle-glider { transform: translateX(100%); }

/* --- Image stage --- */
.tint-stage {
  position: relative; aspect-ratio: 1600 / 873; border-radius: 18px; overflow: hidden;
  background: var(--yelo-black);
}
.tint-vehicle-layer[hidden] { display: none; }
.tint-layer { position: absolute; inset: 0; }
.tint-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tint-layer-tint {
  opacity: var(--tint-opacity, 0);
  transition: opacity .18s ease-out;
  will-change: opacity;
}

/* Darkness badge over the stage */
.tint-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: grid; gap: 2px; padding: .5rem .85rem; border-radius: 12px;
  background: rgba(11, 11, 13, .62); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 210, 0, .35);
}
.tint-badge-label {
  font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; color: var(--yelo-gray);
}
.tint-badge-value { font-weight: 800; font-size: 1.1rem; color: var(--yelo-yellow); line-height: 1; }

/* --- Slider control --- */
.tint-control { margin-top: 1.35rem; }
.tint-readout { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: .6rem; }
.tint-readout-caption { color: var(--yelo-gray); font-size: .9rem; }
.tint-readout-value { font-weight: 800; font-size: 1.15rem; color: var(--yelo-light); }

.tint-range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, #0b0b0d 0%, #3a3a42 45%, var(--yelo-yellow) 100%);
  cursor: pointer; outline-offset: 4px;
}
.tint-range:focus-visible { outline: 3px solid var(--yelo-yellow); }
.tint-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--yelo-yellow); border: 3px solid #0b0b0d;
  box-shadow: 0 0 0 2px var(--yelo-yellow), 0 0 22px rgba(255, 210, 0, .7);
  transition: transform .12s ease;
}
.tint-range::-webkit-slider-thumb:active { transform: scale(1.12); }
.tint-range::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%; background: var(--yelo-yellow);
  border: 3px solid #0b0b0d; box-shadow: 0 0 0 2px var(--yelo-yellow), 0 0 22px rgba(255, 210, 0, .7);
}

.tint-scale {
  display: flex; justify-content: space-between; margin-top: .6rem;
  color: var(--yelo-gray); font-size: .72rem; font-weight: 600;
}
.tint-scale span { display: grid; text-align: center; line-height: 1.2; }
.tint-scale small { font-weight: 400; opacity: .7; font-size: .64rem; }
.tint-scale span:first-child { text-align: left; }
.tint-scale span:last-child { text-align: right; }

.tint-disclaimer { color: var(--yelo-gray); font-size: .82rem; margin-top: 1.1rem; max-width: 60ch; }

@media (max-width: 575.98px) {
  .tint-vehicle-btn { min-width: 84px; padding: .5rem 1rem; }
  .tint-scale small { display: none; }
  .tint-badge { top: 10px; right: 10px; padding: .4rem .6rem; }
  .tint-badge-value { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .tint-layer-tint, .tint-vehicle-glider, .tint-range::-webkit-slider-thumb { transition: none; }
}

/* Tint Visualizer — Minnesota legality indicator + law panel */
.tint-legal-status {
  margin: .9rem 0 0; padding: .55rem .85rem; border-radius: 12px;
  font-weight: 700; font-size: .92rem; display: flex; align-items: center; gap: .5rem;
  border: 1px solid transparent; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.tint-legal-status::before { content: ""; width: .7rem; height: .7rem; border-radius: 50%; flex: 0 0 auto; }
.tint-legal-status[data-state="legal"]   { background: rgba(46,160,67,.14); border-color: rgba(46,160,67,.5); color: #7ee2a0; }
.tint-legal-status[data-state="legal"]::before   { background: #2ea043; box-shadow: 0 0 10px #2ea043; }
.tint-legal-status[data-state="limit"]    { background: rgba(255,210,0,.12); border-color: rgba(255,210,0,.5); color: var(--yelo-yellow); }
.tint-legal-status[data-state="limit"]::before    { background: var(--yelo-yellow); box-shadow: 0 0 10px rgba(255,210,0,.7); }
.tint-legal-status[data-state="illegal"] { background: rgba(230,80,70,.13); border-color: rgba(230,80,70,.5); color: #ff9d94; }
.tint-legal-status[data-state="illegal"]::before { background: #e65046; box-shadow: 0 0 10px #e65046; }

.tint-law { margin-top: 1.1rem; border: 1px solid #2a2a31; border-radius: 14px; background: #131317; overflow: hidden; }
.tint-law > summary {
  list-style: none; cursor: pointer; padding: .95rem 1.1rem; display: flex; flex-direction: column;
  gap: .1rem; position: relative; padding-right: 3rem;
}
.tint-law > summary::-webkit-details-marker { display: none; }
.tint-law > summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; line-height: 1; color: var(--yelo-yellow); transition: transform .25s ease;
}
.tint-law[open] > summary::after { content: "\2212"; }
.tint-law-summary-title { font-weight: 800; color: var(--yelo-light); }
.tint-law-summary-hint { font-size: .8rem; color: var(--yelo-gray); }
.tint-law-body { padding: 0 1.1rem 1.1rem; }
.tint-law-intro { color: var(--yelo-gray); font-size: .9rem; }
.tint-law-list { margin: 0 0 .9rem; padding-left: 1.15rem; display: grid; gap: .45rem; }
.tint-law-list li { color: var(--yelo-light); font-size: .92rem; }
.tint-law-list strong { color: var(--yelo-light); }
.tint-law-list li::marker { color: var(--yelo-yellow); }
.tint-law-fineprint { color: var(--yelo-gray); font-size: .82rem; margin: 0; }
.tint-law abbr { text-decoration: none; border-bottom: 1px dotted var(--yelo-gray); cursor: help; }

@media (prefers-reduced-motion: reduce) {
  .tint-legal-status, .tint-law > summary::after { transition: none; }
}

/* Tint Visualizer — breathing room between the slider and the photo */
.tint-viz .tint-stage { margin-top: 1.75rem; }

/* Tint Visualizer — align scale labels to their true slider position.
   Thumb travels from 15px (min) to width-15px (max); value v (5..90) sits at
   p = (v-5)/85 of that travel. Labels are pinned to the same spots. */
.tint-scale {
  display: block; position: relative; height: 2.5rem; margin-top: .7rem;
}
.tint-scale span {
  position: absolute; top: 0; transform: translateX(-50%); text-align: center;
  display: grid; line-height: 1.2; white-space: nowrap;
}
.tint-scale span:nth-child(1) { left: 0; transform: none; text-align: left; }         /* 5%  */
.tint-scale span:nth-child(2) { left: calc((100% - 30px) * 0.1765 + 15px); }           /* 20% */
.tint-scale span:nth-child(3) { left: calc((100% - 30px) * 0.3529 + 15px); }           /* 35% */
.tint-scale span:nth-child(4) { left: calc((100% - 30px) * 0.5294 + 15px); }           /* 50% */
.tint-scale span:nth-child(5) { left: auto; right: 0; transform: none; text-align: right; } /* No Tint */

/* 30/70 section h2 — top breathing room (pt-4) */
.recent-work-h2, .home-services-h2, .why-yelo-h2,
.site-faq-h2, .home-faq-h2, .reviews-h2,
.packages-h2, .service-group-h2, .category-benefits-h2, .tint-viz-h2, .social-h2,
.contact-form-h2, .contact-info-h2 { padding-top: 1.5rem; }

/* FAQ page section h2 — bottom breathing room (pb-5) */
.page-faq .site-faq-h2 { padding-bottom: 3rem; }

/* --- Gift cards page — light section, dark cards -------------------------------- */
.page-gift-cards .service-group { background: #f1f1f3; color: var(--yelo-black); }
.page-gift-cards .service-group-h2 { color: var(--yelo-black); }
.page-gift-cards .service-group-heading-col { border-bottom-color: var(--yelo-yellow); background: #f1f1f3; }
@media (min-width: 992px) {
  .page-gift-cards .service-group-heading-col { border-right-color: var(--yelo-yellow); }
}
.page-gift-cards .service-menu-card { background: var(--yelo-dark); color: var(--yelo-light); border-color: #232329; box-shadow: none; }
.page-gift-cards .service-menu-card:hover,
.page-gift-cards .service-menu-card:focus-within { border-color: var(--yelo-yellow); box-shadow: 0 1rem 2.5rem rgba(0,0,0,.35); }
.page-gift-cards .service-menu-card .smc-name { color: var(--yelo-light); }
.page-gift-cards .service-menu-card .smc-duration { color: var(--yelo-gray); }
.page-gift-cards .service-menu-card .smc-blurb { color: var(--yelo-gray); }
.page-gift-cards .service-menu-card .smc-long { color: var(--yelo-gray); }
.page-gift-cards .service-menu-card .smc-price-amount { color: var(--yelo-light); }
.page-gift-cards .service-menu-card .smc-price-note { color: var(--yelo-gray); }
.page-gift-cards .service-menu-card .smc-tiers li { border-bottom-color: #2c2c33; }
.page-gift-cards .service-menu-card .smc-tier-label { color: var(--yelo-gray); }
.page-gift-cards .service-menu-card .smc-tier-amount { color: var(--yelo-yellow); }
.page-gift-cards .service-menu-card .smc-media { border-color: #232329; color: var(--yelo-gray);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 12px, transparent 12px 24px),
              linear-gradient(135deg, #1c1c21, #26262d); }
