/*
 * SeaWraps Theme CSS
 * ===================
 * Design decisions:
 * - Dark theme: Black (#0a0a0a) bg with lime green (#7ed321) accent.
 *   SeaWraps brand colors: lime green, grey, black. The green accent
 *   on dark background creates a bold, distinctive look that stands out
 *   from the typical blue/cyan schemes used by competitors.
 * - Typography: Inter at multiple weights. Clean, modern, highly legible.
 *   Used by most top-tier automotive protection shops.
 * - Layout: Full-width hero with gradient overlay, card-based service grid,
 *   strong CTAs with cyan accent. Inspired by Protective Film Solutions'
 *   visual hierarchy and EMWraps' trust signal placement.
 * - Mobile-first: All styles start at 375px and scale up.
 * - No frameworks, no jQuery, no bloat.
 */

/* ── Reset & Base ──────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

/* ── Utility ───────────────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--color-secondary);
}

.section-surface {
  background-color: var(--color-surface);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

/* ── Decorative Background Shapes ─────────────────────────────────────────── */
/* Subtle geometric accents that add depth to every page.
   Uses nth-child to vary shapes across sections so no two are alike. */

.section {
  position: relative;
  overflow: hidden;
}

/* Floating diamond — appears on odd sections, top-right */
.section:nth-child(odd)::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -30px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--color-accent);
  opacity: 0.04;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

/* Thin diagonal line — appears on even sections, bottom-left */
.section:nth-child(even)::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: -60px;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.06;
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 0;
}

/* Large ghost chevron — on every 3rd section, right side */
.section:nth-child(3n)::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  width: 250px;
  height: 250px;
  transform: translateY(-50%);
  border: none;
  opacity: 0.025;
  background: var(--color-accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

/* Small circle cluster — on every 4th section, top-left */
.section:nth-child(4n)::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.08;
  box-shadow:
    25px 15px 0 0 var(--color-accent),
    50px -5px 0 -1px var(--color-accent),
    12px 40px 0 -2px var(--color-accent),
    60px 30px 0 -1px var(--color-accent);
  pointer-events: none;
  z-index: 0;
  transform: rotate(0deg);
}

/* Angled corner cut — subtle on body for global depth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 35vw;
  height: 100vh;
  background: linear-gradient(
    200deg,
    rgba(126, 211, 33, 0.012) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

/* Thin vertical accent stripe — left edge of viewport */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 2px;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-accent) 30%,
    var(--color-accent) 70%,
    transparent 100%
  );
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* Ensure section content stays above decorative shapes */
.section > .container,
.section > div:not(.bg-shapes-layer),
.section-cta-bottom > .container {
  position: relative;
  z-index: 2;
}

/* Showcase: inner has no stacking context; photo img floats above shapes */
.section-showcase > .showcase-inner {
  position: relative;
}

.section-showcase .showcase-photo img {
  position: relative;
  z-index: 4;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(126, 211, 33, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
/*
 * Design notes (HQD-inspired):
 * - Two-tier header: utility bar + main nav
 * - Logo centered with SVG curve dip beneath
 * - Light-weight typography, generous spacing
 * - Smooth .5s cubic-bezier transitions
 * - Single accent: var(--color-accent) / lime green
 */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ── Utility bar ── */
.header-util {
  background: #111;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-util-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-util-left,
.header-util-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.util-link {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color .3s ease;
}

.util-link:hover { color: #fff; }
.util-link svg { stroke: var(--color-accent); }

.util-cta {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent);
}

.util-cta:hover { color: #fff; }

.util-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

.util-hours {
  color: rgba(255,255,255,0.4);
}

.util-social {
  color: rgba(255,255,255,0.4);
  transition: color .3s ease;
}

.util-social:hover { color: #fff; }

/* ── Main nav ── */
.header-nav {
  position: relative;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.95) 30%,
    rgba(40,40,40,0.95) 38%,
    rgba(70,70,70,0.92) 44%,
    rgba(110,110,110,0.88) 50%,
    rgba(70,70,70,0.92) 56%,
    rgba(40,40,40,0.95) 62%,
    rgba(10,10,10,0.95) 70%,
    rgba(10,10,10,0.95) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-bottom: 0;
  overflow: visible;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.5)) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* No bridge needed - SVG overlaps nav bottom directly */

.header-nav-inner {
  position: relative;
  z-index: 20;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  position: relative;
}

.nav-group {
  display: none; /* Hidden on mobile */
  align-items: center;
  gap: 0;
  flex: 1;
}

.nav-left { justify-content: flex-end; padding-right: 2rem; }
.nav-right { justify-content: flex-start; padding-left: 2rem; }

.nav-group li { list-style: none; }

.nav-group a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-group a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.nav-group a:hover {
  color: #fff;
}

.nav-group a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── Nav Dropdown ──────────────────────────────────────────────────────────── */

.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 220px;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(126,211,33,0.1);
}

.nav-dropdown a::after {
  display: none;
}

/* ── Mobile Nav Sub-items ─────────────────────────────────────────────────── */

.mobile-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-parent.expanded .mobile-nav-sub {
  max-height: 300px;
}

.mobile-nav-sub li { margin-bottom: 0; }

.mobile-nav-sub a {
  font-size: 0.85rem;
  padding: 0.5rem 0.875rem;
  color: rgba(255,255,255,0.4);
  text-transform: none;
  letter-spacing: 0.02em;
}

.mobile-nav-sub a:hover {
  color: var(--color-accent);
}

/* Center logo - sits inside the chevron dip */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 46px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

/* Spacer so nav items don't overlap the logo area */
.nav-logo-spacer {
  width: 200px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: brightness(1.8) contrast(1.1) drop-shadow(0 4px 8px rgba(0,0,0,0.6));
  transition: filter 0.3s ease, transform 0.15s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.nav-logo:hover img {
  filter: brightness(2) contrast(1.1) drop-shadow(0 8px 16px rgba(0,0,0,0.5)) drop-shadow(0 0 10px rgba(126,211,33,0.4));
}

/* CTA button in nav (desktop) - matches mockup: text + green circle arrow */
.nav-cta-btn {
  display: none; /* Hidden on mobile */
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.375rem 0.375rem 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 100px;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s cubic-bezier(0,1,.5,1);
}

.nav-cta-btn:hover {
  border-color: var(--color-accent);
  color: #fff;
}

.nav-cta-btn .cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  transition: transform .3s ease;
}

.nav-cta-btn .cta-arrow svg {
  stroke: #111;
}

.nav-cta-btn:hover .cta-arrow {
  transform: translateX(2px);
}

/* SVG shape - forms the curved shield-shaped dip hanging below the nav bar */
.nav-curve {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 1;
  margin-top: -1px; /* tiny overlap to prevent sub-pixel gap */
}

.nav-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Show desktop curve by default, hide mobile */
.nav-curve--mobile { display: none; }
.nav-curve--desktop { display: block; }

/* Mobile toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  position: absolute;
  right: 1.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Menu-open scroll lock (applied to <html>) ─────────────────────────── */
html.menu-open,
html.menu-open body {
  overflow: hidden !important;
  height: 100%;
  touch-action: none;
  -webkit-overflow-scrolling: none;
}

/* ── Mobile nav overlay ──────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  z-index: 10000;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

/* Close button (X) inside menu */
.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s ease 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.mobile-nav.open .mobile-nav-close {
  opacity: 1;
  transform: rotate(0deg);
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2;
  transition: stroke 0.2s ease;
}

.mobile-nav-close:hover svg {
  stroke: var(--color-accent);
}

.mobile-nav-inner {
  text-align: left;
  padding: 1rem 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mobile-nav-logo {
  height: auto;
  max-width: 200px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.mobile-nav.open .mobile-nav-logo {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.mobile-nav li {
  margin-bottom: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open li {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger the menu items */
.mobile-nav.open li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open li:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.open li:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav.open li:nth-child(8) { transition-delay: 0.45s; }
.mobile-nav.open li:nth-child(9) { transition-delay: 0.5s; }

.mobile-nav > .mobile-nav-inner > a.mobile-nav-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, background 0.2s ease, color 0.2s ease;
}

.mobile-nav.open > .mobile-nav-inner > a.mobile-nav-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav > .mobile-nav-inner > a.mobile-nav-cta + a.mobile-nav-cta {
  transition-delay: 0.55s;
}

.mobile-nav.open > .mobile-nav-inner > a.mobile-nav-cta + a.mobile-nav-cta {
  transition-delay: 0.55s;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a:hover,
.mobile-nav a:focus { color: #fff; }

/* Active accent indicator */
.mobile-nav-parent > a::after {
  content: '+';
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.mobile-nav-parent.expanded > a::after {
  transform: rotate(45deg);
}

/* CTA buttons in mobile nav */
.mobile-nav-cta {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-cta:first-of-type {
  margin-top: 1rem;
}

.mobile-nav-cta + .mobile-nav-cta {
  margin-top: 0.5rem;
}

/* Desktop breakpoint for header */
@media (min-width: 1024px) {
  .header-util { display: block; }
  .nav-group { display: flex; }
  .nav-cta-btn { display: inline-flex; }
  .mobile-menu-toggle { display: none; }

}

/* Hide utility bar on mobile */
@media (max-width: 1023px) {
  .header-util { display: none; }
}

/* Stars */
.review-stars { display: inline-flex; gap: 1px; }
.star { color: #f5a623; font-size: 0.875rem; }
.star-empty { color: #333; font-size: 0.875rem; }
.star-half { color: #f5a623; opacity: 0.6; font-size: 0.875rem; }


/* ── Hero: Three Panels ───────────────────────────────────────────────────── */

.hero-panels {
  display: flex;
  flex-direction: column;
  margin-top: 70px; /* Below mobile header */
}

.hero-panel {
  position: relative;
  height: 50vh;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background .6s cubic-bezier(0,1,.5,1);
}

.hero-panel:hover .hero-panel-overlay {
  background: rgba(0,0,0,0.15);
}

/* Video panel: video hidden by default, fades in on hover */
.hero-panel-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.hero-panel-video:hover .hero-panel-vid {
  opacity: 1;
}

/* Hover image swap for WRAP and TRANSFORM panels */
.hero-panel-hover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.hero-panel-swap:hover .hero-panel-hover-img {
  opacity: 1;
}

/* Centered hover text on all panels */
.hero-panel-hover-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease 0.15s;
  pointer-events: none;
}

.hero-panel:hover .hero-panel-hover-text {
  opacity: 1;
}

.hero-panel-hover-text p {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.4);
}

/* Hide labels on hover when secondary content appears */
.hero-panel:hover .hero-panel-content {
  opacity: 0;
}

.hero-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero-panel-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  color: #fff;
}

.hero-panel-content p {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-panels {
    flex-direction: row;
    margin-top: 0; /* Full bleed on desktop, header overlaps */
  }

  .hero-panel {
    flex: 1;
    height: 85vh;
    min-height: 500px;
  }

  .hero-panel-content h2 {
    font-size: 3rem;
  }

  .hero-panel-content {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-panels {
    margin-top: 0;
  }

  .hero-panel-content h2 {
    font-size: 3.5rem;
  }
}


/* ── Section: Intro (About) ───────────────────────────────────────────────── */

/* ── Trust: Car Traffic + Brand Logos ──────────────────────────────────────── */

.section-trust-marquee {
  padding: 3rem 0 2rem;
  background: var(--color-bg);
  overflow: hidden;
}

.trust-headline {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}

/* Brand name marquee */
.brand-marquee {
  display: flex;
  width: max-content;
  padding: 0.25rem 0;
}

.marquee-right {
  animation: scrollRight 25s linear infinite;
}

.marquee-left {
  animation: scrollLeft 28s linear infinite;
}

@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.brand-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-name {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 2rem;
  transition: color 0.3s ease;
}

.brand-name:hover {
  color: rgba(255,255,255,0.5);
}

.brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
  flex-shrink: 0;
}

/* Certification brand logos */
.cert-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 767px) {
  .cert-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 479px) {
  .cert-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.75rem 1rem;
  text-decoration: none;
  position: relative;
  transition: background 0.3s ease;
}

/* Vertical dividers between cards */
.cert-card + .cert-card {
  border-left: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 767px) {
  .cert-card:nth-child(3n+1) { border-left: none; }
}

@media (max-width: 479px) {
  .cert-card + .cert-card { border-left: 1px solid rgba(255,255,255,0.06); }
  .cert-card:nth-child(2n+1) { border-left: none; }
}

.cert-card:hover {
  background: rgba(255,255,255,0.03);
}

.cert-card img {
  height: 28px !important;
  max-height: 28px;
  max-width: 100px;
  width: auto !important;
  object-fit: contain;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.cert-card:hover img {
  opacity: 0.9;
}

.cert-card-name {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.cert-card:hover .cert-card-name {
  color: #fff;
}

.cert-card-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cert-card:hover .cert-card-link {
  opacity: 0.7;
  transform: translateY(0);
}

/* ── Showcase: Angled Photo + Stats ───────────────────────────────────────── */

.section-showcase {
  position: relative;
  overflow: hidden;
  background: #161616;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

.showcase-dark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 1rem 2rem 1.5rem;
  background: #161616;
}

.showcase-stats {
  max-width: 600px;
  margin: 0 auto;
}

.showcase-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.showcase-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.stat-star {
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.15rem;
  width: 0.85em;
  height: 0.85em;
}

.stat-block--cta {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.showcase-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
}

.showcase-cta--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
}

.showcase-cta--primary:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-block {
  position: relative;
  padding-top: 1rem;
}

.stat-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.showcase-photo {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161616;
}

.showcase-photo img {
  width: auto;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

/* Desktop: Side by side with angled diagonal slash */
@media (min-width: 1024px) {
  .showcase-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-height: 750px;
    overflow: hidden;
  }

  .showcase-dark {
    padding: 1rem 4rem 1rem 6rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }

  .showcase-stats {
    margin: 0 0 0 auto;
    max-width: 500px;
  }

  .showcase-photo {
    margin-left: -10%;
    overflow: hidden;
    justify-content: flex-end;
  }

  .showcase-photo img {
    position: relative;
    max-height: none;
    height: 160%;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
  }
}

/* ── Showcase Divider ──────────────────────────────────────────────────── */
.showcase-divider {
  display: none;
}

/* ── Core Services 3-Panel Cards ──────────────────────────────────────── */
.core-services {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}
/* Ambient glow behind cards */
.core-services-inner {
  position: relative;
}
/* ── Header block ── */
.core-services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Banner — full-bleed green strip with geometric edges */
.core-services-banner {
  position: relative;
  margin: 0 -1.5rem 1.75rem;
  background: var(--color-accent);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  padding: 0.8rem 0;
}
.core-services-banner::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: #161616;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}
.core-services-banner-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  z-index: 1;
}
.csb-word {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.csb-dot {
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.5;
}

/* Shimmer sweep on banner — disabled, was distracting */

/* Section title */
.cs-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 0.75rem;
}
.core-services-subtitle {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  max-width: 440px;
}

/* ── Card grid ── */
.core-services-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Individual card */
.core-svc-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: #fff;
  background: #111;
  box-shadow: 0 0 40px rgba(126,211,33,0.25), 0 0 80px rgba(126,211,33,0.1);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
}
/* Accent border via inset shadow */
.core-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid var(--color-accent);
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.4s ease;
}
.core-svc-card:hover::before {
  border-color: var(--color-accent);
}
.core-svc-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(126,211,33,0.15),
    0 -2px 30px rgba(126,211,33,0.04);
}
/* Badge row: icon + number */
.core-svc-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.core-svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(126,211,33,0.25);
  border-radius: 8px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}
.core-svc-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent);
}
.core-svc-num {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}
.core-svc-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.core-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.core-svc-card:hover .core-svc-img img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.1);
}
.core-svc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.75) 65%, rgba(0,0,0,0.93) 100%);
  transition: background 0.5s ease;
}
.core-svc-card:hover .core-svc-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.97) 100%);
}
.core-svc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  padding: 2rem 1.5rem;
}
.core-svc-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.core-svc-divider {
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  border-top: 2px solid var(--color-accent);
}
.core-svc-services {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.core-svc-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1), opacity 0.4s ease 0.1s, margin 0.4s ease;
}
.core-svc-card:hover .core-svc-desc {
  max-height: 120px;
  opacity: 1;
  margin: 0.25rem 0 0.5rem;
}
.core-svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
}
.core-svc-card:hover .core-svc-arrow {
  opacity: 1;
  transform: translateY(0);
}
.core-svc-arrow svg {
  transition: transform 0.3s ease;
}
.core-svc-card:hover .core-svc-arrow svg {
  transform: translateX(4px);
}

