/* Adams Grandview Auto Repair — styled after autoshop theme (amautofactoria.com layout) */

:root {
  --primary: #e90111;
  --primary-dark: #a2000b;
  --secondary: #f0f0f0;
  --dark: #1f1e1e;
  --paragraph: #717171;
  --white: #ffffff;
  --container: min(1200px, 100% - 2rem);
  --font-heading: "Barlow", system-ui, sans-serif;
  --font-alt: "Barlow", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-offset: 10.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

.text--primary { color: var(--primary) !important; }
.bg--secondary { background: var(--secondary); }

/* ========== HERO HEADER ========== */
.hero-header {
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-video-band {
  position: relative;
  z-index: 2;
  min-height: min(52vh, 540px);
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
}

.hero-video-band__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-panel {
  text-align: center;
  max-width: min(960px, 100%);
  width: 100%;
  padding: 0;
}

.hero-panel .hero-bottom-text {
  color: var(--white);
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.2vw, 2.75rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-sameday-box {
  display: inline-block;
  margin: 0 0 1.35rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  max-width: 100%;
}

.hero-sameday-badge {
  display: block;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.92rem, 2.1vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}

.hero-panel .hero-buttons {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero-panel .hero-panel__location {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-panel .hero-panel__seo {
  margin: 0.85rem auto 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  line-height: 1.65;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-video-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1.4s ease-in-out;
  background-color: var(--dark);
}

.hero-slide-video.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-video.is-leaving {
  opacity: 0;
  z-index: 1;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.hero-header > *:not(.hero-video-slider) { position: relative; z-index: 2; }

/* ========== SITE HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top a {
  color: var(--white);
}

.header-top-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.header-top-grid--home {
  grid-template-columns: minmax(300px, 1.35fr) auto 1fr;
}

.header-top-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.header-top-left .header-nap {
  flex-shrink: 0;
}

.header__address-city {
  white-space: nowrap;
}

.header-dealer-badge {
  display: block;
  flex-shrink: 0;
  margin-top: 0.15rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-dealer-badge:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.header-dealer-badge img {
  display: block;
  width: auto;
  height: 68px;
  max-width: min(178px, 36vw);
  object-fit: contain;
}

.header-nap__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.header-nap p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.header-nap a:hover { color: var(--primary); }

.header-logo {
  text-align: center;
  padding: 0 0.5rem;
}

.header-logo img {
  max-height: 72px;
  width: auto;
  margin-inline: auto;
}

.header-logo-text {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.header-logo-text:hover {
  transform: scale(1.02);
}

.header-logo-text span {
  font-size: 1.1em;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 24px rgba(233, 1, 17, 0.45), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.header-right {
  text-align: left;
  justify-self: end;
}

.header__phone a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.header__phone a:hover { color: var(--primary); }

/* ========== NAV ========== */
.navbar {
  background: rgba(31, 30, 30, 0.98);
  border-bottom: 3px solid var(--primary);
  position: relative;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  position: relative;
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 2;
  min-width: 48px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.current {
  color: var(--primary);
  background: rgba(255,255,255,0.05);
}

.nav-menu > li.has-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nav-menu > li.has-dropdown > a::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.75;
}

.nav-menu > li.has-dropdown.dropdown-open > a::after {
  transform: rotate(-135deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: 0.2s;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.nav-menu li:hover .nav-dropdown,
.nav-menu li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 400;
}

.nav-dropdown a:hover {
  color: var(--primary);
  background: rgba(255,255,255,0.05);
}

/* ========== HERO INTRO (below video) ========== */
.hero-intro {
  position: relative;
  background: var(--dark) url("./images/hero-reviews-engine.png") center center / cover no-repeat;
  padding: 2.25rem 0 2.5rem;
  text-align: center;
  overflow: hidden;
  border-top: 3px solid var(--primary);
}

.hero-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.hero-intro .container {
  position: relative;
  z-index: 1;
}

.hero-intro-carousel {
  max-width: 760px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 2.25rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.reviews-stage {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  width: 100%;
  min-width: 0;
}

.reviews-stage--measuring {
  min-height: 0 !important;
}

.review-slide--measuring {
  display: block !important;
  visibility: hidden;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  pointer-events: none;
}

.hero-intro-carousel .review-slide {
  display: none;
  padding: 0.5rem 0 0.75rem;
}

.hero-intro-carousel .review-slide.active {
  display: block;
}

.hero-intro-carousel .reviews-nav {
  grid-row: 2;
  grid-column: 1;
  margin-top: 0.75rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero-intro-carousel .review-content {
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.hero-intro-carousel .review-meta {
  margin: 0;
}

.hero-intro-carousel .review-author {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-intro-carousel .review-meta .review-source,
.hero-intro-carousel .review-meta .review-source--light {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.hero-intro-carousel .review-stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.hero-intro-carousel .reviews-nav button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-intro-carousel .reviews-nav button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.hero-intro-carousel .reviews-dots button {
  background: transparent;
}

.hero-intro-carousel .reviews-dots button.active {
  background: transparent;
}

.hero-intro .hero-top-text {
  color: var(--paragraph);
  opacity: 1;
}

.hero-intro .hero-bottom-text {
  color: var(--dark);
}

.hero-intro .btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.hero-panel .btn--outline-dark {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero-panel .btn--outline-dark:hover,
.hero-intro .btn--outline-dark:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-reviews-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.hero-reviews-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--primary);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.hero-stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.hero-reviews-count {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-top-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  font-weight: 600;
  opacity: 0.95;
}

.hero-bottom-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.btn--main {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--main:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ========== SECTIONS ========== */
.section-reviews-badge {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  gap: 0.65rem 1rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 1.15rem;
  background: var(--secondary);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.section-reviews-badge:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.section-reviews-badge .hero-reviews-title {
  margin: 0;
  font-size: 0.9rem;
}

.section-reviews-badge .hero-stars {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.section-reviews-badge .hero-reviews-count {
  margin: 0;
  color: var(--paragraph);
  font-size: 0.88rem;
  opacity: 1;
}

.section-reviews-badge .hero-reviews-count::before {
  content: "·";
  margin-right: 1rem;
  color: rgba(0, 0, 0, 0.2);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: 0.01em;
  text-align: center;
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--dark);
}

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

.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  color: var(--paragraph);
  font-size: 1.05rem;
}

.section-intro--light { color: rgba(255,255,255,0.9); }

/* Heritage / community section */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.heritage-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  border: 4px solid var(--white);
}

.heritage-content__title {
  text-align: left;
  margin-bottom: 1rem;
  color: var(--dark);
}

.heritage-content {
  background: var(--white);
  padding: 2rem 2.25rem;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.heritage-content p {
  color: var(--paragraph);
  margin: 0 0 1rem;
  line-height: 1.75;
}

.heritage-content a:not(.btn) {
  color: var(--primary);
  font-weight: 600;
}

.heritage-content a:not(.btn):hover {
  text-decoration: underline;
}

.heritage-content .btn--main {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.heritage-content .btn--main:hover {
  color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
}

/* Events page */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.event-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-top: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 4px;
}

.event-card__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--dark);
  font-weight: 700;
}

.event-card__location {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--paragraph);
}

.event-card p {
  margin: 0 0 0.85rem;
  color: var(--paragraph);
  font-size: 0.95rem;
  line-height: 1.65;
}

.event-card p:last-child {
  margin-bottom: 0;
}

.event-card a {
  color: var(--primary);
  font-weight: 600;
}

.event-card a:hover {
  text-decoration: underline;
}

.event-schedule-source {
  text-align: center;
  max-width: 720px;
  margin: -1.5rem auto 1.75rem;
  color: var(--paragraph);
  font-size: 0.95rem;
}

.event-schedule-source a {
  color: var(--primary);
  font-weight: 600;
}

.event-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-schedule-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.event-schedule-card--featured {
  border-color: rgba(233, 1, 17, 0.35);
}

@media (min-width: 900px) {
  .event-schedule-card--featured {
    grid-column: span 2;
  }

  .event-schedule-card--featured .event-schedule-card__media {
    aspect-ratio: 21 / 9;
  }
}

.event-schedule-card__link {
  display: block;
  color: inherit;
  height: 100%;
}

.event-schedule-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
}

.event-schedule-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.event-schedule-card:hover .event-schedule-card__media img {
  transform: scale(1.04);
}

.event-schedule-card__date {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  min-width: 3.25rem;
  text-align: center;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.event-schedule-card__month {
  display: block;
  padding: 0.2rem 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
}

.event-schedule-card__day {
  display: block;
  padding: 0.2rem 0.45rem 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}

.event-schedule-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.event-schedule-card__tag {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

.event-schedule-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--dark);
}

.event-schedule-card--featured .event-schedule-card__title {
  font-size: 1.15rem;
}

.event-schedule-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--paragraph);
}

.event-schedule-card__date-label {
  font-weight: 600;
  color: var(--dark);
}

.event-schedule-card__time {
  position: relative;
  padding-left: 0.75rem;
}

.event-schedule-card__time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4c4c4;
  transform: translateY(-50%);
}

.event-schedule-cta {
  text-align: center;
  margin: 2rem 0 0;
}

/* Amenity tiles */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #ddd;
}

.amenity-tile {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid #e5e5e5;
  transition: 0.2s;
}

.amenity-tile:hover {
  background: var(--secondary);
  border-color: var(--primary);
}

.amenity-tile--dealer {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.amenity-tile--dealer .amenity-tile__title {
  color: var(--primary);
}

.amenity-tile--sameday {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.amenity-tile--sameday .amenity-tile__title {
  color: var(--primary);
}

.amenity-tile--sameday a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.amenity-tile--sameday:hover a {
  color: var(--dark);
}

.contact-sameday-note {
  margin: 0.35rem 0 0.75rem;
  padding: 0.65rem 0.85rem;
  color: var(--dark);
  background: #fff5f5;
  border-left: 4px solid var(--primary);
  border-radius: 0 4px 4px 0;
  line-height: 1.5;
}

.dealer-section {
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  background: var(--white);
}

.dealer-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.15fr);
  min-height: min(440px, 52vh);
}

.dealer-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, #fafafa 0%, var(--secondary) 100%);
  border-right: 1px solid #e5e5e5;
}

.dealer-section__media {
  margin: 0;
  overflow: hidden;
  min-height: 280px;
}

.dealer-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.dealer-callout__badge-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 1rem;
  border-radius: 4px;
}

.dealer-callout__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}

.dealer-callout__text {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--paragraph);
  line-height: 1.75;
  font-size: 1.05rem;
}

.dealer-callout__text strong {
  color: var(--dark);
}

.dealer-inline {
  margin: 0 0 1.25rem;
  padding: 1.15rem 1.25rem;
  background: var(--secondary);
  border-left: 4px solid var(--primary);
  border-radius: 0 6px 6px 0;
}

.dealer-inline__label {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.dealer-inline p:last-child {
  margin: 0;
  color: var(--paragraph);
  line-height: 1.65;
}

.service-card__tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  border-radius: 3px;
}

.amenity-tile__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0;
  color: var(--primary);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.amenity-tile__content {
  margin: 0;
  color: var(--paragraph);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Welcome / content band with bg */
.content-band {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}

.content-band--welcome {
  background-image: url("./images/welcome-truck.png");
  background-position: center 42%;
}

.content-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.92);
}

