/* ═══════════════════════════════════════════
   GRACE AUTOMOTIVE — SITE STYLES
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #b40304;
  --red-dark: #8c0203;
  --black: #080808;
  --black-2: #0D0D0D;
  --gray-900: #111111;
  --gray-800: #1A1A1A;
  --gray-700: #222222;
  --gray-600: #2C2C2C;
  --gray-500: #3A3A3A;
  --gray-400: #555555;
  --gray-300: #888888;
  --gray-200: #AAAAAA;
  --gray-100: #CCCCCC;
  --white: #F4F2EE;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max: 1200px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
  /* theme tokens (dark default) */
  --surface: rgba(255,255,255,0.03);
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.18);
  --grid-line: rgba(255,255,255,0.014);
  --ghost-num: rgba(255,255,255,0.03);
  --nav-bg: rgba(8,8,8,0.92);
  --nav-bg-solid: rgba(8,8,8,0.98);
  --outline-stroke: rgba(244,242,238,0.25);
  --noise-opacity: 0.025;
  --hero-img-opacity: 0.42;
}

/* ═══ LIGHT THEME ═══ */
[data-theme="light"] {
  --black: #F5F3EF;
  --black-2: #EDEAE4;
  --gray-900: #FFFFFF;
  --gray-800: #FFFFFF;
  --gray-700: #E5E2DC;
  --gray-600: #D8D5CE;
  --gray-500: #A9A6A0;
  --gray-400: #706D68;
  --gray-300: #57544F;
  --gray-200: #403E3A;
  --gray-100: #2E2C29;
  --white: #171614;
  --surface: rgba(0,0,0,0.04);
  --line: rgba(0,0,0,0.1);
  --line-2: rgba(0,0,0,0.25);
  --grid-line: rgba(0,0,0,0.03);
  --ghost-num: rgba(0,0,0,0.05);
  --nav-bg: rgba(247,245,241,0.92);
  --nav-bg-solid: rgba(247,245,241,0.98);
  --outline-stroke: rgba(23,22,20,0.35);
  --noise-opacity: 0.015;
  --hero-img-opacity: 0.5;
}
[data-theme="light"] .hero-bg::after {
  background:
    linear-gradient(to top, var(--black) 12%, rgba(245,243,239,0.55) 55%, transparent 85%),
    linear-gradient(to right, rgba(245,243,239,0.8) 0%, transparent 60%);
}
[data-theme="light"] .map-embed iframe { filter: grayscale(60%); opacity: 0.95; }
[data-theme="light"] #back-to-top { box-shadow: 0 4px 16px rgba(180,3,4,0.25); }
[data-theme="light"] .submenu { box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: white; }

body::before {
  content: '';
  position: fixed;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 9999;
}

#cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,3,4,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  top: 0; left: 0;
}
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--red);
  z-index: 9998;
  width: 0%;
  box-shadow: 0 0 8px var(--red);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--red);
  padding: 0.5rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 200;
}
.topbar-left { display: flex; gap: 2rem; align-items: center; }
.topbar a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.92;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar a:hover { opacity: 1; }
.topbar-hours {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.88;
}
.topbar-dot { opacity: 0.4; color: #ffffff; }

/* ── NAV ── */
nav.site-nav {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.site-nav.scrolled {
  background: var(--nav-bg-solid);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}
.logo img { height: 52px; width: auto; transition: opacity 0.2s; }
.logo:hover img { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li > a {
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-200);
  border-radius: 4px;
  transition: color 0.2s;
  display: block;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease-out-expo);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.has-sub { position: relative; }
/* Invisible bridge spanning the gap between the link and the dropdown,
   so hover isn't lost while the mouse travels down into the submenu */
.has-sub::after {
  content: '';
  position: absolute;
  left: -12px; right: -12px;
  top: 100%;
  height: 16px;
}
.has-sub:hover .submenu,
.submenu:hover { opacity: 1; pointer-events: all; transform: translateY(0); transition-delay: 0s; }
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--gray-800);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 240px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s var(--ease-out-expo);
  transition-delay: 0.18s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.submenu::before {
  content: '';
  position: absolute;
  top: -5px; left: 20px;
  width: 10px; height: 10px;
  background: var(--gray-800);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.submenu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--gray-200);
  letter-spacing: 0.02em;
  transition: color 0.15s, background 0.15s;
}
.submenu li a::before { content: '→'; font-size: 0.7rem; color: var(--red); opacity: 0; transition: opacity 0.15s, transform 0.15s; transform: translateX(-4px); }
.submenu li a:hover { color: var(--white); background: var(--surface); }
.submenu li a:hover::before { opacity: 1; transform: translateX(0); }
.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; background: none; border: 1px solid var(--line-2); cursor: pointer; padding: 0.5rem; border-radius: 4px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--white); margin: 4px 0; transition: 0.25s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  background: var(--nav-bg-solid);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 2rem var(--pad);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-200);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: var(--white); padding-left: 0.5rem; }
.mobile-nav-sub { list-style: none; padding: 0.5rem 0 0.5rem 1rem; display: flex; flex-direction: column; }
.mobile-nav-sub li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color 0.2s;
}
.mobile-nav-sub li a:hover { color: var(--white); }
.mobile-nav-cta { margin-top: 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  border: none;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--line);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out-expo);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(180,3,4,0.3); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); background: var(--surface); }
.btn-arrow::after { content: ' →'; font-size: 1rem; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-white {
  background: white; color: var(--red);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: 7rem 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.section-tag-line { display: block; width: 28px; height: 1px; background: var(--red); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: 1.05rem;
  color: var(--gray-200);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── HOME HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: var(--hero-img-opacity);
  animation: hero-zoom 12s ease-out forwards;
}
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--black) 22%, rgba(8,8,8,0.35) 55%, transparent 80%),
    linear-gradient(to right, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.3) 45%, transparent 70%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
}
.hero-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scanline 4s ease-in-out infinite;
  z-index: 1;
  opacity: 0.5;
}
@keyframes scanline {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}
.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem var(--pad) 6rem;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: end;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up 0.7s 0.3s var(--ease-out-expo) forwards;
}
.hero-eyebrow-line { display: block; width: 40px; height: 1px; background: var(--red); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s 0.45s var(--ease-out-expo) forwards;
}
.hero h1 .line-red { color: var(--red); display: block; }
.hero h1 .line-outline { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--outline-stroke); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--gray-200);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.75rem;
  font-weight: 300;
  opacity: 0;
  animation: fade-up 0.8s 0.6s var(--ease-out-expo) forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  opacity: 0;
  animation: fade-up 0.8s 0.75s var(--ease-out-expo) forwards;
}
.hero-badge {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  color: var(--gray-200);
  opacity: 0;
  animation: fade-up 0.8s 0.9s var(--ease-out-expo) forwards;
  margin-top: 2.5rem;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px #22c55e; }
  50% { box-shadow: 0 0 12px #22c55e; }
}
.hero-badge strong { font-weight: 600; color: var(--white); }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 7rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background: var(--black-2);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(180,3,4,0.08), transparent 50%),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--gray-300); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .sep { color: var(--gray-500); }
.breadcrumbs .current { color: var(--red); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  max-width: 900px;
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--gray-200);
  max-width: 640px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TICKER ── */
.ticker-wrap { background: var(--red); padding: 0.8rem 0; overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--red), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--red), transparent); }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 30s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 2.5rem;
  display: flex; align-items: center; gap: 2.5rem;
}
.ticker-item::after { content: '✦'; font-size: 0.6rem; color: rgba(255,255,255,0.4); }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── STATS BAR ── */
.stats-bar { background: var(--gray-900); border-bottom: 1px solid var(--line); position: relative; }
.stats-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,3,4,0.5), transparent);
}
.stats-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 2.25rem 1rem; text-align: center; border-right: 1px solid var(--line); transition: background 0.3s; }
.stat-item:hover { background: rgba(180,3,4,0.04); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 900; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-300); margin-top: 0.3rem; }
.stat-desc { font-size: 0.78rem; color: var(--gray-400); margin-top: 0.2rem; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: var(--black-2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(180,3,4,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: var(--gray-900); }
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--ghost-num);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
  transition: color 0.3s;
}
.service-card:hover .service-card-num { color: rgba(180,3,4,0.06); }
.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 6px;
  background: rgba(180,3,4,0.1);
  border: 1px solid rgba(180,3,4,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-bounce);
  position: relative; z-index: 1;
}
.service-card:hover .service-icon-wrap {
  background: rgba(180,3,4,0.18);
  border-color: rgba(180,3,4,0.4);
  transform: scale(1.1) rotate(-3deg);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--white);
  position: relative; z-index: 1;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
  position: relative; z-index: 1;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--gray-300);
  transition: border-color 0.2s;
}
.service-card:hover .service-tag { border-color: rgba(180,3,4,0.25); }
.service-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, opacity 0.2s;
  position: relative; z-index: 1;
  opacity: 0.7;
}
.service-card:hover .service-link { opacity: 1; gap: 0.65rem; }
.service-link::after { content: '→'; }

