/* ═══════════════════════════════════════════════════════════════
   SANTA ANA BODY SHOP — Rustic Handcrafted Texas
   White & cream surfaces · Golden yellow accent · Warm serif display
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── 2. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* ── Rustic Texas Palette ──────────────────────────────────── */
  /* Accent: warm golden yellow — sunflower, not neon */
  --gold:        #E8A800;
  --gold-light:  #F5C233;
  --gold-dark:   #C48A00;
  --gold-dim:    rgba(232,168,0,0.14);
  --gold-dim2:   rgba(232,168,0,0.07);

  /* Dark surfaces: deep charcoal — used sparingly for contrast sections */
  --dark:        #1A1A18;
  --dark-2:      #242420;
  --dark-3:      #2E2E2A;
  --dark-4:      #3A3A35;

  /* Light surfaces: white + warm off-white — the PRIMARY backgrounds */
  --cream:       #FFFFFF;
  --cream-2:     #FDFAF4;   /* very slight warm tint */
  --cream-3:     #F5EDD8;   /* warm wheat */
  --cream-4:     #EDE0C4;   /* aged parchment — for accented sections */

  /* Text */
  --text:        #1A1A18;
  --text-muted:  #5C5848;
  --text-faint:  #9A9082;
  --text-light:  #FDFAF4;
  --text-muted-light: rgba(253,250,244,0.62);

  /* Borders */
  --border:      rgba(26,26,24,0.10);
  --border-warm: rgba(232,168,0,0.22);
  --border-light: rgba(253,250,244,0.14);

  /* ── Fonts ─────────────────────────────────────────────────── */
  /* Playfair Display: classic editorial serif — warm, handcrafted feel */
  /* Plus Jakarta Sans: clean, slightly rounded sans — friendly & legible */
  /* Instrument Serif italic — elegant, flowing, editorial script accent */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-script:  'Instrument Serif', Georgia, serif;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --section-py: clamp(var(--sp-12), 7vw, var(--sp-24));

  /* Radii — softer, warmer */
  --radius-sm: 0.25rem;
  --radius:    0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows — warm tint */
  --shadow-sm: 0 1px 4px rgba(26,26,24,0.07);
  --shadow:    0 4px 18px rgba(26,26,24,0.09);
  --shadow-lg: 0 14px 44px rgba(26,26,24,0.13);
  --shadow-gold: 0 4px 20px rgba(232,168,0,0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 200ms;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: var(--text-base);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── 3. LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(var(--sp-4), 5vw, var(--sp-10));
}

.container--narrow { max-width: 760px; }

/* ── 4. TYPOGRAPHY ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-dark);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-title--light { color: var(--text-light); }

.section-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.7;
}

/* ── 5. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius);
  padding: 0.875rem var(--sp-6);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn--lg { padding: 1rem var(--sp-8); font-size: var(--text-base); }
.btn--sm { padding: 0.625rem var(--sp-4); font-size: var(--text-xs); }

/* Primary: rich golden yellow, dark text for max legibility */
.btn--primary {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Dark: charcoal */
.btn--dark {
  background: var(--dark);
  color: var(--text-light);
  border-color: var(--dark);
}
.btn--dark:hover { background: var(--dark-3); transform: translateY(-1px); }

/* Outline — default for dark hero */
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(253,250,244,0.40);
}
.btn--outline:hover {
  background: rgba(253,250,244,0.08);
  border-color: rgba(253,250,244,0.70);
}

/* Outline on light backgrounds */
.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

.btn--full { width: 100%; }

/* ── 6. NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Scrolled: white bar — clean, bright, welcoming */
.nav--scrolled {
  background: var(--cream);
  box-shadow: 0 2px 16px rgba(26,26,24,0.08);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: 68px;
}

.nav__logo-img { height: 36px; width: auto; }

.nav__links {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
}

/* Default (over dark hero): light links */
.nav__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

/* Scrolled: dark links on white */
.nav--scrolled .nav__link { color: var(--text); }
.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link.active { color: var(--gold-dark); }

.nav__ctas {
  display: none;
  align-items: center;
  gap: var(--sp-3);
  margin-left: var(--sp-4);
}

.nav--scrolled .btn--outline {
  color: var(--text);
  border-color: var(--border);
}
.nav--scrolled .btn--outline:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: transparent;
}

.nav__toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius);
}

.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}
.nav--scrolled .nav__toggle span { background: var(--text); }

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — white */
.nav__mobile {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  padding: var(--sp-6) var(--sp-4) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 20px 40px rgba(26,26,24,0.12);
  pointer-events: none;
  border-bottom: 2px solid var(--cream-3);
}

.nav__mobile.open { transform: translateY(0); pointer-events: all; }

.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }

.nav__mobile .nav__link {
  display: block;
  padding: var(--sp-3) var(--sp-2);
  font-size: var(--text-base);
  border-bottom: 1px solid var(--cream-3);
  color: var(--text);
}

.nav__mobile-ctas { display: flex; flex-direction: column; gap: var(--sp-3); }

.nav__mobile .btn--outline {
  color: var(--text);
  border-color: var(--border);
}
.nav__mobile .btn--outline:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: transparent;
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__links { display: flex; }
  .nav__ctas { display: flex; }
  .nav__mobile { display: none; }
}

/* ── 7. HERO ──────────────────────────────────────────────────── */
/* ── HERO — full-bleed photo, centered content ─────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/NEW-welder-sparks.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.42);
  transform: scale(1.02);
  transition: transform 8s ease-out;
  display: block;
}

.hero__bg--loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* left-to-right: heavy dark on left, fades out on right */
    linear-gradient(
      to right,
      rgba(20,18,10,0.82) 0%,
      rgba(20,18,10,0.20) 50%,
      rgba(20,18,10,0.00) 75%
    ),
    /* bottom-to-top: dark at bottom for text legibility */
    linear-gradient(
      to top,
      rgba(20,18,10,0.96) 0%,
      rgba(20,18,10,0.55) 40%,
      rgba(20,18,10,0.10) 100%
    );
  display: block;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(var(--sp-20), 12vw, var(--sp-32)) 0 clamp(var(--sp-16), 8vw, var(--sp-24));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 1rem + 8vw, 9rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: var(--sp-6);
  max-width: 12ch;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.9rem, 1rem + 2.8vw, 3.2rem);
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: var(--sp-5);
}

