/* =============================================================
   Crown Hill Automotive v2 — Premium Design System
   Dark-dominant, electric-tangerine accent, Inter typeface
   ============================================================= */

/* === RESET ================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }
ul, ol { list-style: none; }
address { font-style: normal; }
blockquote { quotes: none; }

/* === DESIGN TOKENS ========================================== */
:root {
  --c-bg:           #0a0a0a;
  --c-surface:      #111111;
  --c-surface-2:    #1a1a1a;
  --c-surface-3:    #222222;
  --c-border:       #2a2a2a;
  --c-border-2:     #3a3a3a;
  --c-ink:          #f0efec;
  --c-ink-muted:    #999995;
  --c-ink-faint:    #555550;
  --c-accent:       #ff5722;
  --c-accent-dark:  #d94415;
  --c-accent-glow:  rgba(255,87,34,0.18);
  --c-gold:         #c9a84c;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --t-xs:   0.6875rem;
  --t-sm:   0.8125rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.25rem;
  --t-2xl:  1.5rem;
  --t-3xl:  1.875rem;
  --t-4xl:  2.25rem;
  --t-5xl:  3rem;
  --t-6xl:  3.75rem;
  --t-7xl:  4.5rem;

  /* Spacing */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px; --sp-11: 160px;

  --container: 1240px;
  --radius: 4px;
  --radius-lg: 8px;
  --nav-h: 68px;
  --topbar-h: 36px;

  --tr-fast: 150ms ease;
  --tr-base: 220ms ease;
}

/* === BASE =================================================== */
html, body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font);
  font-size: var(--t-base);
  line-height: 1.6;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY ============================================= */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
h1 { font-size: clamp(var(--t-4xl), 5.5vw, var(--t-7xl)); }
h2 { font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl)); }
h3 { font-size: clamp(var(--t-xl), 2.5vw, var(--t-3xl)); letter-spacing: -0.015em; }
h4 { font-size: var(--t-xl); letter-spacing: -0.01em; }

p { color: var(--c-ink-muted); max-width: 65ch; line-height: 1.7; }
p.lead { font-size: var(--t-lg); color: var(--c-ink); line-height: 1.6; max-width: 60ch; }
p.wide { max-width: none; }

a { color: inherit; text-decoration: none; }
a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
strong { color: var(--c-ink); font-weight: 600; }

.eyebrow {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: var(--sp-4);
}
.eyebrow--muted {
  color: var(--c-ink-faint);
}

/* === LAYOUT ================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.section { padding: var(--sp-10) 0; }
.section--sm { padding: var(--sp-8) 0; }
.section--lg { padding: var(--sp-11) 0; }

@media (max-width: 768px) {
  .container { padding: 0 var(--sp-5); }
  .section { padding: var(--sp-8) 0; }
  .section--lg { padding: var(--sp-9) 0; }
}

/* === BUTTONS ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast), transform var(--tr-fast);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent-dark); }
.btn-secondary {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-border-2);
}
.btn-secondary:hover {
  background: var(--c-surface);
  border-color: var(--c-ink-faint);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-lg { padding: 16px 36px; font-size: var(--t-base); }

/* === TOPBAR ================================================= */
.topbar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--sp-4);
}
.topbar__rating {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t-xs);
  color: var(--c-ink-muted);
  flex-shrink: 0;
}
.topbar__stars { color: var(--c-accent); letter-spacing: 1px; font-size: 10px; }
.topbar__rating strong { color: var(--c-ink); font-weight: 600; }

.topbar__badges {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  font-size: var(--t-xs);
  color: var(--c-ink-faint);
}
.topbar__badge {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__badge svg { flex-shrink: 0; }

.topbar__hours {
  font-size: var(--t-xs);
  color: var(--c-ink-muted);
  flex-shrink: 0;
}
.topbar__hours strong { color: var(--c-ink); }

@media (max-width: 900px) {
  .topbar__badges { display: none; }
}
@media (max-width: 600px) {
  .topbar { display: none; }
  :root { --topbar-h: 0px; }
}

/* === NAVIGATION ============================================= */
.nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--tr-base);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--sp-5);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav__link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-ink-muted);
  transition: color var(--tr-fast);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--c-ink); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.nav__phone {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  transition: color var(--tr-fast);
  white-space: nowrap;
}
.nav__phone:hover { color: var(--c-accent); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-ink);
  transition: transform var(--tr-base), opacity var(--tr-base);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0;
  right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: var(--t-lg);
  color: var(--c-ink);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
}
.nav__mobile .nav__phone {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--t-base);
  color: var(--c-accent);
}
.nav__mobile .btn { align-self: flex-start; margin-top: var(--sp-5); }

@media (max-width: 960px) {
  .nav__links { gap: var(--sp-5); }
}
@media (max-width: 860px) {
  .nav__links  { display: none; }
  .nav__actions .nav__phone { display: none; }
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 var(--sp-5); }
}

/* === HERO =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 45%, rgba(10,10,10,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: var(--sp-10);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,87,34,0.15);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-5);
}
.hero__title {
  color: #fff;
  margin-bottom: var(--sp-5);
  max-width: 820px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__body {
  font-size: var(--t-lg);
  color: rgba(240,239,236,0.82);
  max-width: 540px;
  margin-bottom: var(--sp-7);
  line-height: 1.6;
}
.hero__body p { color: inherit; max-width: none; }
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}
.hero__divider {
  color: rgba(255,255,255,0.25);
  font-size: var(--t-lg);
  user-select: none;
}
.hero__phone-link {
  font-size: var(--t-lg);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color var(--tr-fast);
}
.hero__phone-link:hover { color: var(--c-accent); }

@media (max-width: 600px) {
  .hero { min-height: 92vh; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__divider { display: none; }
}

/* === HERO STATS ROW (inline, bottom of hero) ================ */
.hero__stats {
  display: flex;
  gap: 0;
  margin-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--sp-6);
}
.hero__stat {
  flex: 1;
  padding-right: var(--sp-6);
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: var(--sp-6);
}
.hero__stat:last-child {
  border-right: none;
  margin-right: 0;
}
.hero__stat-number {
  display: block;
  font-size: var(--t-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: var(--t-xs);
  color: rgba(240,239,236,0.6);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: var(--sp-5);
    margin-top: var(--sp-6);
  }
  .hero__stat {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}

/* === SERVICES PAGE HERO CAROUSEL ============================ */
.service-page-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  margin-top: calc(var(--topbar-h) + var(--nav-h));
}
.service-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.service-hero-slide.active { opacity: 1; }
.service-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.2) 100%);
}
.service-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: var(--sp-8);
}
.service-hero-dots {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.service-hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--tr-fast), transform var(--tr-fast);
  padding: 0;
}
.service-hero-dot.active {
  background: var(--c-accent);
  transform: scale(1.4);
}

/* === CLASSICS PAGE HERO ===================================== */
.classics-page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: calc(var(--topbar-h) + var(--nav-h));
}
.classics-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.classics-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.classics-page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.15) 100%
  );
}
.classics-page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: var(--sp-9);
}
.classics-page-hero__content h1 { color: #fff; margin-bottom: var(--sp-5); }
.classics-page-hero__content .lead { color: rgba(240,239,236,0.85); max-width: 56ch; }

/* === ABOUT PAGE v2 (story layout) ========================== */
.about-story-header {
  padding-top: calc(var(--topbar-h) + var(--nav-h) + var(--sp-9));
  padding-bottom: var(--sp-9);
  border-bottom: 1px solid var(--c-border);
}

.about-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.about-stat-strip__item {
  padding: var(--sp-6);
  border-right: 1px solid var(--c-border);
  text-align: center;
}
.about-stat-strip__item:last-child { border-right: none; }
.about-stat-strip__num {
  display: block;
  font-size: clamp(var(--t-3xl), 3.5vw, var(--t-5xl));
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.about-stat-strip__label {
  font-size: var(--t-sm);
  color: var(--c-ink-muted);
}

.about-story-body {
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--c-border);
}
.about-story-body .split { align-items: start; }

.about-team-photo-section {
  position: relative;
  overflow: hidden;
}
.about-team-photo-section img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.about-team-caption {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-4) 0;
}
.about-team-caption p {
  font-size: var(--t-xs);
  color: var(--c-ink-faint);
  max-width: none;
}

