/* Windy Corner Coaches — homepage (static replica) */
:root {
  --color-primary: #181e76;
  --color-secondary: #191919;
  --color-accent: #50bf58;
  --color-green: #50bf58;
  --color-text: #535353;
  --color-white: #fff;
  --color-brand-red: #bf1b28;
  --color-brand-red-2: #bf1c28;
  --color-muted-bg: #f4f4f4;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-display: "Roboto Slab", Georgia, "Times New Roman", serif;
  --container: min(1300px, calc(100% - 2rem));
  --shadow-soft: 0 5px 10px rgb(0 0 0 / 15%);
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll,
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.cover-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg .cover-media,
.page-hero__bg .cover-media,
.principles__bg .cover-media {
  position: absolute;
  inset: 0;
}

.site-logo {
  display: block;
  max-height: 56px;
  width: auto;
}

.footer-wordmark {
  display: block;
  max-width: 220px;
  height: auto;
  margin-bottom: 0.75rem;
}

.hero__visual .cover-media {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  max-height: 520px;
  object-fit: contain;
}

.stats__photo {
  min-height: 320px;
}

.stats__photo .cover-media {
  min-height: 420px;
  border-radius: var(--radius);
}

.about__cell .cover-media {
  min-height: 320px;
  border-radius: var(--radius);
}

.maintenance__collage .cover-media {
  border-radius: var(--radius);
}

.maintenance__collage .cover-media--tall {
  min-height: 260px;
}

.maintenance__collage .cover-media--wide {
  min-height: 200px;
}

.coach-card__media .cover-media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.booking-step .cover-media {
  aspect-ratio: 1;
  max-width: 140px;
  margin-inline: auto;
  border-radius: var(--radius);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--color-muted-bg);
}

.gallery-grid__item .cover-media {
  min-height: 100%;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-page {
  padding: 3rem 1rem 4rem;
}

a {
  color: var(--color-primary);
}

a:hover {
  opacity: 0.92;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--color-white);
  outline: 2px solid var(--color-primary);
}

/* ——— Placeholders ——— */
.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(145deg, #e8eaef 0%, #d4d8e0 50%, #eef0f4 100%);
  color: rgb(24 30 118 / 35%);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
}

.media-placeholder--hero-side {
  aspect-ratio: 4 / 3;
  max-height: 520px;
}

.media-placeholder--square-tall {
  min-height: 320px;
}

.media-placeholder--coach {
  height: 420px;
}

.media-placeholder--tall {
  min-height: 260px;
}

.media-placeholder--wide {
  min-height: 200px;
}

.logo-placeholder {
  display: block;
  width: min(280px, 55vw);
  height: 72px;
  border-radius: var(--radius);
}

.footer-brand-placeholder {
  width: min(280px, 100%);
  height: 120px;
}

/* ——— Scroll reveal (fade up) ——— */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.legal-content .reveal-on-scroll,
.legal-content .reveal-item {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ——— Header ——— */
.site-header {
  background: var(--color-brand-red);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding: 10px 1rem;
  width: var(--container);
  margin-inline: auto;
  min-height: 56px;
}

@media (min-width: 1100px) {
  .site-nav ul {
    flex-wrap: nowrap;
    gap: 0.2rem 1.15rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }
}

.site-header__logo {
  flex-shrink: 0;
  position: relative;
  z-index: 62;
}

.site-header__logo img {
  display: block;
}

/* Primary nav: sits between logo and hours/phone block */
.site-nav {
  position: static;
  transform: none;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: clamp(0.75rem, 2vw, 1.75rem);
  margin-right: clamp(0.5rem, 1.5vw, 1.25rem);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  justify-content: center;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 0.35rem 0;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Desktop: underline grows left → right on hover; current page stays fully underlined */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-green);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  background-color: var(--color-green);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a::after {
    transition: none;
  }
}

.site-header__aside {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  position: relative;
  z-index: 62;
}

.site-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: flex-end;
}

