/* ============================================================
   STEALTH AUTO FILMS — Shared Stylesheet
   Design: Premium cinematic window tinting · Atlanta GA
   ============================================================ */

/* ─── Design Tokens ───────────────────────────────────────── */
:root {
  /* Core palette — near-black automotive dark */
  --black:        #070708;
  --black-2:      #0b0b0d;
  --black-3:      #111114;
  --dark:         #181820;
  --dark-2:       #1e1e28;
  --gray:         #38383e;
  --gray-2:       #56565e;
  --silver:       #8888a0;
  --silver-light: #b0b0c4;
  --white:        #ffffff;

  /* Accent — tinted glass blue */
  --tint:         #2e80cc;
  --tint-light:   #4898dc;
  --tint-glow:    rgba(46,128,204,0.18);
  --tint-glow-sm: rgba(46,128,204,0.10);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  /* Layout */
  --container-max: 1320px;
  --container-pad: clamp(20px, 5vw, 80px);
  --section-v:     100px;

  /* Radius */
  --r-xs: 2px;
  --r-sm: 3px;
  --r:    3px;
  --r-lg: 3px;
  --r-xl: 3px;

  /* Glass card */
  --glass-bg:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.07);
  --glass-hover:  rgba(255,255,255,0.07);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow:    0 6px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.6);
  --shadow-xl: 0 32px 100px rgba(0,0,0,0.7);
  --glow-tint: 0 0 40px rgba(46,128,204,0.25);

  /* Transitions */
  --t:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
video { display: block; }

/* ─── Layout Utilities ────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section { padding: var(--section-v) 0; }

/* ─── Typography ──────────────────────────────────────────── */
.display-h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.0;
}

.section-h {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.0;
}

.section-h em { font-style: normal; color: var(--tint-light); }

.section-sub {
  font-size: 1rem;
  color: var(--silver);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.75;
}

/* Label tag */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tint-light);
  margin-bottom: 16px;
}
.label-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--tint-light);
  flex-shrink: 0;
}
.label-tag.white { color: rgba(255,255,255,0.45); }
.label-tag.white::before { background: rgba(255,255,255,0.3); }
.label-tag.silver { color: var(--silver-light); }
.label-tag.silver::before { background: var(--silver-light); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-xs);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-tint {
  background: var(--tint);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(46,128,204,0.4);
}
.btn-tint:hover {
  background: var(--tint-light);
  box-shadow: 0 6px 32px rgba(46,128,204,0.55);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--silver-light);
  transform: translateY(-1px);
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.45);
}

.btn-outline-tint {
  background: transparent;
  color: var(--tint-light);
  border: 1px solid var(--tint);
}
.btn-outline-tint:hover {
  background: var(--tint-glow);
  box-shadow: var(--glow-tint);
}

.btn-sms {
  background: #1da462;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(29,164,98,0.35);
}
.btn-sms:hover {
  background: #22b96e;
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: 0.74rem; }
.btn-lg { padding: 17px 36px; font-size: 0.88rem; }