.about-people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--c-border);
}
.about-person {
  padding: var(--sp-8) var(--sp-8) var(--sp-8) 0;
  border-right: 1px solid var(--c-border);
}
.about-person:last-child {
  border-right: none;
  padding-left: var(--sp-8);
  padding-right: 0;
}
.about-person__role {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: var(--sp-3);
}
.about-person__name {
  font-size: var(--t-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: var(--sp-5);
  display: block;
}
.about-person p + p { margin-top: var(--sp-4); }

@media (max-width: 768px) {
  .about-stat-strip { grid-template-columns: repeat(2, 1fr); }
  .about-stat-strip__item { border-bottom: 1px solid var(--c-border); }
  .about-stat-strip__item:nth-child(2) { border-right: none; }
  .about-stat-strip__item:nth-child(3),
  .about-stat-strip__item:nth-child(4) { border-bottom: none; }
  .about-stat-strip__item:nth-child(4) { border-right: none; }
  .about-team-photo-section img { height: 360px; }
  .about-people-grid { grid-template-columns: 1fr; }
  .about-person { border-right: none; padding: var(--sp-7) 0; border-bottom: 1px solid var(--c-border); }
  .about-person:last-child { border-bottom: none; padding-left: 0; padding-right: 0; }
}

/* === SECTION PHOTO BREAK ==================================== */
.photo-section-break {
  position: relative;
  overflow: hidden;
}
.photo-section-break img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 360px;
  object-fit: cover;
  object-position: center 30%;
}
.photo-section-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.15) 100%);
  display: flex;
  align-items: center;
}
.photo-section-break__text {
  position: relative;
  z-index: 1;
  padding: var(--sp-8) 0;
}
.photo-section-break__text h2 { color: #fff; margin-bottom: var(--sp-5); max-width: 560px; }
.photo-section-break__text p { color: rgba(240,239,236,0.8); max-width: 50ch; margin-bottom: var(--sp-6); }

@media (max-width: 600px) {
  .photo-section-break img { min-height: 260px; }
  .photo-section-break__overlay { background: rgba(10,10,10,0.75); }
}

/* === FEATURE STRIP ========================================== */
.feature-strip {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
.feature-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-strip__item {
  padding: var(--sp-6) var(--sp-5);
  border-right: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  text-decoration: none;
}
.feature-strip__item:last-child { border-right: none; }
.feature-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-accent-glow);
  border: 1px solid rgba(255,87,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}
.feature-strip__label {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: block;
}
.feature-strip__sub {
  font-size: var(--t-xs);
  color: var(--c-ink-muted);
  display: block;
  margin-top: 2px;
}

@media (max-width: 760px) {
  .feature-strip__row { grid-template-columns: repeat(2, 1fr); }
  .feature-strip__item {
    border-bottom: 1px solid var(--c-border);
  }
  .feature-strip__item:nth-child(even) { border-right: none; }
  .feature-strip__item:nth-child(3),
  .feature-strip__item:nth-child(4) { border-bottom: none; }
}
@media (max-width: 420px) {
  .feature-strip__row { grid-template-columns: 1fr; }
  .feature-strip__item { border-right: none; }
  .feature-strip__item:last-child { border-bottom: none; }
}

/* === SHOP EXTERIOR SECTION ================================== */
.shop-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.shop-section__bg {
  position: absolute;
  inset: 0;
}
.shop-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.shop-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 55%, rgba(10,10,10,0.2) 100%);
}
.shop-section__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: var(--sp-9) 0;
}
.shop-section__content h2 { color: #fff; margin-bottom: var(--sp-5); }
.shop-section__content p { color: rgba(240,239,236,0.8); max-width: 50ch; margin-bottom: var(--sp-6); }

@media (max-width: 600px) {
  .shop-section { min-height: 400px; }
  .shop-section__bg::after {
    background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.92));
  }
}

/* === INTRO SPLIT ============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-9); align-items: start; }
.split--wide { gap: clamp(var(--sp-8), 8vw, var(--sp-11)); }
.split--center { align-items: center; }

@media (max-width: 768px) {
  .split, .split--wide { grid-template-columns: 1fr; gap: var(--sp-7); }
}

/* === SERVICE LIST =========================================== */
.service-rows { border-top: 1px solid var(--c-border); }
.service-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--c-border); }
.service-cell {
  padding: var(--sp-5) var(--sp-6) var(--sp-5) 0;
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.service-cell:last-child {
  padding-left: var(--sp-6);
  padding-right: 0;
  border-left: 1px solid var(--c-border);
}
.service-cell__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: 9px;
}
.service-cell__name { font-size: var(--t-base); font-weight: 600; color: var(--c-ink); margin-bottom: 2px; }
.service-cell__desc { font-size: var(--t-sm); color: var(--c-ink-muted); max-width: 38ch; }

@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; }
  .service-cell:last-child { padding-left: 0; border-left: none; border-top: 1px solid var(--c-border); }
}

/* === REVIEWS CAROUSEL ======================================= */
.reviews-section {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.reviews-header__left h2 { margin-bottom: var(--sp-3); }
.rating-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.rating-stars { color: var(--c-accent); font-size: var(--t-lg); letter-spacing: 2px; }
.rating-text { font-size: var(--t-sm); color: var(--c-ink-muted); }
.rating-text strong { color: var(--c-ink); }

.review-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.review-cta p {
  font-size: var(--t-xs);
  color: var(--c-ink-faint);
  max-width: none;
  text-align: right;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: var(--sp-5);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-item {
  flex: 0 0 calc(33.333% - var(--sp-4));
  min-width: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.carousel-item__stars { color: var(--c-accent); font-size: var(--t-sm); letter-spacing: 2px; }
.carousel-item__text {
  font-size: var(--t-sm);
  color: var(--c-ink);
  line-height: 1.7;
  flex-grow: 1;
  max-width: none;
}
.carousel-item__author {
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--c-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-2);
  background: transparent;
  color: var(--c-ink-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast);
}
.carousel-btn:hover {
  background: var(--c-surface-3);
  color: var(--c-ink);
  border-color: var(--c-ink-faint);
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--c-border-2);
  cursor: pointer;
  transition: background var(--tr-fast), transform var(--tr-fast);
  padding: 0;
}
.carousel-dot.active {
  background: var(--c-accent);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .carousel-item { flex: 0 0 calc(50% - var(--sp-3)); }
  .review-cta { align-items: flex-start; }
  .review-cta p { text-align: left; }
}
@media (max-width: 560px) {
  .carousel-item { flex: 0 0 85%; }
}

/* === SERVICE AREAS ========================================== */
.areas-section { border-top: 1px solid var(--c-border); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.areas-list-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-5);
}
.area-name {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-ink-muted);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--tr-fast);
}
.area-name:hover { color: var(--c-ink); }

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .areas-list-premium { grid-template-columns: repeat(2, 1fr); }
}

/* === CTA SECTION ============================================ */
.cta-section { text-align: center; }
.cta-section__inner { max-width: 660px; margin: 0 auto; }
.cta-section h2 { margin-bottom: var(--sp-5); }
.cta-section p { margin: 0 auto var(--sp-7); }
.cta-section__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-phone {
  font-size: var(--t-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  transition: color var(--tr-fast);
}
.cta-phone:hover { color: var(--c-accent); }

/* === STATS BAR ============================================== */
.stats {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item {
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.stats__item:last-child { border-right: none; }
.stats__number {
  display: block;
  font-size: clamp(var(--t-3xl), 3.5vw, var(--t-5xl));
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stats__label { font-size: var(--t-sm); color: var(--c-ink-muted); }

@media (max-width: 600px) {
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid var(--c-border); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-bottom: none; }
  .stats__item:nth-child(4) { border-right: none; border-bottom: none; }
}

/* === PAGE HERO (interior pages) ============================= */
.page-hero {
  padding-top: calc(var(--topbar-h) + var(--nav-h) + var(--sp-9));
  padding-bottom: var(--sp-9);
  border-bottom: 1px solid var(--c-border);
}
.page-hero .eyebrow { margin-bottom: var(--sp-4); }
.page-hero h1 { margin-bottom: var(--sp-5); }
.page-hero .lead { max-width: 58ch; }

/* === SERVICES PAGE ========================================== */
.service-groups { padding: var(--sp-9) 0; }
.service-group {
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--c-border);
}
.service-group:first-child { border-top: 1px solid var(--c-border); }
.service-group__header {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.service-group__cat-name { font-size: var(--t-base); font-weight: 700; color: var(--c-ink); margin-bottom: var(--sp-2); }
.service-group__cat-desc { font-size: var(--t-sm); color: var(--c-ink-muted); line-height: 1.6; max-width: 26ch; }
.service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4) var(--sp-6);
}
.service-item-name {
  font-size: var(--t-sm);
  color: var(--c-ink);
  font-weight: 500;
  padding-left: var(--sp-4);
  position: relative;
}
.service-item-name::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-accent);
}
.service-item-name span {
  display: block;
  font-weight: 400;
  color: var(--c-ink-muted);
  font-size: var(--t-xs);
  margin-top: 2px;
}

/* Service page photo strip */
.service-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-8) 0;
}
.service-photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
}

@media (max-width: 900px) {
  .service-group__header { grid-template-columns: 1fr; gap: var(--sp-5); }
  .service-items { grid-template-columns: repeat(2, 1fr); }
  .service-photo-strip { grid-template-columns: 1fr; }
  .service-photo-strip img { height: 200px; }
}
@media (max-width: 480px) {
  .service-items { grid-template-columns: 1fr; }
}

/* === CLASSICS PAGE ========================================== */
.marques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
  margin: var(--sp-8) 0;
}
.marque {
  padding: var(--sp-6);
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.marque__name {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.015em;
}
.marque__list { font-size: var(--t-sm); color: var(--c-ink-muted); line-height: 1.7; }

.classics-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-3);
  margin: var(--sp-8) 0;
}
.classics-photo-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.classics-photo-grid img:last-child { height: 380px; }

.classics-callout {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-7);
  margin: var(--sp-8) 0;
}
.classics-callout h3 { margin-bottom: var(--sp-4); }
.classics-callout p { color: var(--c-ink-muted); max-width: 72ch; }

@media (max-width: 768px) {
  .marques-grid { grid-template-columns: repeat(2, 1fr); }
  .classics-photo-grid { grid-template-columns: 1fr; }
  .classics-photo-grid img, .classics-photo-grid img:last-child { height: 240px; }
}
@media (max-width: 480px) {
  .marques-grid { grid-template-columns: 1fr; }
}