.meta-block {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--color-white);
  font-size: 0.85rem;
}

.meta-block svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  opacity: 0.95;
}

.meta-block__title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: inherit;
}

.meta-block p {
  margin: 0;
}

.meta-block a {
  color: inherit;
  text-decoration: none;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 7px;
  border: none;
  border-radius: 6px;
  background: rgb(0 0 0 / 12%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%);
  cursor: pointer;
  color: var(--color-white);
  transition:
    background 0.2s,
    transform 0.15s;
}

.lang-toggle:hover {
  background: rgb(0 0 0 / 18%);
}

.lang-toggle:active {
  transform: scale(0.97);
}

.lang-toggle__flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lang-toggle__flag svg {
  width: 26px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 25%);
}

.lang-toggle__flag img {
  display: block;
  width: 26px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 25%);
}

.lang-toggle__emoji {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: rgb(0 0 0 / 12%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%);
  color: var(--color-white);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.site-nav__toggle:hover {
  background: rgb(0 0 0 / 18%);
}

.site-nav__toggle svg {
  width: 26px;
  height: 26px;
}

.site-nav__close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background: rgb(255 255 255 / 14%);
  color: var(--color-white);
  cursor: pointer;
  z-index: 2;
}

.site-nav__close svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1024px) {
  /* Flex (not grid): fixed-position .site-nav must not sit between logo and controls */
  .site-header__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .site-header__aside {
    margin-left: 0;
    gap: 0.65rem;
  }

  .site-header__meta {
    display: none;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    left: 0;
    top: 0;
    transform: none;
    z-index: 60;
    background: var(--color-brand-red);
    padding: clamp(4.5rem, 12vw, 6rem) 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
  }

  /* Full-screen menu: hide header chrome (logo, lang, hamburger); only close X stays visible */
  .site-header__bar:has(.site-nav.is-open) .site-header__logo,
  .site-header__bar:has(.site-nav.is-open) .site-header__aside {
    display: none;
  }

  .site-header__bar:has(.site-nav.is-open) {
    min-height: 0;
    padding: 0;
  }

  .site-header:has(.site-nav.is-open) {
    background: transparent;
    box-shadow: none;
  }

  .site-nav__close {
    display: flex;
    z-index: 2;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: min(28rem, 100%);
    text-align: center;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    font-size: 1.2rem;
    font-weight: 600;
  }

  .site-nav a::after {
    display: none;
  }
}

/* Mobile: centre primary content blocks */
@media (max-width: 767px) {
  .hero .hero__content {
    text-align: center;
  }

  .hero .hero__content .btn {
    margin-inline: auto;
  }

  .stats .stats__intro {
    text-align: center;
  }

  .services .section-head {
    text-align: center;
  }

  .maintenance__copy {
    text-align: center;
  }

  .maintenance__copy .btn {
    margin-inline: auto;
  }

  .quote .container {
    text-align: center;
  }

  .faq__intro {
    text-align: center;
  }


  .page-hero .container {
    text-align: center;
  }

  .page-hero .btn {
    margin-inline: auto;
  }

  .fleet-intro .section-head,
  .fleet-how-lead .section-head {
    text-align: center;
  }

  .coach-card__body .btn {
    align-self: center;
  }

  .fleet-why__grid {
    justify-items: center;
  }

  .fleet-why__card {
    max-width: 26rem;
    width: 100%;
  }

  .contact-strip .container {
    text-align: center;
  }

  .contact-cards {
    align-items: center;
  }

  .contact-card {
    max-width: 26rem;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .contact-map .map-frame {
    margin-inline: auto;
    max-width: 26rem;
  }

  .legal-doc__inner {
    text-align: center;
  }

  .legal-doc__body {
    text-align: left;
  }

  .booking-how .booking-steps {
    justify-items: center;
  }

  .booking-step {
    max-width: 26rem;
    width: 100%;
    margin-inline: auto;
  }

  .principles__intro {
    text-align: center;
  }

  .maintenance__cta-top .btn {
    margin-inline: auto;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-links ul {
    padding-inline-start: 0;
  }

  .footer-contact .row {
    justify-content: center;
  }

  .social-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ——— Buttons ——— */
.btn,
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid var(--color-white);
  background: var(--color-brand-red-2);
  color: var(--color-white);
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.btn:hover,
.btn--primary:hover {
  background: var(--color-white);
  color: var(--color-brand-red-2);
  border-color: var(--color-brand-red-2);
  transform: scale(1.06);
}

.btn:active,
.btn--primary:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn__arrow {
  width: 1.1em;
  height: 1.1em;
}

/* ——— Typography helpers ——— */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.35rem;
}

h1,
h2,
h3 {
  color: var(--color-secondary);
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.section-head .eyebrow {
  color: var(--color-green);
}

.section-head h2 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 4vw, 2rem);
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 1rem clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-secondary)
    center / cover
    no-repeat;
}

