/* ============================================================
   CUSTOM TOUCH CAR CARE — Brand CSS System
   Colors: #DC2626 red · #0A0A0A bg · #111111 surface · #F5F7FA light
   Fonts: Barlow Condensed Bold (headers) · Inter (body)
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  background: #0A0A0A;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── CSS Tokens ── */
:root {
  --red:        #DC2626;
  --red-hot:    #EF4444;
  --red-deep:   #B91C1C;
  --red-glow:   rgba(220, 38, 38, 0.18);
  --bg:         #0A0A0A;
  --surface:    #111111;
  --surface-2:  #181818;
  --light:      #F5F7FA;
  --light-2:    #E8ECF2;
  --hairline:   rgba(255, 255, 255, 0.07);
  --hairline-r: rgba(220, 38, 38, 0.2);
  --ink-1:      #FFFFFF;
  --ink-2:      rgba(255, 255, 255, 0.68);
  --ink-3:      rgba(255, 255, 255, 0.42);
  --ink-4:      rgba(255, 255, 255, 0.18);
  --ink-light:  #0A0A0A;
  --ink-light-2:rgba(10, 10, 10, 0.65);
  --font-head:  'Barlow Condensed', 'Bebas Neue', sans-serif;
  --font-body:  'Inter', 'Manrope', system-ui, sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:   cubic-bezier(0.4, 0, 0.2, 1);
  --gold:       #C9973A;
  --radius:     4px;
  --pad-x:       clamp(1.25rem, 5vw, 5rem);
  --pad-y:       clamp(4rem, 10vw, 9rem);
  --section-pad: var(--pad-y) var(--pad-x);
}

/* ── Grain Overlay ── */
.grain {
  position: relative;
  overflow: hidden;
}
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.grain > * { position: relative; z-index: 2; }

/* ── Typography ── */
.font-head {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }
.reveal-delay-5 { transition-delay: 450ms; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: transform 0.18s var(--ease-std), box-shadow 0.18s var(--ease-std), background 0.18s var(--ease-std), opacity 0.18s var(--ease-std);
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(220,38,38,0.35), 0 8px 24px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  background: var(--red-hot);
  box-shadow: 0 4px 16px rgba(220,38,38,0.45), 0 12px 32px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-1);
  border: 1px solid var(--hairline);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--ink-light);
  border: 1px solid rgba(10,10,10,0.2);
}
.btn-ghost-light:hover {
  background: rgba(10,10,10,0.06);
  transform: translateY(-1px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3), 0 8px 24px rgba(0,0,0,0.4);
}
.btn-wa:hover {
  background: #20BD5A;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 12px 32px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 0.8rem;
  padding: 10px 18px;
  letter-spacing: 0.03em;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background 0.3s var(--ease-std), padding 0.3s var(--ease-std), border-color 0.3s var(--ease-std), box-shadow 0.3s var(--ease-std);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--hairline);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  transition: color 0.22s var(--ease-std);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.28s var(--ease-out);
}
.nav-links a:hover { color: var(--ink-1); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-std), opacity 0.3s var(--ease-std);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-std), visibility 0.3s var(--ease-std);
}
#mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 16px 32px;
  transition: color 0.2s var(--ease-std), transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
  transform: translateY(20px);
  opacity: 0;
}
#mobile-menu.open a {
  transform: none;
  opacity: 1;
}
#mobile-menu .btn {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), background 0.18s var(--ease-std), box-shadow 0.18s var(--ease-std);
}
#mobile-menu.open .btn {
  transform: none;
  opacity: 1;
}
#mobile-menu a:hover { color: var(--red); }
#mobile-menu a:nth-child(1) { transition-delay: 60ms; }
#mobile-menu a:nth-child(2) { transition-delay: 120ms; }
#mobile-menu a:nth-child(3) { transition-delay: 180ms; }
#mobile-menu a:nth-child(4) { transition-delay: 240ms; }
#mobile-menu a:nth-child(5) { transition-delay: 300ms; }
.mobile-wa {
  margin-top: 32px;
  transition-delay: 360ms !important;
}

/* ── Hero ── */
#hero {
  min-height: 100dvh;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 3;
}