/* === ABOUT PAGE ============================================= */
.about-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.about-hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-7) 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 60%, transparent 100%);
}
.about-stats-row {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.about-stat__number {
  display: block;
  font-size: var(--t-4xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  line-height: 1;
}
.about-stat__label {
  font-size: var(--t-sm);
  color: rgba(240,239,236,0.7);
  margin-top: 4px;
  display: block;
}

.about-people { padding: var(--sp-9) 0; }
.person-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; padding: var(--sp-8) 0; border-bottom: 1px solid var(--c-border); }
.person-block:first-child { padding-top: 0; }
.person-block--reverse .person-block__text { order: 2; }
.person-block--reverse .person-block__visual { order: 1; }
.person-block__visual {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.person-block__placeholder {
  font-size: var(--t-6xl);
  opacity: 0.1;
  user-select: none;
}
.person-block__role {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
  display: block;
}
.person-block__name {
  font-size: var(--t-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: var(--sp-5);
}
.person-block p + p { margin-top: var(--sp-4); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
.cert {
  padding: var(--sp-5) var(--sp-6);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--c-accent);
}
.cert__title { font-size: var(--t-base); font-weight: 700; color: var(--c-ink); margin-bottom: var(--sp-2); }
.cert__desc { font-size: var(--t-sm); color: var(--c-ink-muted); max-width: none; }

@media (max-width: 768px) {
  .about-hero__img { height: 320px; }
  .person-block { grid-template-columns: 1fr; }
  .person-block--reverse .person-block__text { order: 1; }
  .person-block--reverse .person-block__visual { order: 2; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .certs-grid { grid-template-columns: 1fr; }
}

/* === CONTACT PAGE =========================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-9); align-items: start; }
.contact-info-list { display: flex; flex-direction: column; margin-top: var(--sp-7); }
.contact-info-item {
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-info-item:first-child { border-top: 1px solid var(--c-border); }
.contact-info-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
  margin-bottom: var(--sp-2);
}
.contact-info-value { font-size: var(--t-base); color: var(--c-ink); line-height: 1.7; }
.contact-info-value a { color: var(--c-ink); transition: color var(--tr-fast); }
.contact-info-value a:hover { color: var(--c-accent); }
.contact-map {
  margin-top: var(--sp-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.contact-map iframe {
  display: block; width: 100%; height: 260px;
  filter: grayscale(100%) invert(92%) contrast(85%);
}

@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

/* === FORM =================================================== */
.form-section h2 { margin-bottom: var(--sp-2); }
.form-section > p { margin-bottom: var(--sp-6); }
.form-group { margin-bottom: var(--sp-5); }
.form-group label {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
}
.form-group input, .form-group select, .form-group textarea {
  display: block; width: 100%;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border-2);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--c-ink);
  font-size: var(--t-base);
  line-height: 1.5;
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--c-ink-faint); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-glow);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23888884' stroke-linecap='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* === FOOTER ================================================= */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-9);
}
.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border);
}

.footer__brand {}
.footer__logo-wrap {
  margin-bottom: var(--sp-5);
}
.footer__logo-wrap img {
  height: 96px;
  width: auto;
}
.footer__tagline {
  font-size: var(--t-sm);
  color: var(--c-ink-muted);
  max-width: 32ch;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}
.footer__contact-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer__contact-item {
  font-size: var(--t-sm);
  color: var(--c-ink-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}
.footer__contact-item a { color: var(--c-ink-muted); transition: color var(--tr-fast); }
.footer__contact-item a:hover { color: var(--c-ink); }

.footer__col-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: var(--sp-5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__links a {
  font-size: var(--t-sm);
  color: var(--c-ink-muted);
  transition: color var(--tr-fast);
}
.footer__links a:hover { color: var(--c-ink); }
.footer__links span {
  font-size: var(--t-sm);
  color: var(--c-ink-muted);
  display: block;
}
.footer__links strong {
  font-size: var(--t-sm);
  color: var(--c-ink);
  display: block;
  margin-top: 2px;
}

.footer__cta-box {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-2);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.footer__cta-box h4 { font-size: var(--t-xl); letter-spacing: -0.02em; margin-bottom: var(--sp-3); }
.footer__cta-box p {
  font-size: var(--t-sm);
  color: var(--c-ink-muted);
  margin-bottom: var(--sp-5);
  max-width: none;
}
.footer__cta-box .btn { width: 100%; justify-content: center; }

.footer__bottom {
  padding: var(--sp-5) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}
.footer__copy { font-size: var(--t-xs); color: var(--c-ink-faint); }
.footer__nap {
  font-size: var(--t-xs);
  color: var(--c-ink-faint);
  text-align: right;
  line-height: 1.7;
}
.footer__nap a { color: var(--c-ink-faint); transition: color var(--tr-fast); }
.footer__nap a:hover { color: var(--c-ink-muted); }

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer__nap { text-align: left; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* === THANKS PAGE ============================================ */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-7) var(--sp-5);
}
.thanks-box { text-align: center; max-width: 500px; width: 100%; }
.thanks-check {
  width: 52px; height: 52px;
  border: 2px solid var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  color: var(--c-accent);
  font-size: var(--t-xl);
}
.thanks-box h1 { margin-bottom: var(--sp-4); font-size: var(--t-4xl); }
.thanks-box p { margin: 0 auto var(--sp-7); }
.thanks-box .btn { margin: 0 auto; }

/* === UTILITIES ============================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-accent { color: var(--c-accent); }
.text-muted   { color: var(--c-ink-muted); }
.text-faint   { color: var(--c-ink-faint); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }

/* === CTA WITH BACKGROUND IMAGE (Walk-ins section) =========== */
.cta-section--bg {
  position: relative;
  background-image: url('walkins-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: none !important;
  border-bottom: none !important;
}
.cta-section--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.78);
  z-index: 0;
}
.cta-section--bg .container { position: relative; z-index: 1; }
.cta-section--bg h2 { color: #fff; }
.cta-section--bg p { color: rgba(240,239,236,0.75); }
.cta-section--bg .cta-phone { color: #fff; }
.cta-section--bg .eyebrow { display: none; }

/* === ABOUT PAGE — PHOTO RIGHT SPLIT ========================= */
.about-photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--c-border);
}
.about-photo-split__text {
  padding: var(--sp-9) var(--sp-8) var(--sp-9) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-photo-split__photo {
  position: relative;
  min-height: 480px;
}
.about-photo-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  inset: 0;
}

@media (max-width: 768px) {
  .about-photo-split { grid-template-columns: 1fr; }
  .about-photo-split__text { padding: var(--sp-7) 0; }
  .about-photo-split__photo { min-height: 340px; position: relative; }
  .about-photo-split__photo img { position: static; height: 340px; }
}

/* === TYPOGRAPHY — BOLDER & LARGER SECTION HEADINGS ========= */
/* Make all section h2 pop harder */
.section h2,
.section--sm h2,
.section--lg h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Larger body text in content sections */
.section p,
.section--sm p,
.about-story-body p,
.about-person p {
  font-size: var(--t-lg);
  line-height: 1.7;
}

/* Lead paragraphs even larger */
.section .lead,
.section--sm .lead {
  font-size: var(--t-xl);
  line-height: 1.6;
}

/* Tighten eyebrow spacing since we're removing them */
.eyebrow { display: none; }
.eyebrow--muted { display: none; }

/* === REMOVE HARD SECTION BORDERS (seamless/premium) ========= */
/* Override all inline border styles site-wide */
[style*="border-top: 1px solid var(--c-border)"],
[style*="border-bottom: 1px solid var(--c-border)"] {
  border-top: none !important;
  border-bottom: none !important;
}
.stats, .feature-strip, .reviews-section,
.areas-section, .about-stat-strip,
.about-story-body, .about-team-caption,
.about-people-grid, .about-photo-split,
.service-groups, .service-group,
.service-group:first-child,
.service-rows, .topbar,
.classics-callout, .marques-grid {
  border-top: none;
  border-bottom: none;
}
.service-rows   { border-top: 1px solid var(--c-border); } /* keep internal */
.service-row    { border-bottom: 1px solid var(--c-border); }
.service-cell:last-child { border-left: 1px solid var(--c-border); }

/* === ROUNDED CORNERS EVERYWHERE ============================= */
:root { --radius-card: 14px; --radius-xl: 20px; }

.feature-strip__item  { border-radius: var(--radius-card); background: var(--c-surface-2); margin: var(--sp-3); }
.feature-strip__row   { gap: 0; padding: var(--sp-4) 0; }

.stats__item          { border-radius: 0; } /* keep flush for stats bar */

.testimonial          { border-radius: var(--radius-card); }
.cert                 { border-radius: var(--radius-card); }
.about-photo-split    { border-radius: var(--radius-xl); overflow: hidden; margin: 0 var(--sp-6); }
.classics-callout     { border-radius: var(--radius-card); }
.footer__cta-box      { border-radius: var(--radius-card); }

/* marque grid rounded */
.marques-grid         { border-radius: var(--radius-card); overflow: hidden; }
.marque               { border: 1px solid var(--c-border); }

/* service photo strip */
.service-photo-strip img { border-radius: var(--radius-card); border: none; }

.about-team-photo-section img { border-radius: 0; } /* full bleed stays sharp */

/* === CLASSICS PAGE — PREMIUM REBUILD ========================= */
.classics-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: calc(var(--topbar-h) + var(--nav-h));
}
.classics-hero__bg { position: absolute; inset: 0; }
.classics-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.classics-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.5) 55%, rgba(5,5,5,0.1) 100%);
}
.classics-hero__content {
  position: relative; z-index: 1; width: 100%;
  padding-bottom: var(--sp-9);
}
.classics-hero__content h1 { color: #fff; margin-bottom: var(--sp-5); }
.classics-hero__content .lead { color: rgba(240,239,236,0.82); max-width: 68ch; margin-bottom: var(--sp-7); }
.classics-hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }

/* Trust cards */
.classics-trust {
  background: var(--c-surface);
  padding: var(--sp-9) 0;
}
.classics-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.classics-trust-card {
  background: var(--c-bg);
  border-radius: var(--radius-card);
  padding: var(--sp-7) var(--sp-6);
  border: 1px solid var(--c-border);
}
.classics-trust-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-accent-glow);
  border: 1px solid rgba(255,87,34,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  margin-bottom: var(--sp-5);
}
.classics-trust-card h3 { margin-bottom: var(--sp-4); font-size: var(--t-xl); }
.classics-trust-card p  { font-size: var(--t-base); max-width: none; }