.hero__body {
  font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.05rem);
  color: rgba(253,250,244,0.65);
  max-width: 54ch;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

/* Path cards — glass on dark */
.hero__paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-bottom: 0;
  max-width: 560px;
}
@media (min-width: 640px) { .hero__paths { grid-template-columns: repeat(2, 1fr); } }
/* On mobile (single col), give primary card extra top margin so badge clears the gap */
@media (max-width: 639px) { .hero__path--primary { margin-top: 12px; } }

.hero__path {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4) var(--sp-3);
  display: flex; flex-direction: column; gap: var(--sp-2);
  backdrop-filter: blur(8px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.hero__path:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(232,168,0,0.50);
}
.hero__path--primary {
  background: rgba(232,168,0,0.16);
  border-color: rgba(232,168,0,0.45);
}
/* Both cards get equal top padding so titles align */
.hero__path {
  padding-top: calc(var(--sp-3) + 22px);
}
.hero__path--primary:hover {
  background: rgba(232,168,0,0.22);
  border-color: rgba(232,168,0,0.70);
}

.hero__badge {
  position: absolute;
  top: -10px; left: var(--sp-4);
  background: var(--gold);
  color: var(--text);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.hero__path-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
}

.hero__path-copy {
  font-size: var(--text-sm);
  color: rgba(253,250,244,0.70);
  line-height: 1.55; flex: 1;
}

/* Trust pills */
.hero__not-sure {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.52);
  margin: var(--sp-3) 0 var(--sp-8);
  letter-spacing: 0.01em;
}
.hero__not-sure-link {
  color: rgba(255,255,255,0.72);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.28);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.hero__not-sure-link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold-dark);
}

.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.hero__trust-pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs); font-weight: 500;
  color: rgba(253,250,244,0.90);
}
.hero__trust-pill svg { flex-shrink: 0; }

/* ── 8. STICKY MOBILE PHONE BAR ───────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-3) var(--sp-4); gap: var(--sp-3);
}
@media (max-width: 767px) { .sticky-cta { display: flex; } }
.sticky-cta .btn { flex: 1; }

/* Hero card buttons — stronger contrast on semi-transparent card backgrounds */
.hero__paths .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
  width: 100%;
}
.hero__paths .btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}
.hero__paths .btn--outline {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  font-weight: 600;
  width: 100%;
}
.hero__paths .btn--outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
}

/* ── 9. STATS BAR ──────────────────────────────────────────────── */
/* Warm wheat/parchment background — NOT dark */
.stats-bar {
  background: var(--cream-3);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--cream-4);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 640px) { .stats-bar__grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; padding: var(--sp-4) var(--sp-3); }
.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1; margin-bottom: var(--sp-1);
}
.stat-item__label {
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ── 10. INSURANCE TICKER ─────────────────────────────────────── */
.insurance-bar {
  background: var(--dark-2);
  padding: var(--sp-3) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.insurance-bar__track {
  display: flex; gap: var(--sp-8);
  animation: ticker 20s linear infinite;
  width: max-content;
}
.insurance-bar__track:hover { animation-play-state: paused; }
.insurance-bar__item {
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(253,250,244,0.40); white-space: nowrap;
}
.insurance-bar__item--cert { color: var(--gold); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 11. SECTION SHARED ───────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--dark    { background: var(--dark-2); }
.section--darker  { background: var(--dark); }
.section--cream   { background: var(--cream-2); }

.section__header { margin-bottom: clamp(var(--sp-8), 4vw, var(--sp-16)); }
.section__header--center {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-3);
}
.section__header--left { display: flex; flex-direction: column; gap: var(--sp-3); }

/* ── 12. VIDEO SECTION ─────────────────────────────────────────── */
.video-section { padding: var(--section-py) 0; background: var(--cream-2); }
.video-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--dark); aspect-ratio: 16/9;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-3);
  background: rgba(20,18,10,0.38);
  color: #fff; font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: background var(--dur) var(--ease);
}
.video-play-btn:hover { background: rgba(20,18,10,0.18); }
.video-play-btn.hidden { display: none; }
.video-play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 30px rgba(232,168,0,0.50);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.video-play-btn:hover .video-play-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 40px rgba(232,168,0,0.70);
}

/* ── 13. FEAR / PROBLEM CARDS ─────────────────────────────────── */
.fear-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 600px)  { .fear-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fear-grid { grid-template-columns: repeat(3, 1fr); } }

.fear-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fear-card:hover { border-color: rgba(232,168,0,0.40); transform: translateY(-2px); }
.fear-card__problem {
  font-family: var(--font-display);
  font-size: var(--text-base); font-weight: 700;
  color: rgba(253,250,244,0.55); font-style: italic;
  margin-bottom: var(--sp-3); line-height: 1.4;
}
.fear-card__divider { width: 24px; height: 2px; background: var(--gold); margin-bottom: var(--sp-3); }
.fear-card__solution { font-size: var(--text-sm); color: rgba(253,250,244,0.82); line-height: 1.6; }