/* ── CONTENT PAGE (service detail) ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4.5rem;
  align-items: start;
}
.content-main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 3rem 0 1.25rem;
  line-height: 1;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 2rem 0 0.75rem;
}
.content-main p {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.content-main strong { color: var(--white); font-weight: 600; }
.content-main a { color: var(--red); border-bottom: 1px solid rgba(180,3,4,0.3); transition: border-color 0.2s; }
.content-main a:hover { border-color: var(--red); }
.symptom-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.symptom-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--gray-200);
  font-weight: 300;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s;
}
.symptom-list li:hover { border-color: rgba(180,3,4,0.25); }
.symptom-list li::before { content: '⚠'; color: var(--red); flex-shrink: 0; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin: 1.5rem 0 2rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--gray-200);
  font-weight: 300;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(180,3,4,0.15);
  border: 1px solid rgba(180,3,4,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: var(--red);
  margin-top: 3px;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(180,3,4,0.3); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
}
.faq-q .faq-toggle {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-300);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.faq-a-inner {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.75;
  font-weight: 300;
}

/* Sidebar */
.sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--gray-900);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.sidebar-cta {
  background: var(--red);
  border: none;
}
.sidebar-cta .sidebar-card-title { border-color: var(--line-2); color: white; }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 1.25rem; font-weight: 300; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-200);
  padding: 0.4rem 0;
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 300;
}
.sidebar-links a::before { content: '›'; color: var(--red); }
.sidebar-links a:hover { color: var(--white); padding-left: 4px; }
.sidebar-links a.current { color: var(--red); font-weight: 600; }
.sidebar-hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.45rem 0; border-bottom: 1px solid var(--surface); }
.sidebar-hours-row:last-child { border: none; }
.sidebar-hours-row .d { color: var(--white); font-weight: 500; }
.sidebar-hours-row .t { color: var(--gray-300); font-weight: 300; }