/* CTA below cards */
.core-services-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.cs-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cs-cta-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(126,211,33,0.06);
}
.cs-cta-link svg {
  transition: transform 0.3s ease;
}
.cs-cta-link:hover svg {
  transform: translateX(4px);
}

/* Core services responsive */
@media (max-width: 900px) {
  .core-services-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .core-svc-card {
    aspect-ratio: 16 / 9;
  }
  .core-svc-title {
    font-size: 2rem;
  }
  .core-svc-desc {
    max-height: none;
    opacity: 1;
    margin: 0 0 0.5rem;
  }
  .core-svc-arrow {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Showcase Lead Form (split layout) ─────────────────────────────────── */
.lead-form-split {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem;
}

.lead-form-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 0;
  overflow: visible;
}

.lead-form-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0;
}

.lead-form-accent-line {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin: 1.25rem 0;
  border-radius: 2px;
}

.lead-form-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 420px;
}

.lead-form-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.lead-form-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.lead-form-perks li svg {
  flex-shrink: 0;
}

.lead-form-contact {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.lead-form-phone-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
}

.lead-form-tel {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: color 0.2s ease;
}

.lead-form-tel:hover {
  color: var(--color-accent);
}

.lead-form-hours {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

.lead-form-breakout {
  display: none;
}

@media (min-width: 768px) {
  .lead-form-breakout {
    display: block;
    position: relative;
    margin-top: 2rem;
    overflow: visible;
  }

  .lead-form-breakout img {
    position: relative;
    z-index: 4;
    width: 180%;
    max-width: none;
    height: auto;
    margin-left: -130%;
  }
}

.customizer-cta-block {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(126, 211, 33, 0.15);
  border-radius: 8px;
  background: rgba(126, 211, 33, 0.04);
}

@media (min-width: 768px) {
  .lead-form-split {
    position: relative;
  }
  .customizer-cta-block {
    position: absolute;
    top: 620px;
    left: 3%;
    right: 55%;
    z-index: 5;
  }
}

.customizer-cta-block h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.customizer-cta-block p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.lead-form-card {
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
}

.lead-form-card iframe {
  border: none;
  border-radius: 4px;
  display: block;
  transition: height 0.3s ease;
}

@media (min-width: 768px) {
  .lead-form-split {
    grid-template-columns: 5fr 6fr;
    gap: 4rem;
    padding: 0 3rem 2rem;
    align-items: start;
  }

  .lead-form-info {
    position: sticky;
    top: 6rem;
    padding: 2rem 0;
  }
}

/* ── Review Cards Strip ────────────────────────────────────────────────── */
.review-cards-strip {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: -18rem auto 0;
  padding: 0 2rem 4rem;
}

@media (max-width: 767px) {
  .review-cards-strip {
    margin-top: 0;
    padding-top: 3rem;
  }
}

.review-cards-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-cards-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 0.25rem;
}

.review-cards-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-cards-stars {
  display: flex;
  gap: 2px;
}

.review-cards-score {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.review-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .review-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: rgba(126, 211, 33, 0.2);
}

.review-card-stars {
  display: flex;
  gap: 2px;
}

.review-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  flex: 1;
}

.review-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-card-name {
  font-size: 0.85rem;
  font-weight: 500;
}

.review-card-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.review-google-icon {
  vertical-align: -2px;
  margin-left: 4px;
}