.content-band--welcome::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0.68) 100%);
}

.content-band .container { position: relative; z-index: 1; }

.content-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: 0;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.content-band--welcome h2 {
  color: var(--white);
}

.content-band p {
  color: var(--paragraph);
  max-width: 900px;
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.content-band--welcome p {
  color: rgba(255, 255, 255, 0.94);
}

.content-band a { color: var(--primary); font-weight: 600; }
.content-band a:hover { text-decoration: underline; }

/* Service area tabs */
.area-tabs {
  margin-top: 0.5rem;
}

.area-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
}

.area-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--dark);
  margin: 0 0 1rem;
  font-weight: 700;
}

.area-panel__lead {
  color: var(--paragraph);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.area-services-list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.area-services-list li {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #ececec;
  color: var(--paragraph);
  font-size: 0.98rem;
  line-height: 1.65;
}

.area-services-list li:last-child {
  border-bottom: none;
}

.area-services-list strong {
  color: var(--dark);
}

.area-panel__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

/* Makes tabs */
.makes-section {
  background: var(--secondary);
  padding-top: 0;
}

.brand-marquee {
  margin-bottom: 2.5rem;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
}

.brand-marquee__viewport {
  overflow: hidden;
  width: 100%;
  padding: 1.35rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(2rem, 4vw, 3.5rem);
  will-change: transform;
  animation: brand-marquee-scroll var(--marquee-duration, 55s) linear infinite;
}

.brand-marquee__list {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(2rem, 4vw, 3.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-marquee__list li {
  flex: 0 0 auto;
}

.brand-marquee__list img {
  height: clamp(28px, 4vw, 40px);
  width: auto;
  max-width: clamp(72px, 10vw, 110px);
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(100%);
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}

.brand-marquee__list img[alt="Lexus"] {
  max-width: clamp(96px, 14vw, 148px);
}

.brand-marquee__list li:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.06);
}

@keyframes brand-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .brand-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1.25rem 2rem;
    padding: 0 1rem;
  }

  .brand-marquee__list {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .brand-marquee__list[aria-hidden="true"] {
    display: none;
  }
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  border-bottom: 3px solid var(--primary);
}