/* ── REVIEWS ── */
#reviews { background: var(--black); position: relative; overflow: hidden; }
#reviews::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(180,3,4,0.05), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(180,3,4,0.03), transparent 50%);
}
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; position: relative; z-index: 1; }
.rating-summary { display: flex; align-items: center; gap: 1.25rem; }
.rating-big { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.rating-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; color: var(--gray-300); margin-top: 0.2rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.review-card {
  background: var(--gray-900);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}
.review-card:hover { border-color: rgba(180,3,4,0.25); transform: translateY(-4px); }
.review-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text {
  font-size: 0.92rem;
  color: var(--gray-100);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.review-time { font-size: 0.75rem; color: var(--gray-400); }
.google-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  border: 1px solid var(--line);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  margin-left: auto;
  flex-shrink: 0;
}
.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}
.reviews-loading .spinner {
  width: 28px; height: 28px;
  border: 2px solid var(--line-2);
  border-top-color: var(--red);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FINANCING ── */
.financing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.financing-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.25rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.financing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.financing-card:hover { border-color: rgba(180,3,4,0.2); transform: translateY(-4px); }
.financing-card:hover::before { transform: scaleX(1); }
.financing-partner-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(180,3,4,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.financing-name { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; text-transform: uppercase; margin-bottom: 0.75rem; }
.financing-desc { font-size: 0.9rem; color: var(--gray-300); margin-bottom: 1.75rem; line-height: 1.65; font-weight: 300; }
.financing-perks { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.financing-perks li { font-size: 0.88rem; color: var(--gray-200); display: flex; align-items: flex-start; gap: 0.65rem; font-weight: 300; }
.financing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(180,3,4,0.15);
  border: 1px solid rgba(180,3,4,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--red);
  margin-top: 2px;
}
.financing-cta-bar {
  background: var(--red);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.financing-cta-text { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; color: white; }
.financing-cta-sub { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; font-weight: 300; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 5rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.contact-info-val { font-size: 1.1rem; color: var(--white); font-weight: 500; }
.contact-info-val a { transition: color 0.2s; }
.contact-info-val a:hover { color: var(--red); }
.contact-info-sub { font-size: 0.85rem; color: var(--gray-300); margin-top: 0.2rem; font-weight: 300; }
.hours-rows { display: flex; flex-direction: column; margin-top: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; padding: 0.6rem 0; border-bottom: 1px solid var(--surface); }
.hours-day { color: var(--white); font-weight: 500; }
.hours-time { color: var(--gray-300); }
.hours-closed { color: var(--gray-400); font-style: italic; }
.hours-open-indicator { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; display: inline-block; margin-right: 0.4rem; animation: pulse-dot 2s infinite; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-300); }
.form-control {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-control::placeholder { color: var(--gray-500); }
.form-control:focus { border-color: var(--red); background: rgba(180,3,4,0.03); }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--gray-800); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-submit-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-disclaimer { font-size: 0.78rem; color: var(--gray-400); font-weight: 300; }

/* ── MAP ── */
.map-embed { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; position: relative; }
.map-embed iframe { width: 100%; height: 100%; display: block; border: 0; filter: grayscale(100%) invert(90%) contrast(90%); opacity: 0.7; transition: filter 0.3s, opacity 0.3s; }
.map-embed:hover iframe { opacity: 0.85; }
.map-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9), transparent);
  padding: 2rem 1.5rem 1.25rem;
  pointer-events: none;
}
.map-address { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: white; }
.map-suburb { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

/* ── NEIGHBORHOOD TAGS ── */
.neighborhood-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.neighborhood-tag {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--gray-200);
  transition: all 0.2s;
}
.neighborhood-tag:hover { background: rgba(180,3,4,0.08); border-color: rgba(180,3,4,0.25); color: var(--white); }
.neighborhood-tag.featured { background: rgba(180,3,4,0.1); border-color: rgba(180,3,4,0.3); color: var(--red); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gray-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(180,3,4,0.1), transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.cta-banner-title em { font-style: normal; color: var(--red); }
.cta-banner-sub {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--gray-100);
  margin: 0 auto 2.25rem;
  font-weight: 400;
  line-height: 1.55;
  max-width: 680px;
}
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner-actions .btn { font-size: 0.95rem; padding: 1.05rem 2.2rem; }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.why-card { background: var(--black); padding: 2rem 1.75rem; transition: background 0.3s; position: relative; overflow: hidden; }
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.why-card:hover { background: var(--gray-900); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { font-size: 1.5rem; margin-bottom: 1.1rem; display: block; transition: transform 0.3s var(--ease-bounce); }
.why-card:hover .why-icon { transform: scale(1.15); }
.why-title { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 0.6rem; }
.why-body { font-size: 0.88rem; color: var(--gray-300); line-height: 1.7; font-weight: 300; }

/* ── PROCESS ── */
.process-steps-list { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.3s;
}
.process-step:first-child { padding-top: 0; }
.process-step.active { padding-left: 0.5rem; }
.process-step-num {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gray-300);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.process-step.active .process-step-num { background: var(--red); border-color: var(--red); color: white; box-shadow: 0 0 20px rgba(180,3,4,0.4); }
.process-step-title { font-size: 1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-300); transition: color 0.3s; padding-top: 0.75rem; }
.process-step.active .process-step-title { color: var(--white); }
.process-step-body {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), opacity 0.3s, margin-top 0.3s;
  opacity: 0;
}
.process-step.active .process-step-body { max-height: 180px; opacity: 1; margin-top: 0.6rem; }

/* ── ABOUT PAGE ── */
.about-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-intro-quote {
  font-size: 1.15rem;
  color: var(--gray-100);
  line-height: 1.8;
  font-weight: 300;
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.timeline { position: relative; padding-left: 2.5rem; margin: 3rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--red), rgba(180,3,4,0.1));
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--red);
}
.timeline-year { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 0.4rem; }
.timeline-text { font-size: 0.95rem; color: var(--gray-300); font-weight: 300; line-height: 1.7; max-width: 480px; }