/* Featured split */
.classics-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.classics-featured__photo { position: relative; min-height: 480px; }
.classics-featured__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.classics-featured__text {
  background: var(--c-surface);
  padding: var(--sp-9) var(--sp-8);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.classics-featured__text h2 { margin-bottom: var(--sp-6); }
.classics-featured__text p { font-size: var(--t-lg); margin-bottom: var(--sp-5); max-width: none; }

/* Brand specialty grid */
.classics-brands { padding: var(--sp-9) 0; }
.classics-brands h2 { margin-bottom: var(--sp-7); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.brand-card {
  background: var(--c-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.brand-card__header {
  background: linear-gradient(135deg, var(--c-surface-2) 0%, var(--c-surface-3) 100%);
  padding: var(--sp-6);
  border-bottom: 1px solid var(--c-border);
}
.brand-card__name {
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 4px;
}
.brand-card__models {
  font-size: var(--t-xs);
  color: var(--c-ink-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.brand-card__body {
  padding: var(--sp-5) var(--sp-6);
}
.brand-card__body p { font-size: var(--t-sm); color: var(--c-ink-muted); max-width: none; line-height: 1.65; }

/* Alternating service blocks */
.classics-services { padding: var(--sp-9) 0; }
.classics-services h2 { margin-bottom: var(--sp-8); }
.classics-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  margin-bottom: var(--sp-5);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.classics-service-block--reverse { direction: rtl; }
.classics-service-block--reverse > * { direction: ltr; }
.classics-service-block__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.classics-service-block__text {
  background: var(--c-surface);
  padding: var(--sp-8);
  display: flex; flex-direction: column; justify-content: center;
}
.classics-service-block__text h3 { margin-bottom: var(--sp-5); }
.classics-service-block__text p { font-size: var(--t-lg); max-width: none; }

/* Masonry gallery */
.classics-gallery { padding: var(--sp-9) 0; }
.classics-gallery h2 { margin-bottom: var(--sp-7); }
.gallery-masonry {
  columns: 3;
  column-gap: var(--sp-4);
}
.gallery-masonry img {
  width: 100%;
  border-radius: var(--radius-card);
  margin-bottom: var(--sp-4);
  display: block;
  break-inside: avoid;
}

/* Why choose */
.classics-why {
  background: #050505;
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--c-border);
}
.classics-why h2 { color: #fff; margin-bottom: var(--sp-8); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.why-card {
  background: var(--c-surface);
  border-radius: var(--radius-card);
  padding: var(--sp-6);
  border: 1px solid var(--c-border);
}
.why-card__icon {
  color: var(--c-accent);
  font-size: var(--t-2xl);
  margin-bottom: var(--sp-4);
}
.why-card h4 { margin-bottom: var(--sp-3); font-size: var(--t-xl); }
.why-card p  { font-size: var(--t-base); max-width: none; }

/* Classics testimonial */
.classics-testimonial {
  background: var(--c-surface);
  padding: var(--sp-9) 0;
}
.classics-testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-8);
  background: var(--c-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
}
.classics-testimonial__stars { color: var(--c-accent); font-size: var(--t-xl); letter-spacing: 3px; margin-bottom: var(--sp-5); }
.classics-testimonial__quote { font-size: var(--t-xl); color: var(--c-ink); line-height: 1.6; margin-bottom: var(--sp-5); font-style: italic; }
.classics-testimonial__author { font-size: var(--t-sm); color: var(--c-ink-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

/* Responsive */
@media (max-width: 900px) {
  .classics-trust__grid { grid-template-columns: 1fr; }
  .classics-featured { grid-template-columns: 1fr; }
  .classics-featured__photo { min-height: 300px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .why-grid { grid-template-columns: 1fr; }
  .classics-service-block { grid-template-columns: 1fr; min-height: auto; }
  .classics-service-block__photo img { height: 260px; }
}
@media (max-width: 560px) {
  .brand-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
}

/* ============================================================
   PREMIUM REDESIGN v3
   - Brighter overlays (welcoming, not dark/aggressive)
   - Larger rounded corners throughout
   - Premium shadows and depth
   - Image quality fixes (no stretched thumbnails)
   - Better section flow and spacing
   - Fleury sign: crop via object-position
   ============================================================ */

/* ── Root: softer radius + shadow system ───────────────────── */
:root {
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-card: 18px;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.14);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.38), 0 4px 12px rgba(0,0,0,0.18);
  --shadow-accent: 0 4px 20px rgba(255,87,34,0.35);
}

/* ── Hero: very subtle vignette — photo shows at full brightness ─ */
.hero__bg::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.08) 50%,
    rgba(0,0,0,0.30) 100%
  ) !important;
}
/* No saturate — causes colour banding. Brightness only. */
.hero__bg img { filter: brightness(1.2); }

/* ── Text-on-image shadow system — applied everywhere ───────── */

/* Shared shadow values */
:root {
  --ts-heading: 0 2px 24px rgba(0,0,0,0.9), 0 1px 6px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.6);
  --ts-body:    0 1px 10px rgba(0,0,0,0.85), 0 0 4px rgba(0,0,0,0.7);
  --ts-small:   0 1px 8px rgba(0,0,0,0.8);
}

/* Homepage hero */
.hero__title                          { text-shadow: var(--ts-heading); }
.hero__body p                         { text-shadow: var(--ts-body); }
.hero__phone-link,
.hero__stat-number,
.hero__stat-label,
.hero__actions .btn-outline-white     { text-shadow: var(--ts-small); }

/* Homepage shop section (classics-hero.jpg bg) */
.shop-section__content h2             { text-shadow: var(--ts-heading); }
.shop-section__content p              { text-shadow: var(--ts-body); }
.shop-section__content .eyebrow       { text-shadow: var(--ts-small); }

/* Classics page hero */
.classics-hero__content h1            { text-shadow: var(--ts-heading); }
.classics-hero__content .lead         { text-shadow: var(--ts-body); }
.classics-hero__content .hero__phone-link { text-shadow: var(--ts-small); }

/* Classics page final CTA (classics-page-hero) */
.classics-page-hero__content h2       { text-shadow: var(--ts-heading); }
.classics-page-hero__content .lead    { text-shadow: var(--ts-body); }
.classics-page-hero__content a        { text-shadow: var(--ts-small); }

/* Services page hero */
.service-hero-content h1              { text-shadow: var(--ts-heading); }
.service-hero-content p               { text-shadow: var(--ts-body); }
.service-hero-content .eyebrow        { text-shadow: var(--ts-small); }

/* Photo section breaks (about page, anywhere) */
.photo-section-break__text h2         { text-shadow: var(--ts-heading); }
.photo-section-break__text p          { text-shadow: var(--ts-body); }

/* CTA sections with walkins background (all pages) */
.cta-section--bg h2                   { text-shadow: var(--ts-heading); }
.cta-section--bg p                    { text-shadow: var(--ts-body); }
.cta-section--bg .cta-phone           { text-shadow: var(--ts-small); }

/* ── Shop section: bright, minimal overlay ────────────────── */
.shop-section__bg::after {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.20) 50%,
    rgba(0,0,0,0.0)  100%
  ) !important;
}
.shop-section__bg img {
  object-position: center 78% !important;
  filter: brightness(1.2);
}

/* ── Lighter classics hero ─────────────────────────────────── */
.classics-hero__bg::after {
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.70) 0%,
    rgba(5,5,5,0.22) 52%,
    rgba(5,5,5,0.0) 100%
  ) !important;
}
.classics-hero__bg img { filter: brightness(1.1); }

/* ── Lighter classics page hero ────────────────────────────── */
.classics-page-hero__bg::after {
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.52) 0%,
    rgba(5,5,5,0.18) 52%,
    rgba(5,5,5,0.0) 100%
  ) !important;
}
.classics-page-hero__bg img { filter: brightness(1.15); }

/* ── Photo section breaks: bright ─────────────────────────── */
.photo-section-break__overlay {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.22) 55%,
    rgba(0,0,0,0.0)  100%
  ) !important;
}
.photo-section-break img { filter: brightness(1.15); }

/* ── Crop Fleury sign in photo-section-break ───────────────── */
.photo-section-break img {
  object-position: center 72% !important;
}

/* ── Lighter service page hero ─────────────────────────────── */
.service-hero-slide::after {
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.48) 0%,
    rgba(5,5,5,0.16) 52%,
    rgba(5,5,5,0.0) 100%
  ) !important;
}
.service-hero-slide img { filter: brightness(1.15); }

/* ── CTA background: bright, correct scaling ─────────────── */
.cta-section--bg {
  background-color: #1a1a1a;
  background-position: center 40%;    /* show the best part of the image */
  background-size: cover;
  background-attachment: scroll;      /* prevents janky parallax scaling */
}
.cta-section--bg::before {
  background: rgba(0,0,0,0.22) !important;
}

/* ── Buttons: more rounded + premium shadow ────────────────── */
.btn {
  border-radius: var(--radius) !important;
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast) !important;
}
.btn-primary {
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(255,87,34,0.45);
  transform: translateY(-1px);
}
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn:active { transform: scale(0.97) translateY(0) !important; box-shadow: none !important; }

/* ── Cards: premium shadows + better radius ────────────────── */
.testimonial {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-md);
}
.cert {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-sm);
}
.footer__cta-box {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-md);
}
.classics-trust-card {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.classics-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.brand-card {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.05) !important;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-card {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.05) !important;
}
.classics-testimonial__inner {
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-md);
}
.classics-service-block {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-md);
  border: none !important;
  overflow: hidden;
}
.about-photo-split {
  border-radius: var(--radius-xl) !important;
  box-shadow: var(--shadow-lg);
}

/* ── Gallery images: crisp, no stretch ─────────────────────── */
.gallery-masonry img {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-sm);
}