.review-cards-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ═══ PROCESS / HOW IT WORKS ═══ */
.section-process {
  background: var(--color-dark);
  padding: 6rem 0;
  overflow: hidden;
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.process-header .heading-center {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.process-header-line {
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.process-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.process-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.process-phone-btn,
.process-cta-row .btn-outline-light {
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.process-cta-row .btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

/* Timeline — desktop: horizontal 4-col grid */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Horizontal connecting line across step markers */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), rgba(126,211,33,0.3));
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step marker (number circle) — sits on the horizontal line */
.process-step-marker {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.process-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #111;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--color-dark), 0 0 20px rgba(126,211,33,0.3);
}

.process-step-line {
  display: none;
}

/* Content card */
.process-step-content {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.process-step-content:hover {
  border-color: rgba(126,211,33,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(126,211,33,0.08);
  transform: translateY(-4px);
}

.process-step-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.process-step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-step-content:hover .process-step-img-wrap img {
  transform: scale(1.06);
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 1.25rem 1.25rem 0.5rem;
  letter-spacing: 0.02em;
}

.process-step-desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  padding: 0 1.25rem 1.5rem;
  flex: 1;
}

/* Desktop large */
@media (min-width: 1024px) {
  .process-header .heading-center {
    font-size: 3rem;
  }

  .process-timeline {
    gap: 1.75rem;
  }

  .process-step-title {
    font-size: 1.2rem;
  }

  .process-step-desc {
    font-size: 0.875rem;
  }
}

/* Tablet / mobile: single-column vertical timeline */
@media (max-width: 767px) {
  .section-process {
    padding: 4rem 0;
  }

  .process-header {
    margin-bottom: 3rem;
  }

  .process-header .heading-center {
    font-size: 1.75rem;
  }

  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, var(--color-accent), rgba(126,211,33,0.15));
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    transition-delay: 0s;
  }

  .process-step-marker {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process-step-num {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    box-shadow: 0 0 0 5px var(--color-dark), 0 0 15px rgba(126,211,33,0.25);
  }

  .process-step-line {
    display: block;
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--color-accent), rgba(126,211,33,0.1));
    min-height: 40px;
  }

  .process-step:last-child .process-step-line {
    display: none;
  }

  .process-step-content {
    width: auto;
    flex: 1;
    margin-left: 1rem !important;
    margin-right: 0 !important;
    margin-bottom: 1.5rem;
  }

  .process-step-title {
    font-size: 1.1rem;
    padding: 1rem 1rem 0.35rem;
  }

  .process-step-desc {
    font-size: 0.8125rem;
    padding: 0 1rem 1.25rem;
  }

  .process-cta-row .btn-outline-light {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
  }
}

/* Shared utilities */
.container-wide {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2rem;
}

.label-sm {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.label-center { text-align: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: gap .3s ease;
}

.link-arrow::after {
  content: '\2192';
  transition: transform .3s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}


/* ── Section: Services ────────────────────────────────────────────────────── */

/* ── Services Section V2 ───────────────────────────────────────────────────── */

.section-services {
  padding: 4rem 0 0;
  background: #111;
  position: relative;
}

/* Bottom gradient transition into next section */
.section-services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #111, var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

.heading-center {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 3rem;
}

/* Header: left-aligned title + right description */
.svc-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.svc-header-left .label-sm {
  text-align: left;
}

.svc-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}

.text-accent {
  color: var(--color-accent);
}

.svc-count {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.svc-header-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 400px;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 1.25rem;
}

/* Shared card styles */
.svc-card-v2 {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.svc-card-v2:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

.svc-card-v2-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-card-v2:hover .svc-card-v2-img img {
  transform: scale(1.06);
}

/* Gradient overlay */
.svc-card-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 70%,
    rgba(0,0,0,0.15) 100%
  );
  transition: background 0.4s ease;
}

.svc-card-v2:hover::after {
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 45%,
    rgba(0,0,0,0.2) 70%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Magazine number */
.svc-card-v2-num {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Tagline (always visible) */
.svc-card-v2-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  display: block;
}

/* Badge (top-right pill) */
.svc-card-v2-badge {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 3;
  background: var(--color-accent);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  line-height: 1;
}

/* Content overlay at bottom */
.svc-card-v2-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.svc-card-v2-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}

.svc-card-v2-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.svc-card-v2:hover .svc-card-v2-content p {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 0.5rem;
}

.svc-card-v2-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.svc-card-v2:hover .svc-card-v2-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Green accent line on hover */
.svc-card-v2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-card-v2:hover::before {
  transform: scaleX(1);
}

/* Per-image object-position overrides for best framing */
.svc-card-v2--standard:nth-child(1) .svc-card-v2-img img {
  /* Charger (tint): portrait photo, show the car */
  object-position: center 35%;
}

.svc-card-v2--standard:nth-child(2) .svc-card-v2-img img {
  /* Ceramic: show the glossy surface */
  object-position: center 60%;
}

.svc-card-v2--standard:nth-child(3) .svc-card-v2-img img {
  /* Challenger: center on the front grille */
  object-position: center 45%;
}

.svc-card-v2--standard:nth-child(4) .svc-card-v2-img img {
  /* BeezeBuildz 190E: darken to match other cards */
  filter: brightness(0.65);
}

/* Featured row (2 large cards) */
.svc-featured-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.svc-card-v2--featured {
  height: 320px;
}

/* Standard row (4 smaller cards) */
.svc-standard-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.svc-card-v2--standard {
  height: 280px;
}

.svc-card-v2--standard .svc-card-v2-num {
  font-size: 2.5rem;
}

/* Section CTA */
.svc-section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 2;
}

.svc-section-cta::before {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 0.5rem;
}

.svc-cta-lead {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.svc-cta-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.svc-cta-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
}

.svc-cta-btn--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
  padding: 1.1rem 3rem;
  font-size: 0.9rem;
}