/* ── FOOTER ── */
footer.site-footer { background: var(--gray-900); border-top: 1px solid var(--line); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo-img { height: 74px; width: auto; margin-bottom: 1.25rem; }
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  border-left: 2px solid var(--red);
  padding-left: 0.75rem;
}
.footer-about { font-size: 0.88rem; color: var(--gray-300); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  color: var(--gray-300);
}
.footer-social-btn:hover { background: rgba(180,3,4,0.12); border-color: rgba(180,3,4,0.3); color: var(--red); }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-300);
  font-weight: 300;
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a::before { content: '›'; font-size: 1rem; color: transparent; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { color: var(--red); }
.footer-links .footer-plain { color: var(--gray-400); font-size: 0.82rem; }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-400); font-weight: 300; }
.footer-bottom a { color: var(--red); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--gray-400); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 40px; height: 40px;
  background: var(--red);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(180,3,4,0.35);
}
#back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-to-top:hover { background: var(--red-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; gap: 3rem; }
  .sidebar { position: static; }
  .about-grid-2col { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .financing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .symptom-list { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  /* On mobile: topbar shows ONLY phone number + theme toggle */
  .topbar-hours { display: none; }
  .topbar-dot { display: none; }
  .topbar-left a:not([href^="tel:"]) { display: none; }
  .topbar > div:not(.topbar-left) > span { display: none; }
  .topbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
  .topbar-left {
    flex: 1;
    min-width: 0;
  }
  .topbar-left a {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .logo img { height: 42px; }
  /* Hero: center content on mobile */
  .hero-content {
    padding: 5rem 1.25rem 3.5rem;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { max-width: 100%; margin-bottom: 2rem; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
  .hero-badge {
    margin: 0 auto;
    justify-content: center;
  }
  /* Hero image: shift down to show the storefront sign, not the sky */
  .hero-bg img { object-position: center 62%; }
  /* Stronger overlay gradient on mobile so text stays readable */
  .hero-bg::after {
    background:
      linear-gradient(to top, var(--black) 28%, rgba(8,8,8,0.55) 60%, rgba(8,8,8,0.15) 100%),
      linear-gradient(to right, rgba(8,8,8,0.5) 0%, transparent 80%);
  }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .financing-cta-bar { flex-direction: column; text-align: center; }
  #cursor-glow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-badge { opacity: 1; }
}


/* ═══ THEME TOGGLE ═══ */
body, nav.site-nav, .service-card, .why-card, .review-card, .financing-card,
.sidebar-card, .form-control, footer.site-footer, .stats-bar, .page-hero {
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.theme-toggle {
  --knob: 16px;
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  border: none;
  background: rgba(0,0,0,0.35);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.25s;
}
.theme-toggle:hover { background: rgba(0,0,0,0.5); }
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: var(--knob);
  height: var(--knob);
  border-radius: 50%;
  background: #FFFFFF;
  transition: transform 0.25s var(--ease-out-expo);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.theme-toggle svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  color: rgba(255,255,255,0.85);
  pointer-events: none;
}
.theme-toggle .icon-moon { right: 6px; }
.theme-toggle .icon-sun { left: 6px; opacity: 0; transition: opacity 0.2s; }
.theme-toggle .icon-moon { opacity: 1; transition: opacity 0.2s; }
[data-theme="light"] .theme-toggle::after { transform: translateX(20px); }
[data-theme="light"] .theme-toggle .icon-sun { opacity: 1; }
[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; }

/* Logo: white SVG inverts to pure black in light mode — same size, no plate */
[data-theme="light"] .logo img,
[data-theme="light"] .footer-logo-img {
  filter: invert(1);
}
[data-theme="light"] .hero-badge { background: rgba(255,255,255,0.6); }
/* Light mode nav: links go dark, Book Service text goes black */
[data-theme="light"] .nav-links > li > a { color: #2E2C29; }
[data-theme="light"] .nav-links > li > a:hover,
[data-theme="light"] .nav-links > li > a.active { color: #0E0E0E; }
[data-theme="light"] .nav-links > li > a::after { background: var(--red); }
[data-theme="light"] .nav-cta { color: #0E0E0E !important; }
[data-theme="light"] .nav-cta:hover { color: #0E0E0E !important; }
[data-theme="light"] .submenu li a { color: #403E3A; }
[data-theme="light"] .submenu li a:hover { color: #0E0E0E; }

/* ═══ PHOTO SERVICE CARDS ═══ */
.photo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}
.photo-service-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(180,3,4,0.4);
}
.photo-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo), filter 0.4s;
  filter: saturate(0.9) brightness(0.75);
}
.photo-service-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(0.6);
}
.psc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.55) 45%,
    rgba(180,3,4,0.08) 100%
  );
  transition: background 0.4s;
}
.photo-service-card:hover .psc-overlay {
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.98) 0%,
    rgba(8,8,8,0.7) 50%,
    rgba(180,3,4,0.18) 100%
  );
}
.psc-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.75rem 1.75rem;
}
.psc-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(180,3,4,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
  transition: background 0.3s, transform 0.3s var(--ease-bounce);
  flex-shrink: 0;
}
.photo-service-card:hover .psc-icon {
  background: var(--red);
  transform: scale(1.1);
}
.psc-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.65rem;
}
.psc-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out-expo), opacity 0.3s, margin 0.3s;
}
.photo-service-card:hover .psc-desc {
  max-height: 170px;
  opacity: 1;
}
.psc-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s, gap 0.2s;
  border-bottom: 1px solid rgba(180,3,4,0);
  padding-bottom: 2px;
}
.photo-service-card:hover .psc-link {
  color: var(--red);
  gap: 0.65rem;
}

