:root {
  --primary: #c8102e;
  --primary-dark: #8b0e21;
  --dark: #1a1a1a;
  --black: #0a0a0a;
  --bg: #faf8f4;
  --light: #f4ede0;
  --gold: #d4a017;
  --shadow: 0 4px 22px rgba(26,26,26,0.10);
  --shadow-lg: 0 14px 42px rgba(26,26,26,0.16);
  --shadow-xl: 0 28px 70px rgba(10,10,10,0.22);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2a2a2a; line-height: 1.7; overflow-x: hidden; background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
  .hero-bg video { display: none; }
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary); color: white; padding: 12px 18px;
  text-decoration: none; font-weight: 700; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

h1, h2, h3, h4, h5, .display { font-family: 'Oswald', 'Inter', sans-serif; letter-spacing: 0.01em; }
a { color: inherit; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(20,20,20, 0.94); backdrop-filter: blur(14px);
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.nav-logo {
  color: white; font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.4rem; text-decoration: none; letter-spacing: 0.06em;
}
.nav-logo .dot { color: var(--primary); }
.nav-menu { display: flex; gap: 32px; list-style: none; }
.nav-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500;
  font-size: 0.92rem; transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-menu a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.nav-phone:hover { color: white; }
.nav-cta {
  background: var(--primary); color: white; text-decoration: none;
  padding: 11px 24px; border-radius: 4px; font-weight: 600; font-size: 0.88rem;
  transition: all 0.3s; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(200,16,46,0.45); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; cursor: pointer;
  background: transparent; padding: 0; position: relative;
}
.nav-toggle:focus { outline: none; }
.nav-toggle .bar {
  position: absolute; left: 50%; top: 50%; margin-left: -13px;
  width: 26px; height: 3px; background-color: #ffffff; border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav-toggle .bar:nth-child(1) { transform: translateY(-9px); }
.nav-toggle .bar:nth-child(2) { transform: translateY(-1px); }
.nav-toggle .bar:nth-child(3) { transform: translateY(7px); }
body.menu-open .nav-toggle .bar:nth-child(1) { transform: translateY(-1px) rotate(45deg); }
body.menu-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle .bar:nth-child(3) { transform: translateY(-1px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(26,26,26,0.98);
  backdrop-filter: blur(16px); padding: 96px 32px 32px;
  transform: translateX(100%); transition: transform 0.35s ease;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  color: white; text-decoration: none; font-family: 'Oswald', sans-serif;
  font-size: 1.6rem; padding: 18px 4px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding 0.2s;
}
.mobile-menu a:hover, .mobile-menu a:focus { color: var(--primary); padding-left: 14px; }
.mobile-menu .mm-cta {
  margin-top: 24px; background: var(--primary); color: white;
  padding: 18px; text-align: center; border-radius: 6px; border: 0;
  font-size: 1rem;
}
.mobile-menu .mm-cta:hover { background: var(--primary-dark); padding-left: 18px; }
.mobile-menu .mm-phone {
  color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; letter-spacing: 0; text-transform: none;
  border: 0; padding: 16px 4px 8px; font-weight: 500;
}

.mobile-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: none; align-items: center; gap: 10px;
  background: var(--primary); color: white; text-decoration: none;
  padding: 14px 22px; border-radius: 50px; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(200,16,46,0.55), 0 0 0 4px rgba(200,16,46,0.18);
  transition: all 0.3s; padding-bottom: calc(14px + env(safe-area-inset-bottom));
}
.mobile-fab:hover, .mobile-fab:focus { background: var(--primary-dark); transform: translateY(-2px); }
.mobile-fab .ring {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem;
}

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: white; overflow: hidden; padding: 120px 32px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background:
    url("hero-bg.jpg") center/cover no-repeat,
    linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
}
.hero-bg video, .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.45) 0%, rgba(50,50,50,0.28) 50%, rgba(26,26,26,0.55) 100%),
    radial-gradient(circle at 25% 50%, rgba(200,16,46,0.18) 0%, transparent 55%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.45;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='1' cy='1' r='1' fill='%23ffffff' opacity='0.16'/></svg>");
}
.hero-content { position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,16,46,0.18); color: #f7e7ad;
  padding: 9px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 28px; border: 1px solid rgba(200,16,46,0.4);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-badge .star { color: var(--gold); }
