/* ===========================================
   R5 EXECUTIVE - SHARED STYLESHEET
   Soho House warmth × Blacklane precision
   =========================================== */

:root {
  --r5-cream: #FAF9F7;
  --r5-dark: #1a1a1a;
  --r5-grey: #888;
  --r5-light-grey: #f5f5f3;
  --r5-border: #e8e6e3;
  --r5-serif: 'Playfair Display', Georgia, serif;
  --r5-sans: 'Sora', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--r5-sans);
  color: var(--r5-dark);
  background: var(--r5-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Global link colour reset - no browser-default blue */
a {
  color: var(--r5-dark);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.r5-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }


/* ===========================================
   HEADER
   =========================================== */

.r5-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 40px;
  transition: all 0.4s ease;
}

.r5-header.scrolled {
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 40px;
  box-shadow: 0 1px 0 var(--r5-border);
}

.r5-header.hidden {
  transform: translateY(-100%);
}

.r5-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.r5-logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.r5-header.scrolled .r5-logo-img {
  filter: brightness(0);
  height: 38px;
}

.r5-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.r5-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.r5-nav a:hover,
.r5-nav a.active {
  opacity: 0.7;
}

.r5-header.scrolled .r5-nav a {
  color: var(--r5-dark);
}

.r5-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.r5-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.r5-header.scrolled .r5-menu-toggle span {
  background: var(--r5-dark);
}

.r5-menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.r5-menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ===========================================
   HEADER DROPDOWNS
   =========================================== */

.r5-nav-item {
  position: relative;
}
.r5-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 16px 0;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  border: 1px solid var(--r5-border);
}
.r5-nav-item:hover .r5-nav-dropdown,
.r5-nav-item.active .r5-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.r5-nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--r5-dark) !important;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.r5-nav-dropdown a:hover {
  background: var(--r5-light-grey);
  opacity: 1 !important;
}
.r5-nav-dropdown .r5-dropdown-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r5-grey);
  padding: 8px 24px 6px;
}


/* ===========================================
   MOBILE NAV
   =========================================== */

.r5-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--r5-cream);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.r5-mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.r5-mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.r5-mobile-nav a {
  color: var(--r5-dark);
  text-decoration: none;
  font-size: 24px;
  font-family: var(--r5-serif);
}

.r5-mobile-cta {
  margin-top: 20px;
  padding: 16px 40px;
  background: var(--r5-dark);
  color: #fff !important;
  border-radius: 100px;
  font-family: var(--r5-sans) !important;
  font-size: 14px !important;
}


/* ===========================================
   MOBILE NAV ACCORDIONS
   =========================================== */

.r5-mobile-accordion {
  width: 100%;
  text-align: center;
}
.r5-mobile-accordion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--r5-dark);
  text-decoration: none;
  font-size: 24px;
  font-family: var(--r5-serif);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.r5-mobile-accordion-toggle::after {
  content: '+';
  font-size: 18px;
  font-family: var(--r5-sans);
  transition: transform 0.3s ease;
}
.r5-mobile-accordion.active .r5-mobile-accordion-toggle::after {
  transform: rotate(45deg);
}
.r5-mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.r5-mobile-accordion.active .r5-mobile-accordion-content {
  max-height: 300px;
}
.r5-mobile-accordion-content a {
  display: block;
  font-size: 16px !important;
  font-family: var(--r5-sans) !important;
  color: var(--r5-grey) !important;
  padding: 8px 0;
}


/* ===========================================
   HERO
   =========================================== */

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

.r5-hero-short {
  min-height: 70vh;
}

.r5-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.r5-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.r5-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.r5-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  max-width: 900px;
}

.r5-hero-tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.r5-hero-title {
  font-family: var(--r5-serif);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.r5-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.r5-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.r5-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.r5-hero-scroll span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.r5-scroll-line {
  width: 1px;
  height: 60px;
  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; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}


/* ===========================================
   HERO LOAD ANIMATIONS
   =========================================== */

.r5-hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
body.loaded .r5-hero-content > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
body.loaded .r5-hero-content > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
body.loaded .r5-hero-content > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
body.loaded .r5-hero-content > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }


/* ===========================================
   BUTTONS
   =========================================== */

.r5-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: var(--r5-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.r5-btn-primary:hover {
  background: var(--r5-cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.r5-btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.r5-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.r5-btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--r5-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--r5-dark);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.r5-btn-secondary:hover {
  background: var(--r5-dark);
  color: #fff;
  transform: scale(1.02);
}

.r5-btn-ghost-light {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.r5-btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.r5-btn-dark {
  display: inline-block;
  padding: 14px 32px;
  background: var(--r5-dark);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.r5-btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}


/* ===========================================
   SECTIONS
   =========================================== */

.r5-section {
  padding: 120px 0;
}

.r5-intro-home {
  padding: 180px 0;
}

.r5-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.r5-section-sub {
  font-size: 15px;
  color: #999;
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.r5-intro {
  background: var(--r5-cream);
}

.r5-section-dark {
  background: var(--r5-dark);
}

.r5-section-cream {
  background: var(--r5-cream);
}

.r5-section-white {
  background: #fff;
}

.r5-section-light {
  background: var(--r5-light-grey);
}


/* ===========================================
   TYPOGRAPHY
   =========================================== */

/* Global h2 default — Soho House serif, light weight */
.r5-section h2,
.r5-section-header h2 {
  font-family: var(--r5-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--r5-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.r5-section-dark h2,
.r5-final-cta h2 {
  color: #fff;
}

.r5-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.r5-label-light {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.r5-headline {
  font-family: var(--r5-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--r5-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.r5-headline-light {
  font-family: var(--r5-serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}

.r5-subhead {
  font-size: 16px;
  color: #999;
  max-width: 500px;
  margin: 24px auto 0;
  line-height: 1.65;
}

.r5-body {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 24px;
}

.r5-body-light {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}


/* ===========================================
   STORY GRID (About page pattern)
   =========================================== */

.r5-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.r5-story-reverse {
  direction: rtl;
}

.r5-story-reverse > * {
  direction: ltr;
}

.r5-story-content .r5-headline,
.r5-story-content .r5-headline-light {
  margin-bottom: 30px;
}

.r5-story-image {
  border-radius: 10px;
  overflow: hidden;
}

.r5-story-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* ===========================================
   BLOCKQUOTE
   =========================================== */

.r5-quote-section {
  background: #fff;
  padding: 100px 0;
}

.r5-blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--r5-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: normal;
  color: var(--r5-dark);
  line-height: 1.6;
}

.r5-blockquote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--r5-sans);
  font-size: 14px;
  font-style: normal;
  color: var(--r5-grey);
}


/* ===========================================
   INTRO SECTION
   =========================================== */

.r5-intro-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.r5-intro-content .r5-headline {
  margin-bottom: 24px;
}

.r5-intro-content p,
.r5-intro-body {
  font-size: 16px;
  color: #888;
  line-height: 1.75;
}


/* ===========================================
   SERVICE CARDS (Homepage)
   =========================================== */

.r5-services {
  background: #fff;
}

.r5-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
}

.r5-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--r5-cream);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.r5-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.r5-service-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.r5-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.r5-service-card:hover .r5-service-img img {
  transform: scale(1.05);
}

.r5-service-info {
  padding: 28px;
}

.r5-service-info h3 {
  font-family: var(--r5-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.r5-service-info p {
  font-size: 15px;
  color: var(--r5-grey);
  margin-bottom: 16px;
}

.r5-service-card h3 {
  font-family: var(--r5-serif);
  font-size: 22px;
  font-weight: 400;
  padding: 28px 28px 8px;
}
.r5-service-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  padding: 0 28px;
}
.r5-card-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 28px 28px;
  color: var(--r5-dark);
}


/* ===========================================
   EDITORIAL FEATURE (full-width service highlight)
   =========================================== */

.r5-editorial-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  text-decoration: none;
  color: inherit;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 80px;
  align-items: center;
}
.r5-editorial-feature-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}
.r5-editorial-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.r5-editorial-feature:hover .r5-editorial-feature-img img {
  transform: scale(1.03);
}
.r5-editorial-feature-text {
  padding: 40px 0;
}
.r5-editorial-feature-text h3 {
  font-family: var(--r5-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
}
.r5-editorial-feature-text p:not(.r5-label) {
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.75;
  margin-bottom: 24px;
}


/* ===========================================
   SERVICE LIST (stacked rows, not grid boxes)
   =========================================== */

.r5-service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--r5-border);
}
.r5-service-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--r5-border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.r5-service-row:hover {
  opacity: 0.8;
}
.r5-service-row-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 10px;
}
.r5-service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.r5-service-row-text h3 {
  font-family: var(--r5-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.r5-service-row-text p {
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}


/* ===========================================
   SPLIT HEADER (heading left, link right)
   =========================================== */

.r5-split-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.r5-split-header .r5-label {
  margin-bottom: 8px;
}
.r5-split-header h2 {
  margin-bottom: 0;
}


/* ===========================================
   FLEET HORIZONTAL SCROLL
   =========================================== */

.r5-fleet-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
  scrollbar-width: none;
  justify-content: center;
}
.r5-fleet-scroll::-webkit-scrollbar {
  display: none;
}
.r5-fleet-scroll-card {
  flex: 0 0 calc((100% - 96px) / 4);
  min-width: 220px;
  max-width: 300px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.r5-fleet-scroll-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
}
.r5-fleet-scroll-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.r5-fleet-scroll-card:hover .r5-fleet-scroll-img img {
  transform: scale(1.03);
}
.r5-fleet-scroll-card h3 {
  font-family: var(--r5-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.r5-fleet-scroll-card .r5-fleet-class {
  font-size: 13px;
  color: var(--r5-grey);
}


/* ===========================================
   ANIMATED LINK UNDERLINE
   =========================================== */

.r5-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--r5-dark);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}
.r5-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--r5-dark);
  transition: width 0.3s ease;
}
.r5-service-card:hover .r5-link::after,
.r5-link:hover::after {
  width: 100%;
}


