/* ============================================================
   513 Auto Clean, Mobile Detailing, Cincinnati
   Design system: bold red + black, warm paper. Mobile-first.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --ink:        #0b0e13;
  --ink-2:      #111620;
  --ink-3:      #1a212d;
  --paper:      #f5f6f3;
  --paper-2:    #ffffff;
  --line:       #e3e5e0;
  --line-dark:  rgba(255,255,255,.10);

  --text:       #14171d;
  --text-soft:  #565d68;
  --text-inv:   #eef1f4;
  --text-inv-soft: #a7b0bd;

  --red:       #e01a1a;
  --red-bright:#ff3b3b;
  --red-deep:  #b41212;
  --red-ghost: rgba(224,26,26,.12);

  --amber:      #f0a93f;

  --shadow-sm:  0 1px 2px rgba(11,14,19,.06), 0 2px 6px rgba(11,14,19,.05);
  --shadow-md:  0 8px 24px rgba(11,14,19,.10), 0 2px 6px rgba(11,14,19,.06);
  --shadow-lg:  0 24px 60px rgba(11,14,19,.18), 0 8px 20px rgba(11,14,19,.10);
  --shadow-aqua:0 14px 40px rgba(200,20,20,.35);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-deep); display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.eyebrow.on-dark { color: var(--red-bright); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.25rem); margin: .5rem 0 .9rem; }
.section-head p { color: var(--text-soft); font-size: 1.08rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  padding: 1rem 1.6rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { --bg: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); --fg: #ffffff; }
.btn-primary:hover { box-shadow: var(--shadow-aqua); }
.btn-ink { --bg: var(--ink); --fg: #fff; }
.btn-ghost { --bg: transparent; --fg: var(--text); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost.on-dark { --fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.25); }
.btn-ghost.on-dark:hover { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--ink); color: var(--text-inv-soft);
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 1rem; }
.topbar a { color: var(--text-inv-soft); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; align-items: center; gap: 1.4rem; }
.topbar .tb-phone { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; }
.topbar .tb-phone svg { width: 14px; height: 14px; color: var(--red-bright); }
.topbar .tb-socials { display: flex; gap: 1rem; }
.topbar .tb-socials svg { width: 15px; height: 15px; }
.tb-hide { display: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,246,243,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand .mark-img { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; display: block; }
.mobile-menu .brand .mark-img, .footer .brand .mark-img { width: 40px; height: 40px; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-3) 100%);
  display: grid; place-items: center; color: var(--red-bright);
  font-family: var(--font-display); font-weight: 800; font-size: .92rem; letter-spacing: -.04em;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,80,80,.5) 50%, transparent 60%);
  transform: translateX(-100%); animation: shine 5s var(--ease) 1.5s infinite;
}
.brand .b-name { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: -.03em; line-height: 1; }
.brand .b-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }

.nav-links { display: none; align-items: center; gap: 0; }
.nav-links a {
  font-weight: 600; font-size: .9rem; color: var(--text); padding: .5rem .52rem; border-radius: 8px;
  position: relative; transition: color .2s; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: .52rem; right: .52rem; bottom: .35rem; height: 2px;
  background: var(--red); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-links a:hover { color: var(--red-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: none; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-cta .btn { padding: .75rem 1.1rem; font-size: .92rem; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 200;
  background: var(--ink); color: var(--text-inv);
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; padding: 2rem 1.75rem; gap: .25rem;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-menu .mm-close { color: #fff; font-size: 1.8rem; line-height: 1; padding: .25rem .5rem; }
.mobile-menu a.mm-link {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--text-inv);
  padding: .7rem 0; border-bottom: 1px solid var(--line-dark); transition: color .2s, padding-left .2s;
}
.mobile-menu a.mm-link:hover { color: var(--red-bright); padding-left: .4rem; }
.mobile-menu .mm-cta { margin-top: auto; display: grid; gap: .7rem; padding-top: 1.5rem; }
.scrim {
  position: fixed; inset: 0; background: rgba(8,10,14,.55); z-index: 150; opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s; backdrop-filter: blur(2px);
}
.scrim.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden; isolation: isolate;
  min-height: min(92vh, 820px); display: flex; align-items: center;
  padding-block: clamp(90px, 14vh, 150px);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.35) 35%, rgba(8,8,10,.78) 100%),
    radial-gradient(70% 60% at 15% 80%, rgba(200,20,20,.30), transparent 70%);
}
.hero .wrap { position: relative; z-index: 1; width: 100%; }
.hero-inner { max-width: 720px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.5rem;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  padding: .5rem 1rem .5rem .65rem; border-radius: 999px; font-size: .86rem; font-weight: 600;
  color: #fff; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 4px rgba(255,59,59,.25); animation: pulse 2.4s infinite; }

.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5rem); font-weight: 800; letter-spacing: -.035em;
  margin-bottom: 1.3rem; text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero h1 .grad {
  background: linear-gradient(105deg, #fff 0%, var(--red-bright) 55%, var(--red) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 2rem; text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }

/* Google reviews badge */
.g-badge {
  display: inline-flex; align-items: center; gap: 1.05rem; margin-top: .75rem;
  background: rgba(255,255,255,.97); color: var(--text); border-radius: 999px;
  padding: .9rem 1.6rem .9rem 1.3rem; box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.g-badge:hover { transform: translateY(-3px); box-shadow: 0 28px 64px rgba(11,14,19,.28); }
.g-badge .g-logo { width: 36px; height: 36px; flex-shrink: 0; }
.g-badge .g-meta { display: flex; flex-direction: column; line-height: 1.15; gap: .15rem; }
.g-badge .g-stars { color: var(--amber); font-size: 1.25rem; letter-spacing: .08em; }
.g-badge .g-text { font-size: .92rem; color: var(--text-soft); font-weight: 600; }

.hero-scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 1; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; display: none; }
.hero-scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