.tabs-nav li { flex: 1; min-width: 120px; }

.tabs-nav button {
  width: 100%;
  padding: 1.25rem 1rem;
  border: none;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.tabs-nav button:hover { background: #333; }

.tabs-nav button.active {
  background: var(--primary);
  color: var(--white);
}

.tab-panel {
  display: none;
  padding: 2.5rem 0;
  background: var(--white);
}

.tab-panel.active { display: block; }

.tab-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.tab-links a {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--secondary);
  border-left: 4px solid var(--primary);
  font-weight: 600;
  color: var(--dark);
  transition: 0.2s;
}

.tab-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* Specialty carousel */
.specialty-section {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.specialty-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  font-weight: 700;
}

.specialty-text p {
  color: rgba(255,255,255,0.85);
  margin: 0 0 1rem;
}

.specialty-cards {
  display: grid;
  gap: 1rem;
}

.specialty-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  transition: 0.2s;
}

.specialty-card:hover,
.specialty-card.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

.service-card:hover h3 { color: var(--primary); }

/* Reviews */
.reviews-section {
  position: relative;
  background: var(--dark) url("./images/heritage-race-car.png") center 35% / cover no-repeat;
  padding: 4rem 0 0;
  color: var(--white);
  overflow: hidden;
}

.reviews-section__target {
  scroll-margin-top: var(--header-offset);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(233, 1, 17, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(233, 1, 17, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.82) 0%, rgba(20, 20, 20, 0.78) 42%, rgba(31, 30, 30, 0.96) 100%);
  pointer-events: none;
}