/* Light mode adjustments */
[data-theme="light"] .photo-service-card img { filter: saturate(0.85) brightness(0.65); }
[data-theme="light"] .photo-service-card:hover img { filter: saturate(1) brightness(0.55); }
[data-theme="light"] .psc-title { color: #FFFFFF; }

@media (max-width: 900px) {
  .photo-service-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 540px) {
  .photo-service-grid { grid-template-columns: 1fr; }
  .photo-service-card { aspect-ratio: 16/9; }
}

/* ═══ LIVE HOURS BADGE ═══ */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  color: var(--gray-200);
  margin-top: 2.5rem;
  width: fit-content;
  transition: border-color 0.3s;
}
.hero-badge:has(#hours-dot[style*="ef4444"]) {
  border-color: rgba(239,68,68,0.35);
}
.hero-badge-dot,
#hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  transition: background 0.4s, box-shadow 0.4s;
}

/* ═══ SOCIAL PILLS (contact page) ═══ */
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-200);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-pill:hover {
  background: rgba(180,3,4,0.1);
  border-color: rgba(180,3,4,0.35);
  color: var(--white);
  transform: translateY(-2px);
}
[data-theme="light"] .social-pill {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.15);
  color: #403E3A;
}
[data-theme="light"] .social-pill:hover {
  background: rgba(180,3,4,0.08);
  border-color: rgba(180,3,4,0.3);
  color: #0E0E0E;
}

/* ═══ BUTTONS INSIDE ARTICLE CONTENT ═══
   .content-main a colors links red — override for buttons so text is visible */
.content-main a.btn { border-bottom: none; }
.content-main a.btn:hover { border-bottom: none; }
.content-main a.btn-primary { color: #ffffff; }
.content-main a.btn-ghost { color: var(--white); }
/* Per request: primary button text white in dark mode, black in light mode */
[data-theme="light"] .btn-primary,
[data-theme="light"] .content-main a.btn-primary { color: #0E0E0E; }

/* ═══ Custom Google Map (js/map.js) ═══ */
.map-embed .gmap-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-embed .map-overlay { pointer-events: none; }
.map-embed iframe { position: absolute; inset: 0; }


/* ═══ Photo card number chip (services page) ═══ */
.psc-num {
  position: absolute;
  top: 1.1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  z-index: 1;
}
.photo-service-card:hover .psc-num { color: var(--red); }

/* ═══ Photo hero (individual service pages) ═══
   Photo background is dark in both themes, so text is locked light. */
.page-hero.hero-photo h1 { color: #F4F2EE; }
.page-hero.hero-photo h1 em { color: var(--red); }
.page-hero.hero-photo .page-hero-sub { color: rgba(244,242,238,0.78); }
.page-hero.hero-photo .breadcrumbs,
.page-hero.hero-photo .breadcrumbs a,
.page-hero.hero-photo .breadcrumbs .current,
.page-hero.hero-photo .breadcrumbs .sep { color: rgba(244,242,238,0.6); }
.page-hero.hero-photo .breadcrumbs a:hover { color: #F4F2EE; }
.page-hero.hero-photo .btn-ghost { color: #F4F2EE; border-color: rgba(255,255,255,0.35); }
.page-hero.hero-photo .btn-ghost:hover { border-color: #F4F2EE; }
.page-hero.hero-photo::before {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(180,3,4,0.14), transparent 50%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