/* ===========================================
   FLEET CARDS
   =========================================== */

.r5-fleet-section {
  background: var(--r5-light-grey);
}

.r5-fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.r5-fleet-card {
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.r5-fleet-card:hover {
  transform: translateY(-4px);
}

.r5-fleet-img {
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--r5-light-grey);
}

.r5-fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  padding: 16px;
}

.r5-fleet-img-photo img {
  object-fit: cover;
  padding: 0;
}

.r5-fleet-card:hover .r5-fleet-img img {
  transform: scale(1.05);
}

/* Fleet card image size normalization */
.r5-fleet-img img.r5-img-scale-up {
  transform: scale(1.15);
}
.r5-fleet-img img.r5-img-scale-down-sm {
  transform: scale(0.9);
}
.r5-fleet-img img.r5-img-scale-down {
  transform: scale(0.85);
}
.r5-fleet-card:hover .r5-fleet-img img.r5-img-scale-up {
  transform: scale(1.2);
}
.r5-fleet-card:hover .r5-fleet-img img.r5-img-scale-down-sm {
  transform: scale(0.95);
}
.r5-fleet-card:hover .r5-fleet-img img.r5-img-scale-down {
  transform: scale(0.9);
}

.r5-fleet-card h3 {
  font-family: var(--r5-serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}

.r5-fleet-card p {
  font-size: 13px;
  color: #999;
}

.r5-section-cta {
  text-align: center;
  margin-top: 20px;
}

.r5-btn-center {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.r5-fleet-cta {
  text-align: center;
}

.r5-fleet-preview {
  background: var(--r5-cream);
}

/* Dark button variant for use on light backgrounds */
.r5-fleet-preview .r5-btn-primary,
.r5-section-cta .r5-btn-primary {
  background: var(--r5-dark);
  color: #fff;
}
.r5-fleet-preview .r5-btn-primary:hover,
.r5-section-cta .r5-btn-primary:hover {
  background: #333;
}


/* ===========================================
   FLEET IMAGE CAROUSEL
   =========================================== */

.r5-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.r5-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.r5-carousel-slide {
  min-width: 100%;
  aspect-ratio: 4/3;
}
.r5-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.r5-carousel-prev,
.r5-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.r5-carousel-prev { left: 16px; }
.r5-carousel-next { right: 16px; }
.r5-carousel-prev:hover,
.r5-carousel-next:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.r5-carousel-prev svg,
.r5-carousel-next svg {
  width: 20px;
  height: 20px;
}
.r5-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.r5-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.r5-carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}


/* ===========================================
   TRUST BAR (Marquee)
   =========================================== */

.r5-trust-bar {
  padding: 36px 0;
  background: #fff;
  border-top: 1px solid var(--r5-border);
  border-bottom: 1px solid var(--r5-border);
}
.r5-trust-bar .r5-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.r5-trust-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
}
.r5-trust-marquee {
  display: flex;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.r5-trust-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 70s linear infinite;
  flex-shrink: 0;
  will-change: transform;
}
.r5-trust-track img {
  height: 26px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.r5-trust-track img:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* r5-marquee variant (about/wedding pages) — matches r5-trust-marquee */
.r5-marquee {
  display: flex;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.r5-marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 70s linear infinite;
  flex-shrink: 0;
  will-change: transform;
}
.r5-marquee-track img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.r5-marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Legacy trust logos (keep for backward compat) */
.r5-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.r5-trust-logos img {
  height: 28px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.r5-trust-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* ===========================================
   WHY R5 / DIFFERENTIATORS
   =========================================== */

.r5-why {
  background: var(--r5-cream);
}

.r5-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.r5-why-content .r5-headline {
  margin-bottom: 40px;
}

.r5-why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.r5-why-point h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.r5-why-point p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

.r5-why-img,
.r5-why-image {
  border-radius: 10px;
  overflow: hidden;
}

.r5-why-img img,
.r5-why-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* ===========================================
   VALUES GRID
   =========================================== */

.r5-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.r5-value-card {
  padding: 36px;
  background: var(--r5-light-grey);
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.r5-value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.r5-value-card h3 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 12px;
}

.r5-value-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}


/* ===========================================
   CLIENTS GRID
   =========================================== */

.r5-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.r5-client-card {
  padding: 28px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}

.r5-client-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.r5-client-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}


/* ===========================================
   BOOKING SECTION
   =========================================== */

.r5-booking {
  background: var(--r5-light-grey);
}

.r5-booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.r5-booking-info .r5-headline {
  margin-bottom: 20px;
}

.r5-booking-contact {
  margin-top: 40px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.r5-booking-contact h3 {
  font-family: var(--r5-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--r5-dark);
}

.r5-booking-contact p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

.r5-booking-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.r5-booking-contact-details .r5-booking-phone {
  font-size: 18px;
  font-weight: 400;
  color: var(--r5-dark);
}

.r5-booking-contact-details .r5-booking-email {
  font-size: 15px;
  color: #888;
}

.r5-booking-form-wrap {
  max-width: 100%;
}

.r5-booking-form-wrap h2 {
  font-family: var(--r5-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.r5-booking-quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.r5-booking-quick .r5-form-group {
  display: flex;
  flex-direction: column;
}

.r5-booking-quick .r5-form-group label {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.r5-booking-quick .r5-form-group input {
  font-family: var(--r5-sans);
  font-size: 15px;
  padding: 16px 20px;
  border: 1px solid var(--r5-border);
  border-radius: 8px;
  background: var(--r5-light-grey);
  color: var(--r5-dark);
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}

.r5-booking-quick .r5-form-group input:focus {
  outline: none;
  border-color: var(--r5-dark);
  background: #fff;
}

.r5-booking-quick .r5-form-group input::placeholder {
  color: #bbb;
}

.r5-btn-full {
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  background: var(--r5-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--r5-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.r5-btn-full:hover {
  background: #333;
}

.r5-contact-item {
  display: block;
  text-decoration: none;
  padding: 20px 24px;
  background: var(--r5-light-grey);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.r5-contact-item:hover {
  background: var(--r5-border);
}

.r5-contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r5-grey);
  margin-bottom: 4px;
}

.r5-contact-value {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--r5-dark);
}

.r5-booking-form {
  background: var(--r5-light-grey);
  border-radius: 10px;
  padding: 40px;
  min-height: 400px;
}


/* ===========================================
   FAQ
   =========================================== */

.r5-faq {
  background: var(--r5-light-grey);
}

.r5-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.r5-faq-item {
  border-bottom: 1px solid var(--r5-border);
}

.r5-faq-item:first-child {
  border-top: 1px solid var(--r5-border);
}

.r5-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--r5-sans);
  text-align: left;
}

.r5-faq-question span:first-child {
  font-size: 16px;
  font-weight: 400;
  color: var(--r5-dark);
}

.r5-faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--r5-grey);
  transition: transform 0.3s ease;
}

.r5-faq-item.active .r5-faq-icon {
  transform: rotate(45deg);
}

.r5-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.r5-faq-item.active .r5-faq-answer {
  max-height: 300px;
}

.r5-faq-answer p {
  padding-bottom: 24px;
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}

.r5-faq-answer a {
  color: var(--r5-dark);
}
.r5-faq-answer a:hover {
  text-decoration: underline;
}


/* ===========================================
   BLOG ARTICLE
   =========================================== */

.r5-article {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.r5-article-meta {
  font-family: var(--r5-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 48px;
}

.r5-article-meta span {
  margin: 0 12px;
  opacity: 0.4;
}

.r5-article h2 {
  font-family: var(--r5-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  color: var(--r5-dark);
  line-height: 1.3;
  margin: 56px 0 20px;
}

.r5-article h2:first-of-type {
  margin-top: 0;
}

.r5-article p {
  font-family: var(--r5-sans);
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.8;
  margin-bottom: 20px;
}

.r5-article ul,
.r5-article ol {
  font-family: var(--r5-sans);
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.8;
  margin: 0 0 20px 20px;
}

.r5-article li {
  margin-bottom: 8px;
}

.r5-article strong {
  color: var(--r5-dark);
  font-weight: 500;
}

.r5-article-cta {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--r5-border);
  text-align: center;
}

.r5-article-cta p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 24px;
}

.r5-article-cta .r5-btn-primary {
  display: inline-block;
}

@media (max-width: 640px) {
  .r5-article {
    padding: 60px 20px 80px;
  }

  .r5-article h2 {
    margin-top: 40px;
  }
}


/* ===========================================
   BLOG / JOURNAL
   =========================================== */

.r5-blog-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.r5-blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}

