/* ============================================
   AJ's Auto Rehab : Main Stylesheet
   Design: Premium dark auto studio with
   cyan water-splash accents from the logo.
   ============================================ */

:root {
  /* Core palette : brightened from previous too-dark base */
  --bg-0: #0C121B;
  --bg-1: #111825;
  --bg-2: #17202F;
  --bg-3: #1D283A;
  --bg-elev: #212D42;
  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-glass-hi: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --border-hi: rgba(255, 255, 255, 0.18);

  /* Brand cyan (from logo) */
  --cy-300: #9FE5FF;
  --cy-400: #5FCDFF;
  --cy-500: #3ED2FF;
  --cy-600: #00B2F0;
  --cy-700: #0099E5;
  --cy-800: #0059B3;
  --cy-900: #003F80;

  /* Accents */
  --chrome: #C0C8D4;
  --gold: #FFC93C;
  --ink: #F8FAFC;
  --ink-dim: #A8B2C3;
  --ink-muted: #6B7585;

  /* Typography */
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Layout */
  --container: 1280px;
  --container-wide: 1480px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.25s;
  --dur: 0.45s;
  --dur-slow: 0.8s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg-1);
  background-image:
    radial-gradient(ellipse 1200px 800px at 50% 0%, rgba(0, 178, 240, 0.07), transparent 60%),
    radial-gradient(ellipse 900px 700px at 85% 50%, rgba(62, 210, 255, 0.04), transparent 65%),
    radial-gradient(ellipse 900px 700px at 15% 80%, rgba(0, 153, 229, 0.03), transparent 70%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle noise texture on body for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Section scroll anchor : offset for sticky header */
section[id] {
  scroll-margin-top: 84px;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--cy-500);
  outline-offset: 3px;
  border-radius: 4px;
}

button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

::selection { background: var(--cy-700); color: var(--ink); }

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--cy-700); color: var(--ink);
  padding: 10px 18px; z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 10px; left: 10px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cy-400);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--cy-400);
  font-size: 1.15em;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease-out); }

.btn-primary {
  background: linear-gradient(135deg, var(--cy-600) 0%, var(--cy-800) 100%);
  color: var(--ink);
  box-shadow:
    0 0 0 1px rgba(62, 210, 255, 0.3),
    0 10px 30px -10px rgba(0, 178, 240, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cy-500) 0%, var(--cy-700) 100%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(62, 210, 255, 0.5),
    0 16px 36px -10px rgba(0, 178, 240, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--surface-glass-hi);
  border-color: var(--cy-500);
  color: var(--cy-400);
  transform: translateY(-2px);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--dur) var(--ease-out),
              padding var(--dur) var(--ease-out),
              backdrop-filter var(--dur) var(--ease-out);
}
.site-header.scrolled {
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.header-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 54px;
  width: auto;
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
  filter: drop-shadow(0 2px 8px rgba(62, 210, 255, 0.3));
}
.brand:hover .brand-logo { transform: scale(1.04) rotate(-1deg); }

.nav-main { flex: 1; }
.nav-list {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.nav-list > li > a,
.nav-list .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-dim);
  border-radius: 999px;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.nav-list > li > a:hover,
.nav-list .dropdown-trigger:hover {
  color: var(--ink);
  background: var(--surface-glass);
}
.nav-list .chev {
  width: 10px; height: 10px;
  transition: transform var(--dur-fast) var(--ease-out);
}
.has-dropdown.open .chev { transform: rotate(180deg); }

/* Dropdown panel */
.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(860px, 92vw);
  background: rgba(17, 21, 28, 0.98);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(62, 210, 255, 0.08);
}
.has-dropdown.open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
}

.dropdown-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cy-400);
  margin-bottom: 12px;
}

.dropdown-col a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease-out);
}
.dropdown-col a:hover { background: var(--surface-glass-hi); }

.dd-num {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--cy-500);
  align-self: center;
}
.dd-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.dd-desc {
  font-size: 13px;
  color: var(--ink-muted);
}

.dropdown-promo {
  background: linear-gradient(135deg, var(--cy-800) 0%, var(--cy-900) 100%);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.dropdown-promo::after {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--cy-500) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}