.hero h1 {
  font-size: 4.4rem; line-height: 1.02; margin-bottom: 24px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em;
}
.hero h1 .accent { color: var(--primary); }
.hero p.lead {
  font-size: 1.15rem; opacity: 0.85; margin-bottom: 38px;
  max-width: 560px; line-height: 1.65; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 4px; font-size: 0.92rem; font-weight: 700;
  text-decoration: none; transition: all 0.3s;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 0; cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 8px 22px rgba(200,16,46,0.4); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(200,16,46,0.5); }
.btn-outline { border: 2px solid rgba(255,255,255,0.4); color: white; background: transparent; }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--black); transform: translateY(-2px); }

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 24px 20px; backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.hero-stat:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.hero-stat .num {
  font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700;
  color: white; line-height: 1; margin-bottom: 6px;
}
.hero-stat .num .accent { color: var(--primary); }
.hero-stat .label {
  font-size: 0.78rem; color: rgba(255,255,255,0.72);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}

/* ---- Inner-page hero (compact) ---- */
.page-hero {
  position: relative; color: white; overflow: hidden;
  padding: 180px 32px 90px; text-align: center;
}
.page-hero .hero-bg {
  background:
    url("hero-bg.jpg") center/cover no-repeat,
    linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
}
.page-hero-content { position: relative; z-index: 3; max-width: 880px; margin: 0 auto; }
.page-hero h1 {
  font-size: 3.4rem; line-height: 1.05; margin-bottom: 18px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em;
}
.page-hero h1 .accent { color: var(--primary); }
.page-hero p.lead {
  font-size: 1.1rem; opacity: 0.88; margin: 0 auto;
  max-width: 640px; line-height: 1.65; font-weight: 400;
}
.page-hero .crumbs {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: #f7e7ad; margin-bottom: 18px;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-hero .crumbs a:hover { color: white; }
.page-hero .crumbs .sep { opacity: 0.5; }

.section { padding: 70px 32px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; color: var(--primary); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
.section-eyebrow.light { color: #f0d97b; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: 3rem; color: var(--dark); margin-bottom: 18px; line-height: 1.05;
  text-transform: uppercase; font-weight: 700;
}
.section-header h2 .accent { color: var(--primary); }
.section-header p { color: #555; font-size: 1.05rem; max-width: 660px; margin: 0 auto; }

.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image::after {
  content: ''; position: absolute; bottom: -28px; left: -28px;
  width: 120px; height: 120px; background: var(--primary);
  border-radius: 8px; z-index: -1;
}
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content h2 {
  font-size: 2.6rem; color: var(--dark); margin-bottom: 22px;
  text-transform: uppercase; line-height: 1.05; font-weight: 700;
}
.about-content > p {
  color: #555; font-size: 1.02rem; margin-bottom: 18px; line-height: 1.75;
}
.about-points {
  list-style: none; margin: 24px 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.about-points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--dark); font-weight: 500;
}
.about-points .check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--primary);
  color: white; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; flex-shrink: 0;
}

.services { background: var(--light); position: relative; }
.services::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='1' cy='1' r='1' fill='%23000000' opacity='0.06'/></svg>");
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.service-card {
  background: white; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.4s;
  border: 1px solid #f0f0f0; position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--dark);
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,26,26,0.55) 100%);
}
.service-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--primary); color: white;
  padding: 6px 14px; border-radius: 4px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.service-body { padding: 30px 28px 32px; }