.reviews-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -14deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.025) 48px,
    rgba(255, 255, 255, 0.025) 49px
  );
  pointer-events: none;
}

.reviews-section .container {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.reviews-section .section-title--light {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  margin-bottom: 1.5rem;
}

.reviews-section .reviews-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  width: 100%;
  min-width: 0;
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 2.25rem 1.75rem;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reviews-section .review-slide {
  display: none;
  padding: 0.5rem 0 0.75rem;
}

.reviews-section .review-slide.active {
  display: block;
}

.reviews-section .reviews-nav {
  grid-row: 2;
  grid-column: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.reviews-section__cta {
  text-align: center;
  margin: 1.75rem 0 0;
}

.reviews-section__cta .btn--main {
  min-width: min(100%, 280px);
}

.location-map {
  position: relative;
  z-index: 1;
  margin-top: 0;
  width: 100%;
}

.location-map__header {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border-top: 4px solid var(--primary);
}

.location-map__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--dark);
}

.location-map__address {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--paragraph);
  font-weight: 600;
}

.location-map__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.location-map__link:hover {
  text-decoration: underline;
}

.location-map__frame {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: #e8e8e8;
  contain: strict;
}

.map-pin-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, calc(-100% - 14px));
  max-width: calc(100% - 2rem);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  background: var(--white);
  color: #1a1a1a;
  font-family: Roboto, Arial, sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.map-pin-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--white);
}