.promo-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cy-300);
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.promo-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.promo-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--cy-300);
  position: relative; z-index: 1;
}
.promo-cta:hover { color: var(--ink); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(8px);
  transition: all var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--cy-700);
  border-color: var(--cy-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(0, 178, 240, 0.5);
}
.phone-icon { width: 16px; height: 16px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.55);
  backdrop-filter: blur(3px);
  z-index: 99;
  opacity: 0;
  transition: opacity 200ms ease;
}
body.menu-open .mobile-menu-backdrop {
  display: block;
  opacity: 1;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--bg-0);
  border-left: 1px solid var(--border);
  padding: 80px 24px 24px;
  z-index: 100;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease-out);
  overflow-y: auto;
  z-index: 99;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  padding: 0;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  background: var(--surface-glass);
  border-color: var(--cy-700);
  color: var(--cy-300);
}
.mobile-menu-close:active { transform: scale(0.92); }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu a, .mobile-menu summary {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-menu a:hover, .mobile-menu summary:hover { background: var(--surface-glass); }
.mobile-services[open] summary { color: var(--cy-400); }
.mobile-services a {
  padding-left: 32px;
  font-size: 15px;
  color: var(--ink-dim);
}
.mobile-call {
  margin-top: 16px;
  background: var(--cy-700) !important;
  text-align: center;
  font-weight: 600 !important;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 178, 240, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(62, 210, 255, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62, 210, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 210, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.splash {
  position: absolute;
  width: 600px; height: 600px;
  filter: blur(30px);
}
.splash-1 { top: -150px; left: -200px; animation: drift 18s ease-in-out infinite; }
.splash-2 { bottom: -100px; right: -150px; animation: drift 22s ease-in-out infinite reverse; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 220px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface-glass-hi);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--cy-500);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cy-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.1em;
  color: transparent;
  background: linear-gradient(135deg, var(--cy-400) 0%, var(--cy-700) 70%, var(--cy-800) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-right: 0.3em;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 52ch;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.meta-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
}
.meta-stars strong { color: var(--ink); font-weight: 700; }
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.stars svg { width: 16px; height: 16px; }
.stars.gold svg { width: 18px; height: 18px; }
.meta-divider { width: 1px; height: 18px; background: var(--border-hi); }
.meta-item { font-size: 14px; color: var(--ink-dim); }
.meta-item strong { color: var(--cy-400); font-weight: 600; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border-hi),
    0 0 120px -30px rgba(0, 178, 240, 0.35);
  transform: rotate(2deg);
}
.hero-image-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.hero-car {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.5s var(--ease-out);
}
.hero-visual:hover .hero-car { transform: scale(1.04); }

.hero-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, rgba(62, 210, 255, 0.25) 50%, rgba(255, 255, 255, 0.08) 55%, transparent 100%);
  animation: shine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 85% { left: -100%; }
  100% { left: 200%; }
}

.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 140px; height: 140px;
  background: var(--bg-elev);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  transform: rotate(-6deg);
  transition: transform var(--dur) var(--ease-out);
}
.hero-badge:hover { transform: rotate(0deg) scale(1.05); }
.badge-inner {
  text-align: center;
  padding: 16px;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--cy-400), var(--cy-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.2;
}

.hero-tagstamp {
  position: absolute;
  top: -24px; right: -20px;
  width: 120px; height: 120px;
  display: grid;
  place-items: center;
  color: var(--cy-400);
}
.hero-tagstamp svg { width: 100%; height: 100%; fill: var(--cy-400); }
.spin-slow { animation: spin 50s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.stamp-center {
  position: absolute;
  width: 54px; height: 54px;
  background: var(--cy-700);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  box-shadow: 0 0 30px rgba(0, 178, 240, 0.5);
}

/* ============ REVIEWS MARQUEE (replaces old services marquee under hero) ============ */
.reviews-marquee {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0)),
    var(--bg-0);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 84px;
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-0) 10%, transparent);
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-0) 10%, transparent);
}

.rm-rail { overflow: hidden; }
.rm-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: rm-scroll 100s linear infinite;
  will-change: transform;
}
@keyframes rm-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.rm-card {
  flex: 0 0 360px;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}