.r5-blog-card:hover {
  transform: translateY(-4px);
}

.r5-blog-card-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.r5-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.r5-blog-card:hover .r5-blog-card-img img {
  transform: scale(1.03);
}

.r5-blog-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.r5-blog-card-text time {
  font-family: var(--r5-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r5-grey);
}

.r5-blog-card-text h2 {
  font-family: var(--r5-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--r5-dark);
}

.r5-blog-card-text p {
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.7;
}

.r5-blog-card-text .r5-link {
  font-family: var(--r5-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--r5-dark);
  margin-top: 4px;
}

/* ===========================================
   FINAL CTA
   =========================================== */

.r5-final-cta {
  background: var(--r5-dark);
  text-align: center;
  padding: 120px 0;
}

.r5-final-content {
  max-width: 600px;
  margin: 0 auto;
}

.r5-final-content > p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.r5-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.r5-final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.r5-final-cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}

.r5-final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===========================================
   FOOTER
   =========================================== */

.r5-footer {
  background: #111;
  padding: 100px 0 40px;
}

.r5-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.r5-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.r5-footer-brand p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 24px;
}

.r5-social {
  display: flex;
  gap: 20px;
}

.r5-social a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.r5-social a:hover {
  color: #fff;
}

.r5-footer-col h4 {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.r5-footer-col a,
.r5-footer-col span {
  display: block;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.r5-footer-col a:hover {
  color: #fff;
}

.r5-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid #222;
  text-align: center;
}

.r5-footer-bottom p {
  font-size: 13px;
  color: #888;
}


/* ===========================================
   CONTACT FORM
   =========================================== */

.r5-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.r5-form-group {
  display: flex;
  flex-direction: column;
}

.r5-form-group.full-width {
  grid-column: 1 / -1;
}

.r5-form-group label {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.r5-form-group label .required {
  color: #c44;
}

.r5-form-group input,
.r5-form-group select,
.r5-form-group textarea {
  font-family: var(--r5-sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--r5-border);
  border-radius: 8px;
  background: #fff;
  color: var(--r5-dark);
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.r5-form-group input:focus,
.r5-form-group select:focus,
.r5-form-group textarea:focus {
  outline: none;
  border-color: var(--r5-dark);
}

.r5-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.r5-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.r5-form-checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
}

.r5-form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--r5-border);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: auto;
}

.r5-form-checkbox label {
  margin-bottom: 0;
  cursor: pointer;
}

.r5-form-submit {
  margin-top: 12px;
}

.r5-form-submit button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--r5-dark);
  color: #fff;
  font-family: var(--r5-sans);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.r5-form-submit button:hover {
  background: #333;
  transform: translateY(-2px);
}

.r5-form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.r5-form-success h3 {
  font-family: var(--r5-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.r5-form-success p {
  font-size: 16px;
  color: var(--r5-grey);
  line-height: 1.7;
}

.r5-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.r5-sidebar-card {
  background: var(--r5-light-grey);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 0;
}

.r5-sidebar-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.r5-sidebar-card .r5-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.r5-sidebar-card .r5-contact-row:last-child {
  margin-bottom: 0;
}

.r5-sidebar-card .r5-contact-row span:first-child {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r5-grey);
}

.r5-sidebar-card .r5-contact-row a,
.r5-sidebar-card .r5-contact-row span:last-child {
  font-size: 16px;
  font-weight: 500;
  color: var(--r5-dark);
  text-decoration: none;
}

.r5-sidebar-card .r5-contact-row a:hover {
  opacity: 0.7;
}

.r5-sidebar-card ul {
  list-style: none;
}

.r5-sidebar-card li {
  font-size: 14px;
  color: var(--r5-grey);
  padding: 8px 0;
  border-bottom: 1px solid var(--r5-border);
  line-height: 1.6;
}

.r5-sidebar-card li:last-child {
  border-bottom: none;
}


/* ===========================================
   FLEET PAGE - VEHICLE DETAIL CARDS
   =========================================== */

.r5-vehicle-class {
  margin-bottom: 80px;
}

.r5-vehicle-class:last-child {
  margin-bottom: 0;
}

.r5-vehicle-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.r5-vehicle-card.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.r5-vehicle-card.reverse .r5-vehicle-image {
  order: 2;
}

.r5-vehicle-card.reverse .r5-vehicle-details {
  order: 1;
}

.r5-vehicle-image {
  border-radius: 16px;
  overflow: hidden;
}

.r5-vehicle-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.r5-vehicle-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.r5-vehicle-details h2 {
  font-family: var(--r5-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  margin-bottom: 8px;
}

.r5-vehicle-subtitle {
  font-size: 15px;
  color: var(--r5-grey);
  margin-bottom: 24px;
}

.r5-vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.r5-spec {
  padding: 16px;
  background: var(--r5-light-grey);
  border-radius: 8px;
}

.r5-spec-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r5-grey);
  margin-bottom: 4px;
}

.r5-spec-value {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--r5-dark);
}

.r5-vehicle-features h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--r5-dark);
}

.r5-vehicle-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.r5-vehicle-features li {
  font-size: 14px;
  color: var(--r5-grey);
  padding-left: 16px;
  position: relative;
}

.r5-vehicle-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--r5-border);
}

.r5-vehicle-best {
  margin-top: 20px;
  padding: 16px;
  background: var(--r5-light-grey);
  border-radius: 8px;
}

.r5-vehicle-best span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r5-grey);
}

.r5-vehicle-best p {
  font-size: 15px;
  color: var(--r5-dark);
  margin-top: 4px;
}


/* ===========================================
   IMAGE HOVER ZOOM (Global)
   =========================================== */

.r5-fleet-img img,
.r5-story-image img,
.r5-vehicle-image img {
  transition: transform 0.6s ease;
}
.r5-fleet-card:hover .r5-fleet-img img,
.r5-story-image:hover img {
  transform: scale(1.05);
}
.r5-fleet-card:hover .r5-fleet-img img.r5-img-scale-up {
  transform: scale(1.2);
}
.r5-fleet-card:hover .r5-fleet-img img.r5-img-scale-down-sm {
  transform: scale(0.95);
}
.r5-fleet-card:hover .r5-fleet-img img.r5-img-scale-down {
  transform: scale(0.9);
}


/* ===========================================
   SERVICE PAGE COMPONENTS
   =========================================== */

.r5-process {
  counter-reset: step;
}

.r5-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.r5-process-step {
  text-align: center;
  counter-increment: step;
}

.r5-process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--r5-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
}

.r5-process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.r5-process-step p {
  font-size: 14px;
  color: var(--r5-grey);
  line-height: 1.7;
}

.r5-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.r5-feature-card {
  padding: 32px;
  background: var(--r5-light-grey);
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.r5-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.r5-feature-card h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
}

.r5-feature-card p {
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.7;
}

.r5-stats-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 0;
}

.r5-stat {
  text-align: center;
}

.r5-stat-number {
  display: block;
  font-family: var(--r5-serif);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.r5-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.r5-airports-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.r5-airport-card {
  padding: 28px;
  background: var(--r5-light-grey);
  border-radius: 12px;
}

.r5-airport-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.r5-airport-card p {
  font-size: 14px;
  color: var(--r5-grey);
  line-height: 1.6;
}

.r5-case-study-card {
  background: var(--r5-light-grey);
  border-radius: 16px;
  overflow: hidden;
}

.r5-case-study-card .r5-case-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.r5-case-study-card .r5-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r5-case-study-card .r5-case-body {
  padding: 40px;
}

.r5-case-stats {
  display: flex;
  gap: 40px;
  margin: 24px 0;
  justify-content: center;
}

.r5-case-stat {
  text-align: center;
  min-width: 80px;
}

.r5-case-stat-number {
  display: block;
  font-family: var(--r5-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--r5-dark);
  letter-spacing: -1px;
}

.r5-case-stat-label {
  font-size: 12px;
  color: var(--r5-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ===========================================
   LOCATION PAGE COMPONENTS
   =========================================== */

.r5-routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.r5-route-card {
  padding: 28px;
  background: var(--r5-light-grey);
  border-radius: 12px;
}

.r5-route-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.r5-route-card p {
  font-size: 14px;
  color: var(--r5-grey);
  line-height: 1.6;
}

.r5-map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--r5-light-grey);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r5-grey);
  font-size: 15px;
}


/* ===========================================
   LEGAL PAGES
   =========================================== */

.r5-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.r5-legal-content h2 {
  font-family: var(--r5-serif);
  font-size: 28px;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 20px;
}