.footer-map__frame .map-pin-label {
  font-size: 0.62rem;
  padding: 0.3rem 0.45rem;
  transform: translate(-50%, calc(-100% - 10px));
}

.location-map__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.location-map__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.reviews-carousel {
  max-width: 720px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  text-align: center;
}

.review-slide {
  display: none;
  padding: 1rem 0;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.review-slide.active { display: block; }

.review-stars {
  color: #ffc107;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-content {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0 auto 1rem;
  padding: 0;
  border: 0;
  max-width: 100%;
  color: rgba(255,255,255,0.95);
  quotes: "\201C" "\201D";
  text-align: center;
}

.review-content p {
  margin: 0;
  display: inline;
}

.review-content p::before {
  content: open-quote;
}

.review-content p::after {
  content: close-quote;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  margin: 0;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  color: var(--primary);
}

.review-meta .review-source {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.review-meta .review-source[aria-hidden="true"] {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  opacity: 0.65;
}

.review-meta .review-source--light {
  color: var(--paragraph);
  opacity: 0.75;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
}

.reviews-nav button:hover {
  background: var(--primary);
}

.reviews-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  order: 3;
  flex: 1 1 100%;
  min-width: 0;
  max-width: 100%;
}

.reviews-prev { order: 1; }
.reviews-next { order: 2; }

.reviews-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.reviews-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}

.reviews-dots button.active::before { background: var(--primary); }

.hero-intro-carousel .reviews-dots button::before {
  background: rgba(255, 255, 255, 0.35);
}

.hero-intro-carousel .reviews-dots button.active::before {
  background: var(--primary);
}

/* CTA band */
.cta-band {
  background: var(--secondary);
  text-align: center;
}

.cta-band p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: var(--paragraph);
  font-size: 1.05rem;
}

.cta-band a:not(.btn) { color: var(--primary); font-weight: 600; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 4px solid var(--primary);
}