/* ── 14. PROCESS STEPS ────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.process-step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.process-step__num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: var(--gold-dim); line-height: 1;
  margin-bottom: var(--sp-3); letter-spacing: -0.03em;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-base); font-weight: 700;
  color: var(--text); margin-bottom: var(--sp-2);
}
.process-step__desc { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

/* ── 15. SERVICES GRID ─────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.service-card:hover { border-color: rgba(232,168,0,0.45); transform: translateY(-2px); background: var(--dark-4); }
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.service-card__title { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text-light); }
.service-card__desc { font-size: var(--text-sm); color: var(--text-muted-light); line-height: 1.6; flex: 1; }
.service-card__link {
  font-size: var(--text-xs); font-weight: 700; color: var(--gold);
  display: flex; align-items: center; gap: var(--sp-1); margin-top: auto;
  transition: gap var(--dur) var(--ease);
}
.service-card:hover .service-card__link { gap: var(--sp-2); }

/* ── 16. PHOTO GALLERY ─────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--cream-3); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }

/* ── 17. TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-card__stars { display: flex; gap: 2px; color: var(--gold); font-size: 14px; }
.testimonial-card__quote { font-size: var(--text-sm); color: var(--text); line-height: 1.7; flex: 1; }
.testimonial-card__author {
  display: flex; flex-direction: column; gap: 2px;
  border-top: 1px solid var(--cream-3); padding-top: var(--sp-3);
}
.testimonial-card__name { font-weight: 700; font-size: var(--text-sm); color: var(--text); }
.testimonial-card__location { font-size: var(--text-xs); color: var(--text-muted); }

/* ── 18. FINAL CTA SECTION ─────────────────────────────────────── */
.final-cta { padding: var(--section-py) 0; background: var(--dark); position: relative; overflow: hidden; }
.final-cta__bg {
  position: absolute; inset: 0;
  background-image: url('img/SANTA-ANA-34.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.18);
}
.final-cta__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-6);
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 700;
  color: #fff; letter-spacing: -0.01em; line-height: 1.1;
}
.final-cta__sub { font-size: var(--text-base); color: rgba(253,250,244,0.72); max-width: 48ch; line-height: 1.65; }
.final-cta__btns { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.final-cta__guarantee { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
.final-cta__g {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); color: rgba(253,250,244,0.55); font-weight: 500;
}
.final-cta__g svg { color: var(--gold); flex-shrink: 0; }

/* ── 19. FOOTER ────────────────────────────────────────────────── */
/* Warm wheat footer — NOT dark */
.footer {
  background: var(--cream-3);
  border-top: 1px solid var(--cream-4);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-10); margin-bottom: var(--sp-12); }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__logo { height: 32px; width: auto; margin-bottom: var(--sp-4); }
.footer__tagline { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; max-width: 36ch; margin-bottom: var(--sp-5); }

.footer__social { display: flex; gap: var(--sp-3); }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(26,26,24,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--gold-dim); color: var(--gold-dark); border-color: var(--border-warm); }

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-4);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__links a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--dur) var(--ease); }
.footer__links a:hover { color: var(--gold-dark); }

.footer__bottom {
  border-top: 1px solid var(--cream-4); padding-top: var(--sp-6);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3); align-items: center;
}
.footer__copy { font-size: var(--text-xs); color: var(--text-faint); }
.footer__legal { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer__legal a { font-size: var(--text-xs); color: var(--text-faint); transition: color var(--dur) var(--ease); }
.footer__legal a:hover { color: var(--gold-dark); }

/* ── 20. PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: calc(68px + clamp(var(--sp-10), 7vw, var(--sp-20))) 0 clamp(var(--sp-10), 6vw, var(--sp-16));
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; filter: brightness(0.30); }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,10,0.97) 0%, rgba(20,18,10,0.50) 60%, rgba(20,18,10,0.12) 100%);
}
.page-hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: var(--sp-4); max-width: 760px; }
.page-hero__title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
.page-hero__title em { font-style: italic; color: var(--gold); }
.page-hero__sub { font-size: var(--text-base); color: rgba(253,250,244,0.72); max-width: 54ch; line-height: 1.65; }

/* ── 21. SERVICES FULL ─────────────────────────────────────────── */
.services-full { padding: var(--section-py) 0; background: var(--cream); }
.service-detail {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-8);
  padding: var(--sp-10) 0; border-bottom: 1px solid var(--cream-3);
}
.service-detail:last-child { border-bottom: none; }
@media (min-width: 800px) { .service-detail { grid-template-columns: 1fr 2fr; align-items: start; } }

.service-detail__icon-wrap { display: flex; flex-direction: column; gap: var(--sp-4); }
.service-detail__icon {
  width: 64px; height: 64px;
  background: var(--gold-dim); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
}
.service-detail__num { font-family: var(--font-display); font-size: 4rem; font-weight: 900; color: var(--cream-3); line-height: 1; letter-spacing: -0.04em; }
.service-detail__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text); margin-bottom: var(--sp-4); letter-spacing: -0.01em; }
.service-detail__desc { font-size: var(--text-base); color: var(--text-muted); line-height: 1.7; margin-bottom: var(--sp-5); max-width: 68ch; }
.service-detail__list { list-style: none; display: grid; grid-template-columns: 1fr; gap: var(--sp-2); margin-bottom: var(--sp-6); }
@media (min-width: 540px) { .service-detail__list { grid-template-columns: repeat(2, 1fr); } }
.service-detail__list li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--text); }
.service-detail__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dark); flex-shrink: 0; }

/* ── 22. CONTACT PAGE ──────────────────────────────────────────── */
.contact-section { padding: var(--section-py) 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 3fr 2fr; align-items: start; } }
.locations-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-bottom: var(--sp-8); }
@media (min-width: 600px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }

.location-card { background: var(--cream); border: 1.5px solid var(--cream-3); border-radius: var(--radius-lg); padding: var(--sp-6); box-shadow: var(--shadow-sm); }
.location-card__header { display: flex; align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.location-card__name { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text); margin-bottom: var(--sp-1); }
.location-card__stars { color: var(--gold-dark); font-size: 13px; }
.location-card__rating { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.location-card__rows { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.location-card__row { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); color: var(--text-muted); }
.location-card__row svg { flex-shrink: 0; margin-top: 2px; }
.location-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

/* Form */
.form-card { background: var(--cream); border: 1.5px solid var(--cream-3); border-radius: var(--radius-xl); padding: clamp(var(--sp-6), 4vw, var(--sp-10)); box-shadow: var(--shadow); }
.form-card__header { margin-bottom: var(--sp-6); }
.form-card__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text); letter-spacing: -0.01em; margin-top: var(--sp-2); margin-bottom: var(--sp-2); }
.form-card__sub { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 480px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label { font-size: var(--text-sm); font-weight: 700; color: var(--text); }
.form-label span { color: var(--gold-dark); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1.5px solid var(--cream-3); border-radius: var(--radius);
  padding: 0.75rem var(--sp-4); font-size: var(--text-sm);
  color: var(--text); background: #fff; outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(232,168,0,0.14);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-checkbox { display: flex; align-items: center; gap: var(--sp-3); cursor: pointer; font-size: var(--text-sm); color: var(--text-muted); }
.form-checkbox input { accent-color: var(--gold-dark); width: 16px; height: 16px; }
.form-note { font-size: var(--text-xs); color: var(--text-faint); line-height: 1.5; text-align: center; margin-top: var(--sp-2); }
.form-success { display: none; align-items: center; gap: var(--sp-3); background: #f0fdf4; border: 1.5px solid #86efac; border-radius: var(--radius); padding: var(--sp-4) var(--sp-5); font-size: var(--text-sm); font-weight: 600; color: #15803d; margin-top: var(--sp-4); }
.form-success.visible { display: flex; }

/* Sidebar info */
.contact-sidebar { display: flex; flex-direction: column; gap: var(--sp-4); }
.info-card { background: var(--cream); border: 1.5px solid var(--cream-3); border-radius: var(--radius-lg); padding: var(--sp-6); box-shadow: var(--shadow-sm); }
.info-card--dark { background: var(--dark-2); border-color: rgba(255,255,255,0.08); color: var(--text-light); }
.info-card__title { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; margin-bottom: var(--sp-4); }
.info-card__steps { list-style: none; display: flex; flex-direction: column; gap: var(--sp-4); }
.info-card__step { display: flex; align-items: flex-start; gap: var(--sp-3); }
.info-card__step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: var(--text); font-size: var(--text-xs); font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card__step-body strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--text-light); margin-bottom: 2px; }
.info-card__step-body p { font-size: var(--text-xs); color: var(--text-muted-light); line-height: 1.5; }
.info-card__phones { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.info-card__phone-row { display: flex; justify-content: space-between; align-items: center; }
.info-card__phone-label { font-size: var(--text-xs); color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.info-card__phone-num { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--gold); transition: color var(--dur) var(--ease); }
.info-card__phone-num:hover { color: #fff; }
.info-card__hours { font-size: var(--text-sm); color: var(--text-muted-light); border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); }
.info-card__guarantees { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.info-card__guarantees li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: rgba(253,250,244,0.78); }

/* ── 23. SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ── 24. ACCENT RULE ──────────────────────────────────────────── */
.gold-rule { width: 48px; height: 3px; background: var(--gold-dark); border-radius: var(--radius-full); }

/* ── 25. FORM STACK ───────────────────────────────────────────── */
.form-stack { display: flex; flex-direction: column; gap: var(--sp-4); }

/* ── 26. SECTION PHOTO SPLIT ──────────────────────────────────── */
.split-section { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 800px) { .split-section { grid-template-columns: 1fr 1fr; min-height: 480px; } }
.split-section__photo { position: relative; min-height: 300px; overflow: hidden; }
.split-section__photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-section__content { background: var(--dark-2); padding: clamp(var(--sp-10), 7vw, var(--sp-16)); display: flex; flex-direction: column; justify-content: center; gap: var(--sp-5); }

/* ── 27. CERT BADGES ──────────────────────────────────────────── */
.cert-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); }
.cert-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--gold-dim);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-full); padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs); font-weight: 700; color: var(--gold-dark); letter-spacing: 0.04em;
}

/* ── 28. FORM SECTION ─────────────────────────────────────────── */
.form-section { padding: var(--section-py) 0; background: var(--cream-2); }

/* ── 29. HERO CONTEXT LINE ────────────────────────────────────── */
.hero__context {
  font-size: clamp(0.875rem, 0.82rem + 0.3vw, 1.05rem);
  color: rgba(253,250,244,0.62); font-style: italic; line-height: 1.7;
  max-width: 58ch; margin-bottom: var(--sp-6);
  border-left: 2px solid rgba(232,168,0,0.55); padding-left: var(--sp-4);
}

