/* ============================================================
   Broken Bimmers Auto Care: Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Blue */
  --blue-900: #0B2A54;
  --blue-800: #113870;
  --blue-700: #164D8F;
  --blue-600: #1E5FAD;
  --blue-500: #2B79CC;
  --blue-400: #4D94DC;
  --blue-300: #7AADDD;
  --blue-200: #AACCEE;
  --blue-100: #D4E6F7;
  --blue-50:  #EEF4FB;

  /* Neutrals */
  --gray-900: #18191E;
  --gray-800: #27292F;
  --gray-700: #3D4148;
  --gray-600: #4B5160;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #C4C8D0;
  --gray-200: #D8DCE3;
  --gray-100: #EEEEF0;
  --gray-50:  #F4F4F6;

  --white:     #FFFFFF;
  --off-white: #F7F6F4;

  /* Semantic */
  --fg-primary:   var(--gray-900);
  --fg-secondary: var(--gray-600);
  --fg-muted:     var(--gray-400);
  --fg-brand:     var(--blue-600);
  --bg-page:      var(--off-white);
  --bg-card:      var(--white);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.28);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Utility */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,246,244,0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.scrolled {
  background: rgba(247,246,244,0.97);
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}
.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.brand-link { display: block; user-select: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
}
.brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 1px;
}
.nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-menu { display: none; }
.nav a.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav a.nav-link:hover { color: var(--blue-600); }
.nav a.nav-link.active {
  font-weight: 600;
  color: var(--blue-600);
  background: var(--blue-50);
}
.nav .btn { margin-left: 8px; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  text-align: center;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
}
.btn-primary:hover { background: var(--blue-700); }
.btn-primary.btn-sm { padding: 9px 18px; font-size: 14px; font-weight: 600; }
.btn-primary.btn-md { padding: 12px 24px; font-size: 14px; }
.btn-on-blue {
  background: var(--white);
  color: var(--blue-600);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
}
.btn-on-blue:hover { background: var(--blue-50); }
.btn-ghost-dark {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-300);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
}
.btn-ghost-dark:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  background: var(--blue-600);
  padding: 80px 32px 72px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero .orb-1, .hero .orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero .orb-1 {
  width: 480px; height: 480px;
  background: rgba(255,255,255,0.04);
  top: -160px; right: -60px;
}
.hero .orb-2 {
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.03);
  bottom: -60px; left: 160px;
}
.hero .grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .meta-row {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero .meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero .meta-item .dot {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-block;
}
.hero .logo-tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.hero .logo-tile img {
  width: 82%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0.92;
}

/* Page hero (Services, Gallery) */
.page-hero {
  background: var(--blue-600);
  padding: 56px 32px 48px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero .orb {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -80px; right: 80px;
  pointer-events: none;
}
.page-hero .inner { max-width: 1100px; margin: 0 auto; position: relative; }
.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.page-hero p.lead {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 560px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 32px;
}
.trust-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 88px;
}
.trust-stat .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
  height: 28px;
  display: flex;
  align-items: center;
}
.trust-stat .label {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section.section {
  padding: 80px 32px;
}
section.section.tight { padding: 72px 32px; }
section.section.on-white { background: var(--white); }
section.section.on-page  { background: var(--bg-page); }
section.section.on-dark  { background: var(--gray-900); color: var(--white); }
section.section.on-blue  { background: var(--blue-600); color: var(--white); }
section.section > .container,
section.section > .inner { position: relative; }

.section-head { margin-bottom: 48px; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
  display: block;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.section-head h2.lg { font-size: 38px; }
.section-head p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 560px;
}
.section.on-dark .section-head h2,
.section.on-blue .section-head h2 { color: var(--white); }

/* Price tier toggle (Regular / Large) */
.price-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.price-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  gap: 2px;
}
.price-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.price-tier:hover { color: var(--blue-600); }
.price-tier.active {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(30,95,173,0.25);
}
.price-toggle-note {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 420px;
}
.price-toggle-note strong { color: var(--gray-700); font-weight: 600; }