.page-hero--image {
  position: relative;
  padding: 5rem 0;
  min-height: min(42vh, 420px);
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center 72%;
  border-bottom: 4px solid var(--primary);
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.page-hero--services {
  background-position: center 58%;
}

.page-hero--services .page-hero__panel--light {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}

.page-hero--services .page-hero__panel--light h1 {
  margin: 0 0 0.5rem;
}

.page-hero--services .page-hero__panel--light p {
  opacity: 0.9;
}

.page-hero--video {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  min-height: min(48vh, 480px);
  display: flex;
  align-items: center;
  background-color: var(--dark);
  border-bottom: 4px solid var(--primary);
}

.page-hero--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.page-hero--video .container {
  position: relative;
  z-index: 2;
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.page-hero p {
  margin: 0;
  opacity: 0.85;
  font-size: 1.05rem;
}

.page-hero--events {
  padding: 4.5rem 0 4rem;
  text-align: center;
  color: #ffffff;
}

.page-hero--events .container {
  max-width: 820px;
}

.page-hero--events.page-hero--video::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.page-hero__panel {
  background: rgba(0, 0, 0, 0.72);
  padding: 2rem 2.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.page-hero--events .page-hero__panel {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-hero--events .page-hero__panel h1,
.page-hero--events .page-hero__panel h2,
.page-hero--events .page-hero__panel p,
.page-hero--events .page-hero__panel a {
  color: #ffffff !important;
  opacity: 1 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none;
}

.page-hero--events .page-hero__panel h1 {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
}

.page-hero--events .page-hero__panel h2 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
}

.page-hero--events .page-hero__panel p {
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #ffffff !important;
}

.page-hero--events .page-hero__panel a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

.page-hero--events .page-hero__panel a:hover {
  color: #ffffff !important;
  opacity: 1 !important;
  text-decoration-thickness: 2px;
}

.page-hero__lead {
  margin-bottom: 1.75rem !important;
}

.page-hero__sub {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
}

.page-hero__intro {
  margin: 0 auto !important;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
}

/* Services detail */
.service-block {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.services-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 0 2.5rem;
  padding: 1.25rem;
  background: var(--secondary);
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}

.services-index a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  transition: 0.2s;
}

.services-index a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.service-block:last-child { border-bottom: none; }

.service-block h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.service-block p, .service-block li {
  color: var(--paragraph);
}

.service-block ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* Recent work carousel */
.recent-work-section {
  padding-bottom: 4rem;
}

.work-carousel {
  max-width: 480px;
  margin: 0 auto;
}

.work-carousel__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.work-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.work-slide.active {
  opacity: 1;
  visibility: visible;
}

.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.work-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.work-carousel__nav button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--dark);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
  transition: 0.2s;
}

.work-carousel__nav button:hover {
  background: var(--primary);
  color: var(--white);
}

.work-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: min(100%, 480px);
}