.hero__bg .media-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 100%;
  font-size: 1rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero__content {
  text-align: left;
}

.hero__content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1.15;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.hero__content > p {
  margin: 0 0 1.75rem;
  color: rgb(255 255 255 / 92%);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-inline: 0;
}

.hero__content .btn {
  margin-inline: 0;
}

.hero__visual {
  justify-self: end;
  width: 100%;
  max-width: 640px;
}

.hero__visual .media-placeholder {
  border-radius: var(--radius);
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .hero__bg {
    background-position: 0 0;
  }
}

/* ——— Stats ——— */
.stats {
  padding: 3rem 1rem;
}

.stats .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.stats__intro h2 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  margin: 0 0 1rem;
}

.stats__intro > p {
  margin: 0 0 2rem;
}

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

.stat-card__num {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
}

.stat-card h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1.15rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.95rem;
}

.stats__photo {
  background: linear-gradient(215deg, var(--color-brand-red-2), var(--color-brand-red-2));
  padding: 10px 10px 10px 25px;
  border-radius: var(--radius);
  margin: 10px 25px 10px 10px;
}

.stats__photo .media-placeholder {
  border-radius: var(--radius);
}

@media (max-width: 767px) {
  .stats .container {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    text-align: center;
  }

  .stats__photo {
    margin: 0;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ——— Who we are ——— */
.about {
  padding: 2rem 1rem 3rem;
}

.about__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.about__titles .eyebrow {
  margin-bottom: 0.5rem;
}

.about__titles h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.about__text p {
  margin: 0;
}

.about__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about__cell {
  position: relative;
}

.about__cell--video .video-trigger {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgb(255 255 255 / 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  color: var(--color-brand-red-2);
  transition: transform 0.2s;
}

.about__cell--video .video-trigger:hover {
  transform: scale(1.06);
}

.about__cell--video .video-trigger svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

@media (max-width: 767px) {
  .about__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

/* ——— Services ——— */
.services {
  padding: clamp(3.5rem, 8vw, 5rem) 1rem 4rem;
}

.about .services .eyebrow,
.services .eyebrow {
  color: var(--color-green);
}

.service-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-muted-bg);
  padding: 30px;
  border: 15px solid var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-red-2);
}

.service-card__icon svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.learn-more,
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-brand-red-2);
  text-decoration: none;
  border-bottom: 2px solid var(--color-brand-red-2);
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.learn-more:hover,
.learn-more:focus-visible,
.service-card .learn-more:hover,
.service-card .learn-more:focus-visible {
  color: var(--color-green);
  border-bottom-color: var(--color-brand-red-2);
  transform: scale(1.06);
  opacity: 1;
}

