/* ============================================
   MGC Towing Service – Main Styles (Clean)
   Brand: Black, White, Orange
   ============================================ */

:root {
  --color-black: #0d0d0d;
  --color-black-soft: #1a1a1a;
  --color-white: #ffffff;
  --color-orange: #e67e22;
  --color-orange-hover: #d35400;
  --color-orange-light: rgba(230, 126, 34, 0.15);
  --color-gray-100: #f5f5f5;
  --color-gray-300: #ddd;
  --color-gray-600: #666;
  --color-gray-800: #333;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-orange); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 2px; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: var(--shadow);
  overflow: visible;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-height) + 12px);
  overflow: visible;
}
.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}
.header-brand-name {
  display: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle:hover, .nav-toggle:focus-visible { background: var(--color-black-soft); }
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

.main-nav { display: block; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-list li { display: flex; align-items: center; }
.nav-list a {
  color: var(--color-white);
  font-weight: 600;
  padding: 0.35rem 0;
}
.nav-list a:hover { text-decoration: none; opacity: 0.9; }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem !important;
  background: var(--color-orange);
  color: var(--color-white) !important;
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { opacity: 1; background: var(--color-orange-hover); box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4); }
.nav-cta:focus-visible { outline: 2px solid var(--color-white); outline-offset: 2px; }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media.hero-video-failed .hero-video { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--header-height) 1.5rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}
.hero-headline {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.hero-subheadline {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--color-white); outline-offset: 2px; }
.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.4);
}
.btn-primary:hover { background: var(--color-orange-hover); box-shadow: 0 6px 20px rgba(230, 126, 34, 0.45); }
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover { border-color: var(--color-white); background: rgba(255, 255, 255, 0.08); }
.btn-block { width: 100%; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.trust-stars { color: #f1c40f; }
.trust-icon { display: flex; color: var(--color-orange); }

/* ----- Sections ----- */
.section { padding: 4rem 0; }
.section:nth-of-type(even) { background: var(--color-gray-100); }
.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
}
.section-subtitle {
  margin: 0 0 2rem;
  text-align: center;
  color: var(--color-gray-600);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Services (v2: accent border + icon block) ----- */
.services {
  background: var(--color-white);
}
.services .section-title {
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.services .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-orange);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}
.services .section-subtitle {
  color: var(--color-gray-600);
}

/* ----- Services / Reviews slider ----- */
.services-slider-wrap, .reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.services-track, .reviews-track {
  flex: 1;
  overflow: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar, .reviews-track::-webkit-scrollbar { display: none; }
.service-card, .review-card { scroll-snap-align: start; scroll-snap-stop: always; }

.service-card {
  background: var(--color-white);
  padding: 1.75rem 1.5rem;
  border-radius: 0 10px 10px 0;
  border: 1px solid var(--color-gray-300);
  border-left: 4px solid var(--color-orange);
  text-align: left;
  transition: border-left-color var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: none;
}
.service-card:hover {
  border-left-color: var(--color-orange-hover);
  border-color: rgba(230, 126, 34, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: rgba(230, 126, 34, 0.12);
  color: var(--color-orange);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

.slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-gray-800);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.slider-btn:hover { border-color: var(--color-orange); background: var(--color-orange-light); color: var(--color-orange); }
.slider-btn:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 2px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-gray-300);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.slider-dots button:hover { background: var(--color-gray-600); }
.slider-dots button[aria-selected="true"] { background: var(--color-orange); transform: scale(1.2); }

/* ----- About ----- */
.about { background: var(--color-white); }
.about-header { text-align: center; margin-bottom: 2.5rem; }
.about-header .section-subtitle { max-width: 520px; margin-left: auto; margin-right: auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.about-intro { padding-top: 0.25rem; }
.about-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.about-intro p { margin: 0 0 1rem; }
.about-intro p:last-of-type { margin-bottom: 1.5rem; }
.about-cta { margin-top: 0.5rem; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-orange-light);
  color: var(--color-orange);
  margin-bottom: 0.85rem;
}
.about-card-icon svg { flex-shrink: 0; }
.about-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-black);
}
.about-card-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-gray-600);
}