.hero-right {
  position: relative;
  height: 100%;
  min-height: 100dvh;
  overflow: hidden;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(10,10,10,0.6) 30%,
    rgba(10,10,10,0.15) 70%,
    rgba(10,10,10,0.05) 100%
  );
  z-index: 1;
}

/* Red radial glow — top left accent */
.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(220,38,38,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}

/* Halftone dot motif — bottom right */
.hero-halftone {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(220,38,38,0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at bottom right, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at bottom right, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-eyebrow { margin-bottom: -8px; }

.hero-h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-1);
}
.hero-h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink-1);
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Chevron motif */
.chevrons {
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0.18;
  pointer-events: none;
}
.chevrons span {
  display: block;
  width: 28px;
  height: 8px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: skewX(-20deg);
}

/* ── Marquee ── */
#marquee-strip {
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 24px;
  transition: color 0.2s var(--ease-std);
}
.marquee-item:hover { color: var(--ink-1); }
.marquee-sep {
  color: var(--red);
  font-size: 0.6rem;
}

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

/* ── Services Section ── */
#services {
  padding: var(--section-pad);
  background: var(--bg);
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .eyebrow { margin-bottom: 4px; }
.section-h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}
.section-lede {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 540px;
}

/* Bento-style services grid — NOT 3 equal columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s var(--ease-std), border-color 0.25s var(--ease-std), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-std);
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  z-index: 3;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  background: var(--surface-2);
  border-color: var(--hairline-r);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(220,38,38,0.12);
}
.service-card > * { position: relative; z-index: 2; }


.service-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline-r);
  background: rgba(220,38,38,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s var(--ease-std), border-color 0.25s var(--ease-std);
}
.service-card:hover .service-icon-wrap {
  background: rgba(220,38,38,0.16);
  border-color: rgba(220,38,38,0.4);
}
.service-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-1);
  line-height: 1.1;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s var(--ease-std);
}
.service-link:hover { gap: 10px; }

/* ── Packages — shared styles ── */
.packages-section {
  padding: var(--section-pad);
}
.packages-section.light-bg {
  background: var(--light);
  color: var(--ink-light);
}
.packages-section.light-bg .section-h2 { color: var(--ink-light); }
.packages-section.light-bg .section-lede { color: var(--ink-light-2); }
.packages-section.light-bg .eyebrow { color: var(--red); }
.packages-section.light-bg .eyebrow::before { background: var(--red); }
.packages-section.dark-bg { background: var(--bg); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.package-card {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.package-card:hover {
  transform: translateY(-4px);
}

/* Light bg variant */
.light-bg .package-card {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
}
.light-bg .package-card:hover {
  box-shadow: 0 8px 24px rgba(220,38,38,0.12), 0 20px 48px rgba(0,0,0,0.1);
}

/* Dark bg variant */
.dark-bg .package-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 12px 32px rgba(0,0,0,0.3);
}
.dark-bg .package-card:hover {
  box-shadow: 0 8px 24px rgba(220,38,38,0.15), 0 20px 48px rgba(0,0,0,0.5);
}

.package-card.gold-card {
  border-color: rgba(220,38,38,0.35);
  box-shadow: 0 0 0 1px rgba(220,38,38,0.15), 0 8px 24px rgba(220,38,38,0.12), 0 20px 48px rgba(0,0,0,0.35);
}

.pkg-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid;
}
.light-bg .pkg-header { border-bottom-color: rgba(10,10,10,0.07); }
.dark-bg .pkg-header { border-bottom-color: var(--hairline); }
.gold-card .pkg-header { background: linear-gradient(135deg, rgba(220,38,38,0.08) 0%, transparent 100%); }