.r5-legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.r5-legal-content p {
  font-size: 16px;
  color: var(--r5-grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.r5-legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.r5-legal-content li {
  font-size: 16px;
  color: var(--r5-grey);
  line-height: 1.8;
  margin-bottom: 8px;
}

.r5-legal-content a {
  color: var(--r5-dark);
}

.r5-legal-meta {
  font-size: 14px;
  color: var(--r5-grey);
  margin-bottom: 40px;
}


/* ===========================================
   THANK YOU PAGE
   =========================================== */

.r5-thankyou-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 40px;
}

.r5-thankyou-content .r5-headline {
  margin-bottom: 20px;
}

.r5-thankyou-content .r5-body {
  margin-bottom: 32px;
}


/* ===========================================
   GOOGLE REVIEWS SECTION
   =========================================== */

.r5-reviews {
  background: var(--r5-light-grey);
}
.r5-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}
.r5-reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.r5-reviews-stars {
  display: flex;
  gap: 4px;
  color: #FFC107;
  font-size: 24px;
}
.r5-reviews-score {
  font-size: 36px;
  font-weight: 600;
  color: var(--r5-dark);
  letter-spacing: -1px;
}
.r5-reviews-count {
  font-size: 14px;
  color: var(--r5-grey);
}
.r5-reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.r5-reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}
.r5-review-card {
  min-width: 100%;
  padding: 48px;
  text-align: center;
}
.r5-review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #FFC107;
  font-size: 18px;
  margin-bottom: 20px;
}
.r5-review-text {
  font-family: var(--r5-serif);
  font-size: 18px;
  font-style: normal;
  line-height: 1.6;
  color: var(--r5-dark);
  margin-bottom: 20px;
}
.r5-review-author {
  font-family: var(--r5-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--r5-grey);
}
.r5-review-time {
  font-family: var(--r5-sans);
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}
.r5-reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.r5-reviews-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--r5-border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.r5-reviews-nav button:hover {
  background: var(--r5-dark);
  color: #fff;
  border-color: var(--r5-dark);
}
.r5-reviews-prev,
.r5-reviews-next {
  background: none;
  border: 1px solid var(--r5-border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--r5-dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.r5-reviews-prev:hover,
.r5-reviews-next:hover {
  background: var(--r5-dark);
  color: #fff;
  border-color: var(--r5-dark);
}
.r5-reviews-google {
  text-align: center;
  margin-top: 30px;
}
.r5-reviews-google a {
  font-size: 14px;
  font-weight: 500;
  color: var(--r5-grey);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.r5-reviews-google a:hover {
  color: var(--r5-dark);
}


/* ===========================================
   BOOKING FORM TUNNEL (Full-screen modal)
   =========================================== */

.r5-tunnel-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--r5-cream);
  overflow-y: auto;
  /* Visibility controlled by JS via display:none/flex and is-open class */
}
.r5-tunnel-overlay.active,
.r5-tunnel-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.r5-tunnel-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(10px);
}
.r5-tunnel-back {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--r5-sans);
  color: var(--r5-grey);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.r5-tunnel-back:hover { color: var(--r5-dark); }
.r5-tunnel-back svg { width: 16px; height: 16px; }
.r5-tunnel-progress {
  display: flex;
  gap: 8px;
}
.r5-tunnel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--r5-border);
  transition: all 0.3s ease;
}
.r5-tunnel-dot.active { background: var(--r5-dark); transform: scale(1.3); }
.r5-tunnel-dot.completed { background: var(--r5-dark); }
.r5-tunnel-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.r5-tunnel-close:hover { background: var(--r5-light-grey); }
.r5-tunnel-close svg { width: 20px; height: 20px; color: var(--r5-dark); }
.r5-tunnel-body {
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.r5-tunnel-step {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.r5-tunnel-step.active {
  display: block;
  opacity: 1;
}
.r5-tunnel-title {
  font-family: var(--r5-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--r5-dark);
}
.r5-tunnel-subtitle {
  font-size: 16px;
  color: var(--r5-grey);
  margin-top: -30px;
  margin-bottom: 40px;
}
.r5-tunnel-field {
  margin-bottom: 24px;
}
.r5-tunnel-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--r5-grey);
  margin-bottom: 8px;
}
.r5-tunnel-field input,
.r5-tunnel-field select,
.r5-tunnel-field textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--r5-sans);
  font-size: 16px;
  border: 1px solid var(--r5-border);
  border-radius: 12px;
  background: #fff;
  color: var(--r5-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}
.r5-tunnel-field input:focus,
.r5-tunnel-field select:focus,
.r5-tunnel-field textarea:focus {
  outline: none;
  border-color: var(--r5-dark);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.05);
}
.r5-tunnel-field textarea {
  resize: vertical;
  min-height: 100px;
}
.r5-tunnel-field .error {
  border-color: #c44;
}
.r5-tunnel-error {
  font-size: 13px;
  color: #c44;
  margin-top: 6px;
}
.r5-tunnel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.r5-tunnel-continue {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--r5-dark);
  color: #fff;
  font-family: var(--r5-sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 32px;
  transition: all 0.3s ease;
}
.r5-tunnel-continue:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.r5-tunnel-continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Journey type toggle */
.r5-toggle-group {
  display: flex;
  background: var(--r5-light-grey);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 24px;
}
.r5-toggle-btn {
  flex: 1;
  padding: 12px 20px;
  text-align: center;
  font-family: var(--r5-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--r5-grey);
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.r5-toggle-btn.active {
  background: #fff;
  color: var(--r5-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Vehicle selector cards */
.r5-vehicle-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.r5-vehicle-option {
  padding: 20px;
  border: 2px solid var(--r5-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: #fff;
}
.r5-vehicle-option:hover {
  border-color: var(--r5-dark);
}
.r5-vehicle-option.selected {
  border-color: var(--r5-dark);
  background: var(--r5-light-grey);
}
.r5-vehicle-option img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.r5-vehicle-option h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.r5-vehicle-option p {
  font-size: 13px;
  color: var(--r5-grey);
}
.r5-vehicle-option .r5-capacity-warning {
  font-size: 12px;
  color: #c44;
  margin-top: 6px;
}

/* Passenger selector */
.r5-passenger-selector {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.r5-passenger-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--r5-border);
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.r5-passenger-btn:hover { border-color: var(--r5-dark); }
.r5-passenger-count {
  font-size: 36px;
  font-weight: 600;
  color: var(--r5-dark);
  min-width: 60px;
  text-align: center;
}

/* Review step summary */
.r5-tunnel-summary {
  border: 1px solid var(--r5-border);
  border-radius: 16px;
  overflow: hidden;
}
.r5-tunnel-summary-section {
  padding: 20px 24px;
  border-bottom: 1px solid var(--r5-border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.r5-tunnel-summary-section:last-child { border-bottom: none; }
.r5-tunnel-summary-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r5-grey);
  margin-bottom: 6px;
}
.r5-tunnel-summary-value {
  font-size: 15px;
  color: var(--r5-dark);
  line-height: 1.5;
}
.r5-tunnel-edit {
  font-size: 13px;
  font-weight: 500;
  color: var(--r5-grey);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.r5-tunnel-edit:hover { color: var(--r5-dark); }

/* Privacy checkbox */
.r5-tunnel-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}
.r5-tunnel-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.r5-tunnel-checkbox label {
  font-size: 14px;
  color: var(--r5-grey);
  line-height: 1.5;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.r5-tunnel-checkbox a { color: var(--r5-dark); }

/* Booking entry on contact page */
.r5-booking-entry {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 60px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 2px solid var(--r5-border);
}
.r5-booking-entry h2 {
  font-family: var(--r5-serif);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  margin-bottom: 12px;
  text-align: center;
}
.r5-booking-entry p {
  font-size: 17px;
  color: var(--r5-grey);
  text-align: center;
  margin-bottom: 40px;
}
.r5-booking-entry .r5-tunnel-field {
  margin-bottom: 20px;
}
.r5-booking-entry .r5-tunnel-field input {
  padding: 20px 24px;
  font-size: 18px;
}
.r5-booking-entry .r5-tunnel-continue {
  padding: 22px;
  font-size: 18px;
  margin-top: 12px;
}


/* ===========================================
   ADD STOP BUTTON
   =========================================== */

.r5-add-stop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--r5-grey);
  background: none;
  border: 1px dashed var(--r5-border);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.r5-add-stop:hover {
  border-color: var(--r5-dark);
  color: var(--r5-dark);
}


/* ===========================================
   ABOUT PAGE - VARIED LAYOUTS
   =========================================== */

/* Editorial block — Soho House narrow centred text */
.r5-editorial-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.r5-editorial-block h2 {
  margin-bottom: 20px;
}
.r5-editorial-block p:not(.r5-label) {
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.75;
}

/* Large typography intro */
.r5-editorial-intro {
  max-width: 800px;
  margin: 0 auto;
}
.r5-editorial-intro p {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.85;
  color: var(--r5-dark);
  font-weight: 300;
}
.r5-editorial-intro p strong {
  font-weight: 400;
}

/* Full-width image break */
.r5-full-image {
  width: 100%;
  height: 70vh;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}
.r5-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Timeline */
.r5-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.r5-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--r5-border);
}
.r5-timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.r5-timeline-item:last-child { padding-bottom: 0; }
.r5-timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--r5-dark);
}
.r5-timeline-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--r5-grey);
  margin-bottom: 8px;
}
.r5-timeline-item h3 {
  font-family: var(--r5-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.r5-timeline-item p {
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.7;
}

/* Pull quote */
.r5-pull-quote {
  padding: 80px 0;
  text-align: center;
}
.r5-pull-quote blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--r5-serif);
  font-size: clamp(24px, 3.5vw, 34px);
  font-style: normal;
  color: var(--r5-dark);
  line-height: 1.5;
}
.r5-pull-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--r5-sans);
  font-size: 14px;
  font-style: normal;
  color: var(--r5-grey);
}