/* ----- Reviews / Testimonials (fit one screen + mobile) ----- */
.reviews {
  background: var(--color-white);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.reviews .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews-header { text-align: center; margin-bottom: 1.25rem; flex-shrink: 0; }
.reviews-header .section-title { margin-bottom: 0.35rem; }
.reviews-header .section-subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--color-orange-light);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gray-800);
}
.reviews-badge-stars { color: #e6a800; font-size: 1rem; letter-spacing: 0.05em; }
.reviews-badge-text { color: var(--color-black); }

.reviews-slider-wrap { flex: 1 1 auto; min-height: 0; margin-bottom: 0.5rem; }
.reviews-track { align-items: stretch; }
.reviews .slider-dots { margin-top: 0.75rem; flex-shrink: 0; }

.review-card {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  min-height: 0;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.review-stars {
  color: #e6a800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}
.review-text {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-gray-800);
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.review-text::before { content: '"'; }
.review-text::after { content: '"'; }
.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-gray-100);
  flex-shrink: 0;
}
.review-cite {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black);
  font-style: normal;
}
.review-context {
  font-size: 0.8rem;
  color: var(--color-gray-600);
}

/* ----- Contact ----- */
.contact {
  background: #faf9f8;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.contact::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 40% 40%, rgba(230, 126, 34, 0.06), transparent 55%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(230, 126, 34, 0.5) 0%, rgba(230, 126, 34, 0) 65%);
  pointer-events: none;
}

.contact-container { max-width: 900px; margin: 0 auto; position: relative; text-align: center; }
.contact .section-title {
  letter-spacing: -0.02em;
  font-weight: 700;
}
.contact .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: rgba(230, 126, 34, 0.6);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}
.contact-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.contact-subtitle { margin-bottom: 2.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  text-align: left;
}
.contact-card {
  background: var(--color-white);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover {
  border-color: rgba(0, 0, 0, 0.09);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.contact-card-icon {
  display: inline-flex;
  margin-bottom: 0.25rem;
}
.contact-card-icon-muted { color: #8a8f8c; }
.contact-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-black);
  letter-spacing: -0.01em;
}
.contact-card-phone {
  background: var(--color-black-soft);
  color: var(--color-white);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.contact-card-phone .contact-card-title { color: rgba(255, 255, 255, 0.98); }
.contact-card-phone-number {
  margin: 0.25rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.contact-card-phone-number a {
  color: var(--color-white);
  text-decoration: none;
}
.contact-card-phone-number a:hover { text-decoration: none; opacity: 0.92; }
.contact-card-btn {
  display: inline-block;
  margin-top: auto;
  padding: 0.7rem 1.2rem;
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.2);
  transition: background var(--transition), box-shadow var(--transition);
}
.contact-card-btn:hover { text-decoration: none; background: var(--color-orange-hover); box-shadow: 0 6px 18px rgba(230, 126, 34, 0.28); }
.contact-card-btn:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 2px; }

.contact-card-showroom {
  background: var(--color-white);
}
.contact-card-address {
  margin: 0;
  color: var(--color-gray-800);
  line-height: 1.55;
  font-size: 0.9375rem;
}
.contact-card-address a {
  color: var(--color-gray-800);
  text-decoration: none;
}
.contact-card-address a:hover { text-decoration: underline; color: var(--color-black); }
.contact-card-hours-label {
  margin: 1rem 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-600);
}
.contact-card-hours { margin: 0; color: var(--color-gray-800); font-size: 0.9375rem; }

