/* ============================================
   A to B Group — Enterprise Transport Website
   Brand: Red #C41E3A | Dark Grey #2D2D2D | White #FFFFFF
   ============================================ */

@import url("animations-modern.css");

:root {
  --red: #C41E3A;
  --red-dark: #9E1830;
  --grey: #2D2D2D;
  --grey-light: #4A4A4A;
  --grey-bg: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Syne', sans-serif;
  --container: min(1200px, 92vw);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
a { color: inherit; text-decoration: none; }

.container { width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,45,45,0.08);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo { display: flex; align-items: center; }

/* Logo wrap: consistent rectangular shape for all logos */
.logo-wrap {
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 56px;
  aspect-ratio: 2.5 / 1;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.logo-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-img { height: 40px; width: auto; }

/* Header logo: compact, clean — no forced aspect ratio */
.header .logo-wrap {
  min-width: auto;
  min-height: auto;
  aspect-ratio: auto;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header .logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.brand-logo.logo-wrap,
.page-hero .brand-logo.logo-wrap {
  min-width: 180px;
  min-height: 70px;
  padding: 1rem 1.5rem;
  margin: 0 auto 1.5rem;
}
.brand-logo.logo-wrap img,
.page-hero .brand-logo.logo-wrap img {
  max-height: 56px;
  max-width: 160px;
}
.footer-logo-wrap {
  min-width: 140px;
  min-height: 56px;
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  margin-bottom: 1rem;
}
.footer-logo-wrap .footer-logo {
  max-height: 36px;
  max-width: 120px;
  margin: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.btn-nav {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
}
.btn-nav:hover { background: var(--red-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--grey);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.45) 0%, rgba(45,45,45,0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3),
               0 4px 12px rgba(0,0,0,0.4),
               0 8px 24px rgba(0,0,0,0.5);
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-full { width: 100%; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ========== Trust Bar ========== */
.trust-bar {
  padding: 2rem 0;
  background: var(--off-white);
  border-bottom: 1px solid rgba(45,45,45,0.06);
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 1.25rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-logo-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.trust-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.trust-logo-link:hover .trust-logo,
.trust-logo:hover {
  opacity: 1;
}
.trust-logo-svg {
  height: 32px;
  max-width: 100px;
}

/* ========== Who We Serve ========== */
.customers { background: var(--white); }
.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.customer-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: var(--transition);
  color: var(--grey);
}
.customer-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196,30,58,0.12);
}
.customer-card-link {
  flex: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}
.customer-card-link:hover { color: inherit; }
.customer-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.customer-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.customer-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.6;
}
.customer-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}
.customer-cta:hover { text-decoration: underline; }

/* ========== Accreditations ========== */
.accreditations { background: var(--off-white); }
.accred-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.accred-badge {
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(45,45,45,0.06);
}
.accred-badge-btn {
  font-family: inherit;
  cursor: pointer;
  border: 1px solid rgba(45,45,45,0.06);
  transition: var(--transition);
}
.accred-badge-btn:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(196,30,58,0.15);
  transform: translateY(-2px);
}

/* Accreditation modal */
.accred-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.accred-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.accred-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
.accred-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.accred-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--off-white);
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--grey);
  transition: background var(--transition);
}
.accred-modal-close:hover {
  background: var(--grey);
  color: var(--white);
}
.accred-modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 2.5rem 1rem 0;
  color: var(--grey);
}
.accred-modal-body {
  margin-bottom: 1.5rem;
}
.accred-modal-body p,
.accred-modal-body ul { margin: 0 0 0.75rem; color: var(--grey-light); line-height: 1.6; }
.accred-modal-body ul { padding-left: 1.25rem; }
.accred-modal-body li { margin-bottom: 0.5rem; }
.accred-modal-footer .btn { display: inline-flex; }

.accred-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.accred-badge p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--grey-light);
}