.svc-cta-btn--primary:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* Legacy link arrow (keep for other pages) */
.link-arrow-sm {
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Mobile: show descriptions always (no hover on touch) */
@media (max-width: 767px) {
  .svc-card-v2-content p {
    max-height: 60px;
    opacity: 1;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
  }

  .svc-card-v2-arrow {
    opacity: 1;
    transform: translateY(0);
  }

  .svc-card-v2--featured {
    height: 300px;
  }

  .svc-card-v2--standard {
    height: 260px;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .svc-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }

  .svc-featured-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-standard-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card-v2--featured {
    height: 360px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section-services {
    padding: 6rem 0 0;
  }

  .svc-card-v2--featured {
    height: 420px;
  }

  .svc-card-v2--featured .svc-card-v2-num {
    font-size: 5rem;
  }

  .svc-card-v2--featured .svc-card-v2-content {
    padding: 2rem;
  }

  .svc-card-v2--featured .svc-card-v2-content h3 {
    font-size: 1.5rem;
  }

  .svc-card-v2--featured .svc-card-v2-tag {
    font-size: 0.7rem;
  }

  .svc-standard-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .svc-card-v2--standard {
    height: 280px;
  }
}


/* ── Abstract Background Shapes (parallax) ─────────────────────────────── */

/* ── Per-section angular background shapes ── */
.bg-shapes-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Showcase has solid content backgrounds — shapes overlay on top instead */
.section-showcase > .bg-shapes-layer {
  z-index: 3;
}

/* Every section with shapes needs relative positioning */
.section-showcase,
.section-services,
.section-gallery,
.section-promo,
.section-why,
.section-reviews,
.section-areas,
.section-cta-bottom {
  position: relative;
  overflow: hidden;
}

/* Shape elements (positions set inline via PHP) */
.bg-shape {
  position: absolute;
  will-change: transform;
}

/* Hide shapes on mobile for performance */
@media (max-width: 767px) {
  .bg-shapes-layer {
    display: none;
  }
}


/* ── Section: Gallery ─────────────────────────────────────────────────────── */

.section-gallery {
  padding: 5rem 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(0,1,.5,1);
}

.gallery-cell:hover img {
  transform: scale(1.06);
}

.gallery-cell-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s ease;
}

.gallery-cell:hover .gallery-cell-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cell-tag {
  display: inline-block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.gallery-cell-info h4 {
  font-size: 0.9375rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .section-gallery { padding: 8rem 0; }
  .gallery-masonry { grid-template-columns: repeat(4, 1fr); }
  .gallery-cell:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}


/* ── Section: Promo (Build Your Package) ──────────────────────────────────── */

.section-promo {
  padding: 0;
  background: #111;
}

.promo-split {
  display: grid;
  grid-template-columns: 1fr;
}

.promo-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  display: block;
}

.promo-split-text {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-split-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.promo-split-text p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .promo-split { grid-template-columns: 1fr 1fr; }
  .promo-split-text { padding: 5rem 4rem; }
}


/* ── Section: Why Choose Us ───────────────────────────────────────────────── */

.section-why {
  padding: 5rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

@media (min-width: 1024px) {
  .section-why { padding: 8rem 0; }
}


/* ── Section: Reviews ─────────────────────────────────────────────────────── */

.section-reviews {
  padding: 5rem 0;
  background: #111;
}

.reviews-block {
  text-align: center;
}

.reviews-block-stars {
  margin-bottom: 0.75rem;
}

.reviews-block-stars .star,
.reviews-block-stars .star-half {
  font-size: 1.25rem;
}

.reviews-block-rating {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.reviews-block-count {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 1024px) {
  .section-reviews { padding: 6rem 0; }
}


/* ── Section: Service Areas ───────────────────────────────────────────────── */

.section-areas {
  padding: 5rem 0;
  background: var(--color-dark);
  overflow: hidden;
}

.text-center { text-align: center; }
.text-muted { color: rgba(255,255,255,0.5); }

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.areas-heading {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.areas-accent-line {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.areas-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.areas-shop-detail {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  margin-bottom: 2rem;
  padding: 0.875rem 1rem;
  background: rgba(126,211,33,0.05);
  border: 1px solid rgba(126,211,33,0.12);
  border-radius: 8px;
}

.areas-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.areas-grid-wrap {
  position: relative;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
}

.area-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.area-card:hover {
  border-color: rgba(126,211,33,0.3);
  background: rgba(126,211,33,0.05);
  color: #fff;
}

.area-card svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.area-card:hover svg {
  opacity: 1;
}

@media (min-width: 1024px) {
  .section-areas { padding: 6rem 0; }

  .areas-heading {
    font-size: 3rem;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .areas-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .areas-heading {
    font-size: 1.75rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  .area-card {
    padding: 0.75rem 0.75rem;
    font-size: 0.75rem;
  }
}
/* ── Footer ────────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--color-secondary);
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-hours .day {
  font-weight: 500;
  color: var(--color-text);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ── Page Header ───────────────────────────────────────────────────────────── */

.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ── Services Page ─────────────────────────────────────────────────────────── */

.svc-page-hero {
  padding: 8rem 0 3.5rem;
  text-align: center;
  background: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
}

.svc-page-hero h1 {
  margin-bottom: 0.75rem;
}

.svc-page-hero p {
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.svc-page-grid {
  padding: 3rem 0 2rem;
}

.svc-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color 0.3s ease;
}

.svc-card:hover {
  border-color: var(--color-accent);
}

.svc-card-image {
  position: relative;
  overflow: hidden;
}

.svc-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-image img {
  transform: scale(1.03);
}

.svc-card-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(126, 211, 33, 0.2);
}

.svc-card-body {
  padding: 1.75rem 1.5rem 2rem;
  position: relative;
}

.svc-card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-border);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.svc-card-body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.svc-card-body > p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.svc-card-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.svc-card-features li {
  font-size: 0.8125rem;
  color: var(--color-text);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.svc-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.svc-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Legacy service-detail kept for compatibility */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-detail-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-detail-image {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ── Service Single Page ───────────────────────────────────────────────────── */

/* Scroll progress bar */
.svc-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--color-accent);
  z-index: 9999;
  transition: width 0.05s linear;
}

/* Section label (reusable) */
.svc-section-label {
  display: block;
  text-align: center;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.svc-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0 3rem;
}

.svc-hero--full {
  min-height: 100svh;
  padding-bottom: 6rem;
  align-items: flex-end;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .svc-hero--full { background-attachment: scroll; }
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 70%,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(10,10,10,0.95) 100%
  );
}

.svc-hero-mesh {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse at 20% 80%, rgba(126,211,33,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.svc-hero-name {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.12);
  line-height: 0.9;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  pointer-events: none;
}

.svc-hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.svc-hero-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.svc-breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.svc-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.svc-breadcrumb a:hover { color: var(--color-accent); }

.svc-breadcrumb .sep {
  margin: 0 0.5rem;
  color: rgba(255,255,255,0.3);
}

.svc-breadcrumb span:last-child {
  color: rgba(255,255,255,0.7);
}

.svc-hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.svc-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.svc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.svc-hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: svc-scroll-pulse 2s ease-in-out infinite;
}

@keyframes svc-scroll-pulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

/* Content blocks */
.svc-content,
.svc-products,
.svc-benefits,
.svc-gallery,
.svc-faqs {
  position: relative;
}
.svc-content,
.svc-products,
.svc-benefits,
.svc-faqs {
  overflow: hidden;
}
.svc-content > .container,
.svc-products > .container,
.svc-benefits > .container,
.svc-gallery > .container,
.svc-faqs > .container {
  position: relative;
  z-index: 2;
}
.svc-content {
  padding: 5rem 0 2rem;
}

.svc-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
}

.svc-block-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin: 0 auto;
}

.svc-block-label {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.svc-block-tag {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.svc-block-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(126,211,33,0.2);
  line-height: 1;
  font-family: var(--font-heading);
}

.svc-block-text h2 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--color-accent);
}

.svc-block-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.svc-block-text p.svc-block-lead {
  color: var(--color-text);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.svc-block-text p:last-child { margin-bottom: 0; }

.svc-block-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.svc-block:hover .svc-block-image {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(126,211,33,0.08);
}

.svc-block-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.svc-block:hover .svc-block-image img {
  transform: scale(1.04);
}

/* Products We Use */
.svc-products {
  padding: 5rem 0;
  background: var(--color-secondary);
  position: relative;
}

.svc-products h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.svc-products-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.svc-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.svc-product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.svc-product-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.svc-product-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.svc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-product-card:hover .svc-product-img img {
  transform: scale(1.04);
}

.svc-product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-product-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.svc-product-body > p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.svc-product-features {
  list-style: none;
  margin-top: auto;
  padding: 0;
}

.svc-product-features li {
  font-size: 0.8125rem;
  color: var(--color-text);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.svc-product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.svc-products-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .svc-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .svc-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
  .svc-product-card {
    max-width: 420px;
    justify-self: center;
  }
}

/* Benefits */
.svc-benefits {
  padding: 5rem 0;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.svc-benefits-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(126,211,33,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.svc-benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.875rem;
}

.svc-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.svc-benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.svc-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(126,211,33,0.05), transparent);
  border-radius: 12px;
  transition: width 0.4s ease;
}

.svc-benefit:hover::before {
  width: 100%;
}

.svc-benefit:hover {
  border-color: rgba(126,211,33,0.3);
  transform: translateX(4px);
}

.svc-benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126,211,33,0.1);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.svc-benefit-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.svc-benefit-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 1.5rem;
  opacity: 0.5;
}

.svc-benefit span {
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Gallery */
.svc-gallery {
  padding: 5rem 0;
}

.svc-gallery h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.875rem;
}

.svc-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.svc-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: galleryFadeIn 0.6s ease both;
}
.svc-gallery-item:nth-child(2) { animation-delay: 0.1s; }
.svc-gallery-item:nth-child(3) { animation-delay: 0.2s; }
.svc-gallery-item:nth-child(4) { animation-delay: 0.3s; }
.svc-gallery-item:nth-child(5) { animation-delay: 0.4s; }
@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-gallery-item:hover {
  transform: translateY(-3px);
}

.svc-gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.3s ease;
}

.svc-gallery-item:hover img {
  transform: scale(1.06);
}

.svc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.svc-gallery-item:hover .svc-gallery-overlay {
  opacity: 1;
}

.svc-gallery-overlay span {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 500;
}

.svc-gallery-overlay svg {
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.svc-gallery-overlay {
  flex-wrap: wrap;
  gap: 0.25rem;
}

.svc-gallery-count {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  width: 100%;
}

/* ── Shared Lightbox ─────────────────────────────────────────────────────── */
.lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lb.is-active {
  opacity: 1;
  visibility: visible;
}
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
}
.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.lb-close:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.1);
}
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  z-index: 2;
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-prev:hover,
.lb-next:hover {
  background: rgba(126,211,33,0.2);
  border-color: rgba(126,211,33,0.35);
  transform: translateY(-50%) scale(1.1);
}
.lb-prev:disabled,
.lb-next:disabled {
  opacity: 0.2;
  pointer-events: none;
}
.lb-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 120px);
}
.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 0.25s ease;
}
.lb-img.is-loading {
  opacity: 0.3;
}
.lb-footer {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 2;
  padding: 0 1.5rem;
}
.lb-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.4;
}
.lb-counter {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lb-prev,
  .lb-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 4.5rem;
    transform: none;
  }
  .lb-prev:hover,
  .lb-next:hover {
    transform: scale(1.1);
  }
  .lb-prev { left: 1rem; }
  .lb-next { right: 1rem; }
  .lb-stage {
    max-width: 100vw;
    padding: 0 0.5rem;
  }
  .lb-footer {
    bottom: 0.75rem;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* FAQs */
.svc-faqs {
  padding: 5rem 0;
  background: var(--color-secondary);
}

.svc-faqs h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.875rem;
}

.svc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.svc-faq {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease;
}

.svc-faq[open] {
  border-color: rgba(126,211,33,0.2);
}

.svc-faq summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-text);
  transition: color 0.2s;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.svc-faq-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.4;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.svc-faq-q {
  flex: 1;
}

.svc-faq summary::-webkit-details-marker { display: none; }

.svc-faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}

.svc-faq[open] summary::after {
  transform: rotate(45deg);
}

.svc-faq summary:hover { color: var(--color-accent); }

.svc-faq p {
  padding: 0 1.5rem 1.25rem;
  padding-left: calc(1.5rem + 2.25rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.9375rem;
  margin: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

/* Tablet+ responsive */
@media (min-width: 768px) {
  .svc-block {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .svc-block--reversed .svc-block-text { order: 2; }
  .svc-block--reversed .svc-block-image { order: 1; }

  .svc-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-gallery-item--featured {
    grid-column: 1 / -1;
  }

  .svc-gallery-item--featured img {
    aspect-ratio: 21 / 9;
  }
}

/* ── About Page ────────────────────────────────────────────────────────────── */

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ── Contact Page ──────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-card:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(126, 211, 33, 0.1);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
}

.contact-info-card h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.contact-info-card a {
  color: #fff;
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--color-accent);
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 10;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-placeholder {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.contact-form-placeholder p {
  color: var(--color-text-muted);
}

/* ── FAQ Page ──────────────────────────────────────────────────────────────── */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
  stroke: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ── Blog Archive ──────────────────────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 1.25rem;
}

.blog-card-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card h3 a {
  color: #fff;
}

.blog-card h3 a:hover {
  color: var(--color-accent);
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Single Post ───────────────────────────────────────────────────────────── */

.single-post-header {
  padding: 8rem 0 2rem;
  background: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
}

.single-post-meta {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.single-post-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
}

.single-post-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.single-post-content p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.single-post-content ul {
  list-style: disc;
}

.single-post-content ol {
  list-style: decimal;
}

.single-post-content li {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.single-post-content img {
  border-radius: 8px;
  margin: 1.5rem 0;
}

.single-post-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--color-surface);
  border-radius: 0 8px 8px 0;
}

.single-post-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
}

.single-post-content strong {
  color: #fff;
}

.single-post-featured {
  max-width: 800px;
  margin: 3rem auto 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.single-post-featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-image-credit {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* Pagination */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}

.pagination a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.pagination .current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ── 404 Page ──────────────────────────────────────────────────────────────── */

.page-404 {
  text-align: center;
  padding: 8rem 0 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-404-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 1rem;
}

.page-404 h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-404 p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Search Form ───────────────────────────────────────────────────────────── */

.search-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #fff;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.search-form input[type="search"]:focus {
  border-color: var(--color-accent);
}

.search-form button {
  padding: 0.75rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.search-form button:hover {
  background: var(--color-accent-hover);
}

/* ── Scroll Animations ─────────────────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive: Tablet (768px+) ───────────────────────────────────────────── */

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-preview {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card {
    grid-template-columns: 1fr 1fr;
  }

  .svc-card--reversed .svc-card-image {
    order: 2;
  }

  .svc-card--reversed .svc-card-body {
    order: 1;
  }

  .svc-card-image img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 380px;
  }

  .svc-card-body {
    padding: 2.5rem 2rem;
  }

  .svc-card-features {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) .service-detail-content {
    order: 2;
  }

  .service-detail:nth-child(even) .service-detail-image {
    order: 1;
  }
}

/* ── Responsive: Desktop (1024px+) ─────────────────────────────────────────── */

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  /* Header is handled inline in new header CSS */

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Loading Screen ────────────────────────────────────────────────────────── */

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}