.btn-light { --bg: rgba(255,255,255,.96); --fg: var(--ink); }
.btn-light:hover { --bg: #fff; }

/* trust marquee */
.trustbar { background: var(--ink-2); color: var(--text-inv-soft); border-top: 1px solid var(--line-dark); }
.trustbar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.2rem; padding-block: 1.1rem; }
.trustbar .ti { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 600; }
.trustbar .ti svg { width: 18px; height: 18px; color: var(--red-bright); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper); }
.svc-tabs { display: inline-flex; padding: 5px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 2.5rem; box-shadow: var(--shadow-sm); }
.svc-tab {
  padding: .65rem 1.4rem; border-radius: 999px; font-weight: 700; font-size: .98rem; color: var(--text-soft);
  transition: color .25s, background .25s, box-shadow .25s; display: inline-flex; align-items: center; gap: .5rem;
}
.svc-tab svg { width: 18px; height: 18px; }
.svc-tab.active { color: var(--ink); background: var(--paper); box-shadow: var(--shadow-sm); }
.svc-tab.active { color: #ffffff; background: linear-gradient(135deg, var(--red), var(--red-deep)); }

.svc-panel { display: none; }
.svc-panel.active { display: block; animation: fadeUp .5s var(--ease); }
.svc-grid { display: grid; gap: 1.5rem; }

.svc-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card.featured { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), var(--shadow-md); }
.svc-tag {
  position: absolute; top: -12px; right: 1.5rem; background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #ffffff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.svc-card h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.svc-card .svc-meta { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.svc-card .price { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--ink); letter-spacing: -.03em; }
.svc-card .price s { color: var(--text-soft); font-size: 1.1rem; font-weight: 500; opacity: .7; }
.svc-card .dur { font-size: .85rem; color: var(--text-soft); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.svc-card .dur svg { width: 14px; height: 14px; }
.svc-card .svc-desc { color: var(--text-soft); font-size: .97rem; margin-bottom: 1.2rem; }
.svc-card ul.feat { display: grid; gap: .5rem; margin-bottom: 1.6rem; }
.svc-card ul.feat li { display: flex; gap: .6rem; font-size: .93rem; color: var(--text); align-items: flex-start; }
.svc-card ul.feat li svg { width: 17px; height: 17px; color: var(--red-deep); flex-shrink: 0; margin-top: .18rem; }
.svc-card .svc-foot { margin-top: auto; }

.svc-note {
  margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center;
  background: var(--red-ghost); border: 1px dashed rgba(200,20,20,.4); border-radius: var(--r-md);
  padding: 1rem 1.3rem; font-size: .95rem; color: var(--red-deep); font-weight: 600;
}
.svc-note svg { width: 20px; height: 20px; flex-shrink: 0; }

/* add-ons */
.addons { margin-top: 2.5rem; }
.addons h3 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.addon-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; }
.addon {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1rem 1.1rem;
  display: flex; align-items: center; gap: .8rem; transition: border-color .25s, transform .25s;
}
.addon:hover { border-color: var(--red); transform: translateY(-2px); }
.addon .ad-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--ink); color: var(--red-bright); display: grid; place-items: center; flex-shrink: 0; }
.addon .ad-ic svg { width: 19px; height: 19px; }
.addon b { font-size: .96rem; display: block; line-height: 1.2; }
.addon span { font-size: .8rem; color: var(--text-soft); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--ink); color: var(--text-inv); }
.process .section-head h2 { color: #fff; }
.process .section-head p { color: var(--text-inv-soft); }
.steps { display: grid; gap: 1.3rem; counter-reset: step; }
.step {
  position: relative; background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  padding: 2rem 1.7rem; transition: transform .3s var(--ease), border-color .3s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(255,80,80,.4); }
.step .step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #ffffff;
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
}
.step h3 { font-size: 1.35rem; color: #fff; margin-bottom: .5rem; }
.step p { color: var(--text-inv-soft); font-size: .98rem; }
.step .step-ic { position: absolute; top: 1.9rem; right: 1.7rem; color: rgba(255,255,255,.14); }
.step .step-ic svg { width: 40px; height: 40px; }

/* ============================================================
   ABOUT / OWNER
   ============================================================ */
.about { background: var(--paper); }
.about-grid { display: grid; gap: clamp(36px, 5vw, 64px); align-items: center; }
.about-photo { position: relative; }
.about-photo .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .sig {
  position: absolute; right: -14px; bottom: -18px; background: var(--ink); color: #fff;
  border-radius: var(--r-md); padding: 1rem 1.3rem; box-shadow: var(--shadow-lg); max-width: 230px;
}
.about-photo .sig b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.about-photo .sig span { font-size: .82rem; color: var(--text-inv-soft); }
.about-photo .sig .ico { color: var(--red-bright); margin-bottom: .4rem; display: inline-flex; }
.about-copy h2 { font-size: clamp(2rem, 5vw, 3rem); margin: .6rem 0 1.2rem; }
.about-copy p { color: var(--text-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }
.about-copy p strong { color: var(--text); }
.promises { display: grid; gap: .7rem; margin: 1.6rem 0 2rem; }
.promise { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; color: var(--text); }
.promise svg { width: 22px; height: 22px; color: var(--red-deep); flex-shrink: 0; margin-top: .1rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--paper-2); }
.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 1/1;
  background: var(--ink-2); cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item .gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1rem .9rem;
  background: linear-gradient(to top, rgba(8,10,14,.85), transparent);
  color: #fff; font-weight: 600; font-size: .9rem; transform: translateY(8px); opacity: 0; transition: .3s var(--ease);
}
.gal-item:hover .gal-cap { transform: translateY(0); opacity: 1; }
.gal-item .gal-badge {
  position: absolute; top: .7rem; left: .7rem; background: rgba(8,10,14,.7); color: #fff; backdrop-filter: blur(4px);
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 6px;
}
.gal-item .gal-badge.after { background: var(--red-deep); color: #ffffff; }
.gallery .gal-foot { margin-top: 2.5rem; text-align: center; }

/* before / after sliders */
.ba-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.ba-slider { margin: 0; }
.ba-stage {
  position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-2); box-shadow: var(--shadow-md); user-select: none; touch-action: pan-y;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before-layer { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); will-change: clip-path; }