.rm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rm-stars {
  display: inline-flex;
  gap: 2px;
  color: #FBBC05;
}
.rm-stars svg { width: 16px; height: 16px; }
.rm-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5F6368;
}
.rm-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: #202124;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.rm-attr {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #E8EAED;
  font-size: 13px;
  color: #5F6368;
}
.rm-attr strong { color: #202124; font-family: var(--font-body); font-weight: 600; }

@media (max-width: 640px) {
  .rm-card { flex: 0 0 290px; padding: 18px 20px; min-height: 180px; }
  .rm-text { font-size: 13.5px; -webkit-line-clamp: 4; }
  .reviews-marquee { padding: 36px 0; }
}

/* ============ STATS ============ */
.stats {
  padding: 72px 0;
  background: var(--bg-0);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
}
.stat {
  padding: 44px 24px;
  background: var(--bg-1);
  text-align: center;
  transition: background var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.stat::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cy-500), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.stat:hover { background: var(--bg-2); }
.stat:hover::before { opacity: 1; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--ink) 0%, var(--cy-500) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.stat-num.stat-num-text {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 0.7em;
  font-weight: 800;
  color: var(--cy-400);
  -webkit-text-fill-color: var(--cy-400);
}
.slot {
  display: inline-block;
  min-width: 1em;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.3;
}

/* ============ ABOUT ============ */
.about {
  padding: 90px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-copy {
  color: var(--ink-dim);
  font-size: 1.08rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.about-sig {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  max-width: 280px;
}
.sig-handwriting {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--cy-400);
  font-weight: 500;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.about-photo:hover img { transform: scale(1.05); }
.about-photo figcaption {
  position: absolute;
  inset: auto 20px 20px 20px;
  padding: 20px 24px;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
}
.cap-quote {
  display: block;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.2;
}
.cap-attr {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cy-400);
}

/* ============ SERVICES ============ */
.services {
  padding: 90px 0;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 178, 240, 0.06), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.services > .container { position: relative; z-index: 1; }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.services-intro {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 42ch;
  justify-self: end;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cy-700);
  background: var(--bg-2);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5), 0 0 30px -10px rgba(0, 178, 240, 0.2);
}
.service-card.featured {
  border-color: var(--cy-700);
}
.service-card.featured .svc-media::after {
  background: linear-gradient(180deg, rgba(0, 178, 240, 0.15) 0%, transparent 40%, rgba(10, 14, 22, 0.4) 100%);
}
.svc-media {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  background: var(--bg-0);
}
.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.service-card:hover .svc-media img {
  transform: scale(1.06);
}
.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 22, 0.55) 100%);
  pointer-events: none;
}
.svc-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-tag {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 12px;
  background: var(--cy-500);
  color: #000;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  z-index: 2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
}
.svc-num {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.16em;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(10, 14, 22, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 4px;
}
.svc-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.svc-desc {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--cy-400);
  margin-top: auto;
}
.svc-link .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.service-card:hover .svc-link .arrow { transform: translateX(6px); }

/* ============ BEFORE/AFTER ============ */
.before-after {
  padding: 90px 0;
  background: transparent;
  position: relative;
}
.before-after-alt {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}

.ba-header {
  text-align: center;
  margin-bottom: 40px;
}
.ba-header .section-eyebrow { display: inline-flex; }
.ba-header .section-title { margin-left: auto; margin-right: auto; }
.ba-intro {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0 auto;
}

.slider-shell {
  max-width: 780px;
  margin: 0 auto;
  padding: 12px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 120px -30px rgba(0, 178, 240, 0.18);
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  user-select: none;
  cursor: ew-resize;
  background: var(--bg-0);
}
.slider-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
.slider-before {
  position: absolute;
  inset: 0;
}
.slider-after-wrap {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}
.slider-after {
  /* Width gets set by JS to match slider width */
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  max-width: none;
}

.slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--ink);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 20px rgba(0, 178, 240, 0.6);
  will-change: left;
}
.handle-line { width: 100%; height: 100%; background: var(--cy-300); }
.handle-grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cy-800);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.15), 0 0 40px rgba(62, 210, 255, 0.4);
  transition: transform var(--dur-fast) var(--ease-out);
}
.handle-grip svg { width: 22px; height: 22px; }
.slider-handle:hover .handle-grip,
.slider-handle:focus .handle-grip { transform: translate(-50%, -50%) scale(1.1); }
.slider-handle:active .handle-grip { transform: translate(-50%, -50%) scale(0.95); }

.slider-label {
  position: absolute;
  top: 18px;
  padding: 7px 14px;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}
.slider-label-left { left: 18px; color: var(--ink-dim); }
.slider-label-right { right: 18px; color: var(--cy-400); border-color: var(--cy-700); }

.ba-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 980px;
  margin: 50px auto 0;
}
.ba-cap {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cap-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 178, 240, 0.15), rgba(0, 178, 240, 0.05));
  border: 1px solid rgba(62, 210, 255, 0.35);
  border-radius: 12px;
  color: var(--cy-400);
  box-shadow: inset 0 0 20px rgba(62, 210, 255, 0.1);
}
.cap-icon svg { width: 22px; height: 22px; }
.ba-cap strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.ba-cap p { color: var(--ink-dim); font-size: 14px; line-height: 1.55; }

/* ============ GALLERY ============ */
.gallery {
  padding: 90px 0;
  background: var(--bg-0);
}
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-header .section-eyebrow { display: inline-flex; }
.gallery-header .section-title { margin: 0 auto 24px; }
.gallery-intro {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 50ch;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  cursor: pointer;
}
.gal-item.gal-lg {
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
}
.gal-item.gal-wide {
  grid-column: 2 / 4;
  aspect-ratio: auto;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 12, 0.9));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.gal-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gal-tag {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.gal-svc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cy-400);
}

