/* Strand Motor Company design system */

:root {
  --accent: #d70808;
  --accent-hover: #bf0707;
  --accent-rgb: 215, 8, 8;
  --dark: #0d1f3c;
  --dark-hover: #152a4a;
  --light: #f7f7f9;
  --primary: var(--dark);
  --primary-hover: var(--dark-hover);
  --text: #1a1a1a;
  --text-muted: #5a6070;
  --border: #e8eaee;
  --border-input: #dde1e8;
  --nav-bg: #ffffff;
  --footer-bg: var(--dark);
  --footer-bar: #0a1829;
  --footer-muted: #8a9ab5;
  --footer-bottom-text: #5a6070;
  --bg-page: #ffffff;
  --font: "Barlow", sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --nav-height: 72px;
  --section-pad: clamp(80px, 10vw, 130px);
  --container: min(1160px, calc(100% - 48px));
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 0.25s ease;
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

ul { list-style: none; }

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--dark);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

p + p { margin-top: 0.85rem; }

.container {
  width: var(--container);
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: var(--section-pad); }
.section--light { background: var(--light); }
.section--white { background: #fff; }
.section--dark { background: var(--dark); color: #fff; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-header p,
.section-header .lead {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
}

.section-header .lead--narrow { max-width: 580px; margin-inline: auto; }

.prose {
  max-width: 680px;
  color: var(--text-muted);
  line-height: 1.8;
}

.prose--center { margin-inline: auto; text-align: center; }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.card__title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.icon-badge--lg { width: 52px; height: 52px; }

.icon-badge svg { width: 24px; height: 24px; fill: currentColor; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.35);
}

.btn--secondary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn--secondary:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-2px);
}

.cta-band .btn--secondary:hover { color: var(--dark); }

.link-arrow {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
  margin-top: auto;
  display: inline-block;
}

.link-arrow:hover { color: var(--accent-hover); }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-height);
  width: var(--container);
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }

.nav-logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(260px, 48vw);
  object-fit: contain;
}

@media (max-width: 480px) {
  .nav-logo img { height: 40px; }
}

.nav-menu { display: none; align-items: center; gap: 0.1rem; }

.nav-menu a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.7rem;
}

.nav-menu a:hover,
.nav-menu a.is-active { color: var(--accent); }

.nav-menu a.is-active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: calc(0.5rem - 2px);
}

.nav-ctas { display: none; align-items: center; gap: 1rem; }

.nav-phone {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone:hover { color: var(--accent); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .nav-ctas { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px 1.5rem;
    background: #fff;
    overflow-y: auto;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  .nav-menu.is-open { display: flex; }

  .nav-menu a {
    padding: 1.1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a.is-active {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
    padding-bottom: 1.1rem;
  }

  .nav-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 1rem 0 0;
    gap: 0.75rem;
  }

  .nav-ctas .btn { width: 100%; }
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero { min-height: 92vh; }

.page-hero { min-height: 85vh; }

.page-hero--local { min-height: 70vh; }

.hero__bg,
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__bg img,
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 31, 60, 0.92) 0%, rgba(13, 31, 60, 0.75) 45%, rgba(13, 31, 60, 0.45) 100%);
  z-index: 1;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 31, 60, 0.9) 0%, rgba(13, 31, 60, 0.7) 50%, rgba(13, 31, 60, 0.5) 100%);
  z-index: 1;
}

.hero__inner,
.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(4rem, 8vw, 5rem);
}

.hero__layout,
.page-hero__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__layout,
  .page-hero__layout {
    grid-template-columns: 1fr 1fr;
    min-height: calc(85vh - 8rem);
  }

  .hero__layout { min-height: calc(92vh - 10rem); }
}

.hero__copy,
.page-hero__copy {
  max-width: 520px;
}

.hero__copy h1,
.page-hero__copy h1 {
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5rem);
  margin-bottom: 1rem;
}