/* ─── Forms ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group.full { grid-column: 1/-1; }

.form-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xs);
  font-size: 0.93rem;
  color: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--tint);
  box-shadow: 0 0 0 3px var(--tint-glow-sm);
}
.form-select option { background: var(--dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }

.fsub {
  width: 100%;
  padding: 15px 24px;
  background: var(--tint);
  color: var(--white);
  border-radius: var(--r-xs);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 4px 24px rgba(46,128,204,0.4);
  border: none;
}
.fsub:hover {
  background: var(--tint-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(46,128,204,0.55);
}

/* ─── Navigation ──────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--t-slow), border-color var(--t-slow);
  border-bottom: 1px solid transparent;
}
#nav .container {
  padding-left: 20px;
}

#nav.solid,
#nav.always-solid {
  background: rgba(3,3,4,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.05);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@keyframes hero-fade-in {
  0%   { opacity: 0; }
  100% { opacity: 0.85; }
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(72,152,220,0.15)); }
  50%       { filter: drop-shadow(0 0 12px rgba(72,152,220,0.45)); }
}
.nav-logo {
  height: 70px;
  width: auto;
  display: block;
  opacity: 1;
  margin-top: 9px;
  filter: drop-shadow(0 0 20px rgba(72,152,220,0.8));
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  background: var(--tint);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  box-shadow: 0 0 20px rgba(46,128,204,0.4);
}

.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand .nm {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.0;
}
.nav-brand .sub {
  font-size: 0.55rem;
  color: var(--tint-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links li a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-insta {
  display: flex;
  align-items: center;
  padding: 7px 8px !important;
  color: rgba(255,255,255,0.6) !important;
  transition: color var(--t) !important;
}
.nav-insta:hover { color: #E1306C !important; background: none !important; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  padding: 9px 16px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: var(--r-sm) !important;
}
.nav-phone:hover { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.3) !important; }

.nav-cta-btn {
  background: var(--tint) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--r-xs) !important;
  font-weight: 700 !important;
  box-shadow: 0 0 20px rgba(46,128,204,0.35) !important;
  margin-left: 12px;
}
.nav-cta-btn:hover { background: var(--tint-light) !important; box-shadow: 0 0 28px rgba(46,128,204,0.5) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  border-radius: 2px;
  transition: var(--t);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.35); }
.breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.breadcrumb .sep { opacity: 0.4; }

/* ─── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-fade-in 2.5s ease-out 0.3s forwards;
}
.gallery-hero .hero-video {
  animation-duration: 5s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,7,8,0.68) 0%, rgba(7,7,8,0.32) 50%, rgba(7,7,8,0.1) 100%),
    linear-gradient(to top, rgba(7,7,8,0.72) 0%, transparent 40%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,128,204,0.1);
  border: 1px solid rgba(46,128,204,0.25);
  border-radius: 3px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 24px;
  height: 24px;
  background: var(--tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(46,128,204,0.6);
}
.hero-badge-dot svg { width: 12px; height: 12px; }
.hero-badge-stars { color: #f59e0b; letter-spacing: 1px; }

/* Headline */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--tint-light); }
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust indicators */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--tint-light);
  flex-shrink: 0;
}

/* Quote card */
.hero-quote-card {
  background: rgba(7,7,8,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 34px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(0,0,0,0.5);
}
.hero-quote-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}
.hero-quote-card p {
  font-size: 0.82rem;
  color: var(--silver);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-quote-card .form-group { margin-bottom: 12px; }
.hero-quote-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.hero-quote-footer svg { width: 13px; height: 13px; color: var(--tint); }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  animation: bounceDown 2.2s ease infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 0.65; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: scrollDot 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ─── Stats Rail ──────────────────────────────────────────── */
.stats-rail {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
}

.stats-rail-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(46,128,204,0.04); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ─── Video Bar Section ───────────────────────────────────── */
.video-bar {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--black-3);
}

.video-bar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.video-bar-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%),
    linear-gradient(to bottom, var(--black) 0%, transparent 25%, transparent 75%, var(--black) 100%);
  z-index: 1;
}

.video-bar-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

.video-bar-content p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.video-bar-content p span { color: var(--tint-light); }

/* ─── Services Section ────────────────────────────────────── */
.services-section {
  padding: var(--section-v) 0;
  background: var(--black-3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.svc-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), background var(--t);
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46,128,204,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--glow-tint);
  background: var(--glass-hover);
}

.svc-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.svc-card:hover .svc-img img { transform: scale(1.06); }