.work-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(31, 30, 30, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.work-dots button.active {
  background: var(--primary);
  transform: scale(1.15);
}

/* Contact / schedule */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-box {
  background: var(--secondary);
  padding: 2rem;
  border-top: 4px solid var(--primary);
}

.contact-info-box h3 {
  font-family: var(--font-heading);
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-info-box p { margin: 0 0 0.5rem; color: var(--paragraph); }

.contact-info-box a:not(.btn) { color: var(--primary); font-weight: 600; }

.contact-info-box .btn--main {
  color: var(--white);
}

.contact-info-box .btn--main:hover {
  color: var(--white);
}

.hours-table { width: 100%; margin-top: 1rem; }
.hours-table td { padding: 0.3rem 0; font-size: 0.95rem; color: var(--paragraph); }
.hours-table td:last-child { text-align: right; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row.full { grid-column: 1 / -1; }

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.form-row input,
.form-row textarea,
.form-row select {
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: max(16px, 1rem);
  border: 1px solid #ccc;
  border-radius: 0;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq-item {
  border: 1px solid #e5e5e5;
  margin-bottom: 0.5rem;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  min-height: 44px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  background: var(--secondary);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  color: var(--paragraph);
}

.faq-item p a {
  color: var(--primary);
  font-weight: 600;
}

.faq-item p a:hover {
  text-decoration: underline;
}

#faq {
  scroll-margin-top: var(--header-offset);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-map__address {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.footer-map__frame {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.85rem;
  background: #2a2a2a;
}

.footer-map__frame.is-loading::before,
.location-map__frame.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
  background-size: 200% 100%;
  animation: map-shimmer 1.2s ease-in-out infinite;
}

.footer-map__frame.is-loading::after,
.location-map__frame.is-loading::after {
  content: "Loading map…";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

@keyframes map-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.footer-map__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-map__directions {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.footer-grid h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li { margin-bottom: 0.4rem; }

.footer-grid a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom > p:last-child {
  margin: 0;
  opacity: 0.75;
}

.footer-bottom__patriot {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-flag {
  display: block;
  width: 54px;
  height: 29px;
  max-width: none;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

.back-to-top {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  z-index: 200;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--primary-dark);
  outline: none;
}

/* Responsive */
@media (max-width: 992px) {
  html.header-compact {
    --header-offset: 3.35rem;
  }

  .header-top {
    overflow: hidden;
    padding: 0.65rem 0;
    transition:
      max-height 0.26s ease-in,
      opacity 0.22s ease-in,
      padding 0.26s ease-in,
      border-color 0.22s ease;
  }

  .header-top--revealing {
    transition:
      max-height 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.58s ease-out,
      padding 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.35s ease;
  }

  .header-top-grid {
    transition: transform 0.22s ease-in, opacity 0.18s ease-in;
    transform: translateY(0);
    opacity: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "address phone";
    text-align: left;
    gap: 0.5rem 1rem;
    align-items: start;
  }

  .header-top--revealing .header-top-grid {
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.58s ease-out;
  }

  .site-header--compact .header-top {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border-bottom-color: transparent;
    pointer-events: none;
  }

  .site-header--compact .header-top-grid {
    transform: translateY(-10px);
    opacity: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .header-top,
    .header-top--revealing,
    .header-top-grid {
      transition: none;
    }
  }

  .header-top-grid .header-nap:first-child { grid-area: address; }

  .header-top-grid--home {
    grid-template-areas:
      "logo logo"
      "left phone";
    grid-template-columns: 1fr 1fr;
  }

  .header-top-grid--home .header-top-left {
    grid-area: left;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .header-top-grid--home .header-nap:first-child {
    grid-area: auto;
  }

  .header-top-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    min-width: 0;
  }

  .header__address-city {
    white-space: normal;
  }

  .header-dealer-badge img {
    height: 56px;
    max-width: 148px;
  }

  .header-logo {
    display: block;
    grid-area: logo;
    text-align: center;
    margin-bottom: 0.15rem;
  }

  .header-logo-text {
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    white-space: normal;
  }

  .header-right {
    grid-area: phone;
    text-align: left;
    justify-self: stretch;
  }

  .header-nap__title {
    font-size: 0.72rem;
    margin-bottom: 0.2rem;
  }

  .header-nap p { font-size: 0.82rem; line-height: 1.35; }

  .header__phone a { font-size: 1.05rem; }

  .specialty-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .heritage-grid { grid-template-columns: 1fr; }

  .heritage-content__title { text-align: center; }

  .nav-toggle { display: block; }

  .navbar-inner {
    justify-content: flex-start;
    min-height: 48px;
    padding-right: 3.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-map {
    grid-column: 1 / -1;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: calc(100dvh - 12rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  .nav-menu > li {
    width: 100%;
    flex: 0 0 auto;
  }

  .nav-menu > li.has-dropdown > a::after {
    display: block;
  }

  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .nav-menu > li.has-dropdown > a {
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 1rem 1.15rem;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: auto;
    cursor: pointer;
  }

  .nav-menu > li.has-dropdown.dropdown-open > a {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-menu > li.has-dropdown {
    border-bottom: none;
  }

  .nav-menu > li > a {
    padding: 1rem 1.15rem;
    min-height: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-menu li:hover .nav-dropdown,
  .nav-menu li:focus-within .nav-dropdown {
    opacity: 0;
    visibility: hidden;
    display: none;
  }

  .nav-menu li.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
    display: none;
    min-width: 0;
    width: 100%;
    padding: 0.15rem 0 0.5rem;
  }

  .nav-dropdown li {
    display: block;
    width: 100%;
  }

  .nav-dropdown a {
    display: block;
    padding: 0.85rem 1.15rem 0.85rem 1.75rem;
    min-height: 44px;
    font-size: 0.9rem;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.92);
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 11.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-intro {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .page-hero {
    padding: 2.5rem 0;
  }

  .page-hero__panel,
  .page-hero--services .page-hero__panel--light {
    padding: 1.35rem 1.15rem;
  }

  .page-hero--events {
    padding: 3rem 0 2.5rem;
  }

  .contact-info-box {
    padding: 1.5rem;
  }

  .services-index {
    padding: 1rem;
  }

  .area-panel {
    padding: 1.75rem 0 0.75rem;
  }

  .dealer-section__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dealer-section__media {
    order: -1;
    min-height: min(52vw, 280px);
  }

  .dealer-section__media img {
    object-position: center 42%;
  }

  .dealer-section__content {
    align-items: center;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 2rem 1.25rem;
  }

  .dealer-callout__text {
    font-size: 1rem;
  }

  .footer-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-map {
    grid-column: 1 / -1;
  }

  .footer-map__frame {
    height: min(220px, 50vw);
  }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }

  .hero-video-band {
    min-height: 42vh;
    padding: 2rem 0;
  }

  .hero-panel {
    padding: 0;
  }

  .hero-panel .hero-bottom-text {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  }

  .hero-intro { padding: 1.5rem 0 1.75rem; }

  .hero-intro .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
  }

  .hero-intro-carousel {
    padding: 1.35rem 1rem 1.1rem;
    border-radius: 8px;
  }

  .hero-intro-carousel .review-slide {
    padding: 0.35rem 0 0.5rem;
  }

  .hero-intro-carousel .review-content {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
  }

  .hero-intro-carousel .reviews-nav {
    margin-top: 0.5rem;
    gap: 0.5rem;
  }

  .hero-intro-carousel .reviews-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .hero-intro-carousel .reviews-dots button {
    width: 34px;
    height: 34px;
  }

  .section-reviews-badge {
    gap: 0.5rem 0.75rem;
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
  }

  .section-reviews-badge .hero-reviews-count::before {
    display: none;
  }

  .reviews-section .reviews-carousel {
    padding: 1.5rem 1rem 1.15rem;
    border-radius: 8px;
  }

  .reviews-section .review-content {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .reviews-section .reviews-nav {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }

  .reviews-section .reviews-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .reviews-section .reviews-dots button {
    width: 34px;
    height: 34px;
  }

  .reviews-section .container {
    padding-bottom: 2rem;
  }

  .work-carousel {
    max-width: min(100%, 380px);
  }

  .work-carousel__stage {
    aspect-ratio: 3 / 4;
  }

  .work-dots {
    max-width: 100%;
  }

  .page-hero--image {
    min-height: 36vh;
    padding: 3.5rem 0;
  }

  .contact-form { grid-template-columns: 1fr; }

  .tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tabs-nav::-webkit-scrollbar { display: none; }

  .tabs-nav li {
    flex: 0 0 auto;
    min-width: auto;
  }

  .tabs-nav button {
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 1rem 0.85rem;
  }

  .tabs-nav.area-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.45rem;
    padding-bottom: 0.65rem;
  }

  .tabs-nav.area-tabs li {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: calc(50% - 0.25rem);
  }

  .tabs-nav.area-tabs li:last-child:nth-child(odd) {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .tabs-nav.area-tabs button {
    white-space: normal;
    font-size: 0.82rem;
    padding: 0.75rem 0.5rem;
    line-height: 1.25;
    min-height: 44px;
  }

  .services-index a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .location-map__frame {
    height: min(460px, 55vh);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .event-schedule-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --header-offset: 13rem;
  }

  .header-top-grid,
  .header-top-grid--home {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "left"
      "phone";
    gap: 0.75rem;
    text-align: center;
  }

  .header-top-grid:not(.header-top-grid--home) .header-nap:first-child {
    grid-area: left;
    justify-self: center;
  }

  .header-top-grid--home .header-top-left {
    grid-area: left;
    justify-self: center;
    align-items: center;
  }

  .header-right {
    grid-area: phone;
    justify-self: center;
    text-align: center;
  }

  .header-logo {
    margin-bottom: 0;
  }

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

  .hero-sameday-box {
    padding: 0.65rem 1.1rem;
  }

  .hero-sameday-badge {
    white-space: normal;
    letter-spacing: 0.03em;
  }

  .section-reviews-badge {
    border-radius: 12px;
    padding: 0.75rem 1rem;
  }
}