/* Asymmetric values grid */
.r5-values-varied {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.r5-values-varied .r5-value-card:first-child {
  grid-column: auto;
}


/* ===========================================
   WEDDING PAGE - TIMELINE, GALLERY, EDITORIAL
   =========================================== */

.r5-wedding-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}
.r5-wedding-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--r5-border);
}
.r5-wedding-timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.r5-wedding-timeline-item:last-child { padding-bottom: 0; }
.r5-wedding-timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--r5-dark);
}
.r5-wedding-timeline-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--r5-grey);
  margin-bottom: 6px;
}
.r5-wedding-timeline-item h3 {
  font-family: var(--r5-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.r5-wedding-timeline-item p {
  font-size: 15px;
  color: var(--r5-grey);
  line-height: 1.7;
}

/* Image gallery - masonry style */
.r5-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.r5-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.r5-gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.r5-gallery-item.wide {
  grid-column: span 2;
}
.r5-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.r5-gallery-item:hover img {
  transform: scale(1.05);
}
.r5-gallery-square {
  grid-template-columns: 1fr 1fr;
}
.r5-gallery-square .r5-gallery-item {
  aspect-ratio: 1 / 1;
}

/* MOSAIC GALLERY */
.r5-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.r5-mosaic-item {
  overflow: hidden;
  border-radius: 12px;
}

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

.r5-mosaic-item.r5-mosaic-wide {
  grid-column: span 2;
}

.r5-mosaic-item.r5-mosaic-tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .r5-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 8px;
  }
  .r5-gallery-mosaic .r5-mosaic-item {
    aspect-ratio: 1 / 1;
  }
  .r5-mosaic-item.r5-mosaic-wide {
    grid-column: span 1;
  }
  .r5-mosaic-item.r5-mosaic-tall {
    grid-row: span 1;
  }
}

/* Image placeholder */
.r5-image-placeholder {
  background: var(--r5-light-grey);
  border: 2px dashed var(--r5-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r5-grey);
  font-size: 14px;
  padding: 20px;
  text-align: center;
  min-height: 200px;
}


/* No italic quotes - global override */
blockquote,
.r5-quote,
.r5-blockquote,
.r5-pull-quote blockquote,
.r5-review-text {
  font-style: normal !important;
}


/* ===========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   =========================================== */