.hero__copy p,
.page-hero__copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__widget,
.page-hero__widget {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  width: 100%;
}

@media (min-width: 900px) {
  .hero__widget,
  .page-hero__widget { justify-self: end; }
}

@media (max-width: 899px) {
  .hero__widget,
  .page-hero__widget { margin-top: 2rem; }
}

.hero__widget-title,
.page-hero__widget-title {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.hero__widget [id^="s4s"],
.page-hero__widget [id^="s4s"] { min-height: 100px; }

/* Why choose */
.feature-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-row { grid-template-columns: repeat(4, 1fr); }
  .feature-row--3 { grid-template-columns: repeat(3, 1fr); }
}

.feature-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  border-top: 3px solid var(--accent);
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-block:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.feature-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Dark service cards */
.card-grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-bottom-color: var(--accent);
}

.service-card .icon-badge { background: rgba(var(--accent-rgb), 0.15); }

.service-card h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card .link-arrow { color: var(--accent); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  text-align: left;
  overflow: hidden;
}

.testimonial-card__quote {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card__stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-card blockquote {
  position: relative;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-style: normal;
  display: block;
}

.testimonial-card cite strong {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-card cite span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* How it works */
.steps-row {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.step-item { position: relative; }

.step-item__num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.step-item h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.section--dark .section-header h2,
.section--dark .section-header p { color: #fff; }

.section--dark .section-header p { color: rgba(255, 255, 255, 0.8); }

/* Find us */
.find-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .find-grid { grid-template-columns: 1fr 1.2fr 1fr; }
}

@media (max-width: 899px) and (min-width: 600px) {
  .find-grid { grid-template-columns: 1fr 1fr; }
  .find-grid__photo { display: none; }
}

@media (max-width: 599px) {
  .find-grid__photo { display: block; }
}

.find-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  min-height: 280px;
}

.find-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 380px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.find-details { display: flex; flex-direction: column; gap: 1.25rem; justify-content: center; }

.find-details__block .section-label { margin-bottom: 0.35rem; }

.find-details__phone {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.find-details a:hover { color: var(--accent-hover); }

/* Grids */
.card-grid-2,
.card-grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.icon-card {
  text-align: center;
  padding: 32px 24px;
}

.icon-card .icon-badge {
  margin-inline: auto;
}

.icon-card h3 {
  font-size: 1.05rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--dark);
}

.icon-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.bullet-features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bullet-features { grid-template-columns: repeat(2, 1fr); }
}

.bullet-feature {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.bullet-feature h3 {
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.bullet-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FAQ */
.faq-list { max-width: 800px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item.is-open .faq-question { color: var(--accent); }

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question__icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer__inner {
  padding: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA */
.cta-band {
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Pull quote */
.pull-quote {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  padding: 2rem 0;
}

.pull-quote::before,
.pull-quote::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--border);
  margin: 0 auto 2rem;
  max-width: 120px;
}

.pull-quote::after { margin: 2rem auto 0; }

.pull-quote__mark {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.pull-quote p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

/* Tier cards */
.tier-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tier-card h3 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.tier-card p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tier-card--accent {
  border-left: 3px solid var(--accent);
}

.split-section .prose { margin-top: 1rem; }

.tier-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* Photo gallery */
.photo-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
}

.photo-gallery img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Split / framed photo */
.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-section { grid-template-columns: 1fr 1fr; }
}

.split-section__media {
  position: relative;
}

.split-section__media::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.split-section__media img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--card-shadow);
}

/* About layout */
.about-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .about-split { grid-template-columns: 1fr 1fr; align-items: start; }
}

.mission-box {
  background: var(--light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px;
}

.mission-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.mission-box h3 {
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mission-box--white {
  background: #fff;
  padding: 28px;
}

.mission-box--white p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.65rem;
}

.mission-box--white p strong {
  color: var(--dark);
  font-weight: 600;
}

.two-col-copy {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .two-col-copy { grid-template-columns: 1fr 1fr; }
}

/* Booking */
.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin: 2rem 0 2.5rem;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.booking-steps__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: #fff;
}