.learn-more svg,
.service-card .learn-more svg {
  width: 1em;
  height: 1em;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.learn-more:hover svg,
.learn-more:focus-visible svg,
.service-card .learn-more:hover svg,
.service-card .learn-more:focus-visible svg {
  transform: scale(1.06);
}

/* ——— Maintenance ——— */
.maintenance {
  padding: 2rem 1rem 4rem;
}

.maintenance .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.maintenance__photos {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.maintenance__collage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.maintenance__collage-tall {
  min-height: 420px;
}

.maintenance__collage-tall .cover-media {
  min-height: 100%;
}

.maintenance__collage-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maintenance__collage-side .cover-media {
  flex: 1;
  min-height: 200px;
}

.maintenance__collage-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--color-muted-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.badge-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.badge-card__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.badge-card__body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.maintenance .badge-card h3,
.badge-card h3 {
  color: var(--color-secondary);
}

.maintenance .badge-card p,
.badge-card p {
  color: var(--color-text);
}

.badge-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.badge-card p {
  margin: 0;
  font-size: 0.9rem;
}

.maintenance__copy h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.checklist svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-green);
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .maintenance .container {
    grid-template-columns: 1fr;
  }

  .maintenance__photos {
    order: 2;
  }

  .maintenance__copy {
    order: 1;
    text-align: center;
  }

  .checklist li {
    text-align: left;
  }
}

/* ——— Quote ——— */
.quote {
  padding: 2rem 1rem 3rem;
}

.quote .container {
  max-width: 800px;
  text-align: center;
}

.quote h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.quote > .container > p {
  margin: 0 0 1.5rem;
}

.quote__frame-wrap {
  width: 100%;
  max-width: 768px;
  margin: 1rem auto;
  min-height: 280px;
}

.quote__placeholder {
  aspect-ratio: 9 / 16;
  max-height: 620px;
  margin-inline: auto;
  animation: glow 2s linear infinite;
}

@keyframes glow {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.quote iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 1rem;
  min-height: 520px;
}

.quote iframe.is-loaded {
  display: block;
}

.quote__note {
  font-size: 0.95rem;
}

.quote__note a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quote__note a:hover,
.quote__note a:focus-visible {
  color: var(--color-green);
  opacity: 1;
}

.quote__success {
  display: none;
  max-width: 768px;
  margin: 1rem auto;
  padding: 2rem;
  text-align: center;
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 0 8px rgb(0 0 0 / 13%);
}

.quote__success.is-visible {
  display: block;
}

/* ——— Bookings page ——— */
.booking-how {
  padding: 2.5rem 1rem 3rem;
  background: var(--color-muted-bg);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
  max-width: 1020px;
  margin-inline: auto;
}

.booking-step {
  text-align: center;
}

.booking-step .media-placeholder--step {
  min-height: 200px;
  margin-bottom: 1rem;
}

.booking-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.booking-step p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .booking-steps {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }
}

/* ——— Contact Us page ——— */
.contact-strip {
  padding: clamp(2rem, 5vw, 3rem) 1rem;
  background: var(--color-muted-bg);
}

.contact-strip .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-red);
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-brand-red);
  font-weight: 500;
}

.contact-map .map-frame iframe {
  min-height: 340px;
  height: min(420px, 52vw);
}

.faq.faq--contact .container {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.faq.faq--contact .faq__intro {
  text-align: center;
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .contact-strip .container {
    grid-template-columns: 1fr;
  }
}

/* ——— Day Trips (coming soon) ——— */
.coming-soon {
  padding: clamp(3rem, 8vw, 5rem) 1rem clamp(4rem, 10vw, 6rem);
  background: var(--color-white);
  text-align: center;
  color: var(--color-brand-red);
}

.coming-soon .container {
  max-width: 38rem;
  margin-inline: auto;
}

.coming-soon__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 700;
  color: var(--color-brand-red);
}

.coming-soon__subtitle {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 600;
  color: var(--color-brand-red);
}

.coming-soon__lede {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-brand-red);
}

.coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* ——— Legal / policy pages (layout only; body copy preserved verbatim) ——— */
.legal-doc {
  padding-block-end: 4rem;
  background: var(--color-white);
}