.loading-logo {
  width: 180px;
  height: auto;
}

/* ── 3D Configurator App ───────────────────────────────────────────────────── */

.capp-section {
  padding: 0 0 4rem;
  background: var(--color-primary);
}

.capp {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-surface);
}

/* Vehicle selector bar */
.capp-vehicle-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.capp-vehicle-bar::-webkit-scrollbar { display: none; }
.capp-vehicle-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.capp-vehicle-list {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.capp-vehicle-btn {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  white-space: nowrap;
}
.capp-vehicle-btn:hover { border-color: rgba(126, 211, 33, 0.3); }
.capp-vehicle-btn.active {
  background: rgba(126, 211, 33, 0.08);
  border-color: var(--color-accent);
}
.capp-vehicle-btn strong {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
}
.capp-vehicle-btn span {
  font-size: 0.5625rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.capp-vehicle-btn.active strong { color: var(--color-accent); }

.capp-main {
  display: grid;
  grid-template-columns: 1fr;
}

/* ── Viewer ── */
.capp-viewer {
  position: relative;
  aspect-ratio: 4 / 3;
  background: radial-gradient(ellipse at center bottom, rgba(126, 211, 33, 0.03) 0%, var(--color-primary) 70%);
  border-bottom: 1px solid var(--color-border);
}

#car-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: grab;
}
#car-canvas:active { cursor: grabbing; }

/* Loading */
.capp-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--color-primary);
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.capp-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: capp-spin 0.8s linear infinite;
}
@keyframes capp-spin { to { transform: rotate(360deg); } }

/* Camera bar */
.capp-camera-bar {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 3px;
  z-index: 3;
}
.capp-cam-btn {
  padding: 0.4rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}
.capp-cam-btn:hover { color: var(--color-text); background: rgba(255,255,255,0.06); }
.capp-cam-btn--active { color: var(--color-accent); }
.capp-cam-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 2px;
}

/* Hint */
.capp-hint {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}

/* Color badge */
.capp-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 5px 12px 5px 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  z-index: 3;
}
.capp-badge-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Panel ── */
.capp-panel {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
}

/* Tabs */
.capp-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}
.capp-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0.75rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.capp-tab:hover { color: var(--color-text); }
.capp-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.capp-tab svg { opacity: 0.7; }
.capp-tab.active svg { opacity: 1; }

/* Tab content */
.capp-tab-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.capp-pane {
  display: none;
  padding: 1rem 1.25rem;
}
.capp-pane.active { display: block; }

/* Labels */
.capp-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}
.capp-label strong {
  color: var(--color-accent);
  margin-left: 4px;
}

/* ── Finish pills ── */
/* ── Brand selector ── */
.capp-brand-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.capp-brand {
  padding: 0.4rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.capp-brand:hover { border-color: rgba(126, 211, 33, 0.3); color: var(--color-text); }
.capp-brand.active {
  background: rgba(126, 211, 33, 0.12);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.capp-finish-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
.capp-finish {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.capp-finish:hover { border-color: rgba(126, 211, 33, 0.3); color: var(--color-text); }
.capp-finish.active {
  background: rgba(126, 211, 33, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ── Color grid ── */
.capp-colors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 6px;
  margin-bottom: 1rem;
}
.capp-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.capp-swatch:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border);
}
.capp-swatch.active {
  background: rgba(126, 211, 33, 0.08);
  border-color: var(--color-accent);
}
.capp-swatch-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.capp-swatch:hover .capp-swatch-dot { transform: scale(1.1); }
.capp-swatch.active .capp-swatch-dot {
  box-shadow: 0 0 0 2px var(--color-accent) !important;
}
.capp-swatch-name {
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.capp-swatch.active .capp-swatch-name { color: var(--color-text); }

/* Custom color row */
.capp-custom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.capp-custom-row label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.capp-custom-row input[type="color"] {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
}
.capp-custom-row input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
.capp-custom-row input[type="color"]::-webkit-color-swatch { border: none; border-radius: 50%; }
.capp-custom-row input[type="text"] {
  width: 72px;
  padding: 0.3rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

/* ── PPF options ── */
.capp-ppf-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.capp-ppf-opt {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}
.capp-ppf-opt:hover { border-color: rgba(126, 211, 33, 0.3); }
.capp-ppf-opt.active {
  background: rgba(126, 211, 33, 0.06);
  border-color: var(--color-accent);
}
.capp-ppf-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
}
.capp-ppf-desc {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.capp-tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  background: rgba(126, 211, 33, 0.12);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Film list */
.capp-film-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.capp-film {
  padding: 0.55rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}
.capp-film:hover { border-color: rgba(126, 211, 33, 0.3); color: var(--color-text); }
.capp-film.active {
  background: rgba(126, 211, 33, 0.06);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ── Tint ── */
.capp-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #0a0a0a 0%, rgba(126, 211, 33, 0.25) 100%);
  outline: none;
  margin: 0.4rem 0;
}
.capp-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.capp-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  cursor: pointer;
}
.capp-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.capp-tint-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
.capp-tint-btn {
  padding: 0.4rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.capp-tint-btn:hover { border-color: rgba(126, 211, 33, 0.3); color: var(--color-text); }
.capp-tint-btn.active {
  background: rgba(126, 211, 33, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ── Placement Cards ── */
.capp-placement-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.capp-placement-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.capp-placement-item:hover {
  border-color: rgba(126, 211, 33, 0.3);
}
.capp-placement-item.active {
  border-color: var(--color-accent);
}
.capp-placement-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
}
.capp-placement-opt:hover {
  background: rgba(126, 211, 33, 0.03);
}
.capp-placement-item.active .capp-placement-opt {
  background: rgba(126, 211, 33, 0.06);
}
.capp-placement-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}
.capp-placement-dot::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 8px;
  left: 4px;
  top: 1px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: border-color 0.2s ease;
}
.capp-placement-item.active .capp-placement-dot {
  border-color: var(--color-accent);
  background: var(--color-accent);
}
.capp-placement-item.active .capp-placement-dot::after {
  border-color: var(--color-primary);
}
.capp-placement-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.capp-placement-name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}
.capp-placement-desc {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}
.capp-placement-vlt-badge {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface);
  padding: 2px 8px;
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  display: none;
}
.capp-placement-item.active .capp-placement-vlt-badge {
  display: inline-block;
  color: var(--color-accent);
  background: rgba(126, 211, 33, 0.1);
}
/* VLT pills row — slides open when placement is active */
.capp-vlt-row {
  display: flex;
  gap: 4px;
  padding: 0 1rem 0.6rem 2.75rem;
  background: var(--color-primary);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
}
.capp-placement-item.active .capp-vlt-row {
  max-height: 40px;
  opacity: 1;
  padding-bottom: 0.6rem;
}
.capp-vlt-pill {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.capp-vlt-pill:hover {
  border-color: rgba(126, 211, 33, 0.4);
  color: var(--color-text);
}
.capp-vlt-pill.active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ── Extras ── */
.capp-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.capp-extra:hover { border-color: rgba(126, 211, 33, 0.2); }
.capp-extra div { flex: 1; }
.capp-extra strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text);
}
.capp-extra span {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

/* Checkbox toggle */
.capp-check {
  position: relative;
  width: 40px;
  height: 22px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-border);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.capp-check::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.capp-check:checked {
  background: var(--color-accent);
}
.capp-check:checked::before {
  transform: translateX(18px);
}

/* ── Summary ── */
.capp-summary {
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  background: var(--color-primary);
}
.capp-sum-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  margin-bottom: 0.75rem;
}
.capp-sum-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  padding: 2px 0;
}
.capp-sum-value {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 2px 0;
}
.capp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-accent);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.capp-cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 20px rgba(126, 211, 33, 0.25);
}

/* ── GSAP Animation States ─────────────────────────────────────────────────── */
/* Note: GSAP handles initial opacity via JS autoAlpha. No CSS opacity:0 needed. */

/* ── 3D Card Tilt ──────────────────────────────────────────────────────────── */

@media (hover: hover) {
  .services-grid {
    perspective: 1000px;
  }

  .service-card {
    transform-style: preserve-3d;
  }
}

/* ── Configurator Desktop ──────────────────────────────────────────────────── */

@media (min-width: 1024px) {
  .capp-main {
    grid-template-columns: 3fr 2fr;
  }

  .capp-viewer {
    aspect-ratio: auto;
    height: 680px;
    min-height: 500px;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }

  .capp-panel {
    height: 680px;
    max-height: 680px;
  }

  .capp-tab-content {
    overflow-y: auto;
  }

  .capp-colors {
    grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
  }
}

@media (min-width: 1280px) {
  .capp-viewer {
    height: 720px;
  }
  .capp-panel {
    height: 720px;
    max-height: 720px;
  }
  .capp-colors {
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  }
}

/* ── Print Styles ──────────────────────────────────────────────────────────── */