.service-body h3 {
  font-size: 1.35rem; color: var(--dark); margin-bottom: 12px;
  text-transform: uppercase; font-weight: 700; line-height: 1.2;
}
.service-body p { color: #666; font-size: 0.95rem; margin-bottom: 18px; line-height: 1.65; }
.service-link {
  color: var(--primary); font-weight: 700; text-decoration: none; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; }

.partners {
  background: white; padding: 60px 32px; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.partners-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.partners-label {
  font-size: 0.78rem; color: #888; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  flex-shrink: 0; margin-right: 12px;
}
.partners-row { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; flex: 1; justify-content: space-around; }
.partners-row img { height: 38px; opacity: 0.55; transition: opacity 0.3s; filter: grayscale(1); }
.partners-row img:hover { opacity: 1; filter: grayscale(0); }

.testimonials { background: var(--dark); color: white; position: relative; overflow: hidden; }
.testimonials::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,16,46,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.testimonials .section-header h2 { color: white; }
.testimonials .section-header p { color: rgba(255,255,255,0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.testimonial {
  position: relative; border-radius: 10px; overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; color: white; box-shadow: var(--shadow-xl);
}
.testimonial-bg { position: absolute; inset: 0; z-index: 0; }
.testimonial-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.92) 80%);
}
.testimonial-content { position: relative; z-index: 1; }
.testimonial-quote {
  font-family: 'Oswald', sans-serif; font-size: 4rem; line-height: 0.6;
  color: var(--primary); margin-bottom: 8px;
}
.testimonial-text {
  font-size: 1rem; line-height: 1.65; margin-bottom: 18px;
  font-style: italic; color: rgba(255,255,255,0.92);
}
.testimonial-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 12px; }
.testimonial-author { font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.testimonial-author small { display: block; font-weight: 400; font-size: 0.82rem; opacity: 0.7; text-transform: none; letter-spacing: 0; margin-top: 2px; }

.cta-band {
  background: var(--primary); color: white; padding: 80px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M0 40 L40 0 M40 80 L80 40' stroke='%23ffffff' stroke-width='1' opacity='0.06'/></svg>");
}
.cta-band-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta-band h2 {
  font-size: 2.6rem; margin-bottom: 14px; text-transform: uppercase;
  line-height: 1.1; font-weight: 700;
}
.cta-band p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 34px; }
.cta-band .btn-dark { background: var(--black); border: 2px solid var(--black); }
.cta-band .btn-dark:hover { background: white; color: var(--black); border-color: white; }

.locations { background: white; }
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.location-card {
  background: white; border: 1px solid #eaeaea; border-radius: 10px;
  overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.location-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.location-image { aspect-ratio: 16/8; overflow: hidden; }
.location-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.location-body { padding: 22px 22px 24px; }
.location-body h3 {
  font-size: 1.25rem; color: var(--dark); margin-bottom: 14px;
  text-transform: uppercase; font-weight: 700;
}
.location-body h3 .pin { color: var(--primary); margin-right: 8px; }
.location-info { list-style: none; margin-bottom: 18px; }
.location-info li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem;
  color: #444; padding: 8px 0; border-bottom: 1px solid #f3f3f3;
  line-height: 1.45;
}
.location-info li:last-child { border-bottom: 0; }
.location-info .ico {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(200,16,46,0.1);
  color: var(--primary); display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.location-info a { color: #444; text-decoration: none; transition: color 0.2s; }
.location-info a:hover { color: var(--primary); }
.location-actions { display: flex; flex-direction: column; gap: 8px; }
.location-actions .btn { padding: 11px 14px; font-size: 0.78rem; letter-spacing: 0.06em; justify-content: center; }

/* ---- Affiliates ---- */
.affiliates { background: white; }
.affiliates-title {
  display: flex; align-items: center; gap: 36px;
  max-width: 720px; margin: 0 auto 56px;
}
.affiliates-title .line { flex: 1; height: 1px; background: #d6d6d6; }
.affiliates-title h2 {
  font-family: 'Oswald', sans-serif; font-size: 1.35rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark);
  font-weight: 700; white-space: nowrap; margin: 0;
}
.affiliates-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px;
  align-items: center; justify-items: center;
}
.affiliates-row a, .affiliates-row .logo-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 110px;
}
.affiliates-row img {
  max-height: 110px; max-width: 100%; width: auto; height: auto;
  object-fit: contain; transition: transform 0.3s, filter 0.3s;
}
.affiliates-row a:hover img { transform: scale(1.04); }
@media (max-width: 1080px) {
  .affiliates-row { gap: 30px; }
  .affiliates-row img, .affiliates-row a, .affiliates-row .logo-wrap { max-height: 90px; min-height: 90px; }
}
@media (max-width: 640px) {
  .affiliates-row { grid-template-columns: 1fr; gap: 32px; }
  .affiliates-title { gap: 16px; margin-bottom: 32px; }
  .affiliates-title h2 { font-size: 1rem; letter-spacing: 0.18em; }
}