/* ============ VISIT ============ */
.visit {
  padding: 90px 0;
  background: var(--bg-0);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.visit-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 16px;
  margin: 36px 0 28px;
}
.visit-block {
  padding: 22px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.visit-block:hover { border-color: var(--cy-700); transform: translateY(-2px); }
.visit-block:nth-child(3) { grid-column: 1 / -1; }
.vb-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cy-400);
  margin-bottom: 12px;
}
.vb-value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 14px;
}
.phone-link {
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease-out);
}
.phone-link:hover { color: var(--cy-400); }
.vb-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cy-400);
}
.vb-link:hover { color: var(--cy-300); }

.visit-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14.5px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: var(--ink);
  border-bottom: 1px dashed var(--border);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li.closed { color: var(--ink-muted); }
.hours-list li.closed span:last-child {
  color: var(--ink-muted);
  font-style: italic;
}
.hours-list li span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hours-list li span:last-child {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--ink-dim);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
  min-height: 460px;
  filter: invert(0.92) hue-rotate(180deg) contrast(0.85);
  transition: filter var(--dur) var(--ease-out);
}
.visit-map:hover { filter: invert(0.92) hue-rotate(180deg) contrast(0.95); }
.visit-map iframe { display: block; width: 100%; height: 100%; min-height: 460px; }

/* ---------- Contact panel ---------- */
.contact-panel {
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(0, 178, 240, 0.15), transparent 60%);
  pointer-events: none;
}
.contact-intro { position: relative; z-index: 1; }
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 14px 0 16px;
}
.contact-sub {
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.contact-phone {
  color: var(--cy-300);
  border-bottom: 1px solid var(--cy-700);
  padding-bottom: 1px;
  white-space: nowrap;
}
.contact-phone:hover { color: var(--cy-200); border-color: var(--cy-500); }
.contact-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
}
.contact-perks .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cy-700);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cy-400);
}
.cf-opt {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 11px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  resize: vertical;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--ink-muted);
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--cy-500);
  background: #0F1622;
  box-shadow: 0 0 0 3px rgba(62, 210, 255, 0.15);
}
.cf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233ED2FF' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.cf-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.cf-submit {
  align-self: flex-start;
  margin-top: 6px;
}
.cf-submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.cf-submit.is-loading .cf-submit-label::after {
  content: "…";
}
.cf-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0;
}
.cf-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
}
.cf-status.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}
.cf-status.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand { max-width: 320px; }
.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
}
.footer-logo-link:hover { transform: translateY(-2px); }
.footer-logo {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(62, 210, 255, 0.3));
  transition: filter var(--dur-fast) var(--ease-out);
}
.footer-logo-link:hover .footer-logo {
  filter: drop-shadow(0 4px 12px rgba(62, 210, 255, 0.5));
}
.footer-tag {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: var(--surface-glass-hi);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-dim);
  transition: all var(--dur-fast) var(--ease-out);
}
.footer-social a:hover {
  background: var(--cy-700);
  color: var(--ink);
  border-color: var(--cy-700);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cy-400);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a, .footer-col li {
  font-size: 14.5px;
  color: var(--ink-dim);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--cy-400); }
.hours-small li { font-size: 14px; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-craft {
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--cy-400);
}

/* ============ ANIMATIONS ============ */
/* Progressive enhancement : reveals only hide if JS has loaded */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal.delay-1 { transition-delay: 0.1s; }
.js .reveal.delay-2 { transition-delay: 0.2s; }
.js .reveal.delay-3 { transition-delay: 0.3s; }
.js .reveal.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   VIEWPORT-FIT SECTIONS + MERGED B/A + REVIEWS OVERHAUL
   Every menu-targeted section fills the viewport minus the
   sticky header, so menu jumps land with the section in frame.
   ============================================================ */