@media (max-width: 1024px) {
  .r5-nav {
    display: none;
  }

  .r5-menu-toggle {
    display: flex;
  }

  .r5-header {
    padding: 16px 24px;
  }

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

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

  .r5-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .r5-why-img,
  .r5-why-image {
    order: -1;
  }

  .r5-editorial-feature {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .r5-editorial-feature-text h3 {
    font-size: 28px;
  }

  .r5-service-row {
    grid-template-columns: 160px 1fr;
    gap: 32px;
    padding: 36px 0;
  }

  .r5-split-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .r5-fleet-scroll {
    padding: 0 24px 32px;
    justify-content: flex-start;
  }
  .r5-fleet-scroll-card {
    flex: 0 0 260px;
    min-width: 260px;
    max-width: 260px;
  }

  .r5-booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .r5-booking-contact {
    padding-top: 0;
  }

  .r5-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .r5-trust-logos {
    gap: 40px;
  }

  .r5-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .r5-story-reverse {
    direction: ltr;
  }

  .r5-story-image {
    order: -1;
  }

  .r5-values-grid {
    grid-template-columns: 1fr;
  }

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

  .r5-vehicle-card,
  .r5-vehicle-card.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .r5-vehicle-card.reverse .r5-vehicle-image,
  .r5-vehicle-card.reverse .r5-vehicle-details {
    order: unset;
  }

  .r5-vehicle-image {
    order: -1;
  }

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

  .r5-features-grid {
    grid-template-columns: 1fr;
  }

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

  .r5-routes-grid {
    grid-template-columns: 1fr;
  }

  /* New responsive rules at 1024px */
  .r5-nav-dropdown {
    display: none;
  }

  .r5-tunnel-row {
    grid-template-columns: 1fr;
  }

  .r5-vehicle-selector {
    grid-template-columns: 1fr;
  }

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

  .r5-values-varied {
    grid-template-columns: 1fr;
  }

  .r5-values-varied .r5-value-card:first-child {
    grid-column: auto;
  }
}


/* ===========================================
   RESPONSIVE - MOBILE (max-width: 640px)
   =========================================== */

@media (max-width: 640px) {
  .r5-container {
    padding: 0 24px;
  }

  /* Section padding — generous spacing for flow */
  .r5-section {
    padding: 72px 0;
  }

  .r5-intro-home {
    padding: 72px 0;
  }

  .r5-hero-short {
    min-height: 55vh;
  }

  .r5-hero-title {
    font-size: 32px;
  }

  .r5-hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .r5-hero-content {
    padding: 24px 24px 32px;
  }

  .r5-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .r5-btn-primary,
  .r5-btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Hide scroll indicator on mobile — wastes space */
  .r5-hero-scroll {
    display: none;
  }

  .r5-blog-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .r5-blog-card-text h2 {
    font-size: 22px;
  }

  .r5-fleet-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .r5-editorial-feature {
    padding: 0 24px;
  }
  .r5-editorial-feature-text h3 {
    font-size: 24px;
  }

  /* ===== HOMEPAGE SERVICES — HORIZONTAL SCROLL ON MOBILE ===== */
  .r5-service-list {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding: 8px 24px 16px;
    margin: 0 -24px;
    border-top: none;
    scroll-padding-left: 24px;
  }

  .r5-service-list::-webkit-scrollbar {
    display: none;
  }

  .r5-service-row {
    display: flex;
    flex-direction: column;
    flex: 0 0 280px;
    min-width: 280px;
    gap: 0;
    padding: 0;
    border-bottom: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    scroll-snap-align: start;
  }

  .r5-service-row-img {
    aspect-ratio: 4/3;
  }

  .r5-service-row-text {
    padding: 20px;
  }

  .r5-service-row-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .r5-service-row-text p {
    font-size: 13px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .r5-fleet-scroll {
    padding: 0 24px 24px;
    gap: 20px;
    justify-content: flex-start;
  }
  .r5-fleet-scroll-card {
    flex: 0 0 240px;
    min-width: 240px;
    max-width: 240px;
  }

  /* ===== FLEET PAGE — HIDE PNG OVERVIEW CARDS ON MOBILE ===== */
  .r5-fleet-grid {
    display: none;
  }

  .r5-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Tighter footer */
  .r5-footer {
    padding: 60px 0 32px;
  }

  .r5-footer-grid {
    margin-bottom: 32px;
  }

  .r5-footer-brand p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .r5-final-actions {
    flex-direction: column;
    align-items: center;
  }

  .r5-btn-ghost-light {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Final CTA section — more compact on mobile */
  .r5-final-cta {
    padding: 64px 0;
  }

  .r5-final-cta-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Trust bar horizontal scroll on mobile */
  .r5-trust-bar {
    padding: 20px 0;
  }

  .r5-trust-bar .r5-container {
    padding: 0 24px;
    margin-bottom: 12px;
  }

  .r5-trust-marquee,
  .r5-marquee {
    padding: 0 24px;
  }

  .r5-trust-label {
    padding: 0 24px;
  }

  .r5-trust-logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
    overflow-x: auto;
    padding: 0 24px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .r5-trust-logos::-webkit-scrollbar {
    display: none;
  }

  .r5-trust-logos img {
    flex-shrink: 0;
    height: 24px;
  }

  /* Mobile header logo */
  .r5-logo-img {
    height: 36px;
  }

  .r5-header.scrolled .r5-logo-img {
    height: 30px;
  }

  /* Mobile booking form */
  .r5-booking-form {
    padding: 24px;
  }

  /* ===== BOOKING SECTION — LIGHT ON MOBILE ===== */
  .r5-booking {
    background: var(--r5-cream);
    padding: 72px 0;
  }

  .r5-booking .r5-label {
    color: var(--r5-grey);
  }

  .r5-booking-form-wrap h2 {
    color: var(--r5-dark);
  }

  /* Light-background booking widget on mobile */
  .r5-booking .r5-booking-quick .r5-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--r5-dark);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 6px;
  }

  .r5-booking .r5-booking-quick .r5-form-group input {
    background: #fff;
    border: 1px solid var(--r5-border);
    color: var(--r5-dark);
  }

  .r5-booking .r5-booking-quick .r5-form-group input::placeholder {
    color: #bbb;
  }

  .r5-booking .r5-booking-quick .r5-form-group input:focus {
    background: #fff;
    border-color: var(--r5-dark);
  }

  .r5-booking .r5-btn-full {
    background: var(--r5-dark);
    color: #fff;
    font-size: 16px;
    padding: 18px 32px;
    font-weight: 600;
    border-radius: 100px;
    width: 100%;
    text-align: center;
  }

  .r5-booking .r5-btn-full:hover {
    opacity: 0.9;
  }

  /* Inline booking widgets on light-background service pages */
  .r5-booking-quick .r5-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--r5-dark);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 6px;
  }

  .r5-booking-quick .r5-form-group input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: var(--r5-dark);
    padding: 14px 16px;
    font-size: 15px;
  }

  .r5-booking-quick .r5-form-group input::placeholder {
    color: #bbb;
  }

  .r5-booking-quick .r5-form-group input:focus {
    outline: none;
    border-color: var(--r5-dark);
    background: #fff;
  }

  .r5-btn-full {
    background: var(--r5-dark);
    color: #fff;
    font-size: 16px;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    text-align: center;
  }

  /* Ensure inline booking widgets are properly centred */
  .r5-booking-quick .r5-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--r5-dark);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--r5-sans);
    cursor: pointer;
    -webkit-appearance: none;
  }

  .r5-btn-full:hover {
    opacity: 0.9;
  }

  .r5-booking-contact h3 {
    color: var(--r5-grey);
    font-size: 13px;
    font-family: var(--r5-sans);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .r5-booking-contact p {
    color: #bbb;
    font-size: 12px;
  }

  .r5-booking-contact-details .r5-booking-phone {
    color: var(--r5-dark);
    font-size: 14px;
  }

  .r5-booking-contact-details .r5-booking-email {
    color: var(--r5-grey);
    font-size: 12px;
  }

  .r5-booking-contact {
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid var(--r5-border);
  }

  /* ===== END BOOKING SECTION ===== */

  /* Contact grid — stack vertically on mobile */
  .r5-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Mobile FAQ — tighter */
  .r5-faq-question {
    padding: 20px 0;
  }

  .r5-faq-question span:first-child {
    font-size: 15px;
    padding-right: 16px;
  }

  .r5-faq-answer p {
    padding-bottom: 16px;
    font-size: 13px;
  }

  .r5-section-header {
    margin-bottom: 32px;
  }

  /* Mobile service cards */
  .r5-service-info {
    padding: 20px;
  }

  .r5-service-info h3 {
    font-size: 20px;
  }

  /* Mobile why section — breathing room */
  .r5-why-points {
    gap: 28px;
  }

  .r5-why-points h2 {
    margin-bottom: 32px !important;
  }

  .r5-why-point p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--r5-grey);
  }

  /* Mobile editorial blocks — less whitespace */
  .r5-editorial-block p:not(.r5-label) {
    font-size: 14px;
    line-height: 1.7;
  }

  .r5-editorial-block h2 {
    margin-bottom: 16px;
  }

  /* Mobile headlines */
  .r5-headline {
    font-size: 28px;
  }

  .r5-headline-light {
    font-size: 26px;
  }

  /* Mobile clients */
  .r5-clients-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile trust logos */
  .r5-trust-logos {
    gap: 30px;
  }

  .r5-trust-logos img {
    height: 22px;
  }

  /* Mobile values — tighter cards */
  .r5-value-card {
    padding: 24px;
  }

  .r5-value-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .r5-value-card p {
    font-size: 13px;
  }

  /* Mobile form */
  .r5-form-grid {
    grid-template-columns: 1fr;
  }

  /* ===== PROCESS STEPS — HORIZONTAL SCROLL ON MOBILE ===== */
  .r5-process-steps {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .r5-process-steps::-webkit-scrollbar {
    display: none;
  }

  .r5-process-step {
    flex: 0 0 200px;
    min-width: 200px;
    scroll-snap-align: start;
  }

  .r5-process-step p {
    font-size: 13px;
  }

  .r5-process-step::before {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 14px;
  }

  /* Mobile stats */
  .r5-stats-bar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .r5-stat {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .r5-stat:last-child {
    border-bottom: none;
  }

  /* ===== AIRPORTS — HORIZONTAL SCROLL ON MOBILE ===== */
  .r5-airports-list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .r5-airports-list::-webkit-scrollbar {
    display: none;
  }

  .r5-airports-list .r5-airport-card:nth-child(n+5) {
    display: block;
  }

  .r5-airport-card {
    flex: 0 0 200px;
    min-width: 200px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .r5-airport-card p {
    font-size: 14px;
  }

  /* Mobile vehicle specs */
  .r5-vehicle-specs {
    grid-template-columns: 1fr;
  }

  .r5-vehicle-features ul {
    grid-template-columns: 1fr;
  }

  /* Mobile map */
  .r5-map-placeholder {
    height: 280px;
  }

  /* New responsive rules at 640px */
  .r5-tunnel-body {
    padding: 100px 20px 60px;
  }

  .r5-booking-entry {
    padding: 40px 24px;
  }

  .r5-gallery {
    grid-template-columns: 1fr;
  }

  .r5-gallery-item.tall,
  .r5-gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .r5-full-image {
    height: 50vh;
    min-height: 280px;
  }

  .r5-timeline {
    padding-left: 30px;
  }

  .r5-timeline-item {
    padding-bottom: 32px;
  }

  .r5-timeline-item h3 {
    font-size: 18px;
  }

  .r5-timeline-item p {
    font-size: 14px;
  }

  .r5-wedding-timeline {
    padding-left: 50px;
  }

  .r5-wedding-timeline-item {
    padding-bottom: 32px;
  }

  /* Mobile story grid (about page) — tighter */
  .r5-story-content .r5-headline {
    margin-bottom: 20px;
  }

  .r5-body,
  .r5-body-light {
    font-size: 14px;
    margin-bottom: 16px;
  }

  /* Mobile pull quote — tighter */
  .r5-pull-quote {
    padding: 48px 0;
  }

  /* Mobile quote section */
  .r5-quote-section {
    padding: 56px 0;
  }

  /* Mobile blockquote */
  .r5-blockquote {
    font-size: 18px;
  }

  /* ===== FEATURES GRID — HORIZONTAL SCROLL ON MOBILE ===== */
  .r5-features-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .r5-features-grid::-webkit-scrollbar {
    display: none;
  }

  .r5-feature-card {
    flex: 0 0 240px;
    min-width: 240px;
    padding: 24px;
    scroll-snap-align: start;
  }

  .r5-feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .r5-feature-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ===== ROUTE CARDS — HORIZONTAL SCROLL ON MOBILE ===== */
  .r5-routes-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .r5-routes-grid::-webkit-scrollbar {
    display: none;
  }

  .r5-route-card {
    flex: 0 0 220px;
    min-width: 220px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .r5-route-card p {
    font-size: 14px;
  }

  .r5-routes-grid .r5-route-card:nth-child(n+5) {
    display: flex;
  }

  /* ===== SERVICES INDEX GRID — HORIZONTAL SCROLL ON MOBILE ===== */
  .r5-services-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .r5-services-grid::-webkit-scrollbar {
    display: none;
  }

  .r5-service-card {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
  }

  .r5-service-img {
    aspect-ratio: 4/3;
  }

  .r5-service-info {
    padding: 20px;
  }

  .r5-service-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .r5-service-info p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ===== VALUES GRID — HORIZONTAL SCROLL ON MOBILE ===== */
  .r5-values-varied {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .r5-values-varied::-webkit-scrollbar {
    display: none;
  }

  .r5-values-varied .r5-value-card {
    flex: 0 0 220px;
    min-width: 220px;
    scroll-snap-align: start;
  }

  /* Mobile case study — tighter */
  .r5-case-study-card .r5-case-body {
    padding: 24px;
  }

  /* Mobile service page body text (not in horizontal scroll cards) */
  .r5-service-row-text p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* Override for horizontal scroll service cards — keep compact */
  .r5-service-list .r5-service-row-text p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  /* Mobile legal pages */
  .r5-legal-content p {
    font-size: 15px;
  }

  .r5-legal-content li {
    font-size: 15px;
  }

  /* Booking entry on contact page — mobile */
  .r5-booking-entry h2 {
    font-size: 28px;
  }

  .r5-booking-entry p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* ===== FLEET MOBILE SCROLL (homepage only) ===== */
  .r5-fleet-mobile-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 24px 8px;
  }

  .r5-fleet-mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  .r5-fleet-mobile-card {
    flex: 0 0 140px;
    min-width: 140px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
  }

  .r5-fleet-mobile-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .r5-fleet-mobile-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .r5-fleet-mobile-card h3 {
    font-family: var(--r5-serif);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 2px;
  }

  .r5-fleet-mobile-card p {
    font-size: 11px;
    color: var(--r5-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
}


/* ===========================================
   BOOKING TUNNEL — from booking-form-new.html
   (Full-screen multi-step overlay)
   =========================================== */

/* Ensure Google Places dropdown appears above everything */
.pac-container {
  z-index: 100000 !important;
}

/* Prevent pull-to-refresh and overscroll when tunnel is open */
.r5-tunnel {
  position: fixed;
  inset: 0;
  background: var(--r5-cream);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.r5-tunnel.active {
  opacity: 1;
  visibility: visible;
}

.r5-tunnel-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--r5-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-bottom: 1px solid var(--r5-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.r5-tunnel-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--r5-border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--r5-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, border-color 0.15s ease;
  -webkit-user-select: none;
  user-select: none;
}

.r5-tunnel-close:active {
  transform: translateY(-50%) scale(0.92);
}

.r5-tunnel-close:hover {
  border-color: var(--r5-dark);
  color: var(--r5-dark);
}

.r5-tunnel .r5-progress {
  display: flex;
  gap: 8px;
}

.r5-tunnel .r5-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--r5-border);
  transition: all 0.3s ease;
}

.r5-tunnel .r5-progress-dot.active {
  background: var(--r5-dark);
  transform: scale(1.2);
}

.r5-tunnel .r5-progress-dot.complete {
  background: var(--r5-dark);
}

.r5-tunnel .r5-tunnel-content {
  padding: 80px 24px 140px;
  max-width: 500px;
  margin: 0 auto;
}

/* Safe area for notched phones */
@supports (padding-top: env(safe-area-inset-top)) {
  .r5-tunnel .r5-tunnel-header {
    padding-top: env(safe-area-inset-top);
    height: calc(56px + env(safe-area-inset-top));
  }
  .r5-tunnel .r5-tunnel-content {
    padding-top: calc(76px + env(safe-area-inset-top));
  }
}

/* STEPS */
.r5-tunnel .r5-step {
  display: none;
  animation: r5StepFadeIn 0.3s ease;
}

.r5-tunnel .r5-step.active { display: block; }

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

.r5-tunnel .r5-step-title {
  font-family: var(--r5-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

/* FORM FIELDS */
.r5-tunnel .r5-field { margin-bottom: 16px; }

.r5-tunnel .r5-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--r5-dark);
}

.r5-tunnel .r5-field input,
.r5-tunnel .r5-field select,
.r5-tunnel .r5-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--r5-sans);
  font-size: 16px;
  border: 1px solid var(--r5-border);
  border-radius: 10px;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.r5-tunnel .r5-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.r5-tunnel .r5-field input:focus,
.r5-tunnel .r5-field select:focus,
.r5-tunnel .r5-field textarea:focus {
  outline: none;
  border-color: var(--r5-dark);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.06);
}

.r5-tunnel .r5-field textarea {
  min-height: 70px;
  resize: vertical;
}

.r5-tunnel .r5-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.r5-tunnel .r5-field-helper {
  font-size: 11px;
  color: var(--r5-grey);
  margin-top: 4px;
}

.r5-tunnel .r5-field.error input,
.r5-tunnel .r5-field.error select { border-color: #c00; }
.r5-tunnel .r5-field-error { font-size: 11px; color: #c00; margin-top: 4px; display: none; }
.r5-tunnel .r5-field.error .r5-field-error { display: block; }

/* TOGGLE */
.r5-tunnel .r5-toggle-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.r5-tunnel .r5-toggle {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--r5-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.15s ease;
  -webkit-user-select: none;
  user-select: none;
}

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

.r5-tunnel .r5-toggle.active {
  border-color: var(--r5-dark);
  background: var(--r5-dark);
  color: #fff;
}

/* NUMBER STEPPER */
.r5-stepper-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.r5-stepper-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.r5-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.r5-stepper-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--r5-border);
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--r5-dark);
  transition: all 0.12s ease;
  -webkit-user-select: none;
  user-select: none;
}

.r5-stepper-btn:active {
  transform: scale(0.9);
  background: var(--r5-light-grey);
}

.r5-stepper-btn:hover {
  border-color: var(--r5-dark);
}

.r5-stepper-value {
  font-size: 18px;
  font-weight: 400;
  min-width: 28px;
  text-align: center;
}

/* WAYPOINTS */
.r5-tunnel .r5-waypoints { margin-bottom: 12px; }

.r5-tunnel .r5-waypoint {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.r5-tunnel .r5-waypoint input {
  flex: 1;
  padding: 10px 12px;
  font-family: var(--r5-sans);
  font-size: 14px;
  border: 1px solid var(--r5-border);
  border-radius: 8px;
  background: #fff;
}

.r5-tunnel .r5-waypoint-remove {
  width: 36px;
  height: 36px;
  border: 1px solid var(--r5-border);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  color: var(--r5-grey);
  font-size: 14px;
}

.r5-tunnel .r5-waypoint-remove:hover {
  border-color: #c00;
  color: #c00;
}

.r5-tunnel .r5-add-waypoint {
  font-size: 13px;
  color: var(--r5-grey);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 16px;
}

.r5-tunnel .r5-add-waypoint:hover { color: var(--r5-dark); }

/* VEHICLE CAROUSEL */
.r5-vehicle-carousel {
  margin: 0 -24px;
  padding: 0 24px 16px;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.r5-vehicle-carousel::-webkit-scrollbar { display: none; }

/* Vehicle carousel arrows (desktop) */
.r5-vehicle-carousel-wrap {
  position: relative;
  margin: 0 -24px;
  padding: 0 56px 16px;
}

.r5-vehicle-carousel-wrap .r5-vehicle-carousel {
  margin: 0;
  padding: 0 8px 0;
}

.r5-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--r5-border);
  border-radius: 50%;
  background: var(--r5-cream);
  color: var(--r5-dark);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.r5-carousel-arrow:hover {
  border-color: var(--r5-dark);
  background: var(--r5-light-grey);
}

.r5-carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.r5-carousel-arrow-left {
  left: 8px;
}

.r5-carousel-arrow-right {
  right: 8px;
}

.r5-carousel-arrow.hidden {
  display: none !important;
}

@media (min-width: 769px) {
  .r5-carousel-arrow {
    display: flex;
  }
  .r5-carousel-arrow.hidden {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .r5-vehicle-carousel-wrap {
    margin: 0 -16px;
    padding: 0 16px 16px;
  }
  .r5-vehicle-carousel-wrap .r5-vehicle-carousel {
    padding: 0;
  }
}

.r5-tunnel .r5-vehicle-card {
  display: block !important;
  grid-template-columns: none !important;
  flex: 0 0 300px !important;
  min-width: 300px !important;
  max-width: 300px !important;
  width: 300px !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 24px;
  border: 2px solid var(--r5-border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  -webkit-user-select: none;
  user-select: none;
}

.r5-tunnel .r5-vehicle-card:active {
  transform: scale(0.97);
}

.r5-tunnel .r5-vehicle-card.active {
  border-color: var(--r5-dark);
  background: var(--r5-light-grey);
}

.r5-tunnel .r5-vehicle-card.unavailable {
  opacity: 0.3;
  pointer-events: none;
}

.r5-tunnel .r5-vehicle-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 10px;
}

.r5-tunnel .r5-vehicle-img img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.r5-vehicle-name {
  font-family: var(--r5-serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}

.r5-vehicle-class {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--r5-grey);
  margin-bottom: 16px;
}

.r5-vehicle-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--r5-grey);
  margin-bottom: 16px;
  font-weight: 400;
}

.r5-vehicle-meta span {
  display: flex;
  align-items: center;
}

.r5-vehicle-tagline {
  font-family: var(--r5-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--r5-grey);
  margin-bottom: 12px;
  line-height: 1.4;
}

.r5-vehicle-price {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--r5-grey);
}