/* ========== Sections ========== */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--grey);
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  color: var(--grey-light);
  font-size: 1.1rem;
}
.section-desc a { color: var(--red); font-weight: 500; }
.section-desc a:hover { text-decoration: underline; }

/* ========== Services ========== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.75rem;
}
.service-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--grey);
}
.service-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--grey-light);
}
.service-content p + p { margin-top: 0.75rem; }
.service-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
}

/* ========== Vehicle Pages ========== */
.vehicle-content {
  max-width: 720px;
  margin: 0 auto;
}
.vehicle-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--grey);
  margin: 2rem 0 0.75rem;
}
.vehicle-content h3:first-child { margin-top: 0; }
.vehicle-content p {
  margin: 0 0 1rem;
  color: var(--grey-light);
  line-height: 1.7;
}
.vehicle-content a { color: var(--red); font-weight: 500; }
.vehicle-content a:hover { text-decoration: underline; }

.vehicle-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.vehicle-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ========== Brands ========== */
.brands { background: var(--grey-bg); color: var(--white); }

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

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

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: var(--transition);
  color: var(--white);
}
.brand-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--red);
  transform: translateY(-2px);
}

.brand-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo.logo-wrap {
  width: 200px;
  min-height: 72px;
  padding: 1rem 1.5rem;
}
.brand-logo img {
  max-height: 56px;
  max-width: 168px;
  object-fit: contain;
}
.brand-atob .brand-logo img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }
.brand-tates .brand-logo.logo-wrap,
.brand-pmch .brand-logo.logo-wrap {
  background: var(--white);
}

.brand-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}
.brand-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.brand-link {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
}

/* ========== Fleet ========== */
.fleet-brand-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
}
.fleet-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fleet-main {
  height: 400px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.fleet-list { display: flex; flex-direction: column; gap: 1.5rem; }

.fleet-item {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--red);
}
.fleet-type {
  display: block;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.fleet-item p { margin: 0; color: var(--grey-light); }

/* ========== Stats ========== */
.stats {
  background: var(--red);
  color: var(--white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  align-items: stretch;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  min-height: 120px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1.1;
}
.stat-label {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  opacity: 0.95;
  line-height: 1.35;
}

/* ========== Contact ========== */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 1rem; }
.contact-details {
  margin-top: 1.5rem;
}
.contact-details a {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.contact-details p { margin: 1rem 0 0; color: var(--grey-light); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid rgba(45,45,45,0.15);
  border-radius: 8px;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

/* ========== Footer ========== */
.footer {
  background: var(--grey-bg);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { margin: 0; opacity: 0.8; font-size: 0.95rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--red); }

.footer-contact a {
  display: block;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.footer-contact p { margin: 0; opacity: 0.8; font-size: 0.9rem; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; opacity: 0.6; }
.footer-bottom a { color: var(--red); opacity: 0.9; }
.footer-bottom a:hover { opacity: 1; }

/* ========== Page-specific: Tates & PMCH ========== */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero .section-eyebrow { color: var(--red); }
.page-hero .section-title { color: var(--white); font-weight: 700; }
.page-hero .section-desc { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.5) 0%, rgba(45,45,45,0.4) 100%);
  z-index: 1;
}
.page-hero .hero-content-inner {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3),
               0 4px 12px rgba(0,0,0,0.4),
               0 8px 24px rgba(0,0,0,0.5);
}
.page-hero .tates-hero-bg,
.page-hero .pmch-hero-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  opacity: 1;
  transform-origin: center center;
  will-change: transform;
}
.section-dark {
  background: var(--grey-bg);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .feature-list li { border-color: rgba(255,255,255,0.1); }
.section-dark .feature-list li::before { color: var(--red); }

/* Tates Tours — lifestyle spotlight (day trips / brochure) */
.tates-tours-spotlight {
  padding: 0;
  overflow: hidden;
  background: var(--grey-bg);
}
.tates-tours-spotlight__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: min(520px, 78vh);
  max-width: 1600px;
  margin: 0 auto;
}
.tates-tours-spotlight__figure {
  margin: 0;
  position: relative;
  min-height: 280px;
}
.tates-tours-spotlight__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 55%, rgba(26,26,26,0.35) 100%);
}
.tates-tours-spotlight__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.tates-tours-spotlight__content {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.tates-tours-spotlight .section-eyebrow { color: var(--red); }
.tates-tours-spotlight .section-title {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  margin: 0.35rem 0 1rem;
}
.tates-tours-spotlight .section-desc {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 36rem;
}
.tates-tours-spotlight__tagline {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}
.tates-tours-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (max-width: 900px) {
  .tates-tours-spotlight__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .tates-tours-spotlight__figure {
    min-height: 220px;
    max-height: 42vh;
  }
  .tates-tours-spotlight__figure::after {
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.5) 100%);
  }
}