#reviews,
#about,
#services,
#before-after,
#visit,
#contact,
.gallery {
  min-height: calc(100svh - 90px);
  padding: 40px 0 !important;
  scroll-margin-top: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Containers keep their max-width + auto margins for horizontal centering */
#reviews > .container,
#about > .container,
#services > .container,
#before-after > .container,
#visit > .container,
#contact > .container,
.gallery > .container {
  width: 100%;
}

/* ---------- Reviews section (header + stats + marquee) ---------- */
.reviews-section {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews-top {
  text-align: center;
  margin-bottom: 36px;
}
.reviews-top .section-eyebrow {
  justify-content: center;
  display: inline-flex;
  margin: 0 auto 12px;
}
.reviews-top .section-title {
  max-width: 820px;
  margin: 0 auto 14px;
}
.reviews-intro {
  font-size: 1.05rem;
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.reviews-top .stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
/* Marquee as a nested block instead of its own section */
.reviews-section .reviews-marquee {
  border: none;
  padding: 18px 0 0;
  background: transparent;
  scroll-margin-top: 0;
}
.reviews-section .rm-card { min-height: 180px; padding: 18px 22px; }
.reviews-section .rm-text { -webkit-line-clamp: 4; font-size: 14px; }
.reviews-section .reviews-marquee::before {
  background: linear-gradient(90deg, var(--bg-1) 5%, transparent);
}
.reviews-section .reviews-marquee::after {
  background: linear-gradient(-90deg, var(--bg-1) 5%, transparent);
}

/* ---------- Before/After: two sliders side-by-side ---------- */
.before-after .ba-header { margin-bottom: 20px; }
.before-after .ba-header .section-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.before-after .ba-intro { font-size: 0.98rem; }
.ba-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Two explicit rows: heads on row 1 (auto-sized to tallest), sliders on row 2.
     Panels use subgrid so both heads share the same height and both sliders start
     at the same vertical position : keeps the two boxes perfectly aligned. */
  grid-template-rows: auto 1fr;
  gap: clamp(22px, 2.6vw, 36px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.ba-panel {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 14px;
  min-width: 0;
}
.ba-panel-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ba-panel-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cy-300);
  padding: 5px 14px;
  background: rgba(0, 178, 240, 0.08);
  border: 1px solid var(--cy-800);
  border-radius: 999px;
}
.ba-panel-desc {
  font-size: 0.92rem;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.5;
  max-width: 38ch;
}
.ba-duo .slider-shell {
  max-width: none;
  padding: 8px;
  margin: 0;
}
.ba-duo .slider { aspect-ratio: 4/3; }
.ba-duo .slider-label {
  top: 12px;
  padding: 5px 10px;
  font-size: 10.5px;
}
.ba-duo .slider-label-left { left: 12px; }
.ba-duo .slider-label-right { right: 12px; }
.ba-duo .handle-grip { width: 44px; height: 44px; }
.ba-duo .handle-grip svg { width: 18px; height: 18px; }

/* ---------- Services compressed for viewport fit ---------- */
.services .services-header {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 18px;
  text-align: center;
}
.services .services-header .section-eyebrow { justify-content: center; display: inline-flex; margin: 0 auto; }
.services .services-header .section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  max-width: 900px;
  margin: 0 auto;
}
.services .services-intro {
  font-size: 0.95rem;
  max-width: 56ch;
  justify-self: center;
  text-align: center;
  margin: 0 auto;
}
.services .services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.services .svc-media { aspect-ratio: 21 / 9; }
.services .svc-body { padding: 14px 18px 16px; }
.services .svc-title { font-size: 1.05rem; margin-bottom: 4px; }
.services .svc-desc {
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.services .svc-link { font-size: 12.5px; margin-top: 0; }
.services .svc-num { font-size: 11px; padding: 3px 7px; bottom: 8px; left: 10px; }
.services .svc-tag { font-size: 10px; padding: 3px 9px; top: 10px; right: 10px; }

/* ---------- Gallery: full-bleed 6-col × 3-row grid, no captions ---------- */
.gallery {
  padding: 30px 0 !important;
  align-items: stretch;
  justify-content: flex-start;
  /* Hard-cap section height so the grid can never push past the viewport */
  max-height: calc(100svh - 90px);
  overflow: hidden;
}
.gallery .gallery-header {
  text-align: center;
  margin: 0 auto 16px;
  padding: 0 24px;
  flex-shrink: 0;
}
.gallery .gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
  display: inline-block;
  position: relative;
}
.gallery .gallery-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--cy-500), var(--cy-700));
  margin: 10px auto 0;
  border-radius: 2px;
}
/* Full viewport-width grid, edge-to-edge, fills remaining vertical space */
.gallery .gallery-grid {
  display: grid;
  width: 100%;
  padding: 0 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
  grid-auto-flow: dense;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.gallery .gal-item {
  min-width: 0;
  min-height: 0;
}
.gallery .gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-0);
  margin: 0;
  aspect-ratio: auto !important;
  grid-column: auto;
  grid-row: auto;
}
.gallery .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform 1s var(--ease-out);
}
.gallery .gal-item:hover img { transform: scale(1.05); }

/* Size variants */
.gallery .gal-item.gal-a { grid-column: span 3; grid-row: span 2; }  /* 3×2 hero */
.gallery .gal-item.gal-b { grid-column: span 2; grid-row: span 2; }  /* 2×2 square */
.gallery .gal-item.gal-t { grid-column: span 1; grid-row: span 2; }  /* 1×2 tall portrait */