/* ----- Footer (Multi-column + copyright bar) ----- */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 2.75rem 0 0;
}
.footer-top { padding-bottom: 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-col { min-width: 0; }
.footer-brand { max-width: 380px; }
.footer-logo { display: inline-flex; align-items: center; }
.footer-logo img { border-radius: 50%; width: 72px; height: 72px; object-fit: contain; }
.footer-tagline {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}
.footer-heading {
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
.footer-links a:hover { color: var(--color-white); text-decoration: none; }
.footer-links a:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 3px; }
.footer-phone { margin: 0 0 0.5rem; }
.footer-phone a { color: rgba(255, 255, 255, 0.92); }
.footer-phone a:hover { color: var(--color-white); text-decoration: none; }
.footer-address {
  margin: 0;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
}
.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================
   Mobile: stack, one card visible, slider
   ============================================ */
@media (max-width: 768px) {
  .header-inner { padding: 0.75rem 1rem; min-height: var(--header-height); }
  .logo-img { width: 48px; height: 48px; }
  .header-brand-name { display: block; font-size: 0.95rem; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
  .main-nav { display: none; }
  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-black);
    padding: 1rem;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .main-nav.is-open .nav-list { flex-direction: column; align-items: stretch; }
  .main-nav.is-open .nav-list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .main-nav.is-open .nav-list a { display: block; padding: 0.875rem 0.75rem; min-height: 44px; box-sizing: border-box; }
  .main-nav.is-open .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; padding: 0.875rem 1rem !important; }

  .hero-content { padding: calc(var(--header-height) + 1rem) 1rem 2.5rem; }
  .hero-headline { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 0.75rem; }
  .hero-subheadline { font-size: 0.9375rem; margin-bottom: 1.25rem; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
  .trust-item { font-size: 0.9rem; }

  .container { padding-left: 1rem; padding-right: 1rem; }
  .section-title { font-size: clamp(1.35rem, 4vw, 1.75rem); }
  .section-subtitle { font-size: 0.9375rem; margin-bottom: 1.5rem; }

  .services-slider-wrap, .reviews-slider-wrap {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    min-width: 0;
    justify-content: center;
  }
  .services-track, .reviews-track {
    min-width: 0;
    flex: 0 1 auto;
    max-width: 260px;
    grid-auto-columns: 100%;
    padding: 0 0.125rem;
  }
  .service-card { padding: 1.25rem 1rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.875rem; }

  /* Reviews: fit one screen on mobile – one scroll only */
  .reviews {
    min-height: auto;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
  }
  .reviews .container {
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .reviews-header {
    margin-bottom: 0.5rem;
    flex-shrink: 0;
  }
  .reviews-header .section-title { font-size: 1.2rem; margin-bottom: 0.2rem; }
  .reviews-header .section-subtitle { font-size: 0.85rem; margin-bottom: 0.2rem; }
  .reviews-badge { margin-top: 0.2rem; padding: 0.25rem 0.6rem; font-size: 0.8rem; }
  .reviews-badge-stars { font-size: 0.85rem; }
  .reviews-slider-wrap {
    flex: 1 1 auto;
    min-height: 0;
    margin-bottom: 0.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .reviews-track { min-height: 0; align-items: stretch; max-width: 300px; flex: 0 1 auto; }
  .reviews .slider-dots { margin-top: 0.35rem; flex-shrink: 0; }
  .review-card {
    padding: 1rem 1.15rem;
    max-height: 240px;
    min-height: 0;
  }
  .review-stars { font-size: 0.95rem; margin-bottom: 0.45rem; }
  .review-text {
    -webkit-line-clamp: 4;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.45rem;
  }
  .review-footer { padding-top: 0.5rem; }
  .review-cite { font-size: 0.85rem; }
  .review-context { font-size: 0.75rem; }

  .about-header { margin-bottom: 1.75rem; }
  .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .about-lead { font-size: 1.05rem; }
  .about-cards { grid-template-columns: 1fr; gap: 0.75rem; }
  .about-card { padding: 1.1rem; }
  .about-cta { width: 100%; text-align: center; }

  .contact-container { padding-left: 1rem; padding-right: 1rem; }
  .contact-subtitle { margin-bottom: 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-card { padding: 1.25rem; }
  .contact-card-phone-number { font-size: 1.25rem; }
  .contact-card-btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; text-align: center; }
  .footer-col { text-align: center; }
  .footer-brand { max-width: none; margin-left: auto; margin-right: auto; }
  .footer-logo { justify-content: center; }
  .footer-links { justify-items: center; }
  .footer-phone { text-align: center; }
  .footer-address { text-align: center; }
  .footer-top { padding-top: 2rem; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .container { padding-left: 0.875rem; padding-right: 0.875rem; }
  .contact-container { padding-left: 0.875rem; padding-right: 0.875rem; }
  .slider-btn { width: 40px; height: 40px; min-width: 40px; min-height: 40px; font-size: 1.25rem; }
  .services-track, .reviews-track { max-width: 300px; }
  .contact-card { padding: 1rem; }
  .contact-card-phone-number { font-size: 1.15rem; }
  .contact-eyebrow { font-size: 0.75rem; }
  .reviews-header .section-title { font-size: 1.1rem; }
  .review-card { max-height: 220px; padding: 0.9rem 1rem; }
  .review-text { -webkit-line-clamp: 4; font-size: 0.85rem; }
}

/* Desktop: show multiple cards, no single-card constraint */
@media (min-width: 769px) {
  .services-track {
    grid-auto-columns: minmax(260px, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }
  .reviews-track {
    grid-auto-columns: minmax(320px, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }
  .services-slider-wrap .slider-btn,
  .reviews-slider-wrap .slider-btn { display: none; }
  .slider-dots { display: none; }
}