/* ── Featured split section ────────────────────────────────── */
.classics-featured {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.classics-featured__photo img { filter: brightness(1.1); }

/* ── Image rendering: smooth for all photos ────────────────── */
img { image-rendering: auto; }
/* Logo: smooth downscaling — auto is best for raster PNG logos */
.nav__logo img,
.footer__logo-wrap img {
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

/* ── Remove 206px thumbnail images from display ───────────── */
img[src*="classics-1.jpg"],
img[src*="classics-2.jpg"],
img[src*="service-1.jpg"],
img[src*="service-2.jpg"],
img[src*="service-3.jpg"],
img[src*="service-4.jpg"],
img[src*="service-hero.jpg"] {
  display: none !important;
}

/* ── Better section flow: breathing room ───────────────────── */
.section    { padding: var(--sp-10) 0; }
.section--sm { padding: var(--sp-9) 0; }

/* ── Walkins bg: better for short image ────────────────────── */
.cta-section--bg {
  background-position: center 35% !important;
  background-size: cover !important;
}

/* ── Better topbar styling ─────────────────────────────────── */
.topbar {
  background: rgba(8,8,8,0.98) !important;
}

/* ── Service blocks on classics page: fix tiny image slots ─── */
.classics-service-block__photo {
  background: var(--c-surface-2);
}
.classics-service-block__photo img {
  filter: brightness(1.08);
}

/* ── Marques grid: rounded border ─────────────────────────── */
.marque {
  border-radius: 0;
  transition: background var(--tr-base);
}
.marque:hover { background: var(--c-surface-2); }

/* ── Stats bar: slight rounding on inner ───────────────────── */
.stats {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── Premium hover on nav links ────────────────────────────── */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform var(--tr-fast);
  border-radius: 2px;
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ── Smooth scroll on anchor transitions ───────────────────── */
html { scroll-behavior: smooth; }

/* ============================================================
   LIGHT/DARK MIXED DESIGN SYSTEM
   ============================================================ */

:root {
  /* Light surface tokens */
  --c-light:        #ffffff;
  --c-light-soft:   #f7f7f5;
  --c-light-border: rgba(0,0,0,0.08);
  --c-dark-ink:     #0a0a0a;
  --c-dark-muted:   #555550;
  --c-dark-faint:   #999994;
}

/* Light section base */
.section--light, .section--light.section, .section--light.section--sm {
  background: var(--c-light);
}
.section--soft, .section--soft.section, .section--soft.section--sm {
  background: var(--c-light-soft);
}
/* Text colors on light bg */
.section--light h1, .section--light h2, .section--light h3, .section--light h4,
.section--soft  h1, .section--soft  h2, .section--soft  h3, .section--soft  h4 {
  color: var(--c-dark-ink);
}
.section--light p, .section--soft p { color: var(--c-dark-muted); }
.section--light .trust-lead, .section--soft .trust-lead { color: var(--c-dark-ink); }
.section--light strong, .section--soft strong { color: var(--c-dark-ink); }
.section--light .guarantee-item, .section--soft .guarantee-item { color: var(--c-dark-muted); }
.section--light .section-accent-line::before, .section--soft .section-accent-line::before { background: var(--c-accent); }
.section--light .service-cell__name, .section--soft .service-cell__name { color: var(--c-dark-ink); }
.section--light .service-cell__desc, .section--soft .service-cell__desc { color: var(--c-dark-muted); }
.section--light .service-rows, .section--soft .service-rows { border-top: 1px solid var(--c-light-border); }
.section--light .service-row, .section--soft .service-row { border-bottom: 1px solid var(--c-light-border); }
.section--light .service-cell:last-child, .section--soft .service-cell:last-child { border-left: 1px solid var(--c-light-border); }
.section--light .btn-secondary, .section--soft .btn-secondary {
  border-color: rgba(0,0,0,0.2);
  color: var(--c-dark-ink);
}
.section--light .btn-secondary:hover, .section--soft .btn-secondary:hover {
  background: rgba(0,0,0,0.05);
}
.section--light .area-name, .section--soft .area-name { color: var(--c-dark-muted); border-bottom-color: var(--c-light-border); }

/* ============================================================
   PREMIUM SPLIT HERO — white bg, orange-glow image card
   ============================================================ */

.hero-split-section {
  background: #ffffff;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
  min-height: 85vh;      /* reduced — less empty space */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Radial brand glow in the background (image side) */
.hero-split-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,87,34,0.07) 0%,
    rgba(255,87,34,0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}
/* Subtle top-left gradient for depth */
.hero-split-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, rgba(250,250,248,0) 0%, rgba(245,245,243,0.6) 100%);
  pointer-events: none;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 680px;  /* bigger image column */
  gap: clamp(var(--sp-7), 5vw, var(--sp-9));
  align-items: flex-start;
  padding: var(--sp-6) 0 var(--sp-8); /* less padding = less empty space */
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Left: text on light background ─────────────────────────── */
.hero-split-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding-top: var(--sp-5);           /* slight top padding to balance with image */
}
.hero-split-accent-bar {
  width: 52px; height: 4px;
  background: var(--c-accent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255,87,34,0.4);
}
.hero-split-title {
  color: var(--c-dark-ink);
  font-size: clamp(3.2rem, 5vw, 5.5rem); /* larger — fills the column */
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0;
  text-shadow: none;
}
.hero-split-sub {
  font-size: var(--t-lg);
  color: var(--c-dark-muted);
  max-width: 50ch;
  line-height: 1.65;
  margin: 0;
  text-shadow: none;
}
.hero-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: 0;
}
.hero-trust-list li {
  font-size: var(--t-base);
  color: var(--c-dark-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.hero-trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
  font-size: var(--t-sm);
}
.hero-split-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.hero-split-phone {
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--c-dark-ink);
  letter-spacing: -0.015em;
  transition: color var(--tr-fast);
  text-decoration: none;
}
.hero-split-phone:hover { color: var(--c-accent); }

/* Stats row — on white bg */
.hero-split-stats {
  display: flex;
  gap: 0;
  padding-top: var(--sp-6);
  border-top: 1.5px solid rgba(0,0,0,0.08);
}
.hero-split-stat {
  flex: 1;
  padding-right: var(--sp-5);
  margin-right: var(--sp-5);
  border-right: 1.5px solid rgba(0,0,0,0.08);
}
.hero-split-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-split-stat__n {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-split-stat__l {
  font-size: var(--t-xs);
  color: var(--c-dark-faint);
  font-weight: 500;
  line-height: 1.35;
}

/* ── Right: premium image card with orange glow ─────────────── */
.hero-split-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

/* The glow layer sits behind the card */
.hero-split-image::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 44px;
  background: radial-gradient(ellipse at center, rgba(255,87,34,0.18) 0%, transparent 65%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.hero-image-card {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  /* gradient highlight border */
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255,87,34,0.40) 0%, rgba(255,87,34,0.05) 45%, rgba(0,0,0,0.05) 100%) border-box;
  border: 1.5px solid transparent;
  /* enhanced premium shadow */
  box-shadow:
    0 0 40px rgba(255,87,34,0.12),
    0 0 80px rgba(255,87,34,0.06),
    0 24px 60px rgba(0,0,0,0.18),
    0 48px 96px rgba(0,0,0,0.10),
    0 4px 16px rgba(0,0,0,0.08);
}

.hero-image-card__inner {
  border-radius: 26px;
  overflow: hidden;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.08) contrast(1.02);
  image-rendering: auto;
}

/* Caption bar */
.hero-image-card__caption {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #fafaf8;
  font-size: var(--t-xs);
  color: var(--c-dark-faint);
  font-weight: 500;
  border-top: 1px solid rgba(0,0,0,0.07);
}

/* ── Horizontal trust row below image ──────────────────────── */
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.hero-trust-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: var(--sp-3) var(--sp-3);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.hero-trust-item__value {
  display: block;
  font-size: var(--t-xl);
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-trust-item__label {
  display: block;
  font-size: 10px;
  color: var(--c-dark-faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-split-grid { grid-template-columns: 1fr 560px; }
  .hero-split-title { font-size: clamp(3rem, 4.5vw, 4.5rem); }
}
@media (max-width: 880px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    padding: var(--sp-7) 0 var(--sp-9);
    align-items: flex-start;
  }
  .hero-split-text { padding-top: 0; }
  .hero-split-image { justify-content: center; max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-split-title { font-size: clamp(2.8rem, 8vw, 3.8rem); }
  .hero-trust-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-split-section { min-height: unset; padding-bottom: var(--sp-7); }
  .hero-split-stats { display: grid; grid-template-columns: repeat(2,1fr); }
  .hero-split-stat { border-right: none; padding-right: 0; margin-right: 0; }
  .hero-split-stat:nth-child(1),.hero-split-stat:nth-child(2) {
    border-bottom: 1.5px solid rgba(0,0,0,0.08);
    padding-bottom: var(--sp-4);
  }
  .hero-split-actions { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .hero-split-image { max-width: 100%; }
  .hero-split-section::before, .hero-split-section::after { display: none; }
}

/* ============================================================
   MOBILE-FIRST COMPREHENSIVE FIX + $60K TRUST UPGRADE
   ============================================================ */

/* ── Mobile nav: proper sizing and spacing ─────────────────── */
@media (max-width: 860px) {
  .nav { height: var(--nav-h); }
  .nav__inner { padding: 0 var(--sp-4); }
  .nav__logo img { height: 52px; }
  .nav__mobile .nav__link {
    font-size: var(--t-base);
    padding: var(--sp-4) var(--sp-2);
  }
  .nav__mobile .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── Hero mobile ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { min-height: 88vh; padding-top: calc(var(--topbar-h) + var(--nav-h)); }
  .hero__content { padding-bottom: var(--sp-7); }
  h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
    padding-top: var(--sp-5);
    margin-top: var(--sp-5);
  }
  .hero__stat-number { font-size: var(--t-2xl); }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .hero__divider { display: none; }
  .btn-lg { padding: 14px 24px; font-size: var(--t-sm); }
}

/* ── Classics hero mobile ──────────────────────────────────── */
@media (max-width: 640px) {
  .classics-hero { min-height: 85vh; }
  .classics-hero__actions { flex-direction: column; gap: var(--sp-3); }
}

/* ── About photo split mobile ──────────────────────────────── */
@media (max-width: 768px) {
  .about-photo-split { margin: 0; border-radius: 0 !important; box-shadow: none !important; }
  .about-photo-split__text { padding: var(--sp-7) var(--sp-5); }
}

/* ── Classics featured mobile ──────────────────────────────── */
@media (max-width: 900px) {
  .classics-featured { border-radius: 0; margin: 0; box-shadow: none; }
  .classics-featured__text { padding: var(--sp-7) var(--sp-5); }
}

/* ── Brand grid mobile ─────────────────────────────────────── */
@media (max-width: 640px) {
  .brand-grid { grid-template-columns: 1fr; }
  .classics-trust__grid { gap: var(--sp-4); }
}

/* ── Service blocks mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .classics-service-block--reverse { direction: ltr; }
  .classics-service-block { border-radius: var(--radius-lg) !important; }
}

/* ── Gallery mobile ────────────────────────────────────────── */
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

/* ── Stats strip mobile ────────────────────────────────────── */
@media (max-width: 480px) {
  .about-stat-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── Footer mobile ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .footer__top { gap: var(--sp-6); }
  .footer__bottom { gap: var(--sp-3); }
  .footer__logo-wrap img { height: 56px; }
  .footer__copy, .footer__nap { font-size: 11px; }
}

/* ── CTA section mobile ────────────────────────────────────── */
@media (max-width: 600px) {
  .cta-section__actions { flex-direction: column; align-items: center; gap: var(--sp-3); }
  .cta-phone { font-size: var(--t-xl); }
}

/* ── Topbar mobile: hide badges, keep rating + hours ─────── */
@media (max-width: 500px) {
  .topbar__badges { display: none; }
  .topbar__rating, .topbar__hours { font-size: 11px; }
}

/* ── Touch targets: minimum 44px on mobile ─────────────────── */
@media (max-width: 860px) {
  .nav__hamburger { width: 44px; height: 44px; }
  .btn { min-height: 44px; }
  .nav__link { padding: var(--sp-2) 0; }
}

/* ── Images: prevent overflow on small screens ─────────────── */
@media (max-width: 480px) {
  .about-team-photo-section img { height: 280px; }
  .classics-service-block__photo img { height: 220px; }
  .photo-section-break img { min-height: 240px; }
}

/* ============================================================
   $60K VEHICLE TRUST UPGRADE
   Make every section communicate premium care for valuable cars
   ============================================================ */

/* Trust callout — inline accent for credibility statements */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,87,34,0.08);
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: 100px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-5);
}
.trust-badge svg { flex-shrink: 0; }