/* Removed: captions (user doesn't want everything labeled) */
.gallery .gal-item figcaption { display: none; }

/* Hover cue that gallery items are clickable */
.gallery .gal-item { cursor: zoom-in; }
.gallery .gal-item:hover { border-color: var(--cy-700); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 6, 10, 0.94);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lb-figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 220ms var(--ease-out);
}
.lightbox.is-open .lb-figure { transform: scale(1); }
.lb-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
  background: var(--bg-0);
}
.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
  padding: 0;
}
.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}
.lb-close { top: 20px; right: 20px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close svg,
.lb-nav svg { width: 22px; height: 22px; }

body.lb-open { overflow: hidden; }

@media (max-width: 640px) {
  .lightbox { padding: 24px; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 10px; right: 10px; width: 40px; height: 40px; }
}

/* ---------- About : centered content, compact ---------- */
.about .about-grid { align-items: center; gap: clamp(30px, 4vw, 60px); }
.about .about-copy p { font-size: 0.98rem; line-height: 1.65; }
.about .about-copy p + p { margin-top: 14px; }
.about .section-title { font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
.about .about-photo img { max-height: 560px; object-fit: cover; }

/* ---------- Visit : info + map, no contact form below ---------- */
.visit .visit-grid { gap: clamp(28px, 4vw, 60px); }
.visit .visit-info { min-width: 0; }
.visit .visit-blocks {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 0;
}
.visit .visit-block { padding: 18px; }
.visit .visit-block:nth-child(3) { grid-column: auto; }
.visit .vb-label { margin-bottom: 8px; }
.visit .vb-value { font-size: 15px; margin-bottom: 10px; }
.visit .vb-link { font-size: 12.5px; }
.vb-link-muted {
  display: inline-block;
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 12px;
  font-style: italic;
}
.visit .visit-map { min-height: 420px; }

/* ---------- Contact section (standalone, inherits from contact-panel) ---------- */
.contact { background: var(--bg-0); }
.contact .contact-panel {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav-list > li > a,
  .nav-list .dropdown-trigger { padding: 8px 12px; font-size: 14px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; }
  .services-intro { justify-self: start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.gal-lg { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 16/10; }
  .gal-item.gal-wide { grid-column: 1 / -1; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 380px; }
  .contact-panel { grid-template-columns: 1fr; gap: 30px; padding: 36px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ba-duo { grid-template-columns: 1fr; gap: 28px; }
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
  }
  .gallery .gal-item { aspect-ratio: 4/3 !important; grid-column: auto !important; grid-row: auto !important; }
  .gallery .gal-item.gal-lg { grid-column: 1 / -1 !important; aspect-ratio: 16/10 !important; }
  .gallery .gal-item.gal-wide { grid-column: 1 / -1 !important; aspect-ratio: 16/7 !important; }
  .gallery .gal-item.gal-tall { aspect-ratio: 3/4 !important; }
  /* Below this breakpoint, viewport-fit gets unwieldy : let sections grow */
  #reviews, #about, #services, #before-after, #visit, #contact, .gallery {
    min-height: auto;
    padding: 60px 0 !important;
  }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-main { display: none; }
  /* Persistent Contact Us CTA on mobile header, pushed to right */
  .header-cta {
    display: inline-flex !important;
    margin-left: auto;
    padding: 8px 12px;
    font-size: 12.5px;
    gap: 6px;
    background: var(--cy-700);
    color: var(--ink);
    border-color: var(--cy-700);
  }
  .header-cta span { font-size: 12.5px; letter-spacing: 0; }
  .header-cta .phone-icon { width: 14px; height: 14px; }
  .mobile-toggle { display: flex; margin-left: 6px; }
  .mobile-menu { display: flex; }
  /* Services dropdown in mobile menu: stack each link as its own block */
  .mobile-services { display: flex; flex-direction: column; }
  .mobile-services summary { list-style: none; }
  .mobile-services summary::-webkit-details-marker { display: none; }
  .mobile-services[open] a {
    display: block;
    padding: 10px 16px 10px 36px;
    margin: 2px 0;
  }
  /* Stats grid: drop the grey outer frame + 1px separators on mobile */
  .reviews-top .stats-grid,
  .stats-grid {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    gap: 14px !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .stat {
    min-height: auto !important;
    padding: 18px 14px !important;
    background: var(--bg-1) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
  }
  .stat-num { font-size: clamp(1.9rem, 7vw, 2.4rem) !important; }
  .stat-label { font-size: 10.5px !important; }
  body.menu-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .mobile-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 110px; padding-bottom: 40px; }
  .hero-badge { width: 100px; height: 100px; bottom: -10px; left: -10px; }
  .badge-num { font-size: 24px; }
  .hero-tagstamp { width: 88px; height: 88px; top: -16px; right: -10px; }
  .stamp-center { width: 40px; height: 40px; font-size: 14px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }
  .ba-captions { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item { aspect-ratio: 4/3 !important; }
  .visit-blocks { grid-template-columns: 1fr; }
  .visit-block:nth-child(3) { grid-column: auto; }
  .hours-list { grid-template-columns: 1fr; }
  .contact-panel { padding: 28px 22px; margin-top: 40px; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  .handle-grip { width: 48px; height: 48px; }
  .slider-label { font-size: 10px; padding: 5px 10px; top: 12px; }
  .slider-label-left { left: 12px; }
  .slider-label-right { right: 12px; }

  .section-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .about, .services, .before-after, .gallery, .reviews, .visit { padding: 80px 0; }
}

/* ============================================================
   MOBILE OVERRIDES (<= 760px) — beat desktop viewport-fit specificity
   ============================================================ */
@media (max-width: 760px) {
  /* Services: 1 column, normal photo aspect, readable text */
  .services .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .services .svc-media { aspect-ratio: 16 / 9 !important; }
  .services .svc-body { padding: 18px 20px 20px; }
  .services .svc-title { font-size: 1.2rem; }
  .services .svc-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    -webkit-line-clamp: unset;
  }
  .services .svc-link { font-size: 13px; }
  .services .services-header { margin-bottom: 22px; }

  /* Gallery: 2 cols, 4:3 cells, all items behave the same */
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    gap: 8px;
  }
  .gallery .gal-item,
  .gallery .gal-item.gal-a,
  .gallery .gal-item.gal-b,
  .gallery .gal-item.gal-t {
    aspect-ratio: 4/3 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0;
  }
  .gallery { max-height: none; overflow: visible; }
  .gallery .gallery-grid { overflow: visible; }

  /* Reviews: slower marquee + smaller cards */
  .rm-track { animation-duration: 140s !important; }

  /* Spinning ring on hero-tagstamp: slower so it feels ambient, not spinning fast */
  .spin-slow { animation-duration: 80s !important; }

  /* B/A: subgrid doesn't apply in 1-col stack; reset panel to flex so it stays clean */
  .ba-panel {
    display: flex !important;
    flex-direction: column;
    grid-row: auto !important;
  }
  .before-after .ba-duo {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }

  /* Contact panel on mobile */
  .contact .contact-panel { padding: 28px 22px; }

  /* Suppress the flickery splash gradient on mobile — parallax is off so it sits still,
     and the blurred gradients were the source of most of the jank on scroll */
  .splash { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   SERVICE SUB-PAGE STYLES
   ============================================ */
.service-page {
  min-height: 100vh;
}

.service-hero {
  position: relative;
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(0, 178, 240, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 60%, rgba(62, 210, 255, 0.08), transparent 70%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  overflow: hidden;
  isolation: isolate;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62, 210, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 210, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  z-index: -1;
}

.svc-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.svc-breadcrumbs a { color: var(--cy-400); transition: color var(--dur-fast) var(--ease-out); }
.svc-breadcrumbs a:hover { color: var(--ink); }
.svc-breadcrumbs .sep { color: var(--ink-muted); }
.svc-breadcrumbs .current { color: var(--ink); }

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.service-hero-grid > div:first-child .section-eyebrow { margin-bottom: 20px; }

.service-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--cy-400);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.service-number::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--cy-500);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.service-title em {
  font-family: var(--font-script);
  font-weight: 500;
  font-style: italic;
  font-size: 1.1em;
  color: transparent;
  background: linear-gradient(135deg, var(--cy-400), var(--cy-700));
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0;
}

.service-tagline {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  line-height: 1.5;
  max-width: 55ch;
  margin-bottom: 36px;
}

.service-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.service-hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 40px -10px rgba(0, 178, 240, 0.25);
  background: var(--bg-0);
}
.service-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10, 14, 22, 0.4) 100%);
  pointer-events: none;
}
.service-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.service-hero-photo:hover img { transform: scale(1.03); }
.service-visual-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.service-visual-ring::before,
.service-visual-ring::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px dashed rgba(62, 210, 255, 0.2);
  border-radius: 50%;
}
.service-visual-ring::after {
  inset: 60px;
  border-style: solid;
  border-color: rgba(62, 210, 255, 0.1);
}
.service-visual-icon {
  position: relative;
  width: 55%;
  height: 55%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cy-700), var(--cy-900));
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 0 20px 60px -10px rgba(0, 178, 240, 0.5), inset 0 2px 20px rgba(255, 255, 255, 0.1);
}
.service-visual-icon svg { width: 45%; height: 45%; }