.legal-doc__inner {
  max-width: min(900px, var(--container));
  padding-inline: 1rem;
  padding-block-start: 0.5rem;
}

.legal-doc__spacer {
  height: clamp(1.25rem, 3vw, 2rem);
}

.legal-doc__page-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-secondary);
}

.legal-doc__body {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-doc__body p {
  margin: 0 0 1rem;
}

.legal-doc__body ul,
.legal-doc__body ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.legal-doc__body li {
  margin-bottom: 0.35rem;
}

.legal-doc__body a {
  word-break: break-word;
}

/* ——— FAQ ——— */
.faq {
  padding: 2rem 1rem 4rem;
}

.faq .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.faq__intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.faq__cta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-muted-bg);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.faq__cta h3 {
  margin: 0 0 0.35rem;
}

.faq__cta p {
  margin: 0 0 1rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgb(0 0 0 / 8%);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 15px;
  border: none;
  background: var(--color-muted-bg);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: left;
  cursor: pointer;
}

.accordion__trigger[aria-expanded="true"] {
  background: var(--color-brand-red-2);
  color: var(--color-white);
}

.accordion__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion__panel {
  padding: 20px 22px;
  background: var(--color-white);
  border: 1px solid #e8e8e8;
  border-top: none;
  font-size: 0.95rem;
  color: var(--color-brand-red);
}

.accordion__panel p,
.accordion__panel li,
.accordion__panel a {
  color: var(--color-brand-red);
}

.faq__cta h3,
.faq__cta p {
  color: var(--color-brand-red);
}

.accordion__panel[hidden] {
  display: none !important;
}

.accordion__panel ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

@media (max-width: 900px) {
  .faq .container {
    grid-template-columns: 1fr;
  }
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  color: var(--color-white);
  padding: 3rem 1rem 2.5rem;
  overflow: hidden;
  background: var(--color-brand-red);
}

.site-footer__bg {
  display: none;
}

.site-footer__bg .media-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 100%;
}

.site-footer__overlay {
  display: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.footer-grid h2,
.footer-grid h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.footer-brand p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

.footer-brand .btn {
  margin-top: 0.75rem;
}

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

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  color: rgb(255 255 255 / 92%);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-green);
  text-decoration: underline;
}

.footer-links a[aria-current="page"] {
  color: var(--color-green);
  font-weight: 600;
}

.footer-contact {
  font-style: normal;
}

.footer-contact .row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-row h2,
.social-row h3 {
  margin: 0;
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 12%);
  border-radius: 50%;
  color: var(--color-white);
}

.social-icons a:hover {
  background: rgb(255 255 255 / 22%);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— About Us page ——— */
.page-hero {
  position: relative;
  padding: clamp(5rem, 14vw, 9rem) 1rem clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg .media-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 100%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, var(--color-secondary) 100%);
  opacity: 0.73;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin-inline: auto;
}

.page-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.page-hero__lede {
  margin: 0 0 1.75rem;
  color: rgb(255 255 255 / 94%);
  font-size: 1.05rem;
}

.principles {
  position: relative;
  padding: clamp(3rem, 8vw, 7rem) 1rem;
  overflow: hidden;
}

.principles__bg {
  position: absolute;
  inset: 0;
}

.principles__bg .media-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: 100%;
}

.principles__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.52;
}

.principles .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.principles__intro {
  text-align: left;
}

.principles__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--color-green);
}

.principles__headline {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--color-white);
}

.principles__intro > p {
  margin: 0 0 2rem;
  color: rgb(255 255 255 / 92%);
  font-size: 0.98rem;
}

.principles__pairs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.principle-tile {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.principle-tile__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: var(--radius);
}

.principle-tile__icon svg {
  width: 22px;
  height: 22px;
}

.principle-tile h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
}

.principle-tile p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 90%);
}

.map-frame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 280px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vw);
  border: 0;
}

@media (max-width: 900px) {
  .principles .container {
    grid-template-columns: 1fr;
  }

  .map-frame {
    order: -1;
  }
}