/* Premium guarantee row */
.guarantee-row {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  color: var(--c-ink-muted);
  font-weight: 500;
}
.guarantee-item svg { color: var(--c-accent); flex-shrink: 0; }

/* Premium section separator with accent dot */
.section-accent-line {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.section-accent-line::before {
  content: '';
  width: 40px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Premium text sizing boost for key sections */
.trust-lead {
  font-size: clamp(var(--t-lg), 2vw, var(--t-2xl));
  line-height: 1.6;
  color: var(--c-ink);
  font-weight: 500;
  max-width: 58ch;
}

/* Better review card for premium feel */
.carousel-item {
  border: none !important;
  background: var(--c-surface) !important;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-card) !important;
}

/* Classics why-section: premium dark treatment */
.classics-why h2 { font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl)); }

/* Premium featured section */
.classics-featured__text h2 {
  font-size: clamp(var(--t-2xl), 3.5vw, var(--t-4xl));
}

/* ============================================================
   NO SHARP CORNERS + SEAMLESS SECTION BLENDING
   ============================================================ */

/* Buttons: rounder */
.btn { border-radius: 12px !important; }

/* Form inputs and select: rounder */
.form-group input,
.form-group select,
.form-group textarea { border-radius: 12px !important; }

/* All cards: rounder */
.testimonial,
.cert,
.brand-card,
.why-card,
.classics-trust-card,
.hero-trust-item,
.footer__cta-box,
.classics-service-block,
.classics-testimonial__inner,
.classics-featured { border-radius: 20px !important; }

/* About photo split and large containers */
.about-photo-split { border-radius: 0 !important; } /* full-width, keep flush */

/* Image cards */
.service-photo-strip img,
.gallery-masonry img,
.about-team-photo-section img { border-radius: 20px !important; }

/* Stats bar: fully rounded on sides */
.stats { border-radius: 24px; overflow: hidden; margin: 0 var(--sp-5); }
@media (max-width: 600px) { .stats { margin: 0; border-radius: 0; } }

/* Rating badge */
.rating-badge { border-radius: 12px !important; }

/* Carousel items */
.carousel-item { border-radius: 20px !important; }

/* Contact map */
.contact-map { border-radius: 20px !important; }

/* Topbar: no rounded corners — stays flush */
.topbar { border-radius: 0; }

/* Hero image card: already 28px, keep */

/* Remove ALL remaining hard borders between sections */
* {
  border-top-color: transparent;
}
/* But keep intentional structural borders */
.service-rows,
.service-row,
.service-cell:last-child,
.form-group input, .form-group select, .form-group textarea,
.hero-split-stats,
.hero-split-stat,
.about-stat-strip,
.about-stat-strip__item,
.about-people-grid,
.about-person,
.footer__top,
.footer__bottom,
.hero-trust-item,
.hero-image-card__caption,
.carousel-dot,
.marque,
.contact-info-item { border-color: initial; }

/* Light sections: remove internal dividers */
.section--light .service-rows { border-top: 1px solid var(--c-light-border); }
.section--light .service-row  { border-bottom: 1px solid var(--c-light-border); }
.section--soft  .service-rows { border-top: 1px solid rgba(0,0,0,0.07); }
.section--soft  .service-row  { border-bottom: 1px solid rgba(0,0,0,0.07); }
.section--soft  .service-cell:last-child { border-left: 1px solid rgba(0,0,0,0.07); }

/* White/light sections applied site-wide */
.about-story-header { background: var(--c-light) !important; }
.about-story-header h1,
.about-story-header h2 { color: var(--c-dark-ink); }
.about-story-header p,
.about-story-header .lead { color: var(--c-dark-muted) !important; }
.about-story-header .trust-lead { color: var(--c-dark-ink) !important; }

.about-story-body { background: var(--c-light-soft) !important; }
.about-story-body h2 { color: var(--c-dark-ink); }
.about-story-body p  { color: var(--c-dark-muted); }

/* Section--light: make ALL headings and text dark */
.section--light h1,.section--light h2,.section--light h3,
.section--light h4,.section--light .about-person__name,
.section--light .about-stat-strip__label { color: var(--c-dark-ink) !important; }
.section--light p, .section--light .about-person p,
.section--light small { color: var(--c-dark-muted) !important; }

/* EXCEPTION: black boxes inside light sections keep white text */
.section--light .cert,
.section--light .certs-grid .cert { background: var(--c-dark-ink) !important; }
.section--light .cert__title        { color: #ffffff !important; font-size: var(--t-lg) !important; }
.section--light .cert p,
.section--light .cert__desc         { color: rgba(240,239,236,0.92) !important; font-size: var(--t-base) !important; }
.section--light .classics-trust-card h3 { color: #ffffff !important; }
.section--light .classics-trust-card p  { color: rgba(240,239,236,0.92) !important; }
.section--light .brand-card__name   { color: var(--c-accent) !important; }
.section--light .brand-card__models { color: rgba(240,239,236,0.7) !important; }
.section--light .brand-card p,
.section--light .brand-card__body p { color: rgba(240,239,236,0.92) !important; }

.about-people-grid { background: var(--c-light) !important; }
.section--light .about-person { border-right-color: rgba(0,0,0,0.08) !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
.about-person__name { color: var(--c-dark-ink) !important; }
.about-person p { color: var(--c-dark-muted) !important; }

/* Credentials section: white bg, BLACK boxes — bright readable text */
.certs-grid .cert {
  background: var(--c-dark-ink) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-top: 3px solid var(--c-accent) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12) !important;
}
.cert__title { color: #ffffff !important; font-size: var(--t-lg) !important; margin-bottom: var(--sp-3) !important; }
.cert__desc  { color: rgba(240,239,236,0.92) !important; font-size: var(--t-base) !important; }

/* Area names on light bg */
.section--soft .area-name { color: var(--c-dark-muted); border-bottom-color: rgba(0,0,0,0.07); }

/* Classics trust cards — black on white */
.classics-trust { background: var(--c-light) !important; }
.classics-trust-card {
  background: var(--c-dark-ink) !important;
  border-color: rgba(255,255,255,0.05) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12) !important;
}
.classics-trust-card h3 { color: #ffffff !important; }
.classics-trust-card p  { color: rgba(240,239,236,0.7) !important; }

/* Classics brands — white section, BLACK cards with bright text */
.classics-brands { background: var(--c-light) !important; }
.classics-brands h2 { color: var(--c-dark-ink); }
.brand-card {
  background: var(--c-dark-ink) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10) !important;
}
.brand-card__header {
  background: rgba(255,255,255,0.05) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.brand-card__name { color: var(--c-accent) !important; }
.brand-card__models { color: rgba(240,239,236,0.7) !important; }
.brand-card__body p { color: rgba(240,239,236,0.92) !important; font-size: var(--t-base) !important; }

/* Gallery light bg */
.classics-gallery { background: var(--c-light-soft) !important; }
.classics-gallery h2,
.classics-gallery p { color: var(--c-dark-ink) !important; }
.classics-gallery > .container > p { color: var(--c-dark-muted) !important; }

/* Services page: alternate groups light */
.service-groups { background: var(--c-light) !important; }
.service-group__cat-name { color: var(--c-dark-ink) !important; }
.service-group__cat-desc { color: var(--c-dark-muted) !important; }
.service-item-name { color: var(--c-dark-ink) !important; }
.service-item-name span { color: var(--c-dark-muted) !important; }
.service-group { border-bottom: 1px solid var(--c-light-border) !important; }
.service-group:first-child { border-top: 1px solid var(--c-light-border) !important; }

/* Contact page info light */
.contact-info-label { color: var(--c-dark-faint) !important; }

/* === FNTEX CREDIT =========================================== */
.fntex-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-ink-muted);
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-2);
  border-radius: 100px;
  text-decoration: none;
  transition: color var(--tr-fast), background var(--tr-fast), border-color var(--tr-fast);
}
.fntex-btn:hover {
  color: var(--c-ink);
  background: var(--c-surface-3);
  border-color: var(--c-ink-faint);
}
/* Footer inline variant — sits between copyright row and NAP */
.fntex-btn--footer {
  display: block;
  text-align: center;
  margin: var(--sp-3) auto var(--sp-2);
}