/* ---- Video testimonials ---- */
.video-testimonials { background: var(--light); position: relative; }
.video-testimonials::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='1' cy='1' r='1' fill='%23000000' opacity='0.06'/></svg>");
}
.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative;
}
.video-card {
  background: white; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.4s;
  border: 1px solid #f0f0f0;
  display: flex; flex-direction: column;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.video-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--dark); cursor: pointer; display: block;
  border: 0; width: 100%; padding: 0;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s, filter 0.3s;
}
.video-thumb::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.video-card:hover .video-thumb img { transform: scale(1.04); filter: brightness(0.92); }
.video-thumb .play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video-thumb .play-btn {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(200,16,46,0.95); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem; transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding-left: 6px;
}
.video-thumb:hover .play-btn,
.video-thumb:focus-visible .play-btn { background: var(--primary); transform: scale(1.08); }
.video-card.playing .video-thumb { display: none; }
.video-card iframe {
  width: 100%; aspect-ratio: 16/9; border: 0; display: block;
}
.video-caption {
  padding: 22px 26px 24px; display: flex; flex-direction: column; gap: 6px;
}
.video-caption .name {
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--dark);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.video-caption .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.video-caption .tagline { color: #666; font-size: 0.9rem; line-height: 1.55; }

/* ---- Recent Repairs page ---- */
.repairs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
}
.repair-card {
  background: white; border: 1px solid #eaeaea; border-radius: 10px;
  box-shadow: var(--shadow); padding: 28px 30px 26px;
  transition: all 0.3s; display: flex; flex-direction: column; gap: 16px;
}
.repair-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.repair-card-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  border-bottom: 1px solid #f3f3f3; padding-bottom: 14px;
}
.repair-vehicle {
  font-family: 'Oswald', sans-serif; font-size: 1.35rem; color: var(--dark);
  font-weight: 700; text-transform: uppercase; line-height: 1.15;
}
.repair-vehicle small { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.78rem; color: #777; text-transform: none; letter-spacing: 0; margin-top: 4px; }
.repair-date {
  background: rgba(200,16,46,0.08); color: var(--primary);
  padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0;
}
.repair-services-label {
  font-size: 0.72rem; color: #888; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 6px;
}
.repair-services {
  color: #444; font-size: 0.95rem; line-height: 1.6;
}
.repair-review {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--light); padding: 12px 16px; border-radius: 6px;
}
.repair-review .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }
.repair-review .reviewer { font-size: 0.85rem; color: var(--dark); font-weight: 600; }