.ba-tag {
  position: absolute; top: .8rem; z-index: 3; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 6px; backdrop-filter: blur(4px); pointer-events: none;
}
.ba-tag.b { left: .8rem; background: rgba(8,10,14,.72); color: #fff; }
.ba-tag.a { right: .8rem; background: var(--red-deep); color: #ffffff; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; transform: translateX(-50%);
  background: #fff; box-shadow: 0 0 12px rgba(0,0,0,.4); z-index: 4; pointer-events: none;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.ba-knob svg { width: 22px; height: 22px; }
.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0;
  cursor: ew-resize; -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 48px; height: 100vh; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 48px; height: 600px; border: none; background: transparent; cursor: ew-resize; }
.ba-range:focus-visible + .ba-divider,
.ba-slider:focus-within .ba-divider { box-shadow: 0 0 0 2px var(--red), 0 0 12px rgba(0,0,0,.4); }
.ba-slider figcaption { margin-top: .9rem; font-weight: 600; font-size: .96rem; color: var(--text); text-align: center; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); }
.reviews-widget { max-width: 720px; margin-inline: auto; }
.rev-fallback {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3rem); box-shadow: var(--shadow-md); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.rev-fallback .g-logo { width: 40px; height: 40px; }
.rev-fallback .rf-score { display: flex; align-items: center; gap: .8rem; margin-top: .6rem; }
.rev-fallback .rf-score .num { font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.rev-fallback .rf-score .stars { color: var(--amber); font-size: 1.5rem; letter-spacing: .08em; }
.rev-fallback .rf-text { color: var(--text-soft); font-size: 1.05rem; }
.rev-fallback .rf-text b { color: var(--text); }
.rev-fallback .rf-cta { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.2rem; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { background: var(--ink); color: var(--text-inv); }
.areas .section-head h2 { color: #fff; }
.areas .section-head p { color: var(--text-inv-soft); }
.area-grid { display: grid; gap: 1.2rem; }
.area-col {
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 1.7rem;
}
.area-col h3 { color: #fff; font-size: 1.2rem; display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.area-col h3 svg { width: 20px; height: 20px; color: var(--red-bright); }
.area-col .codes { font-size: .8rem; color: var(--red-bright); font-weight: 700; letter-spacing: .05em; margin-bottom: .9rem; }
.area-col ul { display: flex; flex-wrap: wrap; gap: .4rem; }
.area-col li { font-size: .86rem; color: var(--text-inv-soft); background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); padding: .3rem .7rem; border-radius: 999px; }
.areas .area-note { margin-top: 1.8rem; text-align: center; color: var(--text-inv-soft); font-size: 1rem; }
.areas .area-note b { color: var(--red-bright); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }
.faq-list { display: grid; gap: .8rem; max-width: 820px; }
.faq-item { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s; }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.4rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--red-ghost); color: var(--red-deep); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; }
.faq-item summary .q-ic svg { width: 15px; height: 15px; }
.faq-item[open] summary .q-ic { transform: rotate(45deg); background: var(--red); color: #ffffff; }
.faq-item .faq-a { padding: 0 1.4rem 1.3rem; color: var(--text-soft); font-size: 1rem; }

/* ============================================================
   SCHEDULE / AVAILABILITY CALENDAR
   ============================================================ */
.schedule { background: var(--paper-2); }
.cal-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(.9rem, 3vw, 1.6rem); box-shadow: var(--shadow-md); max-width: 1000px; margin-inline: auto; }
.cal-legend { display: flex; gap: 1.4rem; justify-content: flex-end; margin-bottom: 1rem; font-size: .85rem; font-weight: 600; color: var(--text-soft); }
.cal-legend i { width: 13px; height: 13px; border-radius: 3px; display: inline-block; margin-right: .4rem; vertical-align: -1px; }
.cal-legend .dot-open { background: #fff; border: 1px solid var(--line); }
.cal-legend .dot-busy { background: var(--red); }
.cal-foot { text-align: center; margin-top: 1.6rem; }
.cal-card iframe { border-radius: var(--r-md); display: block; }

/* FullCalendar theming (red/black) */
#schedule-cal {
  --fc-border-color: var(--line);
  --fc-today-bg-color: rgba(224,26,26,.05);
  --fc-now-indicator-color: var(--red);
  --fc-page-bg-color: #fff;
  font-family: var(--font-body); font-size: .92rem;
}
#schedule-cal .fc-event, #schedule-cal .fc-timegrid-event { border: none; background: var(--red); box-shadow: none; }
#schedule-cal .fc-unavail { font-size: .72rem; font-weight: 800; color: #fff; padding: 2px 5px; letter-spacing: .02em; line-height: 1.2; }
#schedule-cal .fc .fc-button-primary { background: var(--ink); border-color: var(--ink); font-weight: 600; }
#schedule-cal .fc .fc-button-primary:hover { background: var(--red); border-color: var(--red); }
#schedule-cal .fc .fc-button-primary:not(:disabled).fc-button-active,
#schedule-cal .fc .fc-button-primary:not(:disabled):active { background: var(--red); border-color: var(--red); }
#schedule-cal .fc .fc-toolbar-title { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.02em; }
#schedule-cal .fc .fc-toolbar.fc-header-toolbar { margin-bottom: 1rem; flex-wrap: wrap; gap: .6rem; }
#schedule-cal .fc-col-header-cell-cushion, #schedule-cal .fc-timegrid-slot-label-cushion { color: var(--text-soft); text-decoration: none; }
#schedule-cal .fc-col-header-cell-cushion { font-weight: 700; }

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--text-inv); }
.contact::before {
  content: ""; position: absolute; inset: 0; opacity: .6;
  background: radial-gradient(45% 55% at 90% 0%, rgba(224,26,26,.18), transparent 70%);
}
.contact .wrap { position: relative; }
.contact-grid { display: grid; gap: clamp(36px, 5vw, 60px); align-items: start; }
.contact-info .eyebrow { color: var(--red-bright); }
.contact-info h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); color: #fff; margin: .6rem 0 1rem; }
.contact-info > p { color: var(--text-inv-soft); font-size: 1.1rem; margin-bottom: 2rem; max-width: 440px; }
.contact-quick { display: grid; gap: .9rem; margin-bottom: 2rem; }
.cq {
  display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dark); border-radius: var(--r-md); padding: 1rem 1.2rem; transition: border-color .25s, transform .25s, background .25s;
}
.cq:hover { border-color: var(--red); transform: translateX(4px); background: rgba(255,255,255,.07); }
.cq .cq-ic { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #ffffff; display: grid; place-items: center; flex-shrink: 0; }
.cq .cq-ic svg { width: 23px; height: 23px; }
.cq > span:last-child { display: flex; flex-direction: column; gap: .3rem; }
.cq .cq-label { display: block; font-size: .78rem; color: var(--text-inv-soft); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.cq .cq-val { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; line-height: 1.15; word-break: break-word; }
.contact-hours { font-size: .92rem; color: var(--text-inv-soft); display: flex; align-items: center; gap: .5rem; }
.contact-hours svg { width: 17px; height: 17px; color: var(--red-bright); }

/* form card */
.form-card { background: var(--paper-2); border-radius: var(--r-xl); padding: clamp(1.6rem, 4vw, 2.4rem); box-shadow: var(--shadow-lg); color: var(--text); }
.form-card h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.form-card .fc-sub { color: var(--text-soft); font-size: .96rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .45rem; color: var(--text); }
.field label .req { color: var(--red-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .85rem 1rem; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa1ac; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-ghost); background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; gap: 1.1rem; }
.form-foot { margin-top: 1.5rem; }
.form-foot .fineprint { font-size: .82rem; color: var(--text-soft); text-align: center; margin-top: .9rem; }
.form-msg { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--r-sm); font-weight: 600; font-size: .95rem; display: none; }
.form-msg.ok { display: block; background: var(--red-ghost); color: var(--red-deep); border: 1px solid rgba(200,20,20,.3); }
.form-msg.err { display: block; background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6; }
.form-card.is-sending button[type=submit] { opacity: .7; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--text-inv-soft); padding-block: clamp(48px, 6vw, 72px) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer .brand .b-name, .footer .brand .mark { color: var(--red-bright); }
.footer .brand .b-name { color: #fff; }
.footer .f-about { margin-top: 1.1rem; font-size: .95rem; max-width: 300px; }
.footer .f-socials { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer .f-socials a { width: 40px; height: 40px; border-radius: 12px; background: var(--ink-2); border: 1px solid var(--line-dark); display: grid; place-items: center; transition: background .25s, transform .25s, color .25s; }
.footer .f-socials a:hover { background: var(--red); color: #ffffff; transform: translateY(-3px); }
.footer .f-socials svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer .f-links { display: grid; gap: .6rem; }
.footer .f-links a { font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer .f-links a:hover { color: var(--red-bright); padding-left: .3rem; }
.footer .f-contact li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; margin-bottom: .7rem; }
.footer .f-contact svg { width: 16px; height: 16px; color: var(--red-bright); flex-shrink: 0; }
.footer .f-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; font-size: .85rem; }
.footer-bottom a:hover { color: var(--red-bright); }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line-dark); box-shadow: 0 -6px 24px rgba(8,10,14,.18);
  transform: translateY(110%); transition: transform .4s var(--ease);
}
.mobile-bar.show { transform: translateY(0); }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem; font-weight: 700; font-size: 1rem; }
.mobile-bar a svg { width: 19px; height: 19px; }
.mobile-bar .mb-call { background: var(--ink); color: #fff; }
.mobile-bar .mb-quote { background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #ffffff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes shine { 0% { transform: translateX(-120%); } 60%,100% { transform: translateX(120%); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 var(--red-ghost); } 50% { box-shadow: 0 0 0 6px transparent; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .tb-hide { display: inline; }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 820px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .rev-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-scroll { display: block; }
}
/* Full top nav only appears once there is room for all links + CTAs */
@media (min-width: 1040px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-bar { display: none !important; }
}
@media (min-width: 1100px) {
  .addon-grid { grid-template-columns: repeat(6, 1fr); }
}