/* Tates — brochure / booking clarity strip */
.tates-at-a-glance {
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--off-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.tates-glance__inner {
  max-width: 920px;
  margin: 0 auto;
}
.tates-glance__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.tates-glance__lede {
  margin: 0 0 1.5rem !important;
  text-align: left;
  max-width: none !important;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--grey-light);
}
.tates-glance__actions {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.tates-glance__actions li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}
.tates-glance__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  background: var(--red);
  color: var(--white) !important;
  border: 2px solid var(--red);
  transition: var(--transition);
}
.tates-glance__btn:hover {
  filter: brightness(1.06);
  color: var(--white) !important;
}
.tates-glance__btn--outline {
  background: transparent;
  color: var(--red) !important;
}
.tates-glance__btn--outline:hover {
  background: rgba(200, 32, 40, 0.08);
  color: var(--red) !important;
}
.tates-glance__hint {
  font-size: 0.8rem;
  color: var(--grey-light);
}
.tates-glance__fineprint {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--grey-light);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.tour-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  color: inherit;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }

.tour-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.tour-card-content { padding: 1.5rem; }
.tour-card-content h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.tour-card-content p { margin: 0; font-size: 0.9rem; color: var(--grey-light); }
.tour-card-content .price { color: var(--red); font-weight: 600; margin-top: 0.5rem; }

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(45,45,45,0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}

/* ========== Scroll Animations ========== */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .hero-content > *,
  .page-hero .hero-content-inner > *,
  .section-header { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.animate-on-scroll.animate-exit {
  opacity: 0;
  transform: translateY(-20px);
}

.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }

/* Hero & page load fade-in */
.hero-content > *,
.page-hero .hero-content-inner > * {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-eyebrow,
.page-hero .section-eyebrow { animation-delay: 0.1s; opacity: 0; }
.page-hero .brand-logo { animation-delay: 0.05s; opacity: 0; }
.hero-title,
.page-hero .section-title { animation-delay: 0.2s; opacity: 0; }
.hero-subtitle,
.page-hero .section-desc { animation-delay: 0.35s; opacity: 0; }
.hero-cta,
.page-hero .btn { animation-delay: 0.5s; opacity: 0; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section header fade */
.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}
.section-header.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  padding: 0.75rem 0;
  background: var(--off-white);
  border-bottom: 1px solid rgba(45,45,45,0.06);
  font-size: 0.85rem;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--grey-light);
}
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child span { color: var(--grey-light); }

/* ========== FAQ ========== */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(45,45,45,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey);
  margin: 0 0 0.5rem;
}
.faq-item p {
  margin: 0;
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item a { color: var(--red); font-weight: 500; }
.faq-item a:hover { text-decoration: underline; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: 1fr; }
  .fleet-showcase { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat { padding: 1.5rem 1rem; min-height: 100px; }
  .stat-label { max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .hero-cta { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .stat { padding: 1.25rem 1rem; min-height: 90px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .btn { padding: 0.9rem 1.5rem; min-height: 48px; }
  .service-img { height: 180px; }
  .tour-card-img { height: 160px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .stat-num { font-size: 1.75rem; }
}