.booking-steps__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

@media (max-width: 600px) {
  .booking-steps__label { display: none; }

  .booking-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
}

.section--page-intro {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.booking-note {
  margin-top: 1.5rem;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.widget-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  max-width: 760px;
  margin-inline: auto;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 45% 55%; }
}

.contact-detail-block { margin-bottom: 1.25rem; }

.contact-detail-block .section-label { margin-bottom: 0.35rem; }

.contact-map-sm {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: var(--card-shadow);
}

.contact-map-sm iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact-layout-single {
  max-width: 42rem;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--secondary);
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.skip-link:focus {
  left: 1rem;
  top: 0;
  width: auto;
  height: auto;
}

.form-panel {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  border: none;
}

.form-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--border-input);
  border-radius: 6px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-card h3 {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.contact-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

.contact-cards--2 {
  max-width: 800px;
  margin-inline: auto;
}

@media (min-width: 600px) {
  .contact-cards--2 { grid-template-columns: repeat(2, 1fr); }
}

.contact-card {
  text-align: center;
}

.contact-card .icon-badge {
  width: 52px;
  height: 52px;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: #fff;
  border-top: 3px solid var(--accent);
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}

@media (min-width: 768px) {
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}

.footer-logo-img {
  display: block;
  max-width: 240px;
  height: auto;
  max-height: 52px;
  margin-bottom: 1rem;
}

.footer-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.footer-wordmark:hover {
  color: #fff;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--footer-muted);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-heading--spaced { margin-top: 1.25rem; }

.footer-nav a,
.footer-hours-list li,
.footer-contact li {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--footer-muted);
}

.footer-nav a:hover { color: #fff; }

.footer-contact a {
  color: #fff;
  font-weight: 600;
}

.footer-contact a[href^="mailto"]:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  background: var(--footer-bar);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--footer-bottom-text);
  margin: 0;
}

.footer-credit { margin-top: 0.35rem; }

.footer-bottom .footer-credit a {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom .footer-credit a:hover {
  text-decoration: underline;
  color: var(--accent);
}

/* Legacy button aliases map to primary / secondary */
.section--alt { background: var(--light); }

.btn--accent,
.btn--outline-dark {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn--outline-light:hover {
  background: #fff;
  color: var(--dark);
}
/* Vehicle brands marquee */
.brands-marquee {
  background: #ffffff;
  border-block: 1px solid rgba(15, 37, 72, 0.08);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  overflow: hidden;
}

.brands-marquee__intro {
  text-align: center;
  margin-bottom: 1.25rem;
}

.brands-marquee__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: var(--accent, var(--navy, #1a3c6e));
}

.brands-marquee__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted, #5a6a7e);
  max-width: 40rem;
  margin-inline: auto;
}

.brands-marquee__viewport {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}

.brands-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  width: max-content;
  overflow: visible;
  background: #ffffff;
  animation: brands-marquee-scroll 55s linear infinite;
  will-change: transform;
}

.brands-marquee__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
  width: max-content;
  background: #ffffff;
  font-size: 0;
}

.brands-marquee__list li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #ffffff;
}

/* Same size for every logo; scaled down uniformly, flush edge-to-edge */
.brands-marquee__list img {
  display: block;
  width: 280px;
  height: 84px;
  min-width: 280px;
  min-height: 84px;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  flex-shrink: 0;
  vertical-align: top;
  object-fit: contain;
  object-position: center;
}

@keyframes brands-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0);
  }
}

@media (max-width: 900px) {
  .brands-marquee__list img {
    width: 220px;
    height: 66px;
    min-width: 220px;
    min-height: 66px;
  }
}

@media (max-width: 520px) {
  .brands-marquee__list img {
    width: 180px;
    height: 54px;
    min-width: 180px;
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .brands-marquee__track {
    animation-duration: 90s;
  }
}