/* Content blocks */
.svc-content {
  padding: 80px 0;
  background: var(--bg-1);
}
.svc-content-alt {
  background: var(--bg-0);
}

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: 80px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block.reverse { grid-template-columns: 1.2fr 1fr; }
.svc-block.reverse .svc-block-media { order: -1; }

.svc-block-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}
.svc-block-media img { width: 100%; height: 100%; object-fit: cover; }

.svc-block-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.svc-block-text h2 em {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1em;
  color: var(--cy-400);
  letter-spacing: 0;
}
.svc-block-text p {
  color: var(--ink-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.svc-block-text p:last-child { margin-bottom: 0; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.svc-list li {
  padding: 14px 18px 14px 46px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--cy-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(62, 210, 255, 0.2);
}
.svc-list li:hover {
  border-color: var(--cy-700);
  background: var(--surface-glass-hi);
}
.svc-list li strong { color: var(--ink); font-weight: 600; }
.svc-list li span { color: var(--ink-muted); font-weight: 400; font-size: 14px; }

/* Process steps */
.process {
  padding: 100px 0;
  background: var(--bg-0);
  position: relative;
}
.process-header {
  text-align: center;
  margin-bottom: 60px;
}
.process-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.process-header p { color: var(--ink-dim); max-width: 55ch; margin: 0 auto; font-size: 1.05rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cy-700), var(--cy-700), transparent);
  z-index: 0;
}
.process-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--cy-700);
}
.process-num {
  width: 44px; height: 44px;
  background: var(--bg-0);
  border: 1px solid var(--cy-700);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--cy-400);
  margin-bottom: 20px;
  position: relative;
}
.process-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(62, 210, 255, 0.2);
  border-radius: 50%;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.process-step p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
}