@media (max-width: 520px) {
  .principles__row {
    grid-template-columns: 1fr;
  }
}

.maintenance-about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.maintenance-about-collage__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maintenance__cta-top {
  display: flex;
  justify-content: center;
}

@media (min-width: 1025px) {
  .maintenance__cta-top {
    justify-content: flex-start;
  }
}

/* ——— Fleet page ——— */
.section-head--center {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.fleet-intro {
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
}

.fleet-intro .section-head p {
  max-width: none;
}

.fleet-grid-section {
  padding: clamp(3.5rem, 8vw, 5rem) 1rem clamp(3rem, 8vw, 5rem);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.75rem;
}

.coach-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.coach-card__media {
  aspect-ratio: 4 / 3;
  background: var(--color-muted-bg);
}

.coach-card__media .media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.coach-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-brand-red);
}

.coach-card__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
  color: var(--color-brand-red);
}

.coach-card__body .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.fleet-why,
main > section.fleet-why {
  padding: clamp(3.5rem, 9vw, 5.5rem) 1rem;
  background: var(--color-white) !important;
  color: var(--color-text);
}

.fleet-why .eyebrow {
  color: var(--color-green);
}

.fleet-why .section-head h2 {
  color: var(--color-secondary);
}

.fleet-why .section-head p {
  color: var(--color-text);
}

.fleet-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.25rem;
  max-width: 1100px;
  margin-inline: auto;
}

.fleet-why__card {
  background: rgb(255 255 255 / 97%);
  padding: 1.65rem 1.35rem;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgb(0 0 0 / 14%);
  text-align: center;
  border-top: 4px solid var(--color-brand-red);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.fleet-why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgb(0 0 0 / 18%);
}

.fleet-why__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
}

.fleet-why__icon svg {
  width: 26px;
  height: 26px;
}

.fleet-why__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-secondary);
}

.fleet-why__card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgb(0 0 0 / 78%);
}

.fleet-how-lead {
  padding: clamp(2rem, 5vw, 3rem) 1rem 0;
}

.fleet-how-lead .section-head {
  margin-bottom: 0;
}

/* About: images left, copy + CTA right */
.maintenance--about {
  padding-top: clamp(4rem, 9vw, 6rem);
}

.maintenance--about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.maintenance--about .maintenance__photos {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.maintenance--about .maintenance__copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.maintenance--about .maintenance__copy .btn {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

main > section.stats:nth-of-type(even) .stat-card,
main > section.stats .stat-card {
  padding: 1.25rem 1.35rem;
  background: var(--color-white);
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: var(--color-text);
}

main > section.stats:nth-of-type(even) .stat-card h3,
main > section.stats:nth-of-type(even) .stat-card .stat-card__num,
main > section.stats .stat-card h3,
main > section.stats .stat-card .stat-card__num {
  color: var(--color-brand-red);
}

main > section.stats:nth-of-type(even) .stat-card p,
main > section.stats .stat-card p {
  color: var(--color-text);
}

main > section.stats:nth-of-type(even) .stats__intro h2,
main > section.stats:nth-of-type(even) .stats__intro > p {
  color: var(--color-secondary);
}

main > section.stats:nth-of-type(even) .stats__intro > p {
  color: var(--color-text);
}

@media (max-width: 1024px) {
  .maintenance--about .container {
    grid-template-columns: 1fr;
  }

  .maintenance--about .maintenance__photos {
    order: 1;
  }

  .maintenance--about .maintenance__copy {
    order: 2;
  }
}

@media (max-width: 900px) {
  .fleet-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .fleet-why__grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Who We Are eyebrow (home) ——— */
.about .eyebrow#about-eyebrow,
.about #about-eyebrow.eyebrow {
  color: var(--color-green);
}

/* ——— Alternating section bands ——— */
/* Stripe: first section after hero = white, then red, then white… */
main > section:nth-of-type(even):not(.hero):not(.page-hero):not(.fleet-why):not(.gallery-page) {
  background-color: var(--color-white);
  color: var(--color-text);
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why) {
  background-color: var(--color-brand-red);
  color: rgb(255 255 255 / 92%);
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) h1,
main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) h2,
main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) h3 {
  color: var(--color-white);
}