/* ============================================================
   FULL LIGHT THEME v4
   No black backgrounds. Clean white / light-gray palette.
   All photo overlays removed / minimised.
   ============================================================ */

/* ── Global light palette override ─────────────────────────── */
:root {
  --c-bg:        #ffffff;
  --c-surface:   #f7f7f5;
  --c-surface-2: #efefed;
  --c-surface-3: #e8e8e6;
  --c-border:    rgba(0,0,0,0.08);
  --c-border-2:  rgba(0,0,0,0.13);
  --c-ink:       #111111;
  --c-ink-muted: #555550;
  --c-ink-faint: #999994;
}
html, body { background: #ffffff; color: #111111; color-scheme: light; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: #f5f5f3 !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}
.topbar__rating, .topbar__badge, .topbar__hours { color: #666660 !important; }
.topbar__rating strong { color: #111111 !important; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid rgba(0,0,0,0.09) !important;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; }
.nav__link        { color: #555550 !important; }
.nav__link:hover,
.nav__link[aria-current="page"] { color: #111111 !important; }
.nav__phone       { color: #111111 !important; }
.nav__hamburger span { background: #111111 !important; }
.nav__mobile {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}
.nav__mobile .nav__link { color: #111111 !important; border-bottom-color: rgba(0,0,0,0.07) !important; }
.nav__mobile .nav__phone { color: var(--c-accent) !important; }
/* Logo — black text on transparent, no filter needed on white nav */
.nav__logo img { filter: none !important; }

/* ── Page headers (interior pages) ──────────────────────────── */
.page-hero { background: #ffffff !important; border-bottom: none !important; }
.page-hero h1   { color: #111111 !important; }
.page-hero .lead { color: #555550 !important; }
.page-hero .meta { color: #999994 !important; }

/* ── Stats bar ──────────────────────────────────────────────── */
.stats { background: #f7f7f5 !important; border: none !important; margin: 0 !important; }
.stats__item { border-right-color: rgba(0,0,0,0.08) !important; }
.stats__label { color: #555550 !important; }

/* ── Reviews ────────────────────────────────────────────────── */
.reviews-section {
  background: #f7f7f5 !important;
  border: none !important;
}
.reviews-header__left h2 { color: #111111 !important; }
.rating-text { color: #666660 !important; }
.rating-text strong { color: #111111 !important; }
.carousel-item {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}
.carousel-item__text   { color: #444440 !important; }
.carousel-item__author { color: #999994 !important; }
.carousel-btn {
  border-color: rgba(0,0,0,0.14) !important;
  color: #666660 !important;
  background: #ffffff !important;
}
.carousel-btn:hover { background: #f5f5f3 !important; color: #111111 !important; }

/* ── Area names ─────────────────────────────────────────────── */
.area-name { color: #555550 !important; border-bottom-color: rgba(0,0,0,0.07) !important; }

/* ── Service rows (homepage + services page) ─────────────────── */
.service-cell__name { color: #111111 !important; }
.service-cell__desc { color: #555550 !important; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #f5f5f3 !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}
.footer__top { border-bottom: 1px solid rgba(0,0,0,0.08) !important; }
.footer__tagline      { color: #666660 !important; }
.footer__contact-item { color: #666660 !important; }
.footer__contact-item a { color: #666660 !important; }
.footer__contact-item a:hover { color: var(--c-accent) !important; }
.footer__col-title    { color: #111111 !important; }
.footer__links a,
.footer__links span   { color: #666660 !important; }
.footer__links strong { color: #111111 !important; }
.footer__links a:hover { color: #111111 !important; }
.footer__copy  { color: #999994 !important; }
.footer__nap   { color: #999994 !important; }
.footer__nap a { color: #999994 !important; }
.footer__bottom { border-top: 1px solid rgba(0,0,0,0.08) !important; }
.footer__cta-box {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
.footer__cta-box h4 { color: #111111 !important; }
.footer__cta-box p  { color: #666660 !important; }

/* ── All card/box types on light ─────────────────────────────── */
.cert {
  background: #0a0a0a !important;
  border-color: rgba(255,255,255,0.07) !important;
}
.classics-trust-card {
  background: #0a0a0a !important;
  border-color: rgba(255,255,255,0.07) !important;
}
.brand-card {
  background: #0a0a0a !important;
  border-color: rgba(255,255,255,0.07) !important;
}
.why-card {
  background: #0a0a0a !important;
  border-color: rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}
.why-card h4 { color: #ffffff !important; }
.why-card p  { color: rgba(240,239,236,0.80) !important; }
.why-card__icon { color: var(--c-accent) !important; }

/* ── Classics sections ──────────────────────────────────────── */
.classics-trust     { background: #ffffff !important; }
.classics-brands    { background: #f7f7f5 !important; }
.classics-brands h2 { color: #111111 !important; }
.classics-gallery   { background: #ffffff !important; }
.classics-gallery h2 { color: #111111 !important; }
.classics-gallery > .container > p { color: #666660 !important; }
.classics-featured__text  { background: #f7f7f5 !important; }
.classics-featured__text h2 { color: #111111 !important; }
.classics-featured__text p  { color: #555550 !important; }
.classics-service-block__text { background: #f7f7f5 !important; }
.classics-service-block__text h3 { color: #111111 !important; }
.classics-service-block__text p  { color: #555550 !important; }
.classics-why { background: #f7f7f5 !important; border: none !important; }
.classics-why h2 { color: #111111 !important; }
.classics-testimonial { background: #ffffff !important; }
.classics-testimonial__inner {
  background: #f7f7f5 !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.classics-testimonial__quote  { color: #111111 !important; }
.classics-testimonial__author { color: #999994 !important; }
.marque { border-color: rgba(0,0,0,0.08) !important; }
.marque:hover { background: #f5f5f3 !important; }
.marque__name { color: #111111 !important; }
.marque__list { color: #555550 !important; }
.marques-grid { border-color: rgba(0,0,0,0.08) !important; }
.classics-callout {
  background: #f7f7f5 !important;
  border-color: rgba(0,0,0,0.08) !important;
}
.classics-callout h3 { color: #111111 !important; }
.classics-callout p  { color: #555550 !important; }

/* ── Services page ──────────────────────────────────────────── */
.service-groups { background: #ffffff !important; }
.service-group__cat-name { color: #111111 !important; }
.service-group__cat-desc { color: #666660 !important; }
.service-group { border-bottom: 1px solid rgba(0,0,0,0.08) !important; }
.service-group:first-child { border-top: 1px solid rgba(0,0,0,0.08) !important; }
.service-item-name { color: #111111 !important; }
.service-item-name span { color: #666660 !important; }
.service-item-name::before { background: var(--c-accent) !important; }

/* ── About page ─────────────────────────────────────────────── */
.about-story-header  { background: #ffffff !important; }
.about-story-body    { background: #f7f7f5 !important; }
.about-photo-split   { background: #f7f7f5 !important; }
.about-photo-split__text { background: #f7f7f5 !important; }
.about-stat-strip    { background: #ffffff !important; border: none !important; }
.about-stat-strip__item { border-right-color: rgba(0,0,0,0.08) !important; }
.about-stat-strip__label { color: #666660 !important; }
.about-people-grid   { background: #ffffff !important; }
.about-team-caption  { background: #f7f7f5 !important; border: none !important; }
.about-team-caption p { color: #999994 !important; }
.about-person__name { color: #111111 !important; }
.about-person p     { color: #555550 !important; }
.section--light .about-person { border-right-color: rgba(0,0,0,0.08) !important; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-info-label { color: #999994 !important; }
.contact-info-value { color: #111111 !important; }
.contact-info-value a { color: #111111 !important; }
.contact-info-item { border-bottom-color: rgba(0,0,0,0.08) !important; }
.contact-info-item:first-child { border-top-color: rgba(0,0,0,0.08) !important; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #f7f7f5 !important;
  border-color: rgba(0,0,0,0.13) !important;
  color: #111111 !important;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999994 !important; }
.form-group label { color: #111111 !important; }

/* ── CTA sections — light, NO background image ──────────────── */
.cta-section--bg {
  background-image: none !important;
  background: #ffffff !important;
}
.cta-section--bg::before { display: none !important; }
.cta-section--bg h2    { color: #111111 !important; text-shadow: none !important; }
.cta-section--bg p     { color: #555550 !important; text-shadow: none !important; }
.cta-section--bg .cta-phone { color: #111111 !important; text-shadow: none !important; }
.cta-section--bg .cta-phone:hover { color: var(--c-accent) !important; }
.cta-section--bg .btn-primary { box-shadow: var(--shadow-accent) !important; }
/* Bottom address line in CTA */
.cta-section--bg p[style*="color: var(--c-ink-faint)"] { color: #999994 !important; }

/* ── Shop section — REMOVE overlay, minimal darkening ───────── */
.shop-section__bg::after {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.0) 100%
  ) !important;
}
.shop-section__bg img { filter: brightness(1.1) !important; }
.shop-section__content h2   { text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.8) !important; }
.shop-section__content p    { text-shadow: 0 1px 8px rgba(0,0,0,0.8) !important; }
.shop-section__content .eyebrow { text-shadow: 0 1px 6px rgba(0,0,0,0.6) !important; }

/* ── Hero overlays ───────────────────────────────────────────── */
.classics-hero__bg::after {
  background: linear-gradient(
    to top, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0) 100%
  ) !important;
}
.classics-page-hero__bg::after {
  background: linear-gradient(
    to top, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.04) 55%, rgba(0,0,0,0) 100%
  ) !important;
}
.service-hero-slide::after {
  background: linear-gradient(
    to top, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.04) 55%, rgba(0,0,0,0) 100%
  ) !important;
}
.photo-section-break__overlay {
  background: linear-gradient(
    90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0) 100%
  ) !important;
}

/* ── ALL images at original brightness — no filters ─────────── */
img,
.hero__bg img,
.shop-section__bg img,
.classics-hero__bg img,
.classics-page-hero__bg img,
.service-hero-slide img,
.photo-section-break img,
.shop-split-image img,
.cta-split-image img,
.classics-featured__photo img,
.hero-image-card img,
.about-team-photo-section img,
.gallery-masonry img,
.service-photo-strip img,
.classics-service-block__photo img,
.about-photo-split__photo img {
  filter: none !important;
}

/* Hero split title on white bg */
.hero-split-title { color: #111111 !important; }
.hero-split-sub { color: #555550 !important; }

/* ── Guarantee row text ─────────────────────────────────────── */
.guarantee-item { color: #555550 !important; }
.guarantee-row { border-top-color: rgba(0,0,0,0.10) !important; }

/* ── Section headings everywhere ────────────────────────────── */
h1, h2, h3, h4 { color: #111111; }
p { color: #555550; }
strong { color: #111111; }

/* ── Rating badge ───────────────────────────────────────────── */
.rating-badge {
  background: #f5f5f3 !important;
  border-color: rgba(0,0,0,0.10) !important;
}
.rating-badge__text { color: #666660 !important; }

/* ── Review CTA ─────────────────────────────────────────────── */
.review-cta p { color: #999994 !important; }

/* ── Trust list on hero ─────────────────────────────────────── */
.hero-trust-list li { color: #555550 !important; }

/* ── Section accent lines ───────────────────────────────────── */
.section-accent-line::before { background: var(--c-accent) !important; }

/* ── Gallery images ─────────────────────────────────────────── */
.gallery-masonry img { border: 1px solid rgba(0,0,0,0.07) !important; }

/* ── Brand card header ──────────────────────────────────────── */
.brand-card__header { border-bottom: 1px solid rgba(255,255,255,0.1) !important; }

/* ── Fntex button on light bg ───────────────────────────────── */
.fntex-btn {
  color: #999994 !important;
  background: #f0f0ee !important;
  border-color: rgba(0,0,0,0.12) !important;
}
.fntex-btn:hover { color: #111111 !important; background: #e8e8e6 !important; }

/* ── All images: original exposure, no filters ───────────────── */
.photo-section-break img { filter: none !important; }

/* ── Mobile nav hamburger open state ────────────────────────── */
@media (max-width: 860px) {
  .nav__inner { padding: 0 var(--sp-5); }
}

/* ============================================================
   SHOP SECTION — split layout (text left, image right)
   Replaces full-bleed photo with text overlay
   ============================================================ */
.shop-split-section {
  background: #f7f7f5;
  padding: var(--sp-10) 0;
}
.shop-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.shop-split-text { display: flex; flex-direction: column; gap: var(--sp-5); }
.shop-split-text .eyebrow { color: var(--c-accent) !important; display: block; }
.shop-split-text h2 { color: #111111 !important; font-size: clamp(var(--t-3xl),3.5vw,var(--t-5xl)); }
.shop-split-text p  { color: #555550 !important; font-size: var(--t-lg); max-width: 50ch; }
.shop-split-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
}
.shop-split-image img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: center 35%;
  display: block;
  filter: brightness(1.12);
}
@media (max-width: 860px) {
  .shop-split-grid { grid-template-columns: 1fr; }
  .shop-split-image img { height: 320px; }
}

/* ============================================================
   CTA SPLIT SECTIONS — text left, image right
   ============================================================ */
.cta-split-section {
  background: #f7f7f5 !important;
  background-image: none !important;
  padding: var(--sp-10) 0;
}
.cta-split-section::before { display: none !important; }
.cta-split-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--sp-9);
  align-items: center;
}
.cta-split-text { display: flex; flex-direction: column; gap: var(--sp-5); text-align: left; }
.cta-split-text h2 { color: #111111 !important; font-size: clamp(var(--t-3xl),3.5vw,var(--t-5xl)); text-shadow: none !important; }
.cta-split-text p  { color: #555550 !important; font-size: var(--t-lg); max-width: 52ch; text-shadow: none !important; }
.cta-split-text .cta-phone { color: #111111 !important; text-shadow: none !important; }
.cta-split-text .cta-phone:hover { color: var(--c-accent) !important; }
.cta-split-text .cta-section__actions { justify-content: flex-start; }
.cta-split-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.13), 0 8px 24px rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.cta-split-image img {
  width: 100%; height: 380px;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(1.1);
}
@media (max-width: 900px) {
  .cta-split-grid { grid-template-columns: 1fr; }
  .cta-split-image { display: none; }
}

/* ============================================================
   WHITE CARDS WITH DESIGN — classics + about
   Lively but clean, no black boxes
   ============================================================ */

/* Classics trust cards — white, orange numbered accent */
.classics-trust-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-top: 4px solid var(--c-accent) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05) !important;
  transition: transform 200ms ease, box-shadow 200ms ease !important;
}
.classics-trust-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,0.11), 0 4px 12px rgba(0,0,0,0.07) !important;
}
.classics-trust-card h3 { color: #111111 !important; }
.classics-trust-card p  { color: #555550 !important; }
.classics-trust-card__icon {
  background: rgba(255,87,34,0.08) !important;
  border: 1.5px solid rgba(255,87,34,0.20) !important;
}

/* Brand cards — white with accent name, hover lift */
.brand-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
  transition: transform 200ms ease, box-shadow 200ms ease !important;
}
.brand-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.11) !important;
}
.brand-card__header { background: #f7f7f5 !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; }
.brand-card__name   { color: var(--c-accent) !important; }
.brand-card__models { color: #999994 !important; }
.brand-card__body p { color: #555550 !important; }

/* Why cards — white */
.why-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-left: 4px solid var(--c-accent) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
}
.why-card h4 { color: #111111 !important; }
.why-card p  { color: #555550 !important; }
.why-card__icon { color: var(--c-accent) !important; font-size: var(--t-xl) !important; }

/* Credential boxes — white, left orange bar */
.cert,
.certs-grid .cert {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-left: 4px solid var(--c-accent) !important;
  border-top: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
}
.cert__title { color: #111111 !important; font-size: var(--t-lg) !important; }
.cert__desc  { color: #555550 !important; font-size: var(--t-base) !important; }
/* Override any section--light exception that makes them black */
.section--light .cert,
.section--light .certs-grid .cert {
  background: #ffffff !important;
  border-left: 4px solid var(--c-accent) !important;
}
.section--light .cert__title { color: #111111 !important; }
.section--light .cert p,
.section--light .cert__desc  { color: #555550 !important; }

/* ============================================================
   HOMEPAGE BANNER — full-width photo, text below, no overlay
   ============================================================ */
.hero-banner {
  width: 100%;
  overflow: hidden;
  display: block;
  line-height: 0;
}
.hero-banner img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-banner-text {
  background: #ffffff;
  padding: var(--sp-9) 0;
}
.hero-banner-text .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: start;
}
.hero-banner-text h2 { color: #111111; margin-bottom: var(--sp-5); }
.hero-banner-text p  { color: #555550; font-size: var(--t-lg); }
@media (max-width: 768px) {
  .hero-banner-text .container { grid-template-columns: 1fr; }
  .hero-banner img { max-height: 320px; }
}

/* ============================================================
   CLASSICS PAGE HERO — split layout (text left, image right)
   ============================================================ */
.classics-hero-split-section {
  background: #ffffff;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.classics-hero-split-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 65%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(255,87,34,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.classics-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: var(--sp-9);
  align-items: center;
  padding: var(--sp-8) 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.classics-hero-split-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.classics-hero-split-text .eyebrow {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
}
.classics-hero-split-title {
  color: #111111;
  font-size: clamp(2.6rem, 4vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin: 0;
}
.classics-hero-split-text .lead {
  color: #555550;
  font-size: var(--t-lg);
  max-width: 52ch;
  line-height: 1.65;
}
.classics-hero-split-image {
  position: relative;
}
.classics-hero-split-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 44px;
  background: radial-gradient(ellipse at center, rgba(255,87,34,0.14) 0%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.classics-hero-split-image .hero-image-card {
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .classics-hero-split-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .classics-hero-split-image { max-width: 520px; margin: 0 auto; width: 100%; }
  .classics-hero-split-title { font-size: clamp(2.4rem, 7vw, 3.6rem); }
}

/* ============================================================
   CLASSICS FEATURED — photo full-width, text below (no overlay)
   ============================================================ */
.classics-featured-stacked {
  background: #ffffff;
}
.classics-featured-stacked__photo {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.classics-featured-stacked__photo img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.classics-featured-stacked__photo img {
  filter: none !important;     /* original brightness, no processing */
}
.classics-featured-stacked__text {
  background: #f7f7f5;
  padding: var(--sp-9) 0;
}
/* Single column — text clearly BELOW the photo, never on it */
.classics-featured-stacked__text .container {
  display: block;
  max-width: 860px;
}
.classics-featured-stacked__text h2 { color: #111111; margin-bottom: var(--sp-5); }
.classics-featured-stacked__text p  { color: #555550; font-size: var(--t-lg); max-width: 72ch; margin-bottom: var(--sp-4); }
@media (max-width: 768px) {
  .classics-featured-stacked__photo img { max-height: 300px; }
}

/* === SERVICES PAGE — text above, two images side by side ===== */
.services-hero-new {
  background: #ffffff;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
}
.services-hero-new__text {
  padding: var(--sp-9) 0 var(--sp-7);
  text-align: center;
}
.services-hero-new__text h1 {
  color: #111111;
  font-size: clamp(var(--t-3xl), 4vw, var(--t-5xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.services-hero-new__text p {
  color: #555550;
  font-size: var(--t-lg);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.65;
}
.services-hero-new__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6) var(--sp-7);
}
.services-hero-new__images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  filter: none !important;
}
@media (max-width: 768px) {
  .services-hero-new__images { grid-template-columns: 1fr; padding: 0 var(--sp-5) var(--sp-7); }
  .services-hero-new__images img { height: 260px; }
}

/* === REDUCED MOTION ========================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:       0.01ms !important;
    scroll-behavior:           auto  !important;
  }
  .carousel-track { transition: none !important; }
}