/* ── 30. FAILURE SECTION ──────────────────────────────────────── */
.failure-section { display: grid; grid-template-columns: 1fr; gap: clamp(var(--sp-10), 6vw, var(--sp-16)); align-items: start; }
@media (min-width: 860px) { .failure-section { grid-template-columns: 1fr 1fr; } }
.failure-section__text { display: flex; flex-direction: column; gap: var(--sp-4); }
.failure-section__body { font-size: var(--text-base); color: var(--text-muted); line-height: 1.75; max-width: 54ch; }
.failure-section__visual { display: flex; flex-direction: column; gap: var(--sp-3); }
.failure-item { border-radius: var(--radius-lg); padding: var(--sp-5) var(--sp-6); border: 1.5px solid var(--border); }
.failure-item--bad  { background: #fff5f5; border-color: #fecaca; }
.failure-item--good { background: #f0fdf4; border-color: #86efac; }
.failure-item__label { display: block; font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.failure-item--bad  .failure-item__label { color: #dc2626; }
.failure-item--good .failure-item__label { color: #16a34a; }
.failure-item__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.failure-item__list li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); line-height: 1.5; }
.failure-item--bad  .failure-item__list li { color: #7f1d1d; }
.failure-item--good .failure-item__list li { color: #14532d; }
.failure-item--bad  .failure-item__list li::before { content: '✕'; font-size: 11px; color: #ef4444; font-weight: 700; flex-shrink: 0; }
.failure-item--good .failure-item__list li::before { content: '✓'; font-size: 11px; color: #22c55e; font-weight: 700; flex-shrink: 0; }

/* ── 31. SUCCESS SECTION ──────────────────────────────────────── */
.success-section { max-width: 780px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); }
.success-section__body { font-size: clamp(1rem, 0.9rem + 0.5vw, 1.175rem); color: rgba(253,250,244,0.72); line-height: 1.75; max-width: 62ch; }
.success-section__body--accent { font-family: var(--font-display); font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.4rem); font-weight: 700; color: var(--gold); font-style: italic; }

/* ══════════════════════════════════════════════════════════════
   LANDING PAGES
   ══════════════════════════════════════════════════════════════ */
.lp-bar { background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.08); position: sticky; top: 0; z-index: 100; padding: 0; }
.lp-bar__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.lp-bar__logo { height: 30px; width: auto; }
.lp-bar__name { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: #fff; }
.lp-bar__phone { display: flex; align-items: center; gap: var(--sp-2); font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: var(--gold); text-decoration: none; transition: color var(--dur) var(--ease); }
.lp-bar__phone:hover { color: #fff; }

.lp-hero { background: var(--dark); position: relative; overflow: hidden; padding: clamp(var(--sp-16), 10vw, var(--sp-32)) 0 clamp(var(--sp-12), 7vw, var(--sp-24)); }
.lp-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; filter: brightness(0.22); }
.lp-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,10,0.98) 0%, rgba(20,18,10,0.55) 60%, rgba(20,18,10,0.15) 100%); }
.lp-hero__content { position: relative; z-index: 2; max-width: 680px; display: flex; flex-direction: column; gap: var(--sp-5); }
.lp-hero__headline { font-family: var(--font-display); font-size: clamp(2.5rem, 1rem + 6vw, 5.5rem); font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.05; }
.lp-hero__headline em { font-style: italic; color: var(--gold); }
.lp-hero__sub { font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem); color: rgba(253,250,244,0.80); line-height: 1.7; max-width: 54ch; }
.lp-hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
.lp-hero__note { font-size: var(--text-xs); color: rgba(253,250,244,0.45); font-weight: 500; letter-spacing: 0.04em; }

.lp-section { padding: clamp(var(--sp-12), 7vw, var(--sp-20)) 0; }
.lp-section--dark   { background: var(--dark-2); }
.lp-section--cream  { background: var(--cream-2); }
.lp-section--white  { background: var(--cream); }
.lp-section--darker { background: var(--dark); }

.lp-section__header { margin-bottom: clamp(var(--sp-8), 4vw, var(--sp-12)); display: flex; flex-direction: column; gap: var(--sp-3); }
.lp-section__header--center { align-items: center; text-align: center; }

.lp-cards { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 600px) { .lp-cards { grid-template-columns: repeat(2, 1fr); } }

.lp-card { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.lp-card:hover { border-color: rgba(232,168,0,0.45); transform: translateY(-2px); }
.lp-card--light { background: var(--cream); border-color: var(--cream-3); }
.lp-card--light:hover { box-shadow: var(--shadow); }
.lp-card__icon { width: 44px; height: 44px; background: var(--gold-dim); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); }
.lp-card__title { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text-light); line-height: 1.3; }
.lp-card--light .lp-card__title { color: var(--text); }
.lp-card__body { font-size: var(--text-sm); line-height: 1.65; color: var(--text-muted-light); }
.lp-card--light .lp-card__body { color: var(--text-muted); }

.lp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); margin-bottom: clamp(var(--sp-8), 4vw, var(--sp-12)); }
.lp-stat { text-align: center; padding: var(--sp-5) var(--sp-3); background: var(--dark-3); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); }
.lp-stat__number { font-family: var(--font-display); font-size: clamp(1.3rem, 0.8rem + 1.8vw, 2rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: var(--sp-1); }
.lp-stat__label { font-size: var(--text-xs); color: rgba(253,250,244,0.45); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.lp-review { background: var(--dark-3); border: 1px solid rgba(232,168,0,0.25); border-radius: var(--radius-xl); padding: clamp(var(--sp-6), 4vw, var(--sp-10)); max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-4); }
.lp-review__stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.lp-review__quote { font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem); color: rgba(253,250,244,0.88); line-height: 1.7; font-style: italic; }
.lp-review__author { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--sp-3); }
.lp-review__name { font-weight: 700; font-size: var(--text-sm); color: #fff; }
.lp-review__tag { font-size: var(--text-xs); color: var(--text-muted-light); }

.lp-final { padding: clamp(var(--sp-12), 7vw, var(--sp-20)) 0; background: var(--dark); position: relative; overflow: hidden; }
.lp-final__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.15); }
.lp-final__content { position: relative; z-index: 2; text-align: center; max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); }
.lp-final__title { font-family: var(--font-display); font-size: clamp(1.8rem, 1rem + 3vw, 3rem); font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
.lp-final__body { font-size: var(--text-base); color: rgba(253,250,244,0.68); line-height: 1.7; max-width: 48ch; }

.lp-footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); padding: var(--sp-8) 0; text-align: center; }
.lp-footer__text { font-size: var(--text-xs); color: rgba(253,250,244,0.35); line-height: 1.8; }
.lp-footer__text a { color: rgba(253,250,244,0.50); transition: color var(--dur) var(--ease); }
.lp-footer__text a:hover { color: var(--gold); }

.lp-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--gold); padding: var(--sp-4); }
@media (max-width: 767px) { .lp-sticky { display: block; } }
.lp-sticky a { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); font-family: var(--font-display); font-size: var(--text-base); font-weight: 800; color: var(--text); text-decoration: none; }