.pkg-tier {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pkg-tier.bronze { color: #B45309; }
.pkg-tier.silver { color: #6B7280; }
.pkg-tier.gold   { color: var(--gold); }

.pkg-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.light-bg .pkg-name { color: var(--ink-light); }
.dark-bg  .pkg-name { color: var(--ink-1); }

.pkg-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 10px;
}

.pkg-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pkg-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.light-bg .pkg-section-label { color: var(--ink-light-2); }
.dark-bg  .pkg-section-label { color: var(--ink-3); }

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-feature {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  align-items: flex-start;
}
.light-bg .pkg-feature { color: var(--ink-light-2); }
.dark-bg  .pkg-feature { color: var(--ink-2); }

.pkg-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-check::after {
  content: '';
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--red);
  border-bottom: 1.5px solid var(--red);
  transform: rotate(-45deg) translateY(-1px);
}

.pkg-footer {
  padding: 20px 24px;
  border-top: 1px solid;
}
.light-bg .pkg-footer { border-top-color: rgba(10,10,10,0.07); }
.dark-bg  .pkg-footer { border-top-color: var(--hairline); }

/* ── Why Custom Touch ── */
#why-us {
  padding: var(--section-pad);
  background: var(--light);
  color: var(--ink-light);
}
#why-us .section-h2 { color: var(--ink-light); }
#why-us .section-lede { color: var(--ink-light-2); }
#why-us .eyebrow { color: var(--red); }
#why-us .eyebrow::before { background: var(--red); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.why-card {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 8px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.03);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(220,38,38,0.1), 0 20px 48px rgba(0,0,0,0.08);
}
.why-stat {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--red);
}
.why-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.3;
}
.why-desc {
  font-size: 0.85rem;
  color: var(--ink-light-2);
  line-height: 1.6;
}

/* Brand badges strip */
.brand-strip {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(10,10,10,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light-2);
  width: 100%;
  text-align: center;
  margin-right: 0;
  margin-bottom: 4px;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,10,0.04);
  border: 1px solid rgba(10,10,10,0.1);
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: background 0.2s var(--ease-std), border-color 0.2s var(--ease-std);
}
.brand-badge:hover {
  background: rgba(220,38,38,0.05);
  border-color: rgba(220,38,38,0.2);
}
.brand-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Gallery ── */
#gallery {
  padding: var(--section-pad);
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-item.tall { aspect-ratio: 3 / 4; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-std);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-std);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  z-index: 2;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease-std), transform 0.3s var(--ease-std);
}
.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: none;
}

/* Before/After Slider */
.before-after-wrap {
  grid-column: span 2;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  cursor: ew-resize;
  user-select: none;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-after img, .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.ba-label-before {
  left: 14px;
  background: rgba(10,10,10,0.75);
  color: var(--ink-2);
}
.ba-label-after {
  right: 14px;
  background: rgba(220,38,38,0.85);
  color: #fff;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 0 0 2px rgba(255,255,255,0.3);
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 50%, 100% 50%;
  background-size: 10px 10px, 10px 10px;
  z-index: 1;
}

.gallery-owner-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: rgba(220,38,38,0.06);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.6;
}
.gallery-owner-note svg { flex-shrink: 0; margin-top: 2px; stroke: var(--red); }
.gallery-owner-note strong { color: var(--red); font-weight: 700; }
.gallery-owner-note code {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  background: rgba(255,255,255,0.06);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--ink-2);
}

.gallery-ig-link {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* ── Testimonials ── */
#testimonials {
  padding: var(--section-pad);
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.testimonial-card {
  max-width: 780px;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 16px 48px rgba(0,0,0,0.25);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: var(--font-head);
  font-size: 8rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.3;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.stars span {
  color: #F59E0B;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-1);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(220,38,38,0.3), rgba(220,38,38,0.08));
  border: 1.5px solid var(--hairline-r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-1);
}
.author-meta {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 2px;
}

.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--hairline);
}
.t-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.t-stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.t-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── Review aggregate line ── */
.review-aggregate {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink-2);
  margin-top: 8px;
}
.review-stars-big {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ── Review marquee ── */
.review-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin: clamp(2rem, 4vw, 3rem) calc(-1 * var(--pad-x)) 0;
  padding: 8px 0 16px;
}
.review-marquee-wrap::before,
.review-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.review-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.review-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}
.review-track {
  display: flex;
  white-space: nowrap;
}
.review-inner {
  display: inline-flex;
  gap: 16px;
  padding: 8px 8px 8px 8px;
  animation: review-scroll 60s linear infinite;
  flex-shrink: 0;
}
.review-inner:hover { animation-play-state: paused; }
.review-card {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 20px 22px;
  width: 310px;
  white-space: normal;
  flex-shrink: 0;
  vertical-align: top;
  transition: border-color 0.2s var(--ease-std), box-shadow 0.2s var(--ease-out);
}
.review-card:hover {
  border-color: var(--hairline-r);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.review-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-2);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-1);
  margin-top: auto;
}
.review-date {
  font-weight: 400;
  color: var(--ink-3);
}

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