/* Gradient fills for when images not present */
.svc-ceramic  { background: linear-gradient(135deg, #0a1220, #0e1e35); }
.svc-carbon   { background: linear-gradient(135deg, #100e0a, #1a1814); }
.svc-wind     { background: linear-gradient(135deg, #0c1018, #142030); }
.svc-ppf      { background: linear-gradient(135deg, #0e1008, #1a2012); }
.svc-chrome   { background: linear-gradient(135deg, #141414, #282828); }
.svc-wrap     { background: linear-gradient(135deg, #0e0810, #1a1428); }
.svc-resi     { background: linear-gradient(135deg, #0a1218, #0e2030); }
.svc-comm     { background: linear-gradient(135deg, #101418, #1e2830); }
.svc-light    { background: linear-gradient(135deg, #180808, #301414); }

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}

.svc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tint);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(46,128,204,0.4);
}

.svc-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.svc-icon svg { width: 16px; height: 16px; }

.svc-body {
  padding: 22px 22px 28px;
}

.svc-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tint-light);
  margin-bottom: 8px;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.svc-card p {
  font-size: 0.86rem;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tint-light);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--t), color var(--t);
}
.svc-card:hover .svc-link { gap: 12px; }
.svc-link svg { width: 13px; height: 13px; transition: transform var(--t); }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ─── Ceramic Benefits Section ────────────────────────────── */
.benefits-section {
  padding: var(--section-v) 0;
  background: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.benefit-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: transform var(--t), border-color var(--t), background var(--t);
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46,128,204,0.25);
  background: var(--glass-hover);
}

.benefit-icon-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(46,128,204,0.25);
  background: rgba(46,128,204,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--tint-light);
  transition: border-color var(--t), background var(--t);
}
.benefit-card:hover .benefit-icon-ring {
  border-color: rgba(46,128,204,0.5);
  background: rgba(46,128,204,0.14);
}
.benefit-icon-ring svg { width: 28px; height: 28px; }

.benefit-pct {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--tint-light);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.84rem;
  color: var(--silver);
  line-height: 1.65;
}

/* ─── Before/After Slider ─────────────────────────────────── */
.ba-section {
  padding: var(--section-v) 0;
  background: var(--black-2);
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

.ba-row.single { grid-template-columns: 1fr; }

.ba-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--r);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow-xl);
  background: var(--dark);
}
.ba-before-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ba-clip {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.ba-clip .ba-after-img {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ba-divider {
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px rgba(46,128,204,0.3);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(46,128,204,0.4);
  pointer-events: none;
  z-index: 11;
}
.ba-handle svg { width: 18px; height: 18px; color: var(--black); }

.ba-label {
  position: absolute;
  bottom: 16px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  z-index: 5;
  pointer-events: none;
}
.ba-label.before-l { left: 16px; }
.ba-label.after-l  { right: 16px; color: var(--tint-light); }

.ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--tint);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 16px rgba(46,128,204,0.5);
}

.ba-meta {
  display: flex;
  gap: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  overflow: hidden;
}
.ba-meta-item {
  flex: 1;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.ba-meta-item:last-child { border-right: none; }
.ba-meta-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 3px;
}
.ba-meta-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Project Gallery ─────────────────────────────────────── */
.projects-section {
  padding: var(--section-v) 0;
  background: var(--black-3);
}

.projects-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.fbtn {
  padding: 8px 18px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--t);
}
.fbtn:hover { border-color: rgba(46,128,204,0.4); color: var(--tint-light); }
.fbtn.active {
  background: var(--tint);
  color: var(--white);
  border-color: var(--tint);
  box-shadow: 0 0 20px rgba(46,128,204,0.35);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.proj-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  cursor: pointer;
}
.proj-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46,128,204,0.3);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(46,128,204,0.12);
}

.proj-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.proj-card:hover .proj-img img { transform: scale(1.06); }

/* Gradient fills */
.pi1 { background: linear-gradient(135deg, #080e18, #101828); }
.pi2 { background: linear-gradient(135deg, #0e0c10, #1a1420); }
.pi3 { background: linear-gradient(135deg, #101008, #1e2010); }
.pi4 { background: linear-gradient(135deg, #181010, #2e1818); }
.pi5 { background: linear-gradient(135deg, #0c0c14, #141428); }
.pi6 { background: linear-gradient(135deg, #100e08, #201c10); }
.pi7 { background: linear-gradient(135deg, #080c10, #101820); }
.pi8 { background: linear-gradient(135deg, #10080e, #201018); }

.proj-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
  z-index: 1;
}

.proj-hover {
  position: absolute;
  inset: 0;
  background: rgba(46,128,204,0.12);
  opacity: 0;
  transition: opacity var(--t);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-card:hover .proj-hover { opacity: 1; }
.proj-hover span {
  background: var(--white);
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
}

.proj-tint-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--tint);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.proj-vehicle-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}
.proj-vehicle-chip svg { width: 11px; height: 11px; flex-shrink: 0; }

.proj-body { padding: 18px 20px 22px; }

.proj-type {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tint-light);
  margin-bottom: 6px;
}

.proj-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.2;
}

.proj-card p {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.6;
}

.proj-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.proj-spec {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.06em;
}
.proj-spec strong { color: var(--white); }

/* ─── Social / Reel Section ───────────────────────────────── */
.reel-section {
  padding: var(--section-v) 0;
  background: var(--black);
}

.reel-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
}

.reel-content {}

.reel-video-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(46,128,204,0.15);
  border: 1px solid rgba(255,255,255,0.08);
  /* Phone-like aspect ratio for vertical video */
  aspect-ratio: 9/16;
}

.reel-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 2;
  transition: background var(--t);
}
.reel-play-btn:hover { background: rgba(0,0,0,0.15); }
.reel-play-btn svg { width: 56px; height: 56px; color: var(--white); filter: drop-shadow(0 0 16px rgba(0,0,0,0.5)); }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.reel-thumb {
  aspect-ratio: 9/16;
  background: var(--dark);
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--t), transform var(--t);
}
.reel-thumb:hover { border-color: rgba(46,128,204,0.4); transform: scale(1.03); }
.reel-thumb video { width: 100%; height: 100%; object-fit: cover; }

/* ─── Service Areas / Local SEO ───────────────────────────── */
.areas-section {
  padding: var(--section-v) 0;
  background: var(--black-3);
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}

.areas-body {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 28px;
}
.areas-body strong { color: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
  margin-bottom: 36px;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--silver-light);
  transition: var(--t);
}
.area-chip:hover { border-color: rgba(46,128,204,0.35); color: var(--white); background: var(--glass-hover); }
.area-chip svg { width: 12px; height: 12px; color: var(--tint-light); flex-shrink: 0; }

.areas-map {
  border-radius: var(--r);
  overflow: hidden;
  height: 400px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 100px;
}
.areas-map iframe { width: 100%; height: 100%; border: none; display: block; }

.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--silver);
  text-align: center;
  padding: 32px;
  font-size: 0.85rem;
}
.map-placeholder svg { width: 44px; height: 44px; color: var(--tint); opacity: 0.5; }
.map-placeholder p { line-height: 1.65; color: rgba(255,255,255,0.35); }

/* ─── Reviews ─────────────────────────────────────────────── */
.reviews-section {
  padding: var(--section-v) 0;
  background: var(--black-2);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}

.g-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 14px 20px;
}

.g-logo { width: 32px; height: 32px; flex-shrink: 0; }
.g-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.g-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.g-count { font-size: 0.7rem; color: var(--silver); margin-top: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 24px 22px;
  transition: transform var(--t), border-color var(--t);
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(46,128,204,0.2); }

.review-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.rv1 { background: linear-gradient(135deg, var(--tint), #1a5090); }
.rv2 { background: linear-gradient(135deg, #505060, #282832); }
.rv3 { background: linear-gradient(135deg, #406080, #1c3050); }
.rv4 { background: linear-gradient(135deg, #604050, #301820); }
.rv5 { background: linear-gradient(135deg, #507040, #284020); }
.rv6 { background: linear-gradient(135deg, #705040, #402010); }

.review-name { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.review-meta { font-size: 0.72rem; color: var(--silver); }
.review-meta span { color: var(--tint-light); font-weight: 600; }

.review-stars { color: #f59e0b; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 12px; }

.review-text { font-size: 0.87rem; color: var(--silver); line-height: 1.7; }

.review-vehicle {
  display: inline-block;
  background: rgba(46,128,204,0.08);
  color: var(--tint-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-top: 12px;
}

.reviews-cta { text-align: center; margin-top: 52px; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-v) 0;
  background: var(--black-3);
}

.faq-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: rgba(46,128,204,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t);
}
.faq-item.open .faq-q { color: var(--white); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--silver);
  font-size: 1.1rem;
  transition: transform var(--t), background var(--t), border-color var(--t), color var(--t);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--tint);
  border-color: var(--tint);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }

/* ─── Contact Section ─────────────────────────────────────── */
.contact-section {
  padding: var(--section-v) 0;
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: start;
}

.contact-lead {
  font-size: 1rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.c-icon {
  width: 44px; height: 44px;
  background: rgba(46,128,204,0.1);
  border: 1px solid rgba(46,128,204,0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tint-light);
  flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; }
.c-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-bottom: 4px; }
.c-value { font-size: 1rem; font-weight: 600; color: var(--white); }
.c-value a { color: var(--white); transition: color var(--t); }
.c-value a:hover { color: var(--tint-light); }

.contact-hours {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 20px;
}
.contact-hours h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.38); }
.hours-row .time { font-weight: 600; }
.hours-row .closed { color: rgba(255,255,255,0.25); }

.contact-form-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-xl);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}
.contact-form-card h3 em { font-style: normal; color: var(--tint-light); }
.contact-form-card p { font-size: 0.84rem; color: var(--silver); margin-bottom: 28px; line-height: 1.5; }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: #040405;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ft-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ft-brand .bn {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}
.ft-brand .bs { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tint-light); }
.ft-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.3); line-height: 1.7; margin-top: 14px; margin-bottom: 18px; }

.ft-nap { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 18px; }
.ft-nap a { color: rgba(255,255,255,0.45); }
.ft-nap a:hover { color: var(--tint-light); }

.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  transition: var(--t);
}
.ft-social a:hover { border-color: var(--tint); color: var(--tint-light); background: rgba(46,128,204,0.08); }
.ft-social svg { width: 14px; height: 14px; }

.ft-col h5 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tint-light); margin-bottom: 18px; }
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.35); transition: color var(--t); }
.ft-col ul li a:hover { color: var(--white); }

.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.18);
}
.ft-bottom a { color: rgba(255,255,255,0.28); }
.ft-bottom a:hover { color: var(--tint-light); }

/* ─── Mobile Sticky CTAs ──────────────────────────────────── */
.mob-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 10px 12px 14px;
  background: rgba(7,7,8,0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 10px;
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
}
.mob-call, .mob-text, .mob-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 12px;
  border-radius: var(--r-xs);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mob-call { background: var(--dark-2); color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.mob-text { background: #1da462; color: var(--white); }
.mob-quote { background: var(--tint); color: var(--white); box-shadow: 0 0 20px rgba(46,128,204,0.4); }

/* ─── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Gallery Page ────────────────────────────────────────── */
.gallery-hero {
  background: var(--black);
  padding: 140px 0 68px;
  position: relative;
  overflow: hidden;
}
.gallery-hero::after {
  display: none;
}
.gallery-hero--gallery .hero-overlay {
  background:
    linear-gradient(to top,    rgb(17,17,20) 0%, rgba(17,17,20,0.75) 25%, rgba(17,17,20,0.1) 55%, transparent 75%),
    linear-gradient(to bottom, rgb(17,17,20) 0%, rgba(17,17,20,0.5) 15%, transparent 40%),
    linear-gradient(to right,  rgba(17,17,20,0.6) 0%, transparent 40%),
    linear-gradient(to left,   rgba(17,17,20,0.6) 0%, transparent 40%);
}
.gallery-hero--services .hero-overlay {
  background:
    linear-gradient(to top,    rgb(11,11,13) 0%, rgba(11,11,13,0.75) 25%, rgba(11,11,13,0.1) 55%, transparent 75%),
    linear-gradient(to bottom, rgb(11,11,13) 0%, rgba(11,11,13,0.5) 15%, transparent 40%),
    linear-gradient(to right,  rgba(11,11,13,0.6) 0%, transparent 40%),
    linear-gradient(to left,   rgba(11,11,13,0.6) 0%, transparent 40%);
}
.gallery-hero .container { position: relative; z-index: 1; }
.gallery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 14px 0 16px;
  line-height: 1.0;
}
.gallery-hero h1 em { font-style: normal; color: var(--tint-light); }
.gallery-hero p { color: var(--silver); font-size: 1rem; max-width: 480px; line-height: 1.7; }

.gallery-full { padding: 64px 0 100px; background: var(--black-3); }
.gallery-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.masonry { columns: 3; column-gap: 16px; }
.mitem {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
}
.mitem img { width: 100%; display: block; transition: transform var(--t-slow); -webkit-user-drag: none; }
.mitem:hover img { transform: scale(1.04); }

.mitem-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.mitem:hover .mitem-over { opacity: 1; }
.mitem-over h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); margin-bottom: 3px; }
.mitem-over .mcat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tint-light); margin-bottom: 5px; }
.mitem-over .mloc { font-size: 0.7rem; color: rgba(255,255,255,0.55); }

/* ─── Tint % Visual Comparison ────────────────────────────── */
.tint-scale {
  display: flex;
  gap: 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}

.tint-pct {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: background var(--t);
}

.tint-pct:nth-child(1) { background: rgba(5,5,5,0.98); }
.tint-pct:nth-child(2) { background: rgba(15,15,18,0.95); }
.tint-pct:nth-child(3) { background: rgba(30,30,38,0.90); }
.tint-pct:nth-child(4) { background: rgba(55,55,65,0.85); }
.tint-pct:nth-child(5) { background: rgba(90,90,100,0.70); }

.tint-pct:hover { filter: brightness(1.2); }

.tint-pct-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.tint-pct-label { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.tint-pct-name { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 6px; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr 360px; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .ft-top { grid-template-columns: 240px 1fr 1fr; }
  .ft-top .ft-col:last-child { grid-column: 2; grid-row: 2; }
  .reel-inner { grid-template-columns: 1fr 280px; gap: 40px; }
  .areas-inner { grid-template-columns: 1fr 380px; gap: 48px; }
}

@media (max-width: 1024px) {
  :root { --section-v: 72px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-quote-card { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 7vw, 4.2rem); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .ba-row { grid-template-columns: 1fr; }
  .ba-wrap { height: 380px; }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .reel-inner { grid-template-columns: 1fr; }
  .reel-video-frame { max-width: 260px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-map { position: static; height: 320px; }
  .stats-rail-inner { grid-template-columns: repeat(3,1fr); }
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(5) { grid-column: 2; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; }
  .nav-links { display: none; flex-direction: column; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:nth-child(n+4) { display: none; }
  .tint-scale { flex-direction: column; }
  .hero .container { padding-top: 64px; }
  .hero h1 { font-size: 2.6rem; }
  .stats-rail-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(5) { grid-column: 1/-1; border-right: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-top .ft-brand { grid-column: 1/-1; }
  .ft-top .ft-col:last-child { grid-column: auto; grid-row: auto; }
  .mob-cta { display: flex; }
  body { padding-bottom: 68px; }
  .masonry { columns: 2; }
  .reel-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .masonry { columns: 1; }
  .reel-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