.r5-journey-time {
  display: none;
  padding: 10px 14px;
  background: var(--r5-light-grey);
  border-radius: 8px;
  font-size: 14px;
  color: var(--r5-grey);
  margin-top: 8px;
}

.r5-journey-time.visible { display: block; }

.r5-journey-time strong { color: var(--r5-dark); }

.r5-vehicle-hint {
  text-align: center;
  font-size: 12px;
  color: var(--r5-grey);
  margin-top: 16px;
}

/* Hide swipe hint on desktop */
@media (min-width: 769px) {
  .r5-vehicle-hint {
    display: none;
  }
}

/* CHECKBOX */
.r5-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 15px;
  padding: 8px 0;
  -webkit-user-select: none;
  user-select: none;
}

.r5-checkbox input {
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

/* PASSENGER FIELDS */
.r5-extra-fields {
  display: none;
  padding: 16px;
  background: var(--r5-light-grey);
  border-radius: 10px;
  margin-bottom: 16px;
}

.r5-extra-fields.active { display: block; }

.r5-extra-fields h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* SUMMARY */
.r5-tunnel .r5-summary {
  background: #fff;
  border: 1px solid var(--r5-border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.r5-tunnel .r5-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--r5-border);
  font-size: 13px;
}

.r5-tunnel .r5-summary-row:last-child { border-bottom: none; }

.r5-tunnel .r5-summary-label { color: var(--r5-grey); }

.r5-tunnel .r5-summary-value {
  font-weight: 500;
  text-align: right;
  max-width: 55%;
}

/* CONTACT HELP */
.r5-contact-help {
  text-align: center;
  font-size: 12px;
  color: var(--r5-grey);
  padding-top: 16px;
  margin-top: 20px;
  border-top: 1px solid var(--r5-border);
}

.r5-contact-help a {
  color: var(--r5-dark);
  text-decoration: none;
}

.r5-contact-help a:hover { text-decoration: underline; }

/* DISTANCE */
.r5-distance {
  padding: 10px 14px;
  background: var(--r5-light-grey);
  border-radius: 8px;
  font-size: 13px;
  color: var(--r5-grey);
  margin-top: 12px;
  display: none;
}

.r5-distance.visible { display: block; }

.r5-distance strong { color: var(--r5-dark); }

/* NAV */
.r5-tunnel .r5-tunnel-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
  background: var(--r5-cream);
  border-top: 1px solid var(--r5-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.r5-tunnel .r5-btn-back {
  padding: 14px 24px;
  min-height: 48px;
  background: none;
  border: 1px solid var(--r5-border);
  border-radius: 100px;
  font-family: var(--r5-sans);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.12s ease;
  -webkit-user-select: none;
  user-select: none;
}

.r5-tunnel .r5-btn-back:active {
  transform: scale(0.96);
  background: var(--r5-light-grey);
}

.r5-tunnel .r5-btn-back:hover { border-color: var(--r5-dark); }
.r5-tunnel .r5-btn-back.hidden { visibility: hidden; }

.r5-tunnel .r5-btn-next {
  padding: 14px 32px;
  min-height: 48px;
  background: var(--r5-dark);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--r5-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.12s ease;
  -webkit-user-select: none;
  user-select: none;
}

.r5-tunnel .r5-btn-next:active {
  transform: scale(0.96);
}

.r5-tunnel .r5-btn-next:hover { background: #333; }
.r5-tunnel .r5-btn-next:disabled { background: #ccc; cursor: not-allowed; transform: none; }

.r5-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: r5spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes r5spin { to { transform: rotate(360deg); } }

/* MODAL */
.r5-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.r5-modal.active { display: flex; }

.r5-modal-box {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  max-width: 320px;
  text-align: center;
}

.r5-modal-wide {
  max-width: 360px;
}

.r5-modal-box h3 {
  font-family: var(--r5-serif);
  font-size: 20px;
  margin-bottom: 12px;
}

.r5-modal-box p {
  font-size: 14px;
  color: var(--r5-grey);
  margin-bottom: 24px;
  line-height: 1.5;
}

.r5-modal-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.r5-modal-btns button {
  padding: 12px 20px;
  border-radius: 100px;
  font-family: var(--r5-sans);
  font-size: 14px;
  cursor: pointer;
}

.r5-modal-stay { background: none; border: 1px solid var(--r5-border); }
.r5-modal-leave { background: var(--r5-dark); color: #fff; border: none; }

/* Stacked buttons for warning modals */
.r5-modal-btns-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.r5-modal-primary {
  width: 100%;
  padding: 14px 24px;
  background: var(--r5-dark);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--r5-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.r5-modal-primary:active {
  transform: scale(0.98);
}

.r5-modal-secondary {
  width: 100%;
  padding: 12px 24px;
  background: none;
  color: var(--r5-grey);
  border: none;
  font-family: var(--r5-sans);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

/* BOOKING TUNNEL RESPONSIVE */
@media (max-width: 480px) {
  .r5-tunnel .r5-tunnel-content {
    padding: 70px 16px 130px;
  }

  .r5-tunnel .r5-field-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .r5-tunnel .r5-vehicle-card {
    flex: 0 0 260px;
    min-width: 260px;
    padding: 20px;
  }

  .r5-tunnel .r5-vehicle-img {
    height: 110px;
  }

  .r5-vehicle-carousel {
    margin: 0 -16px;
    padding: 0 16px 16px;
  }

  .r5-stepper-row {
    gap: 16px;
  }

  .r5-tunnel .r5-tunnel-nav {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .r5-tunnel .r5-btn-back {
    padding: 12px 18px;
    font-size: 14px;
  }

  .r5-tunnel .r5-btn-next {
    padding: 12px 24px;
    font-size: 14px;
  }

  .r5-tunnel .r5-step-title {
    font-size: 22px;
  }
}

/* Larger phones and tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .r5-tunnel .r5-vehicle-card {
    flex: 0 0 280px;
    min-width: 280px;
  }
}

/* ============================================
   HOMEPAGE REDESIGN — NEW SECTIONS
   ============================================ */

/* Hero inline booking widget */
.r5-hero-inline-booking {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 0;
}

.r5-hero-inline-booking input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--r5-sans);
  font-size: 15px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  color: var(--r5-dark);
  backdrop-filter: blur(4px);
}

.r5-hero-inline-booking input::placeholder {
  color: #999;
}

.r5-hero-inline-booking input:focus {
  outline: none;
  background: #fff;
}

.r5-hero-inline-booking .r5-btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

.r5-hero-phone {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.r5-hero-phone a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.r5-hero-phone a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .r5-hero-inline-booking {
    flex-direction: column;
    max-width: 100%;
    padding: 0 20px;
  }

  .r5-hero-inline-booking .r5-btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* Service spotlight — 60/40 two-column */
.r5-service-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.r5-service-spotlight-img {
  border-radius: 12px;
  overflow: hidden;
}

.r5-service-spotlight-img img {
  width: 100%;
  height: auto;
  display: block;
}

.r5-service-spotlight-text .r5-label {
  margin-bottom: 16px;
}

.r5-service-spotlight-text h2 {
  font-family: var(--r5-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.r5-service-spotlight-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--r5-grey);
  margin-bottom: 28px;
}

.r5-service-spotlight-text .r5-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--r5-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--r5-dark);
  padding-bottom: 2px;
}

.r5-service-spotlight-text .r5-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .r5-service-spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}

/* Why R5 — centered text only */
.r5-why-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.r5-why-centered h2 {
  font-family: var(--r5-serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 60px;
}

.r5-why-points-centered {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: center;
}

.r5-why-point-centered h3 {
  font-family: var(--r5-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.r5-why-point-centered p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--r5-grey);
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .r5-why-centered {
    padding: 0 20px;
  }

  .r5-why-centered h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .r5-why-points-centered {
    gap: 36px;
  }
}

/* Booking section contextual text */
.r5-booking-context {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: var(--r5-grey);
}

.r5-booking-upsell {
  text-align: center;
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--r5-grey);
}

.r5-booking-upsell a {
  color: var(--r5-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--r5-dark);
  padding-bottom: 1px;
}

.r5-booking-upsell a:hover {
  opacity: 0.7;
}

/* Footer areas covered */
.r5-footer-areas {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

.r5-footer-areas p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  margin: 0;
}

.r5-footer-areas a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.r5-footer-areas a:hover {
  color: rgba(255,255,255,0.8);
}

/* Nav CTA — button style (outlined on hero, filled on scroll) */
.r5-nav-cta {
  padding: 10px 24px !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: all 0.3s ease;
}

.r5-nav-cta:hover {
  background: rgba(255,255,255,0.15) !important;
  opacity: 1 !important;
}

.r5-header.scrolled .r5-nav-cta {
  background: var(--r5-dark) !important;
  color: #fff !important;
  border-color: var(--r5-dark) !important;
}

.r5-header.scrolled .r5-nav-cta:hover {
  background: #333 !important;
}

/* Mobile CTA button style */
.r5-mobile-cta {
  display: inline-block;
  background: var(--r5-dark);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 100px;
  text-align: center;
  font-weight: 500;
  margin-top: 16px;
}

/* Enquiry form styles */
.r5-enquiry-form {
  max-width: 600px;
  margin: 0 auto;
}

.r5-enquiry-form .r5-form-group {
  margin-bottom: 20px;
}

.r5-enquiry-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--r5-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.r5-enquiry-form input,
.r5-enquiry-form select,
.r5-enquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--r5-border);
  border-radius: 8px;
  font-family: var(--r5-sans);
  font-size: 15px;
  color: var(--r5-dark);
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.r5-enquiry-form input:focus,
.r5-enquiry-form select:focus,
.r5-enquiry-form textarea:focus {
  outline: none;
  border-color: var(--r5-dark);
}

.r5-enquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.r5-enquiry-form .r5-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .r5-enquiry-form .r5-form-row {
    grid-template-columns: 1fr;
  }
}

.r5-enquiry-form .r5-form-group.error input,
.r5-enquiry-form .r5-form-group.error select {
  border-color: #c00;
}

.r5-enquiry-form .r5-form-error {
  font-size: 11px;
  color: #c00;
  margin-top: 4px;
  display: none;
}

.r5-enquiry-form .r5-form-group.error .r5-form-error {
  display: block;
}

.r5-enquiry-form .r5-form-success {
  text-align: center;
  padding: 40px 20px;
}

.r5-enquiry-form .r5-form-success h3 {
  font-family: var(--r5-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.r5-enquiry-form .r5-form-success p {
  color: var(--r5-grey);
  font-size: 15px;
}

.r5-enquiry-below {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--r5-grey);
}

.r5-enquiry-below a {
  color: var(--r5-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--r5-dark);
}


/* ===========================================
   MOBILE UTILITY CLASSES
   =========================================== */

/* Hide on mobile — use to remove secondary content on small screens */
@media (max-width: 640px) {
  .r5-hide-mobile {
    display: none !important;
  }
}

/* Show only on mobile */
@media (min-width: 641px) {
  .r5-show-mobile-only {
    display: none !important;
  }
}

/* Shorter text on mobile — used for paragraphs that have a mobile-specific version */
@media (max-width: 640px) {
  .r5-mobile-short {
    display: none !important;
  }
}