.lp-highlight { background: var(--dark-3); border: 1.5px solid rgba(232,168,0,0.40); border-radius: var(--radius-xl); padding: clamp(var(--sp-8), 5vw, var(--sp-12)) clamp(var(--sp-6), 5vw, var(--sp-12)); display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); text-align: center; position: relative; overflow: hidden; }
.lp-highlight::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(232,168,0,0.12) 0%, transparent 70%); pointer-events: none; }
.lp-highlight__big { font-family: var(--font-display); font-size: clamp(5rem, 3rem + 8vw, 10rem); font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.04em; }
.lp-highlight__label { font-family: var(--font-display); font-size: clamp(1.1rem, 0.8rem + 1.2vw, 1.8rem); font-weight: 700; color: #fff; }
.lp-highlight__sub { font-size: var(--text-base); color: rgba(253,250,244,0.62); line-height: 1.65; max-width: 44ch; }

.lp-tip { background: rgba(232,168,0,0.08); border: 1.5px solid rgba(232,168,0,0.28); border-radius: var(--radius-lg); padding: var(--sp-6); display: flex; gap: var(--sp-4); align-items: flex-start; }
.lp-tip__icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--gold-dim); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); margin-top: 2px; }
.lp-tip__title { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--gold); margin-bottom: var(--sp-2); }
.lp-tip__body { font-size: var(--text-sm); color: rgba(253,250,244,0.78); line-height: 1.65; }

.lp-steps { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 640px) { .lp-steps { grid-template-columns: repeat(3, 1fr); } }
.lp-step { background: var(--cream); border: 1.5px solid var(--cream-3); border-radius: var(--radius-lg); padding: var(--sp-6); transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.lp-step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.lp-step__num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold-dim); line-height: 1; margin-bottom: var(--sp-3); letter-spacing: -0.03em; }
.lp-step__title { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text); margin-bottom: var(--sp-2); }
.lp-step__body { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

@media (max-width: 767px) { body { padding-bottom: 60px; } }

/* ── NAV DROPDOWN ─────────────────────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: flex; align-items: center; gap: 4px; font-size: var(--text-sm); font-weight: 600; color: rgba(255,255,255,0.92); cursor: pointer; background: none; border: none; padding: 0; transition: color var(--dur) var(--ease); }
.nav__dropdown-toggle:hover { color: #fff; }
.nav--scrolled .nav__dropdown-toggle { color: var(--text); }
.nav--scrolled .nav__dropdown-toggle:hover { color: var(--gold-dark); }
.nav__dropdown-toggle svg { transition: transform var(--dur) var(--ease); }
.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }

/* Dropdown: white on cream */
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 14px); right: 0;
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius-lg); padding: var(--sp-2); min-width: 230px;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }

.nav__dropdown-item { display: flex; flex-direction: column; gap: 2px; padding: var(--sp-3) var(--sp-4); border-radius: var(--radius); text-decoration: none; transition: background var(--dur) var(--ease); }
.nav__dropdown-item:hover { background: var(--cream-2); }
.nav__dropdown-item strong { font-size: var(--text-sm); font-weight: 700; color: var(--text); }
.nav__dropdown-item span { font-size: var(--text-xs); color: var(--text-muted); }

/* When not scrolled, dropdown stays dark so it reads over hero */
.nav:not(.nav--scrolled) .nav__dropdown-menu { background: var(--dark-2); border-color: rgba(255,255,255,0.08); }
.nav:not(.nav--scrolled) .nav__dropdown-item:hover { background: rgba(255,255,255,0.06); }
.nav:not(.nav--scrolled) .nav__dropdown-item strong { color: #fff; }
.nav:not(.nav--scrolled) .nav__dropdown-item span { color: rgba(253,250,244,0.45); }

/* ══════════════════════════════════════════════════════════════
   FLEET PAGE
   ══════════════════════════════════════════════════════════════ */
.fleet-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
@media (max-width: 900px) { .fleet-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fleet-services-grid { grid-template-columns: 1fr; } }
.fleet-service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(232,168,0,0.15); border-radius: var(--radius); padding: var(--sp-5); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.fleet-service-card:hover { border-color: rgba(232,168,0,0.38); background: rgba(255,255,255,0.07); }
.fleet-service-card__icon { width: 52px; height: 52px; background: rgba(232,168,0,0.10); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-3); }
.fleet-service-card h3 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: #fff; margin-bottom: var(--sp-2); line-height: 1.3; }
.fleet-service-card p { font-size: var(--text-sm); color: rgba(253,250,244,0.65); line-height: 1.7; margin: 0; }