.price-value-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  transition: color 0.15s ease;
}
.price-value {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.18s ease;
}
.price-value.swapping {
  transform: translateY(-4px);
  opacity: 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-card.dark { background: var(--gray-900); color: var(--white); }
.service-card .tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 8px;
}
.service-card.dark .tag { color: var(--blue-300); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card.dark h3 { color: var(--white); }
.service-card p.desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.service-card.dark p.desc { color: rgba(255,255,255,0.6); }
.service-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
  margin-bottom: 12px;
}
.service-card.dark .price-row { border-top-color: rgba(255,255,255,0.1); }
.service-card .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
}
.service-card.dark .price { color: var(--white); }
.service-card .price .note {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
}
.service-card.dark .price .note { color: rgba(255,255,255,0.4); }
.service-card .time {
  font-size: 12px;
  color: var(--gray-400);
}
.service-card .book-btn {
  background: var(--blue-600);
  color: var(--white);
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  transition: background 0.15s;
}
.service-card.dark .book-btn { background: var(--blue-500); }
.service-card .book-btn:hover { background: var(--blue-700); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.about-grid p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-grid p + p { margin-bottom: 28px; }
.photo-placeholder {
  background: var(--gray-100);
  border-radius: 12px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 13px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-card .stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--gray-900);
  line-height: 1.65;
  margin-bottom: 14px;
}
.review-card .author {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.review-card .car {
  font-size: 12px;
  color: var(--gray-400);
}

/* Reviews head row (heading + Google badge) */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.reviews-head .section-heading,
.section-heading {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.google-badge .g-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--gray-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.google-badge .g-icon svg { width: 18px; height: 18px; }
.google-badge .g-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.google-badge .g-line1 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.005em;
}
.google-badge .g-line2 {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.google-badge .g-stars {
  color: #F59E0B;
  letter-spacing: 1px;
  font-size: 11px;
}
.google-badge .g-arrow {
  font-size: 16px;
  color: var(--blue-600);
  font-weight: 700;
  transition: transform 0.15s ease;
  margin-left: 2px;
}
.google-badge:hover .g-arrow { transform: translate(2px, -2px); }

/* GBP Services list */
.services-list-wrap {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}
.services-list-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.services-list-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.services-list-head p {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 440px;
  line-height: 1.6;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.services-list li {
  flex: 0 0 calc((100% - 24px) / 4);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.services-list li:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.services-list .check {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cta p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.on-blue .cta h2 { color: var(--white); }
.on-blue .cta p { color: rgba(255,255,255,0.72); }
.on-blue .cta p strong { color: var(--white); }
.on-dark .cta h2 { color: var(--white); }
.on-dark .cta p { color: rgba(255,255,255,0.6); }
.on-dark .cta p strong { color: var(--white); }
.cta .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   "WHAT'S INCLUDED" + FAQ
   ============================================================ */
.two-col {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.two-col h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.check-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.check-item .badge {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
}
.check-item .title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 3px;
}
.check-item .desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Compact info callout (used for "what we need from you" notes) */
.info-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--blue-50);
  border-left: 3px solid var(--blue-600);
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 16px;
}
.info-note .icon {
  font-size: 14px;
  color: var(--blue-600);
  flex-shrink: 0;
  margin-top: 1px;
}
.info-note .body { font-size: 13px; color: var(--gray-700); line-height: 1.6; }
.info-note .body strong { color: var(--blue-700); font-weight: 700; }
.info-note.on-white { background: var(--blue-50); }

.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .icon {
  font-size: 18px;
  color: var(--gray-400);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  padding-bottom: 14px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--gray-600);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.filter-tab:hover { color: var(--blue-600); }
.filter-tab.active { background: var(--blue-600); color: var(--white); }

.gallery-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.gallery-section-label.muted { color: var(--gray-400); margin-top: 16px; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ba-grid + .gallery-section-wrap { margin-top: 32px; }

.ba-card {
  height: 230px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  perspective: 800px;
  -webkit-perspective: 800px;
}
.ba-card.tall { height: 300px; }
.ba-card.wide { height: 190px; }
.ba-card.flipped { cursor: default; }
.ba-card .face {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  will-change: transform;
}
.ba-card .face .sheen {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  pointer-events: none;
}
.ba-card .chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.55);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba-card .chip.after { background: rgba(30,95,173,0.85); color: var(--white); }
.ba-card .flip-cue {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.ba-card .flip-cue span {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.ba-card .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
}
.ba-card .caption .line1 {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}
.ba-card .caption .line2 {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba-card .more-info {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.ba-card.flipped .more-info { opacity: 1; pointer-events: auto; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}
.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.photo-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.photo-card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.photo-card .sheen {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.photo-card .cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}
.photo-card .cap .l1 {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.3;
}
.photo-card .cap .l2 {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-footnote {
  margin-top: 28px;
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
@keyframes modalPop {
  0%   { transform: scale(0.72); opacity: 0; }
  65%  { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}
@keyframes modalOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,25,30,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: modalOverlayIn 0.2s ease forwards;
}
.modal-box {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: modalPop 0.32s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.modal-box.wide { max-width: 580px; max-height: 90vh; overflow-y: auto; }
.modal-header {
  padding: 22px 28px 0;
  position: relative;
  z-index: 2;
  background: var(--white);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gray-100);
  border-radius: 6px;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-700); }
.progress {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
}
.progress .bar {
  height: 3px;
  flex: 1;
  border-radius: 999px;
  background: var(--gray-100);
  transition: background 0.3s;
}
.progress .bar.active { background: var(--blue-600); }

.step-container {
  position: relative;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.step-panel {
  padding: 0 28px 28px;
  transition: opacity 0.26s ease;
}
.step-panel.enter-start { opacity: 0; }
.step-panel.enter-end { opacity: 1; }
.step-panel.leave { opacity: 0; position: absolute; top: 0; left: 0; width: 100%; }

.modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.modal-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.modal-input-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 4px;
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.modal-input,
.modal-textarea {
  width: 100%;
  padding: 9px 12px;
  border-radius: 6px;
  border: 1.5px solid var(--gray-300);
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--gray-900);
  outline: none;
  background: var(--white);
  transition: border-color 0.15s;
}
.modal-input:focus,
.modal-textarea:focus { border-color: var(--blue-600); }
.modal-textarea { height: 70px; resize: vertical; }
.modal-primary {
  width: 100%;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 6px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
  transition: background 0.15s;
}
.modal-primary.disabled { background: var(--gray-400); cursor: default; }
.modal-primary:not(.disabled):hover { background: var(--blue-700); }
.modal-ghost {
  width: 100%;
  background: transparent;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  padding: 11px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.modal-ghost:hover { color: var(--gray-700); border-color: var(--gray-500); }

.service-option {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s;
  cursor: pointer;
}
.service-option:hover { border-color: var(--blue-300); }
.service-option.selected {
  border: 2px solid var(--blue-600);
  background: var(--blue-50);
  padding: 11px 13px;
}
.service-option .opt-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
.service-option.selected .opt-label { color: var(--blue-600); }
.service-option .opt-price {
  font-size: 13px;
  color: var(--gray-400);
}

.success-wrap { text-align: center; padding: 12px 0; }
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--blue-600);
}
.booking-summary {
  background: var(--blue-50);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 20px;
  text-align: left;
}
.booking-summary .head {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-summary .val {
  font-size: 14px;
  color: var(--gray-900);
  font-weight: 600;
}
.booking-summary .date {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 2px;
}
.success-copy {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Before/After detail modal */
.ba-modal-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.ba-modal-service {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ba-modal-car {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}
.ba-modal-body { padding: 20px 24px 28px; }
.ba-modal-body p.desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ba-modal-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ba-pair { margin-bottom: 16px; }
.ba-pair .caption {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  margin-bottom: 8px;
}
.ba-pair .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ba-pair .thumb {
  border-radius: 8px;
  height: 130px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.ba-pair .thumb .sheen {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.ba-pair .thumb .chip {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.5);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ba-pair .thumb .chip.after {
  background: rgba(30,95,173,0.85);
  color: var(--white);
}
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.tag-row .pill {
  background: var(--blue-50);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-600);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 56px 32px 32px;
}
.site-footer .inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-brand-copy {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 340px;
}
.footer-contact { font-size: 14px; margin-bottom: 6px; color: rgba(255,255,255,0.6); }
.footer-contact strong { color: var(--white); font-weight: 700; }
.footer-col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer-badge {
  background: var(--blue-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* ============================================================
   404
   ============================================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--bg-page);
}
.page-404 .code {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.page-404 p { color: var(--gray-600); margin-bottom: 28px; max-width: 420px; }

/* ============================================================
   FOCUS (accessibility)
   ============================================================ */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
.service-option:focus-visible,
.ba-card:focus-visible,
.filter-tab:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { padding: 64px 24px 56px; }
  .hero .grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 40px; }
  .hero p.lead { font-size: 16px; }
  .hero .logo-tile { height: 260px; }

  .page-hero { padding: 48px 24px 40px; }
  .page-hero h1 { font-size: 34px; }

  section.section, section.section.tight { padding: 64px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid h2 { font-size: 30px; }
  .photo-placeholder { height: 260px; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }

  .services-grid,
  .reviews-grid,
  .ba-grid,
  .gallery-masonry { grid-template-columns: 1fr 1fr; }

  .trust-bar .inner { gap: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section-head h2, .section-head h2.lg { font-size: 28px; }
  .cta h2 { font-size: 32px; }

  .reviews-head .section-heading, .section-heading { font-size: 28px; }
  .services-list li { flex-basis: calc((100% - 16px) / 3); }
}

@media (max-width: 640px) {
  .site-header .inner { padding: 0 20px; }
  .trust-bar { padding: 16px 20px; }
  .hero { padding: 48px 20px 44px; }
  .hero h1 { font-size: 32px; }
  .hero .cta-row .btn { flex: 1 1 auto; }

  .page-hero { padding: 40px 20px 32px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p.lead { font-size: 15px; }

  section.section, section.section.tight { padding: 56px 20px; }

  .services-grid,
  .reviews-grid,
  .ba-grid,
  .gallery-masonry { grid-template-columns: 1fr; }

  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 14px; font-size: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column-reverse; align-items: flex-start; }

  .nav-toggle { display: inline-flex; }
  .nav-desktop { display: none; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247,246,244,0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 20px 20px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a.nav-link {
    padding: 10px 14px;
    font-size: 15px;
  }
  .nav-menu .btn { align-self: stretch; margin: 6px 0 0; }

  .section-head h2, .section-head h2.lg { font-size: 26px; }
  .cta h2 { font-size: 28px; }
  .cta p { font-size: 15px; }

  .reviews-head { gap: 16px; margin-bottom: 28px; }
  .reviews-head .section-heading, .section-heading { font-size: 24px; }
  .google-badge { padding: 10px 14px 10px 12px; gap: 10px; }
  .google-badge .g-icon { width: 28px; height: 28px; }
  .google-badge .g-icon svg { width: 16px; height: 16px; }
  .google-badge .g-line1 { font-size: 13px; }
  .google-badge .g-line2 { font-size: 11px; }

  .services-list { gap: 6px; }
  .services-list li { flex-basis: calc((100% - 6px) / 2); padding: 10px 12px; font-size: 13px; }
  .services-list-head h3 { font-size: 20px; }
  .services-list-wrap { margin-top: 40px; padding-top: 32px; }

  .price-toggle-wrap { gap: 12px; margin-bottom: 20px; }
  .price-tier { padding: 7px 14px; font-size: 12px; }
  .price-toggle-note { font-size: 12px; }

  .modal-box { max-width: 100%; }
  .modal-header { padding: 20px 20px 0; }
  .step-panel { padding: 0 20px 24px; }

  .two-col h2 { font-size: 26px; }
  .about-grid h2 { font-size: 26px; }

  .trust-bar .inner { gap: 20px; }
  .trust-stat { min-width: 72px; }
  .trust-stat .value { font-size: 18px; }
  .trust-stat .label { font-size: 11px; }

  .hero .meta-row { gap: 12px; }

  .page-404 .code { font-size: 72px; }
}