main > section.faq:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .faq__cta h3,
main > section.faq:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .faq__cta p {
  color: var(--color-brand-red);
}

.fleet-grid-section .coach-card__body h3,
.fleet-grid-section .coach-card__body p {
  color: var(--color-brand-red);
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon) .eyebrow {
  color: var(--color-green);
}

/* Learn More: red + underline in service cards (all section bands) */
.service-card .learn-more {
  color: var(--color-brand-red-2);
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why) .service-card,
main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why) .badge-card {
  background: var(--color-white);
  color: var(--color-text);
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .badge-card h3 {
  color: var(--color-secondary);
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .badge-card p {
  color: var(--color-text);
}

main > section:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why) .service-card h3 {
  color: var(--color-secondary);
}

main > section.services:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .service-card h3,
main > section.services:nth-of-type(even):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .service-card h3 {
  color: var(--color-brand-red);
}

/* Stats on red bands: cards stay red-themed, not white boxes */
main > section.stats:nth-of-type(odd):not(.hero):not(.page-hero) .stat-card {
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 22%);
  color: rgb(255 255 255 / 92%);
  box-shadow: none;
}

main > section.stats:nth-of-type(odd):not(.hero):not(.page-hero) .stat-card h3,
main > section.stats:nth-of-type(odd):not(.hero):not(.page-hero) .stat-card .stat-card__num {
  color: var(--color-white);
}

main > section.stats:nth-of-type(odd):not(.hero):not(.page-hero) .stats__intro h2 {
  color: var(--color-white);
}

/* Readable text inside white FAQ / coach cards on red bands */
main > section:nth-of-type(odd):not(.hero):not(.page-hero) .accordion__panel,
main > section:nth-of-type(odd):not(.hero):not(.page-hero) .accordion__panel p,
main > section.faq:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .faq__cta,
main > section.faq:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .faq__cta h3,
main > section.faq:nth-of-type(odd):not(.hero):not(.page-hero):not(.fleet-why):not(.coming-soon):not(.fleet-grid-section) .faq__cta p,
main > section:nth-of-type(odd):not(.hero):not(.page-hero) .coach-card__body h3,
main > section:nth-of-type(odd):not(.hero):not(.page-hero) .coach-card__body p {
  color: var(--color-brand-red);
}

main > section.coming-soon {
  background-color: var(--color-white) !important;
  color: var(--color-brand-red);
}

main > section.coming-soon .coming-soon__title,
main > section.coming-soon .coming-soon__subtitle,
main > section.coming-soon .coming-soon__lede,
section.coming-soon .coming-soon__title,
section.coming-soon .coming-soon__subtitle,
section.coming-soon .coming-soon__lede {
  color: var(--color-brand-red) !important;
}

/* Gallery grid section always white */
section.gallery-page {
  background-color: var(--color-white) !important;
  color: var(--color-text);
}

section.gallery-page h2,
section.gallery-page p {
  color: var(--color-text);
}

/* ——— Pre-footer CTA band ——— */
.pre-footer {
  position: relative;
  padding: clamp(3.5rem, 10vw, 6rem) 1rem;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
}

.pre-footer__bg {
  position: absolute;
  inset: 0;
}

.pre-footer__bg .cover-media {
  position: absolute;
  inset: 0;
  object-position: center 72%;
}

.pre-footer__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 55%);
}

.pre-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
}

.pre-footer__label {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
}

.pre-footer__inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-white);
}

.pre-footer__lede {
  margin: 0 0 1.5rem;
  color: rgb(255 255 255 / 92%);
}

/* Quote iframe visible without placeholder */
.quote__frame-wrap #quote-form {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}