@media print {
  .site-header,
  .mobile-menu-toggle,
  .cta-banner,
  .btn,
  .hero-bg,
  .footer-social {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  h1, h2, h3, h4 {
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .site-footer {
    background: none;
    border-top: 1px solid #ccc;
    color: #333;
  }
}

/* ── Brand Detail Page ─────────────────────────────────────────────────────── */

/* --- Hero --- */
/* Scroll Progress Bar */
.brand-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-accent);
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px var(--color-accent);
}

.brand-hero {
  position: relative;
  height: 100svh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1.05);
}

.brand-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.95) 100%);
}

/* Ambient green glow mesh */
.brand-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(126,211,33,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(126,211,33,0.05) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.brand-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-hero-content .label-sm {
  margin-bottom: 1rem;
}

/* Large outlined decorative brand name */
.brand-hero-name {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: -1.5rem;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.brand-hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 1;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.6));
}

.brand-hero-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

.brand-hero-scroll {
  margin-top: 2.5rem;
  color: var(--color-accent);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  animation: brandBounce 2s ease infinite;
}

.brand-hero-scroll:hover {
  opacity: 1;
  transform: translateY(4px);
}

@keyframes brandBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* SVG curve divider at hero bottom */
.brand-hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.brand-hero-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* --- Breadcrumb --- */
.brand-breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.brand-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.brand-breadcrumb a:hover {
  color: var(--color-accent);
}

.brand-breadcrumb .sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* --- Brand Showcase (Editorial Intro) --- */
.brand-showcase {
  position: relative;
  overflow: visible;
  padding: 5rem 0 6rem;
  background: var(--color-secondary);
}

/* Gradient fade at bottom of showcase into facts */
.brand-showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--color-primary));
  pointer-events: none;
}

.brand-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .brand-showcase-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Editorial chapter number */
.brand-showcase-chapter {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -0.5rem;
  user-select: none;
  pointer-events: none;
}

.brand-showcase-text {
  border-left: 2px solid var(--color-accent);
  padding-left: 2rem;
}

@media (max-width: 899px) {
  .brand-showcase-text {
    padding-left: 1.25rem;
  }
}

.brand-showcase-text h2 {
  margin-bottom: 2rem;
  line-height: 1.15;
}

.brand-showcase-text h2 .text-accent {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(126,211,33,0.3);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Lead paragraph: first intro paragraph is larger and white */
.brand-showcase-lead {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
}

.brand-showcase-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

/* Decorative rule before CTA */
.brand-showcase-rule {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 1.5rem 0;
  opacity: 0.5;
}

.brand-showcase-text .btn-cta {
  margin-top: 0.5rem;
}

/* Visual side - the car reveal */
.brand-showcase-visual {
  position: relative;
  min-height: 450px;
}

@media (max-width: 899px) {
  .brand-showcase-visual {
    min-height: 320px;
  }
}

/* Ghost chevron shapes behind photo */
.brand-chevron-ghost {
  position: absolute;
  width: 90%;
  height: 100%;
  top: 0;
  right: -8%;
  background: rgba(255,255,255,0.035);
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  z-index: 1;
  transition: transform 0.6s ease;
}

.brand-showcase:hover .brand-chevron-ghost {
  transform: translateX(6px);
}

.brand-chevron-ghost--2 {
  width: 85%;
  height: 95%;
  top: 2.5%;
  right: -3%;
  background: var(--color-accent);
  opacity: 0.06;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  z-index: 0;
}

.brand-showcase:hover .brand-chevron-ghost--2 {
  transform: translateX(-4px);
}

/* Main photo with diagonal slash reveal */
.brand-showcase-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-showcase:hover .brand-showcase-photo {
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

/* Diagonal accent line across the photo */
.brand-showcase-line {
  position: absolute;
  top: -5%;
  left: 10%;
  width: 4px;
  height: 110%;
  background: var(--color-accent);
  z-index: 3;
  transform: rotate(-12deg);
  opacity: 0.25;
  border-radius: 2px;
  box-shadow: 0 0 20px var(--color-accent);
}

/* --- Section Header --- */
.brand-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.brand-section-header h2 {
  margin-bottom: 1rem;
}

.brand-header-accent {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Facts Bar --- */
.brand-facts-bar {
  background: var(--color-primary);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.brand-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .brand-facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brand-fact {
  position: relative;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: border-color 0.3s ease;
}

/* Animated top border that expands on scroll */
.brand-fact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-fact.is-visible::after {
  width: 60%;
}

.brand-fact:hover {
  border-color: rgba(126,211,33,0.2);
}

.brand-fact-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.brand-fact-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- Products: Magazine Layout --- */
.brand-product-magazine {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.bp-mag-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .bp-mag-row {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .bp-mag-row--reverse .bp-mag-media { order: 2; }
  .bp-mag-row--reverse .bp-mag-content { order: 1; }
}

.bp-mag-media {
  position: relative;
  overflow: visible;
}

.bp-mag-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.bp-mag-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bp-mag-row:hover .bp-mag-img-wrap img {
  transform: scale(1.04);
}

.bp-mag-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

.bp-mag-number {
  position: absolute;
  top: 0.5rem;
  left: -0.25rem;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--color-accent);
  opacity: 0.7;
  line-height: 1;
  pointer-events: none;
  z-index: 3;
  text-shadow:
    0 0 40px rgba(0,0,0,0.8),
    0 0 80px rgba(0,0,0,0.4);
}

.bp-mag-row--reverse .bp-mag-number {
  left: auto;
  right: -0.25rem;
}

.bp-mag-content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
  color: var(--color-text);
  position: relative;
}

.bp-mag-content h3::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.bp-mag-content p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.brand-product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.brand-product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.brand-product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* --- Gallery: Masonry --- */
.brand-gallery-masonry {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .brand-gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-gallery-masonry > .brand-gallery-item:first-child {
    grid-column: 1 / -1;
  }
  .brand-gallery-masonry > .brand-gallery-item:first-child img {
    height: 380px;
  }
}

@media (min-width: 1024px) {
  .brand-gallery-masonry {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 220px;
  }
  /* First image: large, spanning 7 cols and 2 rows */
  .brand-gallery-masonry > .brand-gallery-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
  }
  .brand-gallery-masonry > .brand-gallery-item:nth-child(1) img { height: 100%; }
  /* Second image */
  .brand-gallery-masonry > .brand-gallery-item:nth-child(2) {
    grid-column: span 5;
    grid-row: span 1;
  }
  /* Third image */
  .brand-gallery-masonry > .brand-gallery-item:nth-child(3) {
    grid-column: span 5;
    grid-row: span 1;
  }
  /* Fourth image: half width normally, full width if it's the last */
  .brand-gallery-masonry > .brand-gallery-item:nth-child(4) {
    grid-column: span 6;
    grid-row: span 1;
  }
  .brand-gallery-masonry > .brand-gallery-item:nth-child(4):last-child {
    grid-column: 1 / -1;
  }
  .brand-gallery-masonry > .brand-gallery-item:nth-child(5) {
    grid-column: span 6;
    grid-row: span 1;
  }
}

.brand-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.brand-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-gallery-item:hover img {
  transform: scale(1.06);
}

.brand-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand-gallery-item:hover .brand-gallery-overlay {
  opacity: 1;
}

.brand-gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.brand-gallery-item:hover .brand-gallery-zoom {
  transform: translate(-50%, -50%) scale(1);
}

.brand-gallery-caption {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
}

/* --- Brand CTA --- */
/* --- CTA (cinematic with background image) --- */
.brand-cta {
  position: relative;
  overflow: hidden;
}

.brand-cta-inner {
  position: relative;
  padding: 7rem 0;
}

.brand-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.5);
}

.brand-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
}

.brand-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.brand-cta-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.brand-cta-sub {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.btn-cta--lg {
  padding: 1rem 2.75rem;
  font-size: 1rem;
}

/* --- Sources (collapsible) --- */
.brand-sources-wrap {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}

.brand-sources-details {
  position: relative;
}

.brand-sources-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  list-style: none;
  user-select: none;
  padding: 0.25rem 0;
}

.brand-sources-toggle::-webkit-details-marker {
  display: none;
}

.brand-sources-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.brand-sources-details[open] .brand-sources-chevron {
  transform: rotate(180deg);
}

.brand-sources-details .brand-source-list {
  padding: 1rem 0 0.5rem 1.25rem;
  margin: 0;
}