/* ── Contact & Location ── */
#contact {
  padding: var(--section-pad);
  background: var(--light);
  color: var(--ink-light);
}
#contact .section-h2 { color: var(--ink-light); }
#contact .eyebrow { color: var(--red); }
#contact .eyebrow::before { background: var(--red); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light-2);
  margin-bottom: 4px;
}
.contact-item-value {
  font-weight: 500;
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-item-value a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-item-value a:hover { color: var(--red-hot); }

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(10,10,10,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.06);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ── Footer ── */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--hairline);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 240px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-std), border-color 0.2s var(--ease-std), transform 0.2s var(--ease-std);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--ink-3);
  transition: fill 0.2s var(--ease-std);
}
.social-btn:hover {
  background: rgba(220,38,38,0.1);
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-2px);
}
.social-btn:hover svg { fill: var(--red); }
.social-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--ink-3);
  transition: color 0.2s var(--ease-std);
}
.footer-col ul a:hover { color: var(--ink-1); }
.footer-col p {
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
.footer-bottom-tag {
  font-size: 0.78rem;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── WhatsApp FAB ── */
#wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35), 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.22s var(--ease-std), box-shadow 0.22s var(--ease-std);
  text-decoration: none;
}
#wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
#wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 12px 40px rgba(0,0,0,0.5); }
#wa-fab:active { transform: scale(0.94); }
#wa-fab:focus-visible { outline: 2px solid #25D366; outline-offset: 4px; }
#wa-fab svg { width: 26px; height: 26px; fill: #fff; position: relative; z-index: 1; }

@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.7);  opacity: 0; }
  100% { transform: scale(1.7);  opacity: 0; }
}

/* ── Section Divider (Chevrons) ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  background: inherit;
}
.section-divider-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.15;
}
.section-divider-chevrons span {
  display: block;
  width: 32px;
  height: 10px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: skewX(-20deg) rotate(-180deg);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 1.25rem;
    --pad-y: 3.5rem;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .nav-logo { height: 36px; }
  #navbar { padding: 16px var(--pad-x); }

  /* Hero — full bleed bg image, text over */
  #hero {
    grid-template-columns: 1fr;
    min-height: 100dvh;
    position: relative;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    min-height: unset;
    z-index: 0;
  }
  .hero-right::after {
    background: linear-gradient(
      to top,
      var(--bg) 0%,
      rgba(10,10,10,0.92) 45%,
      rgba(10,10,10,0.6) 100%
    );
  }
  .hero-left {
    position: relative;
    z-index: 3;
    padding: 6.5rem 1.25rem 3.5rem;
    gap: 18px;
  }
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-sub { font-size: 0.92rem; max-width: 100%; }

  /* CTAs stack full-width */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; padding: 15px 20px; }

  /* Stats → 2×2 grid */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    padding-top: 18px;
  }
  .stat-num { font-size: 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 1.1rem; gap: 10px; }
  .service-name { font-size: 1rem; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { aspect-ratio: 4/3; grid-row: span 1; }
  .before-after-wrap { grid-column: span 2; aspect-ratio: 4/3; }

  /* Reviews */
  .review-card { width: 270px; padding: 16px 18px; }

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

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Testimonial stats */
  .testimonial-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
  }

  /* Section headings */
  .section-h2 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 1rem;
    --pad-y: 3rem;
  }

  /* Hero */
  .hero-h1 { font-size: clamp(2rem, 11vw, 2.6rem); }
  .hero-left { padding: 6rem 1rem 3rem; gap: 16px; }
  .stat-num { font-size: 1.3rem; }

  /* Services → 1 column on small phones */
  .services-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Gallery → 1 column */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .before-after-wrap { grid-column: span 1; }

  /* Why → 1 column */
  .why-grid { grid-template-columns: 1fr; }

  /* Packages */
  .packages-grid { gap: 10px; }

  /* Reviews */
  .review-card { width: 250px; }

  /* Section */
  .section-h2 { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .section-header { margin-bottom: 1.75rem; }
}

/* ── Prefers reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