.fleet-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-4); }
.fleet-why-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.fleet-why-item__check { width: 28px; height: 28px; background: rgba(232,168,0,0.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.fleet-why-item strong { display: block; font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fleet-why-item p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .fleet-why-section-grid { grid-template-columns: 1fr !important; } }

.fleet-locations { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-5); }
.fleet-location-card { display: flex; align-items: flex-start; gap: var(--sp-3); background: rgba(255,255,255,0.05); border: 1px solid rgba(232,168,0,0.20); border-radius: var(--radius); padding: var(--sp-4) var(--sp-5); text-align: left; min-width: 240px; }
.fleet-location-card svg { flex-shrink: 0; margin-top: 3px; }
.fleet-location-card strong { display: block; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: var(--text-base); margin-bottom: 4px; }
.fleet-location-card span { display: block; color: rgba(253,250,244,0.65); font-size: var(--text-sm); margin-bottom: 4px; }
.fleet-location-card a { color: var(--gold); font-weight: 700; font-size: var(--text-sm); text-decoration: none; }
.fleet-location-card a:hover { text-decoration: underline; }

.fleet-faq { display: flex; flex-direction: column; gap: 2px; }
.fleet-faq__item { border: 1px solid var(--cream-3); border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); transition: border-color var(--dur) var(--ease); }
.fleet-faq__item[open] { border-color: var(--border-warm); }
.fleet-faq__question { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: var(--sp-4) var(--sp-5); cursor: pointer; font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--text); list-style: none; user-select: none; transition: color var(--dur) var(--ease); }
.fleet-faq__question::-webkit-details-marker { display: none; }
.fleet-faq__item[open] .fleet-faq__question { color: var(--gold-dark); }
.fleet-faq__arrow { flex-shrink: 0; color: var(--gold-dark); transition: transform var(--dur) var(--ease); }
.fleet-faq__item[open] .fleet-faq__arrow { transform: rotate(180deg); }
.fleet-faq__answer { padding: 0 var(--sp-5) var(--sp-4); }
.fleet-faq__answer p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.75; margin: 0; }
.fleet-cta-btns { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

.fleet-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
@media (max-width: 768px) { .fleet-why-grid { grid-template-columns: 1fr; } .fleet-why-grid > div:first-child { margin-bottom: var(--sp-2); } }

.fleet-form-section { background: var(--dark-2); padding: var(--sp-16) 0; border-top: 1px solid rgba(232,168,0,0.12); }
.fleet-form-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--sp-12); align-items: start; }
@media (max-width: 860px) { .fleet-form-layout { grid-template-columns: 1fr; gap: var(--sp-8); } }
.fleet-form-copy h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: #fff; line-height: 1.15; margin: var(--sp-2) 0 var(--sp-4); }
.fleet-form-copy h2 em { color: var(--gold); font-style: italic; }
.fleet-form-copy p { color: rgba(253,250,244,0.70); line-height: 1.8; font-size: var(--text-base); margin-bottom: var(--sp-5); }
.fleet-form-trust { list-style: none; padding: 0; margin: 0 0 var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.fleet-form-trust li { display: flex; align-items: center; gap: var(--sp-2); color: rgba(253,250,244,0.78); font-size: var(--text-sm); font-weight: 500; }
.fleet-form-trust svg { flex-shrink: 0; }
.fleet-form-or { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.08); font-size: var(--text-sm); color: rgba(253,250,244,0.50); }
.fleet-form-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: var(--text-sm); text-decoration: none; transition: color var(--dur) var(--ease); }
.fleet-form-phone:hover { color: #fff; }
.fleet-form-card { background: var(--dark-3); border: 1px solid rgba(232,168,0,0.18); border-radius: var(--radius); padding: var(--sp-7); }
@media (max-width: 480px) { .fleet-form-card { padding: var(--sp-5); } }
.fleet-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.fleet-radio-group { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.fleet-radio { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: var(--text-sm); color: rgba(253,250,244,0.80); user-select: none; }
.fleet-radio input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.fleet-radio__box { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.fleet-radio input[type="radio"]:checked + .fleet-radio__box { border-color: var(--gold); background: var(--gold); box-shadow: inset 0 0 0 3px var(--dark-3); }
.fleet-radio:hover .fleet-radio__box { border-color: var(--gold); }
.fleet-form-submit { width: 100%; justify-content: center; margin-top: var(--sp-1); }
.fleet-form-success { display: none; text-align: center; padding: var(--sp-8) var(--sp-4); }
.fleet-form-success.visible { display: block; }
.fleet-form-success__icon { margin: 0 auto var(--sp-4); width: 64px; height: 64px; background: rgba(232,168,0,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fleet-form-success h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: #fff; margin-bottom: var(--sp-2); }
.fleet-form-success p { font-size: var(--text-sm); color: rgba(253,250,244,0.60); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════
   INSTAGRAM SECTION
   ══════════════════════════════════════════════════════════════ */
.ig-section { padding-bottom: var(--sp-16); }
.ig-header { text-align: center; margin-bottom: var(--sp-8); }
.ig-header .section-title { margin-bottom: var(--sp-2); }
.ig-header__sub { color: var(--text-muted); font-size: var(--text-base); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.ig-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; align-items: start; }
.ig-col { display: flex; flex-direction: column; gap: 12px; }
.ig-col--center { align-items: stretch; }
.ig-thumb { display: block; position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--cream-3); aspect-ratio: 1 / 1; text-decoration: none; }
.ig-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s var(--ease); }
.ig-thumb:hover img { transform: scale(1.05); }
.ig-thumb--tall { aspect-ratio: 1 / 1.85; flex: 1; }
.ig-thumb__overlay { position: absolute; inset: 0; background: rgba(20,18,10,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s var(--ease); }
.ig-thumb:hover .ig-thumb__overlay { opacity: 1; }
.ig-follow-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: var(--sp-3) var(--sp-4); background: var(--gold); color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); border-radius: var(--radius-sm); text-decoration: none; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease); white-space: nowrap; }
.ig-follow-btn:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
@media (max-width: 680px) { .ig-grid { grid-template-columns: 1fr 1fr; } .ig-col--center { grid-column: 1 / -1; flex-direction: row; gap: 12px; align-items: stretch; } .ig-follow-btn { flex: 0 0 auto; align-self: flex-start; } .ig-thumb--tall { flex: 1; aspect-ratio: 1 / 1; } }

/* ══════════════════════════════════════════════════════════════
   REVIEW BADGES
   ══════════════════════════════════════════════════════════════ */
.location-card__reviews { margin-top: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--cream-3); }
.location-card__reviews-label { display: block; font-size: var(--text-xs); font-weight: 700; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--sp-2); }
.location-card__review-links { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.review-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: var(--text-xs); font-weight: 700; text-decoration: none; border: 1.5px solid; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); white-space: nowrap; }
.review-badge:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,26,24,0.10); }
.review-badge--google { color: #3c4043; border-color: #dadce0; background: #fff; }
.review-badge--google:hover { background: #f8f9fa; }
.review-badge--yelp { color: #D32323; border-color: #f5c6c6; background: #fff8f8; }
.review-badge--yelp:hover { background: #fff0f0; }
.review-badge--carwise { color: #0066CC; border-color: #c2d9f0; background: #f0f7ff; }
.review-badge--carwise:hover { background: #e0efff; }

/* ══════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-8); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background: var(--cream); border: 1.5px solid var(--cream-3); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-warm); }
.blog-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.blog-card__tag { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold-dark); margin-bottom: var(--sp-2); }
.blog-card__title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: var(--sp-2); }
.blog-card__excerpt { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: var(--sp-4); }
.blog-card__cta { font-size: var(--text-sm); font-weight: 700; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--dur) var(--ease); }
.blog-card:hover .blog-card__cta { gap: 8px; }

.blog-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--sp-10); align-items: start; padding: var(--sp-10) 0 var(--sp-16); }
@media (max-width: 900px) { .blog-post-layout { grid-template-columns: 1fr; } .blog-sidebar { order: -1; } }
.blog-article { max-width: 720px; }
.blog-article__tag { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold-dark); margin-bottom: var(--sp-2); display: block; }
.blog-article__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: var(--sp-2); }
.blog-article__subtitle { font-size: var(--text-lg); color: var(--text-muted); line-height: 1.6; margin-bottom: var(--sp-5); font-style: italic; }
.blog-article__meta { display: flex; align-items: center; gap: var(--sp-4); font-size: var(--text-sm); color: var(--text-muted); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--cream-3); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.blog-article__meta-dot { color: var(--cream-3); }
.blog-article__hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: var(--sp-7); display: block; }
.blog-article__body h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--text); margin: var(--sp-7) 0 var(--sp-3); line-height: 1.3; }
.blog-article__body h2:first-child { margin-top: 0; }
.blog-article__body p { font-size: var(--text-base); line-height: 1.8; color: var(--text-muted); margin-bottom: var(--sp-4); }
.blog-article__body ul, .blog-article__body ol { margin: var(--sp-3) 0 var(--sp-4) var(--sp-5); }
.blog-article__body li { font-size: var(--text-base); line-height: 1.75; color: var(--text-muted); margin-bottom: var(--sp-1); }
.blog-article__body strong { color: var(--text); }
.blog-callout { background: rgba(232,168,0,0.07); border-left: 3px solid var(--gold-dark); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: var(--sp-4) var(--sp-5); margin: var(--sp-5) 0; }
.blog-callout p { margin: 0; font-size: var(--text-sm) !important; font-weight: 600; color: var(--text) !important; line-height: 1.65 !important; }
.blog-callout strong { color: var(--gold-dark) !important; }
.blog-author { display: flex; gap: var(--sp-4); align-items: flex-start; padding: var(--sp-5); background: var(--cream-2); border-radius: var(--radius); margin-top: var(--sp-8); }
.blog-author__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: var(--text-lg); }
.blog-author__name { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: var(--text-base); margin-bottom: 4px; }
.blog-author__bio { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; margin: 0; }
.blog-cta-box { background: var(--dark); border-radius: var(--radius); padding: var(--sp-6); text-align: center; margin-top: var(--sp-8); }
.blog-cta-box h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: #fff; margin-bottom: var(--sp-2); }
.blog-cta-box p { color: rgba(253,250,244,0.70); font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--sp-4); }
.blog-sidebar { position: sticky; top: calc(var(--nav-h, 72px) + var(--sp-4)); display: flex; flex-direction: column; gap: var(--sp-5); }
.blog-sidebar-box { background: var(--cream); border: 1.5px solid var(--cream-3); border-radius: var(--radius); padding: var(--sp-5); }
.blog-sidebar-box__title { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--sp-3); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--cream-3); }
.blog-sidebar-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.blog-sidebar-links a { font-size: var(--text-sm); color: var(--text-muted); text-decoration: none; line-height: 1.4; display: block; transition: color var(--dur) var(--ease); }
.blog-sidebar-links a:hover { color: var(--gold-dark); }
.blog-sidebar-links li.active a { color: var(--gold-dark); font-weight: 700; }
.blog-post-nav { display: flex; justify-content: space-between; gap: var(--sp-4); padding-top: var(--sp-6); border-top: 1px solid var(--cream-3); margin-top: var(--sp-6); flex-wrap: wrap; }
.blog-post-nav a { font-size: var(--text-sm); font-weight: 700; color: var(--gold-dark); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap var(--dur) var(--ease); }
.blog-post-nav a:hover { gap: 10px; }

/* ── MOBILE OVERRIDES (@max-width: 639px) ─────────────────────── */
@media (max-width: 639px) {

  /* Tighten global section padding */
  :root { --section-py: clamp(var(--sp-10), 6vw, var(--sp-16)); }

  /* More breathing room on the sides — container was only 16px on mobile */
  .container {
    padding-inline: clamp(var(--sp-5), 6vw, var(--sp-8));
  }

  /* Stats bar — center the lone 5th stat */
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar__grid .stat-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  /* Section headers — left-align on mobile for readability */
  .section__header--center {
    text-align: left;
    align-items: flex-start;
  }
  .section__header--center .section-sub {
    text-align: left;
  }

  /* Section title size — slightly smaller on small screens */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  /* Hero headline tighter on very small screens */
  .hero__headline {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  /* Reduce hero padding on mobile */
  .hero {
    padding-top: clamp(var(--sp-16), 10vw, var(--sp-24));
    padding-bottom: var(--sp-12);
  }

  /* Fear/objection cards — tighter */
  .fear-card {
    padding: var(--sp-4);
  }

  /* Process steps — tighter */
  .process-step {
    padding: var(--sp-4);
  }

  /* Service cards — tighter */
  .service-card {
    padding: var(--sp-4);
  }

  /* Footer — 2 columns on mobile instead of 1 */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8);
  }
  .footer__grid > *:first-child {
    grid-column: 1 / -1;
  }
  .footer {
    padding: var(--sp-10) 0 var(--sp-6);
  }

  /* Split section photo height on mobile */
  .split-section__photo {
    min-height: 240px;
  }

  /* Final CTA padding tighter */
  .final-cta {
    padding: var(--sp-12) 0;
  }

  /* Success section padding */
  .success-section {
    padding: 0 var(--sp-4);
  }

  /* Testimonial cards — already 1-col mobile, just reduce card padding */
  .testimonial-card {
    padding: var(--sp-4);
  }

  /* Gallery tighter gap */
  .gallery {
    gap: var(--sp-1);
  }
}