.brand-source-list li {
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.brand-source-list a {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand-source-list a:hover {
  opacity: 0.7;
}

/* --- Other Brands (card grid) --- */
.brand-others {
  background: var(--color-secondary);
}

.brand-others-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 599px) {
  .brand-others-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-others-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  position: relative;
}

.brand-others-card:hover {
  border-color: rgba(126,211,33,0.25);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.brand-others-card img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.brand-others-card:hover img {
  opacity: 1;
}

.brand-others-card span {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.brand-others-card:hover span {
  color: #fff;
}

.brand-others-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  opacity: 0;
  color: var(--color-accent);
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.brand-others-card:hover .brand-others-arrow {
  opacity: 0.6;
  transform: translateX(0);
}

/* --- Typography Polish --- */
.brand-section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.brand-showcase-text h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.025em;
  font-weight: 700;
}

.brand-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 500px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════════
   MOBILE EXPERIENCE IMPROVEMENTS
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Mobile Sticky CTA Bar (removed) ──────────────────────────────────── */

/* ── Mobile Hero Panels — horizontal like desktop ───────────────────────── */
@media (max-width: 767px) {
  .hero-panels {
    flex-direction: row;
    margin-top: 60px;
  }

  .hero-panel {
    flex: 1;
    height: 28vh;
    min-height: 160px;
  }

  .hero-panel-content {
    padding: 0.75rem;
  }

  .hero-panel-content h2 {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.125rem;
  }

  .hero-panel-content p {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }

  /* Hide hover-only elements on mobile */
  .hero-panel-hover-text {
    display: none;
  }
}

/* ── Mobile Trust / Marquee Section ──────────────────────────────────────── */
@media (max-width: 767px) {
  .section-trust-marquee {
    padding: 2rem 0 1rem;
  }

  .trust-headline {
    font-size: 0.625rem;
    margin-bottom: 0.75rem;
  }

  .brand-name {
    font-size: 1.125rem;
    padding: 0 1rem;
    letter-spacing: 0.08em;
  }

  .brand-dot {
    width: 4px;
    height: 4px;
  }

  /* Tighter cert logo grid */
  .cert-logos {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
  }

  .cert-card {
    padding: 1rem 0.5rem;
    gap: 0.4rem;
  }

  .cert-card img {
    height: 22px !important;
    max-height: 22px;
  }

  .cert-card-name {
    font-size: 0.5625rem;
  }

  .cert-card-link {
    display: none;
  }
}

/* ── Mobile Stats / Showcase Section ─────────────────────────────────────── */
@media (max-width: 767px) {
  .showcase-inner {
    min-height: auto;
  }

  .showcase-dark {
    padding: 2rem 1.5rem 1.5rem;
  }

  .showcase-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .showcase-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }

  .stats-row {
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.625rem;
  }

  .stat-block {
    padding-top: 0.75rem;
  }

  .stat-accent {
    width: 24px;
    height: 2px;
  }

  .stat-block--cta {
    padding-top: 0.25rem;
  }

  .showcase-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  /* R8 overlaps behind buttons/numbers but NOT behind dark background on mobile */
  .showcase-dark {
    position: relative;
    z-index: auto;
    background: transparent;
  }

  /* Dark background as pseudo-element BEHIND the R8 */
  .showcase-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #161616;
    z-index: 1;
  }

  /* Content (stats, buttons) ABOVE the R8 */
  .showcase-dark > * {
    position: relative;
    z-index: 3;
  }

  .showcase-photo {
    min-height: 0;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
    padding: 0;
    margin-top: -14rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .showcase-photo img {
    max-height: none;
    width: 110%;
    height: auto;
    margin-right: -1rem;
    margin-bottom: -5.5rem;
    object-fit: contain;
  }

  .showcase-inner + .core-services {
    margin-top: 0;
    padding-top: 0.5rem;
    position: relative;
    z-index: 2;
  }
}

/* ── Mobile Core Services Cards ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .core-services {
    padding: 2rem 1rem 1.5rem;
  }

  .cs-title {
    font-size: 1.75rem;
  }

  .core-services-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }

  .core-services-banner {
    display: none;
  }

  .csb-word {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
  }

  .core-svc-card {
    aspect-ratio: 3 / 2;
    border-radius: 8px;
  }

  .core-svc-title {
    font-size: 1.75rem;
  }

  .core-svc-services {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .core-svc-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .core-services-cta {
    margin-top: 1.5rem;
  }

  .cs-cta-link {
    font-size: 0.75rem;
    padding: 0.85rem 2rem;
  }
}

/* ── Mobile Lead Form ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .lead-form-split {
    padding: 0 1rem 1.5rem;
    gap: 0.75rem;
  }

  .lead-form-info {
    padding: 0.5rem 0 0;
  }

  .lead-form-contact {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .lead-form-heading {
    font-size: 1.5rem;
  }

  .lead-form-desc {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
  }

  .lead-form-perks {
    margin-bottom: 1.5rem;
    gap: 0.625rem;
  }

  .lead-form-perks li {
    font-size: 0.8125rem;
  }

  .lead-form-tel {
    font-size: 1.25rem;
  }

  .lead-form-card {
    overflow: visible;
  }

  .lead-form-card iframe {
    /* Starting height — FilmIQ emits postMessage {type:'filmiq-resize',height}
       on hydration and on every form state change; listener in main.js
       overrides this in real time. */
    height: 1100px;
    margin-top: -2.5rem;
    display: block;
    transition: height 0.25s ease;
  }

  /* Natural breathing room between lead form and customizer CTA on mobile */
  .lead-form-split {
    gap: 0.75rem !important;
  }

  .lead-form-card + .customizer-cta-block {
    margin-top: 0;
  }

  .customizer-cta-block {
    padding: 1.5rem;
  }

  .customizer-cta-block h3 {
    font-size: 1rem;
  }

  .customizer-cta-block p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
}

/* ── Mobile Review Cards ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .review-cards-strip {
    padding: 2rem 1rem 3rem;
  }

  .review-cards-header {
    margin-bottom: 1.25rem;
  }

  .review-cards-title {
    font-size: 1.25rem;
  }

  .review-cards-score {
    font-size: 0.75rem;
  }

  .review-cards-grid {
    gap: 1rem;
  }

  .review-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .review-card-text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .review-card-name {
    font-size: 0.8125rem;
  }

  .review-card-meta {
    font-size: 0.6875rem;
  }
}

/* ── Mobile Gallery ──────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-gallery {
    padding: 3rem 0 2rem;
  }

  .section-gallery .heading-center {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .gallery-masonry {
    gap: 3px;
  }

  /* Show info by default on mobile (no hover) */
  .gallery-cell-info {
    opacity: 1;
    transform: translateY(0);
    padding: 0.75rem;
  }

  .gallery-cell-info h4 {
    font-size: 0.75rem;
  }

  .gallery-cell-tag {
    font-size: 0.5rem;
  }
}

/* ── Mobile Why Section ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-why {
    padding: 3rem 0;
  }

  .section-why .heading-center {
    font-size: 1.5rem;
  }

  .why-grid {
    gap: 1.5rem;
  }

  .why-item h3 {
    font-size: 1rem;
  }

  .why-item p {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}

/* ── Mobile Service Areas ────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-areas {
    padding: 3rem 0;
  }

  .section-areas .heading-center {
    font-size: 1.5rem;
  }

  .area-tags {
    gap: 0.5rem;
  }

  .area-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
}

/* ── Mobile Bottom CTA ───────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-cta-bottom {
    padding: 4rem 0 !important;
  }

  .section-cta-bottom h2 {
    font-size: 1.5rem;
  }

  .section-cta-bottom p {
    font-size: 0.8125rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── Mobile Footer ───────────────────────────────────────────────────────── */

/* ── Mobile Header tweaks ────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .header-nav-inner {
    padding: 0 1rem;
    height: 56px;
  }

  .nav-logo {
    top: 38px;
    width: 52px;
    height: 52px;
  }

  .nav-logo img {
    width: 52px;
    height: 52px;
    filter: brightness(1.8) contrast(1.1)
            drop-shadow(0 4px 10px rgba(0,0,0,0.7))
            drop-shadow(0 2px 12px rgba(126,211,33,0.15));
  }

  /* Swap to mobile-optimized curve with wider dip */
  .nav-curve--desktop { display: none; }
  .nav-curve--mobile {
    display: block;
    height: 52px;
  }

  .mobile-menu-toggle {
    right: 1rem;
  }

  .mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
  }
}

/* ── Global mobile typography ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .label-sm {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.375rem;
  }

  .heading-center {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .container,
  .container-wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICE AREA LANDING PAGES
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.area-hero {
  position: relative;
  padding: 10rem 2rem 6rem;
  text-align: center;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.area-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.7) 40%,
    rgba(10,10,10,0.9) 100%
  );
  z-index: 1;
}

.area-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(126,211,33,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.area-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.area-hero .label-sm {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.area-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.area-hero-headline {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.area-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Intro ────────────────────────────────────────────────────────────────── */
.area-intro {
  padding: 5rem 2rem;
  background: var(--color-primary);
}