/* Signs / warning block */
.signs {
  padding: 80px 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.signs::before {
  content: "";
  position: absolute;
  top: 50%; left: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 201, 60, 0.06), transparent 70%);
  filter: blur(40px);
}
.signs-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.signs-wrap h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.signs-list {
  display: grid;
  gap: 12px;
}
.signs-list li {
  padding: 18px 20px 18px 56px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.signs-list li::before {
  content: "!";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--gold);
  color: #111;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  border-radius: 6px;
}

/* Service CTA section */
.svc-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cy-800) 0%, var(--cy-900) 60%, var(--bg-0) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.svc-cta::before,
.svc-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.svc-cta::before {
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--cy-500), transparent 70%);
  opacity: 0.3;
}
.svc-cta::after {
  bottom: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cy-600), transparent 70%);
  opacity: 0.35;
}
.svc-cta > .container { position: relative; z-index: 1; }
.svc-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.svc-cta p {
  color: var(--cy-300);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto 40px;
}
.svc-cta .btn-primary {
  background: var(--ink);
  color: var(--cy-800);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}
.svc-cta .btn-primary:hover {
  background: var(--cy-300);
}
.svc-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
}
.svc-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ink);
  color: var(--ink);
}

/* Related services */
.related {
  padding: 100px 0;
  background: var(--bg-1);
}
.related-header {
  text-align: center;
  margin-bottom: 50px;
}
.related-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 14px;
}
.related-header p { color: var(--ink-dim); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.related-card:hover {
  border-color: var(--cy-700);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.55), 0 0 28px -10px rgba(0, 178, 240, 0.22);
}
.related-card .r-media {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  background: var(--bg-0);
}
.related-card .r-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.related-card:hover .r-media img { transform: scale(1.06); }
.related-card .r-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 14, 22, 0.5) 100%);
  pointer-events: none;
}
.related-card .r-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.related-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.related-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
  flex-grow: 1;
  margin: 0;
}
.related-card .r-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cy-400);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.related-card .r-arrow { transition: transform var(--dur-fast) var(--ease-out); }
.related-card:hover .r-link { color: var(--cy-300); }
.related-card:hover .r-arrow { transform: translateX(4px); }

@media (max-width: 1080px) {
  .service-hero { padding: 130px 0 70px; }
  .service-hero-grid { grid-template-columns: 1fr; text-align: left; }
  .service-hero-visual { max-width: 560px; justify-self: start; width: 100%; }
  .svc-block, .svc-block.reverse { grid-template-columns: 1fr; gap: 30px; }
  .svc-block.reverse .svc-block-media { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .signs-wrap { grid-template-columns: 1fr; gap: 30px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .service-hero { padding: 110px 0 50px; }
  .process-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .svc-content { padding: 60px 0; }
  .process, .signs, .related { padding: 60px 0; }
  .svc-cta { padding: 70px 0; }
}