/* ---- Appointment / form page ---- */
.appt-layout {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px;
}
.appt-form {
  background: white; border: 1px solid #eaeaea; border-radius: 10px;
  box-shadow: var(--shadow); padding: 44px 44px 40px;
}
.appt-form h3 {
  font-size: 1.5rem; color: var(--dark); text-transform: uppercase;
  margin-bottom: 8px; font-weight: 700;
}
.appt-form .form-sub {
  color: #666; font-size: 0.96rem; margin-bottom: 28px;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem; color: var(--dark); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.form-field label .req { color: var(--primary); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit; font-size: 0.96rem; color: var(--dark);
  background: var(--bg); border: 1px solid #e3e3e3; border-radius: 6px;
  padding: 12px 14px; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.form-actions {
  margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap;
}
.form-actions .btn { padding: 14px 28px; }
.honeypot { display: none !important; }

.appt-side {
  display: flex; flex-direction: column; gap: 18px;
}
.appt-side-card {
  background: white; border: 1px solid #eaeaea; border-radius: 10px;
  box-shadow: var(--shadow); padding: 24px 26px;
}
.appt-side-card h4 {
  font-size: 1.05rem; color: var(--dark); text-transform: uppercase;
  margin-bottom: 6px; font-weight: 700; letter-spacing: 0.05em;
}
.appt-side-card .addr {
  color: #666; font-size: 0.9rem; line-height: 1.55; margin-bottom: 12px;
}
.appt-side-card .phone {
  color: var(--primary); font-weight: 700; text-decoration: none;
  font-size: 1.05rem; display: inline-flex; align-items: center; gap: 8px;
}
.appt-side-card .phone:hover { color: var(--primary-dark); }

/* ---- Specials page ---- */
.specials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.special-card {
  background: white; border: 1px solid #eaeaea; border-radius: 12px;
  box-shadow: var(--shadow); padding: 0; overflow: hidden;
  display: flex; flex-direction: column; transition: all 0.3s;
  position: relative;
}
.special-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.special-card .ribbon {
  background: var(--primary); color: white;
  padding: 10px 18px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; display: inline-block;
  align-self: flex-start; border-radius: 0 0 6px 0;
}
.special-body { padding: 22px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.special-body h3 {
  font-size: 1.45rem; color: var(--dark); text-transform: uppercase;
  font-weight: 700; line-height: 1.15; margin-bottom: 10px;
}
.special-amount {
  font-family: 'Oswald', sans-serif; font-size: 2.6rem; color: var(--primary);
  font-weight: 700; line-height: 1; margin-bottom: 14px;
}
.special-amount small { font-size: 1rem; color: #777; font-weight: 500; margin-left: 6px; }
.special-body p { color: #666; font-size: 0.95rem; margin-bottom: 18px; line-height: 1.6; }
.special-fine {
  font-size: 0.78rem; color: #999; line-height: 1.55;
  border-top: 1px dashed #e5e5e5; padding-top: 14px; margin-top: auto;
}
.specials-note {
  background: white; border-left: 4px solid var(--primary);
  padding: 22px 26px; border-radius: 6px; box-shadow: var(--shadow);
  margin-bottom: 50px; color: #444; font-size: 0.98rem; line-height: 1.65;
}
.specials-note strong { color: var(--dark); }

/* ---- Legal / policy pages ---- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.5rem; color: var(--dark); margin: 36px 0 14px;
  text-transform: uppercase; font-weight: 700; letter-spacing: 0.02em;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li {
  color: #444; font-size: 1rem; line-height: 1.72; margin-bottom: 12px;
}
.legal-content ol, .legal-content ul { padding-left: 22px; margin-bottom: 18px; }
.legal-content ol li, .legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content a:hover { color: var(--primary-dark); }
.legal-content .agent-block {
  background: var(--light); padding: 22px 26px; border-radius: 8px;
  border-left: 4px solid var(--primary); margin: 20px 0 28px;
  font-size: 0.98rem; line-height: 1.55;
}
.legal-content .agent-block strong {
  display: block; color: var(--dark); font-weight: 700; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.86rem;
}
.legal-content .agent-block p { margin-bottom: 4px; }
.legal-content .updated {
  color: #888; font-size: 0.88rem; margin-top: 36px;
  font-style: italic; border-top: 1px solid #eaeaea; padding-top: 18px;
}

/* ---- Vehicles served page ---- */
.vehicles-intro {
  text-align: center; max-width: 720px; margin: 0 auto 60px;
  color: #555; font-size: 1.02rem; line-height: 1.7;
}
.vehicle-groups {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
}
.vehicle-group {
  background: white; border: 1px solid #eaeaea; border-radius: 10px;
  box-shadow: var(--shadow); padding: 32px 32px 28px;
}
.vehicle-group h3 {
  font-size: 1.25rem; color: var(--dark); text-transform: uppercase;
  font-weight: 700; margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--primary); display: inline-block;
}
.vehicle-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.vehicle-list li {
  font-size: 0.94rem; color: #444; padding: 6px 0;
  display: flex; align-items: center; gap: 8px;
}
.vehicle-list li::before {
  content: ''; width: 5px; height: 5px; background: var(--primary);
  border-radius: 50%; flex-shrink: 0;
}

.footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 80px 32px 30px; position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 50%, var(--primary) 100%);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col .footer-logo {
  font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700;
  color: white; letter-spacing: 0.06em; margin-bottom: 18px; display: block;
}
.footer-col .footer-logo .dot { color: var(--primary); }
.footer-col p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 22px; max-width: 380px; }
.social-row { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s; font-size: 0.95rem;
}
.social-icon:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Oswald', sans-serif; font-size: 1rem; color: white;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1200px; margin: 30px auto 0; padding-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

@media (max-width: 1080px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-actions { gap: 8px; }
  .nav-cta { padding: 9px 18px; font-size: 0.82rem; }
  .nav-inner { padding: 0 20px; gap: 12px; }
  .hero h1 { font-size: 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .testimonials-grid, .footer-grid, .video-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { gap: 30px; }
  .section-header h2, .about-content h2, .cta-band h2 { font-size: 2.1rem; }
  .section { padding: 56px 24px; }
  .partners-inner { justify-content: center; }
  .about-points { grid-template-columns: 1fr; }
  .mobile-fab { display: inline-flex; }
  .hero-bg video { display: none; }
  .page-hero { padding: 140px 24px 70px; }
  .page-hero h1 { font-size: 2.4rem; }
  .repairs-grid { grid-template-columns: 1fr; }
  .appt-layout { grid-template-columns: 1fr; gap: 36px; }
  .appt-form { padding: 32px 28px; }
  .specials-grid { grid-template-columns: 1fr; }
  .vehicle-groups { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 12px 0; }
  .nav-cta { padding: 9px 14px; font-size: 0.78rem; }
  .hero { padding: 100px 20px 70px; min-height: auto; }
  .hero h1 { font-size: 2.3rem; line-height: 1.05; }
  .hero p.lead { font-size: 1rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.72rem; padding: 7px 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; padding: 14px 20px; font-size: 0.85rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stat { padding: 18px 14px; }
  .hero-stat .num { font-size: 1.9rem; }
  .hero-stat .label { font-size: 0.7rem; }
  .section { padding: 48px 20px; }
  .section-header { margin-bottom: 32px; }
  .section-header h2, .about-content h2 { font-size: 1.85rem; }
  .cta-band { padding: 60px 20px; }
  .cta-band h2 { font-size: 1.85rem; }
  .cta-band p { font-size: 0.95rem; }
  .about-grid { gap: 36px; }
  .about-image::after { width: 70px; height: 70px; bottom: -16px; left: -16px; }
  .service-body { padding: 24px 22px 26px; }
  .service-body h3 { font-size: 1.2rem; }
  .testimonial { padding: 26px; min-height: 320px; }
  .testimonial-text { font-size: 0.94rem; }
  .partners { padding: 40px 20px; }
  .partners-row { gap: 22px; }
  .partners-row img { height: 30px; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-body { padding: 22px 22px 24px; }
  .location-body h3 { font-size: 1.35rem; }
  .location-actions .btn { width: 100%; }
  .footer { padding: 60px 22px 90px; }
  .footer-grid { gap: 32px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding-bottom: 18px; font-size: 0.78rem; }
  .page-hero { padding: 120px 20px 60px; }
  .page-hero h1 { font-size: 1.9rem; }
  .page-hero p.lead { font-size: 0.95rem; }
  .appt-form { padding: 26px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .repair-card { padding: 22px 22px 20px; }
  .repair-card-head { flex-direction: column; align-items: flex-start; }
  .vehicle-group { padding: 26px 24px 24px; }
  .vehicle-list { grid-template-columns: 1fr; }
}
@media (hover: none) {
  .service-card:hover, .feature-card:hover, .location-card:hover, .testimonial:hover,
  .repair-card:hover, .special-card:hover, .video-card:hover {
    transform: none;
  }
  .service-card:hover .service-img img, .gallery-item:hover img { transform: none; }
}