.area-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.area-intro-body {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.area-distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(126,211,33,0.08);
  border: 1px solid rgba(126,211,33,0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.area-neighborhoods h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.area-neighborhoods ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.area-neighborhoods li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.area-landmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.area-intro-image {
  border-radius: 12px;
  overflow: hidden;
}

.area-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.area-intro-image:hover img {
  transform: scale(1.03);
}

/* ── Services Strip ──────────────────────────────────────────────────────── */
.area-services-strip {
  padding: 4rem 2rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.area-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.area-services-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.area-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.area-service-item {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.area-service-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.area-service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.area-service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent);
}

.area-service-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.area-service-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.area-services-cta {
  margin-top: 1rem;
}

.area-services-cta .link-arrow {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.area-services-cta .link-arrow:hover {
  gap: 0.75rem;
}

/* ── Why Locals Choose Us ────────────────────────────────────────────────── */
.area-why {
  padding: 5rem 2rem;
  background: var(--color-primary);
}

.area-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area-why-content .label-sm {
  color: var(--color-accent);
}

.area-why-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.area-why-accent {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.area-why-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.area-why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.area-why-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.area-why-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.area-why-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.area-why-gallery img:first-child {
  grid-row: 1 / 3;
  height: 100%;
}

.area-why-gallery img:hover {
  transform: scale(1.03);
}

/* ── Map + Reviews Section ───────────────────────────────────────────────── */
.area-map-section {
  padding: 5rem 2rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.area-map-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.area-map-header .label-sm {
  color: var(--color-accent);
}

.area-map-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.area-map-wrap {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.area-map {
  height: 500px;
  width: 100%;
  background: #1a1a1a;
}

/* Leaflet popup dark theme */
.area-leaflet-popup .leaflet-popup-content-wrapper {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  color: #e8e8e8;
}

.area-leaflet-popup .leaflet-popup-tip {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.area-leaflet-popup .leaflet-popup-close-button {
  color: #8a8a8a;
  font-size: 18px;
  top: 8px;
  right: 10px;
}

.area-leaflet-popup .leaflet-popup-close-button:hover {
  color: #e8e8e8;
}

.area-leaflet-popup .leaflet-popup-content {
  margin: 0;
  padding: 0;
}

/* Review popup content */
.area-review-popup {
  padding: 1.25rem;
  min-width: 260px;
  max-width: 320px;
}

.arp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.arp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2a2a2a;
  flex-shrink: 0;
}

.arp-name {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.arp-google {
  flex-shrink: 0;
}

.arp-stars {
  display: flex;
  gap: 1px;
  margin-top: 2px;
}

.arp-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.arp-tag {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(126,211,33,0.1);
  border: 1px solid rgba(126,211,33,0.2);
  border-radius: 50px;
  color: var(--color-accent);
  display: inline-block;
}

/* Map marker styles */
.area-shop-marker .shop-pin {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.area-review-marker .review-dot {
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border: 3px solid rgba(126,211,33,0.3);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(126,211,33,0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
  animation: area-dot-pulse 2s ease-in-out infinite;
}

.area-review-marker .review-dot:hover {
  transform: scale(1.3);
}

@keyframes area-dot-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(126,211,33,0.4); }
  50% { box-shadow: 0 0 20px rgba(126,211,33,0.6); }
}

.area-shop-popup {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Bottom CTA ──────────────────────────────────────────────────────────── */
.area-bottom-cta {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--color-primary) 0%, #0d1a0a 100%);
  border-top: 1px solid var(--color-border);
}

.area-bottom-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.area-bottom-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.area-bottom-cta > p,
.area-bottom-cta-inner > p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.area-bottom-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.area-phone-btn svg {
  margin-right: 0.4rem;
}

.area-bottom-hours {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── Service Area Mobile Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .area-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .area-hero {
    padding: 7rem 1.25rem 4rem;
  }

  .area-hero-title {
    font-size: 2.25rem;
  }

  .area-hero-headline {
    font-size: 1rem;
  }

  .area-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .area-intro {
    padding: 3rem 1.25rem;
  }

  .area-intro-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .area-intro-image img {
    height: 280px;
  }

  .area-neighborhoods ul {
    grid-template-columns: 1fr;
  }

  .area-services-strip {
    padding: 3rem 1.25rem;
  }

  .area-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .area-service-item {
    padding: 1.25rem 1rem;
  }

  .area-why {
    padding: 3rem 1.25rem;
  }

  .area-why-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .area-why-features {
    grid-template-columns: 1fr;
  }

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

  .area-why-gallery img {
    height: 160px;
  }

  .area-why-gallery img:first-child {
    grid-row: auto;
    height: 160px;
  }

  .area-map-section {
    padding: 3rem 1.25rem;
  }

  .area-map {
    height: 350px;
  }

  .area-map-header h2 {
    font-size: 1.5rem;
  }

  .area-bottom-cta {
    padding: 3rem 1.25rem;
  }

  .area-bottom-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Service Area: Breadcrumb ─────────────────────────────────────────────── */
.area-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.area-breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.area-breadcrumb a:hover {
  color: var(--color-accent);
}

.area-breadcrumb-sep {
  margin: 0 0.4rem;
  opacity: 0.5;
}

/* ── Service Area: Review Badge ───────────────────────────────────────────── */
.area-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.area-review-badge-star {
  font-size: 1rem;
}

/* ── Service Area: Nearby Cities ──────────────────────────────────────────── */
.area-nearby {
  padding: 5rem 2rem;
  background: var(--color-primary);
  border-top: 1px solid var(--color-border);
}

.area-nearby-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.area-nearby-inner .label-sm {
  margin-bottom: 0.5rem;
}

.area-nearby-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.area-nearby-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.area-nearby-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.area-nearby-pill:hover {
  border-color: var(--color-accent);
  background: rgba(126, 211, 33, 0.05);
  color: var(--color-text);
}

.area-nearby-name {
  font-weight: 600;
}

.area-nearby-dist {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ── Service Area: FAQ Accordion ──────────────────────────────────────────── */
.area-faq {
  padding: 5rem 2rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.area-faq-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.area-faq-inner .label-sm {
  margin-bottom: 0.5rem;
}

.area-faq-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.area-faq-list {
  text-align: left;
}

.area-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.area-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s ease;
}

.area-faq-question:hover {
  color: var(--color-accent);
}

.area-faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.area-faq-item.open .area-faq-question svg {
  transform: rotate(45deg);
  stroke: var(--color-accent);
}

.area-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.area-faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.area-faq-item.open .area-faq-answer {
  max-height: 500px;
}

/* ── Service Area: Bottom CTA with Form ───────────────────────────────────── */
.area-quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.area-quote-info {
  text-align: left;
}

.area-quote-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.area-quote-info > p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.area-quote-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.area-quote-phone:hover {
  color: var(--color-accent);
}

.area-quote-hours {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.area-quote-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.area-quote-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.area-quote-form iframe {
  border: none;
  border-radius: 4px;
  width: 100%;
  height: 1200px;
}

/* ── Service Area Additions: Mobile ───────────────────────────────────────── */
@media (max-width: 767px) {
  .area-breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .area-review-badge {
    font-size: 0.8125rem;
    padding: 0.4rem 1rem;
  }

  .area-nearby {
    padding: 3rem 1.25rem;
  }

  .area-nearby-inner h2 {
    font-size: 1.5rem;
  }

  .area-nearby-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .area-nearby-pill {
    justify-content: flex-start;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }

  .area-faq {
    padding: 3rem 1.25rem;
  }

  .area-faq-inner h2 {
    font-size: 1.5rem;
  }

  .area-faq-question {
    font-size: 0.9375rem;
    padding: 1.25rem 0;
  }

  .area-quote-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .area-quote-info {
    text-align: center;
  }

  .area-quote-info h2 {
    font-size: 1.5rem;
  }

  .area-quote-phone {
    justify-content: center;
    font-size: 1.25rem;
  }

  .area-quote-badges {
    align-items: center;
  }

  .area-quote-form iframe {
    height: 1350px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────────────── */
.gallery-hero {
  position: relative;
  min-height: 52vh;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
}

.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%),
    url('../img/gallery/photoshoots/red-toyota-supra/cover.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
  transform: scale(1.05);
  filter: saturate(1.1);
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(126,211,33,0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, #0a0a0a 100%);
  z-index: 1;
}

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

.gallery-hero-label {
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.gallery-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: #fff;
}

.gallery-hero h1 .accent {
  color: var(--color-accent);
}

.gallery-hero-sub {
  font-size: 1.125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 0 2.5rem;
}

.gallery-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 3rem;
  align-items: start;
}

.gallery-hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gallery-stat-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.gallery-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ── Filter Bar ─────────────────────────────────────────────────────── */
.gallery-filter-section {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.25rem 0;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.gallery-filter-btn:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.gallery-filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0a0a0a;
}

.gallery-filter-count {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  line-height: 1;
}

.gallery-filter-btn.is-active .gallery-filter-count {
  background: rgba(10,10,10,0.25);
  color: #0a0a0a;
}

/* ── Projects Grid ──────────────────────────────────────────────────── */
.gallery-projects-section {
  padding: 3.5rem 0 5rem;
  background: #0a0a0a;
}

.gallery-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  grid-auto-flow: dense;
}

.gallery-project {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  opacity: 1;
  will-change: transform;
}

.gallery-project.is-hidden {
  display: none;
}

.gallery-project:hover {
  transform: translateY(-4px);
  border-color: rgba(126,211,33,0.35);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(126,211,33,0.1);
}

/* Media */
.gallery-project-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.gallery-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1),
              filter 0.4s ease;
  display: block;
}

.gallery-project:hover .gallery-project-media img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.gallery-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-project:hover .gallery-project-overlay {
  opacity: 1;
}

.gallery-project-view {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(126,211,33,0.95);
  color: #0a0a0a;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transform: translateY(10px);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
}

.gallery-project:hover .gallery-project-view {
  transform: translateY(0);
}

.gallery-project-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.gallery-project-badge--stek {
  background: rgba(255,255,255,0.92);
  color: #0a0a0a;
}

/* Body */
.gallery-project-body {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.gallery-project-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(126,211,33,0.9);
  font-weight: 600;
}

.gallery-project-dot {
  color: rgba(255,255,255,0.25);
}

.gallery-project-material {
  color: rgba(255,255,255,0.5);
}

.gallery-project-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.gallery-project-color {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.4;
}

/* Tall card variant (masonry-ish feel) — desktop only */
@media (min-width: 900px) {
  .gallery-project--tall .gallery-project-media {
    aspect-ratio: 3 / 4;
  }
  .gallery-project--tall {
    grid-row: span 2;
  }
  .gallery-project--tall .gallery-project-body {
    padding: 1.25rem 1.35rem 1.5rem;
  }
}

/* Empty state */
.gallery-empty-state {
  text-align: center;
  padding: 4rem 0;
  color: rgba(255,255,255,0.4);
}

/* ── CTA Section ────────────────────────────────────────────────────── */
.gallery-cta-section {
  padding: 4rem 0 6rem;
  background: #0a0a0a;
}

.gallery-cta-card {
  position: relative;
  padding: 3.5rem 2.5rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(126,211,33,0.1) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(126,211,33,0.2);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.gallery-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 100%, rgba(126,211,33,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-cta-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-cta-card .label-sm {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.gallery-cta-card h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gallery-cta-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin: 0 0 2rem;
  line-height: 1.55;
}

.gallery-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Mobile tweaks ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .gallery-hero {
    min-height: 48vh;
    padding: 6rem 0 3rem;
  }

  .gallery-hero h1 {
    font-size: 2.5rem;
  }

  .gallery-hero-sub {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .gallery-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .gallery-stat-num {
    font-size: 1.5rem;
  }

  .gallery-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .gallery-filter-section {
    padding: 0.9rem 0;
  }

  .gallery-filter-btn {
    padding: 0.5rem 0.95rem;
    font-size: 0.78rem;
  }

  .gallery-projects-section {
    padding: 2rem 0 3rem;
  }

  .gallery-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-project-body {
    padding: 0.75rem 0.85rem 1rem;
  }

  .gallery-project-title {
    font-size: 0.95rem;
  }

  .gallery-project-color {
    font-size: 0.78rem;
  }

  .gallery-project-meta {
    font-size: 0.6rem;
    gap: 0.35rem;
  }

  .gallery-project-view {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  .gallery-project-badge {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.55rem;
  }

  /* On mobile: overlay is always visible (no hover state on touch) */
  .gallery-project-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.8) 100%);
    padding: 0.75rem;
  }

  .gallery-project-view {
    transform: translateY(0);
  }

  .gallery-cta-section {
    padding: 2.5rem 0 4rem;
  }

  .gallery-cta-card {
    padding: 2.5rem 1.5rem;
  }

  .gallery-cta-actions {
    flex-direction: column;
  }

  .gallery-cta-actions .btn {
    width: 100%;
  }
}
