/**
 * Fluid Adventures — Main Stylesheet
 *
 * Extracted from approved homepage mockup (v2, blue/orange palette).
 * Design tokens, component styles, responsive breakpoints.
 */

/* ========== DESIGN TOKENS ========== */
:root {
  --color-deep: #003457;
  --color-navy: #001d4b;
  --color-mid: #609BB1;
  --color-sky: #7ab4c7;
  --color-ice: #d8eaf1;
  --color-sand: #f5f2ed;
  --color-cream: #faf9f7;
  --color-white: #ffffff;
  --color-orange: #FE6B00;
  --color-orange-light: #ff8a33;
  --color-slate: #3a4a52;
  --color-text: #1a2a34;
  --color-text-light: #5a6e78;
  --color-green-dark: #052812;
  --color-navy-r: 0;
  --color-navy-g: 29;
  --color-navy-b: 75;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-subheading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --nav-height: 72px;
  --section-padding: clamp(60px, 8vw, 120px);
  --btn-radius: 100px;
  --hero-overlay-opacity: 0.7;
  --nav-bg-initial: transparent;
  --content-wide: 1400px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-md: 0 4px 16px rgba(0,29,61,0.1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: var(--nav-bg-initial);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background: rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-white);
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width 0.3s ease;
}

.nav__links a:hover { color: var(--color-white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--color-orange) !important;
  color: var(--color-deep) !important;
  padding: 10px 24px;
  border-radius: var(--btn-radius);
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(254,107,0,0.4); }

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.nav__mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav__mobile-toggle span:nth-child(1) { top: 0; }
.nav__mobile-toggle span:nth-child(2) { top: 11px; }
.nav__mobile-toggle span:nth-child(3) { bottom: 0; }

/* ========== NAV DROPDOWN ========== */
.nav__item--has-dropdown {
  position: relative;
}

.nav__parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__chevron {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
}

@media (hover: hover) {
  .nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav__item--has-dropdown:hover .nav__chevron { transform: rotate(180deg); }
}

.nav__item--has-dropdown:focus-within .nav__dropdown,
.nav__item--has-dropdown.nav__item--open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__item--has-dropdown:focus-within .nav__chevron,
.nav__item--has-dropdown.nav__item--open .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown-link {
  display: block;
  padding: 8px 18px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  text-decoration: none;
  white-space: nowrap;
}

.nav__dropdown-link:hover {
  background: rgba(254,107,0,0.12);
  color: var(--color-white) !important;
}

.nav__dropdown-link::after { display: none !important; }

.nav__dropdown-link--featured {
  font-weight: 600 !important;
  color: var(--color-white) !important;
}

.nav__dropdown-link--all {
  font-style: italic;
  color: var(--color-orange-light, #ffb380) !important;
}

.nav__dropdown-section {
  padding: 8px 18px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}

.nav__dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
  list-style: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 4vw, 48px) clamp(60px, 10vh, 120px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), var(--hero-overlay-opacity)) 0%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), calc(var(--hero-overlay-opacity) * 0.29)) 20%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), calc(var(--hero-overlay-opacity) * 0.14)) 35%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), calc(var(--hero-overlay-opacity) * 0.57)) 60%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), min(1, calc(var(--hero-overlay-opacity) * 1.07))) 85%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), min(1, calc(var(--hero-overlay-opacity) * 1.21))) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: heroFadeUp 1s ease-out 0.3s both;
}

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

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 107, 0, 0.15);
  border: 1px solid rgba(254, 107, 0, 0.4);
  padding: 6px 16px;
  border-radius: var(--btn-radius);
  color: var(--color-orange-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-orange-light);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-deep);
}

.btn--primary:hover {
  background: var(--color-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,107,0,0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-white);
}

.btn__arrow {
  transition: transform 0.3s;
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* ========== SCROLL INDICATOR ========== */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroFadeUp 1s ease-out 1s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

/* ========== WEATHER STRIP ========== */
.weather-strip {
  padding: 32px clamp(20px, 4vw, 48px);
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  color: var(--color-white);
}

.weather-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.weather-strip__icon {
  font-size: 24px;
}

.weather-strip__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.weather-strip__value {
  font-weight: 600;
  font-size: 16px;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  max-width: 680px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-deep);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--color-mid);
}

.section-desc {
  font-size: 17px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ========== EXPERIENCES SECTION ========== */
.experiences {
  padding: var(--section-padding) clamp(20px, 4vw, 48px);
  background: var(--color-cream);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1400px;
}

.exp-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.exp-card__image {
  position: absolute;
  inset: 0;
}

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

.exp-card:hover .exp-card__image img {
  transform: scale(1.06);
}

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.9) 0%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.3) 40%,
    transparent 70%
  );
  transition: background 0.4s ease;
}

.exp-card:hover .exp-card__overlay {
  background: linear-gradient(
    to top,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.95) 0%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.5) 50%,
    rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.2) 70%
  );
}

.exp-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
}

.exp-card__difficulty {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--btn-radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.exp-card__difficulty--green { background: rgba(26, 107, 53, 0.8); color: #b8e6c8; }
.exp-card__difficulty--amber { background: rgba(254, 107, 0, 0.8); color: #fff3d6; }
.exp-card__difficulty--red { background: rgba(180, 40, 40, 0.8); color: #f5c4c4; }

.exp-card h3 {
  font-family: var(--font-subheading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.exp-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 16px;
}

.exp-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.exp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-orange-light);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.exp-card:hover .exp-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ========== FEATURED / POPULAR ========== */
.featured {
  padding: var(--section-padding) clamp(20px, 4vw, 48px);
  background: var(--color-deep);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,82,137,0.15), transparent 70%);
}

.featured .section-label { color: var(--color-sky); }
.featured .section-title { color: var(--color-white); }
.featured .section-title em { color: var(--color-orange-light); }
.featured .section-desc { color: rgba(255,255,255,0.55); }

.featured-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.featured-scroll::-webkit-scrollbar { display: none; }

.feat-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}

.feat-card:hover {
  border-color: rgba(254,107,0,0.3);
  transform: translateY(-4px);
}

.feat-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.feat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.feat-card:hover .feat-card__image img {
  transform: scale(1.05);
}

.feat-card__body {
  padding: 24px;
}

.feat-card__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.feat-card h3 {
  font-family: var(--font-subheading);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feat-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feat-card__avail {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 13px;
}
.feat-card__next-date {
  color: rgba(255,255,255,0.85);
}
.feat-card__scarcity {
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.feat-card__scarcity--low {
  background: rgba(220, 53, 69, 0.9);
  color: #fff;
}
.feat-card__scarcity--full {
  background: rgba(108, 117, 125, 0.85);
  color: #fff;
}

.feat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feat-card__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
}

.feat-card__price small {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.feat-card__book {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== ABOUT / TRUST ========== */
.about {
  padding: var(--section-padding) clamp(20px, 4vw, 48px);
  background: var(--color-cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: 1200px;
  align-items: center;
}

.about__image-stack {
  position: relative;
  height: 500px;
}

.about__image-stack img,
.about__image-stack .placeholder-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.about__image-stack img:first-child,
.about__image-stack .placeholder-img:first-child {
  width: 65%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 1;
}

.about__image-stack img:last-child,
.about__image-stack .placeholder-img:last-child {
  width: 55%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid var(--color-cream);
}

.about__content .section-title { margin-bottom: 24px; }

.about__text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-badge__icon {
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.trust-badge__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: var(--section-padding) clamp(20px, 4vw, 48px);
  background: var(--color-cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
}

.testimonial-card__stars {
  color: var(--color-orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__context {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.testimonial-card__text {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-deep);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}

.testimonial-card__trip {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ========== CTA SECTION ========== */
/* ── Related Products ── */
.related-section {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.related-section .section-title { text-align: center; margin-bottom: 32px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.related-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.related-card:hover .related-card__image img { transform: scale(1.05); }
.related-card__type {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.related-card__body { padding: 16px; }
.related-card__title {
  font-family: var(--font-subheading);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
}
.related-card__location { font-size: 12px; color: var(--color-text-light); display: block; margin-bottom: 4px; }
.related-card__price { font-size: 14px; font-weight: 600; color: var(--color-deep); }

.cta-section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 48px);
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg img,
.cta-section__bg .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.8);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section h2 em { font-style: italic; color: var(--color-orange-light); }

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-weight: 300;
}

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

/* ========== FOOTER ========== */
.footer {
  background: var(--color-deep);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px) 32px;
  color: rgba(255,255,255,0.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  max-width: 1200px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer ul a:hover { color: var(--color-orange-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.footer__socials a:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

/* ========== 404 PAGE ========== */
.page-404 {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 20px 60px;
}

.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 16px;
}

.page-404 p {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image-stack { height: 400px; margin-bottom: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Nav condensed — tablet */
@media (max-width: 980px) {
  .nav__logo-text { display: none; }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 12px; }
  .nav__vouchers-full { display: none !important; }
  .nav__vouchers-short { display: inline !important; }
}

/* Nav hamburger — mobile */
@media (max-width: 775px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.98);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
    overflow-y: auto;
    padding: 80px 0 40px;
  }
  /* When any dropdown is expanded the drawer needs flex-start to scroll naturally */
  .nav__links--open:has(.nav__item--open) {
    justify-content: flex-start;
  }

  .nav__links--open a {
    font-size: 24px;
    color: var(--color-white);
  }

  /* Mobile dropdown — accordion inside the fullscreen drawer */
  .nav__links--open .nav__item--has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .nav__links--open .nav__dropdown {
    position: static;
    transform: none !important;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 12px 0 0;
    text-align: center;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, max-height 0.3s ease, margin-top 0.2s ease;
  }
  .nav__links--open .nav__item--open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 60vh;
  }
  .nav__links--open .nav__dropdown-link {
    font-size: 16px !important;
    padding: 6px 16px;
  }
  .nav__links--open .nav__dropdown-section {
    font-size: 11px;
    margin-top: 8px;
  }
  .nav__links--open .nav__dropdown-divider {
    width: 60%;
    margin: 8px auto;
  }
}

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

  .exp-card { aspect-ratio: 3/4; }
  .exp-card__cta { opacity: 1; transform: translateY(0); }

  .feat-card { flex: 0 0 85vw; }

  .about__image-stack { height: 300px; }
  .about__image-stack img:first-child,
  .about__image-stack .placeholder-img:first-child { width: 70%; height: 80%; }
  .about__image-stack img:last-child,
  .about__image-stack .placeholder-img:last-child { width: 50%; height: 55%; }

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

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

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PLACEHOLDER IMAGES ========== */
.placeholder-img {
  background: linear-gradient(135deg, var(--color-deep), var(--color-mid));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--color-white); }

.breadcrumb__sep {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}

.breadcrumb__current {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ========== PRODUCT HERO ========== */
.hero--product,
.hero--listing {
  align-items: stretch;
  padding-top: 0;
  padding-bottom: clamp(40px, 6vh, 80px);
}

.hero--product { height: 60vh; min-height: 400px; }
.hero--listing { height: 45vh; min-height: 340px; }

.hero--product .hero__content,
.hero--listing .hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

.hero--product .hero__top,
.hero--listing .hero__top {
  padding-top: calc(var(--nav-height) + 40px);
  margin-bottom: auto;
}

.hero__count {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ========== QUICK FACTS ========== */
.quick-facts {
  padding: 24px clamp(20px, 4vw, 48px);
  background: var(--color-sand);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.quick-facts__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.quick-facts__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quick-facts__icon {
  font-size: 22px;
  opacity: 0.7;
}

.quick-facts__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.quick-facts__value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

/* ========== DIFFICULTY BADGE ========== */
.difficulty-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--btn-radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.difficulty-badge--green { background: rgba(26, 107, 53, 0.12); color: #1a6b35; }
.difficulty-badge--amber { background: rgba(254, 107, 0, 0.12); color: #b85d00; }
.difficulty-badge--red { background: rgba(180, 40, 40, 0.12); color: #b42828; }

/* ========== PRODUCT DETAIL GRID ========== */
.product-detail {
  padding: var(--section-padding) clamp(20px, 4vw, 48px);
  background: var(--color-cream);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail__main {
  min-width: 0;
}

.product-detail__sidebar {
  min-width: 0;
}

.sidebar-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== PRODUCT SECTIONS ========== */
.product-section {
  margin-bottom: clamp(36px, 4vw, 56px);
}

.product-section h2 {
  font-family: var(--font-subheading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.product-description p { margin-bottom: 16px; }
.product-description ul, .product-description ol { margin: 16px 0; padding-left: 24px; }
.product-description li { margin-bottom: 8px; }

/* ========== PRICING CARD ========== */
.pricing-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.pricing-card__title {
  font-family: var(--font-subheading);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-card__tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  gap: 12px;
}

.pricing-card__tier:last-of-type { border-bottom: none; }

.pricing-card__tier-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.pricing-card__prices {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-card__standard {
  font-family: var(--font-subheading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}

.pricing-card__member {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-mid);
  margin-top: 2px;
}

.pricing-card__member strong {
  color: var(--color-orange);
  font-weight: 700;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

/* ========== INFO CARDS ========== */
.info-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.info-card h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ========== INFO LISTS (What's Included, What to Bring) ========== */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.info-list li {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.info-list--check li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  color: #1a6b35;
  font-weight: 700;
  font-size: 14px;
}

.info-list--dot li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-mid);
}

/* ========== PRODUCT GALLERY ========== */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.product-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-gallery__item:hover img { transform: scale(1.05); }

/* ========== COURSE DETAILS CARD ========== */
.course-details-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}

.course-details-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  gap: 16px;
}

.course-details-card__row:last-child { border-bottom: none; }

.course-details-card__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
}

.course-details-card__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

/* ========== ITINERARY TIMELINE ========== */
.itinerary {
  position: relative;
  padding-left: 32px;
}

.itinerary::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-ice);
}

.itinerary__day {
  position: relative;
  padding-bottom: 32px;
}

.itinerary__day:last-child { padding-bottom: 0; }

.itinerary__marker {
  position: absolute;
  left: -32px;
  top: 0;
}

.itinerary__day-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-deep);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0 12px;
  min-width: 22px;
  width: auto;
}

.itinerary__content {
  padding-top: 0;
}

.itinerary__title {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 6px;
}

.itinerary__desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.itinerary__distance {
  display: inline-block;
  padding: 3px 10px;
  background: var(--color-ice);
  border-radius: var(--btn-radius);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-deep);
}

/* ========== ITINERARY TIMELINE v3 (holiday/expedition pages) ========== */
.itinerary-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px 40px;
}
.itinerary-section__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-deep);
  text-align: center;
  margin-bottom: 40px;
}
.itinerary-timeline {
  position: relative;
  padding-left: 40px;
}
.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-sunset), var(--color-deep));
}
.itinerary-day {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  gap: 24px;
}
.itinerary-day:last-child {
  padding-bottom: 0;
}
.itinerary-day__marker {
  position: relative;
  flex-shrink: 0;
}
.itinerary-day__number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50px;
  background: var(--color-sunset);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 10px;
  position: relative;
  left: -40px;
}
.itinerary-day__content {
  flex: 1;
  padding-top: 4px;
}
.itinerary-day__title {
  font-family: var(--font-subheading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 8px;
}
.itinerary-day__description {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-light);
}
.itinerary-day__distance {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-deep);
  background: var(--color-ice);
  padding: 4px 12px;
  border-radius: 50px;
}

@media (max-width: 775px) {
  .itinerary-section { padding: 48px 24px; }
  .itinerary-timeline { padding-left: 32px; }
  .itinerary-day__number { left: -32px; width: 28px; height: 28px; font-size: 10px; }
}

/* ========== CONTENT BLOCKS ========== */
.content-block {
  margin-bottom: clamp(28px, 3vw, 40px);
}

.content-block h3 {
  font-family: var(--font-subheading);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 16px;
}

.content-block--text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.content-block--text p { margin-bottom: 16px; }

/* FAQ Accordion */
.content-block--faq { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item__question {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-light);
  transition: transform 0.2s;
}

.faq-item[open] .faq-item__question::after {
  content: '\2212';
}

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

.faq-item__answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.content-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.content-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.content-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: rgba(0,0,0,0.5);
  color: var(--color-white);
  font-size: 12px;
}

/* Video embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA block */
.content-block--cta {
  background: var(--color-deep);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.content-block--cta h3 {
  color: var(--color-white);
  margin-bottom: 20px;
}

/* ========== ROUTE CARDS (hire pages) ========== */
.route-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.route-cards h4 {
  grid-column: 1 / -1;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-deep);
  margin: 8px 0 0;
}
.route-card {
  background: var(--color-white);
  border-radius: var(--radius-lg, 12px);
  padding: 24px;
  border: 1px solid rgba(0,52,87,0.06);
}
.route-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.route-time {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-mid);
  background: rgba(96,155,177,0.1);
  padding: 4px 12px;
  border-radius: 50px;
}
.route-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-slate);
}
@media (max-width: 775px) {
  .route-cards { grid-template-columns: 1fr; }
}

/* ========== LISTING INTRO (hire listing page) ========== */
.listing-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.listing-intro__card {
  background: var(--color-white);
  border-radius: var(--radius-lg, 12px);
  padding: 32px;
  border: 1px solid rgba(0,52,87,0.06);
}
.listing-intro__card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 12px;
}
.listing-intro__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-slate);
  margin-bottom: 0;
}
@media (max-width: 775px) {
  .listing-intro { grid-template-columns: 1fr; }
}

/* ========== LISTING GRID ========== */
.listing-section {
  padding: var(--section-padding) clamp(20px, 4vw, 48px);
  background: var(--color-cream);
}

/* ========== LISTING FILTER CHIPS ========== */
.listing-filters {
  background: var(--color-cream);
  padding: 32px clamp(20px, 4vw, 48px) 0;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.filter-group__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-deep, #0a1828);
  opacity: 0.55;
  margin-right: 6px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10, 24, 40, 0.06);
  color: var(--color-deep, #0a1828) !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.filter-chip:hover {
  background: rgba(254, 107, 0, 0.12);
  border-color: rgba(254, 107, 0, 0.3);
}

.filter-chip--active {
  background: var(--color-orange, #fe6b00);
  color: var(--color-white) !important;
  border-color: var(--color-orange, #fe6b00);
}

.filter-chip--active:hover {
  background: var(--color-orange, #fe6b00);
  filter: brightness(0.95);
}

.filter-chip__count {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.65;
}

.filter-chip--active .filter-chip__count { opacity: 0.9; }

.filter-clear {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-orange, #fe6b00);
  text-decoration: underline;
}

@media (max-width: 775px) {
  .listing-filters { padding-top: 24px; }
  .filter-group__label { width: 100%; margin-bottom: 4px; margin-right: 0; }
  .filter-chip { font-size: 12px; padding: 6px 12px; }
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 775px) {
  .listing-grid { grid-template-columns: 1fr; }
}

.listing-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.listing-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.listing-card__image img,
.listing-card__image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card:hover .listing-card__image img {
  transform: scale(1.05);
}

.listing-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.listing-card__avail-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.listing-card__avail-badge--low {
  background: rgba(220, 53, 69, 0.9);
  color: #fff;
}
.listing-card__avail-badge--full {
  background: rgba(108, 117, 125, 0.85);
  color: #fff;
}

.listing-card__next-date {
  color: var(--color-primary, #1a6b35);
  font-weight: 500;
}

.listing-card__body {
  padding: 24px;
}

.listing-card__title {
  font-family: var(--font-subheading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.listing-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.listing-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.listing-card__meta-item {
  font-size: 13px;
  color: var(--color-text-light);
}

.listing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.listing-card__price {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-deep);
}

.listing-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.04em;
}

/* Listing empty state */
.listing-empty {
  text-align: center;
  padding: 60px 20px;
  max-width: 520px;
  margin: 0 auto;
}

.listing-empty h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 16px;
}

.listing-empty p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ========== PRODUCT PAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
  }

  .info-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero--product { height: 50vh; min-height: 350px; }
  .hero--listing { height: 40vh; min-height: 280px; }
  .hero--v3.hero--listing,
  .hero--v3.hero--info { min-height: 35vh; }

  .quick-facts__inner {
    justify-content: flex-start;
    gap: 16px 32px;
  }

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

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

  .pricing-card__tier {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .pricing-card__prices {
    text-align: left;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
  }
}

/* ── Info Page ──────────────────────────────────────────────────────────────── */

.info-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 40px);
}

.info-page__content {
  line-height: 1.7;
  color: var(--color-body);
}

.info-page__content h2,
.info-page__content h3 {
  font-family: var(--font-subheading);
  color: var(--color-deep);
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.info-page__content h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
}

.info-page__content h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.info-page__content p {
  margin-bottom: 1em;
}

.info-page__content ul,
.info-page__content ol {
  margin: 0 0 1.2em 1.5em;
}

.info-page__content li {
  margin-bottom: 0.4em;
}

.info-page__content a {
  color: var(--color-orange);
  text-decoration: underline;
}

.info-page__content a:hover {
  color: var(--color-deep);
}

.info-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 1em 0;
}

.info-page__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-muted);
}

.info-page .content-block {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.info-page .faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.info-page .faq-item__question {
  cursor: pointer;
  font-weight: 500;
  color: var(--color-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-page .faq-item__question::after {
  content: '+';
  font-size: 1.4em;
  font-weight: 300;
  color: var(--color-orange);
  transition: transform 0.2s;
}

.info-page .faq-item[open] .faq-item__question::after {
  content: '−';
}

.info-page .faq-item__answer {
  padding: 12px 0 4px;
  color: var(--color-body);
}

/* Info hero — shorter than product/listing */
.hero--info { height: 45vh; min-height: 340px; }

/* ── Contact Page ── */
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}
.contact-page__form h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  color: var(--color-deep);
  margin-bottom: 12px;
}
.contact-page__form > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-body);
  margin-bottom: 24px;
}
.contact-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,52,87,0.06);
  margin-bottom: 16px;
}
.contact-card h3 {
  font-family: var(--font-subheading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body);
  margin-bottom: 4px;
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a {
  color: var(--color-orange);
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--color-deep);
}

@media (max-width: 775px) {
  .hero--info { height: 40vh; min-height: 280px; }
  .contact-page {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
}

/* ── Meeting Locations ── */
.meeting-locations {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
}
.meeting-locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.meeting-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,52,87,0.06);
  scroll-margin-top: 24px;
}
.meeting-card__title {
  font-family: var(--font-subheading);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--color-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-orange);
}
.meeting-card__detail {
  margin-bottom: 14px;
}
.meeting-card__detail strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.meeting-card__detail p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body);
  margin: 0 0 4px;
}
.meeting-card__detail p:last-child { margin-bottom: 0; }
.meeting-card__detail a {
  color: var(--color-orange);
  text-decoration: none;
}
.meeting-card__detail a:hover {
  color: var(--color-deep);
}
.meeting-card__detail--alert {
  background: #FE6B000D;
  border-radius: 8px;
  padding: 12px 14px;
}
.meeting-card__map {
  margin-top: 16px;
}
.meeting-card__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 775px) {
  .meeting-locations {
    padding: 32px 24px;
  }
  .meeting-locations__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── Info Page CTA ── */
.info-cta {
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-orange) 100%);
  padding: 64px 40px;
  text-align: center;
  color: var(--color-white);
}
.info-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.info-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 12px;
}
.info-cta p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
}
.info-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.info-cta .btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.info-cta .btn--primary:hover { background: var(--color-orange-light); }
.info-cta .btn--outline {
  background: transparent;
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s;
}
.info-cta .btn--outline:hover { border-color: rgba(255,255,255,0.8); }

/* ── Footer Newsletter Signup ── */
.footer__signup {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-orange) 100%);
  padding: 40px;
}
.footer__signup-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__signup-text h3 {
  font-family: var(--font-subheading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}
.footer__signup-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.footer__signup-form {
  flex: 1;
}
@media (max-width: 775px) {
  .footer__signup { padding: 32px 24px; }
  .footer__signup-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ========================================================================
   V3 TEMPLATE — Tour & Course Pages (full-width layout)
   ======================================================================== */

/* Gift Vouchers short label — hidden by default, shown at tablet */
.nav__vouchers-short { display: none !important; }

/* STICKY BOOK BAR */
.sticky-book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--color-white);
  border-top: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.08);
  box-shadow: 0 -4px 20px rgba(0,29,61,0.1);
  padding: 12px 40px;
  display: flex; align-items: center; justify-content: center; gap: 32px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-book-bar--visible { transform: translateY(0); }
.sticky-book-bar__title {
  font-family: var(--font-subheading); font-size: 17px; font-weight: 600; color: var(--color-text);
}
.sticky-book-bar__price { font-size: 13px; color: var(--color-text-light); }
.sticky-book-bar__price strong {
  font-family: var(--font-subheading); font-size: 20px; color: var(--color-orange); font-weight: 700;
}

/* V3 BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease;
}
.btn--primary { background: var(--color-orange); color: var(--color-white); }
.btn--primary:hover { background: #E55F00; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(4px); color: var(--color-white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255, 255, 255, 0.25); border-color: var(--color-white); }
.btn--white { background: var(--color-white); color: var(--color-orange); font-weight: 700; }
.btn--white:hover { background: var(--color-cream); transform: translateY(-1px); }
.btn--outline-white { background: transparent; color: var(--color-white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn--outline-white:hover { border-color: var(--color-white); }

/* V3 HERO */
.hero--v3 {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-height) + 40px) 40px 60px;
  background: var(--color-navy); overflow: hidden;
}
.hero--v3 .hero__image {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-deep) 40%, var(--color-mid) 100%);
  background-size: cover; background-position: center;
}
.hero--v3 .hero__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,29,61,0.5) 0%, rgba(0,29,61,0.15) 35%,
    transparent 55%, rgba(0,29,61,0.65) 100%);
}
.hero--v3 .hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.hero__breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.hero__breadcrumb a:hover { color: var(--color-white); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-orange); margin-bottom: 18px;
}
.hero__badge::before { content: ''; width: 6px; height: 6px; background: var(--color-orange); border-radius: 50%; }
.hero--v3 .hero__title {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px);
  font-weight: 700; color: var(--color-white); line-height: 1.08; margin-bottom: 14px;
}
.hero__subtitle {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.85);
  max-width: 480px; margin-bottom: 26px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* V3 Listing & Info hero variants */
.hero--v3.hero--listing { min-height: 45vh; }
.hero--v3.hero--info { min-height: 45vh; }
.hero--v3 .hero__count {
  font-size: 14px; color: rgba(255,255,255,0.7);
  font-weight: 500; margin-top: 4px;
}
/* Member price on listing cards */
.listing-card__member-price {
  display: block; font-size: 12px; color: var(--color-teal, #00838f);
  font-weight: 600; margin-top: 2px;
}

/* PRICING BAR */
.pricing-bar {
  background: var(--color-white);
  border-bottom: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.06);
  padding: 0 40px;
}
.pricing-bar__inner {
  max-width: var(--content-wide); margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap;
}
.pricing-bar__facts { display: flex; gap: 32px; padding: 20px 0; }
.pricing-bar__right { display: flex; align-items: center; margin-left: auto; }
.quick-fact { display: flex; align-items: center; gap: 10px; }
.quick-fact__icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-cream); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.quick-fact__label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-text-light); font-weight: 600;
}
.quick-fact__value { font-weight: 600; color: var(--color-text); font-size: 14px; }
.pricing-bar .difficulty-badge {
  display: inline-block; padding: 2px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
}
.pricing-bar__divider {
  width: 1px; background: rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.08);
  margin: 12px 32px; align-self: stretch;
}
.pricing-bar__prices { display: flex; align-items: center; gap: 24px; padding: 16px 0; }
.price-tier { text-align: center; padding: 0 8px; border-right: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.06); min-width: 100px; }
.price-tier:last-of-type { border-right: none; }
.price-tier__label {
  font-size: 11px; font-weight: 600; color: var(--color-text-light);
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 2px;
}
.price-tier__standard {
  font-family: var(--font-subheading); font-size: 22px; font-weight: 700;
  color: var(--color-text); line-height: 1.1;
}
.price-tier__member { font-size: 12px; color: var(--color-mid); font-weight: 600; margin-top: 3px; }
.price-tier__member strong { color: var(--color-orange); font-weight: 700; }
.pricing-bar__cta { display: flex; align-items: center; margin-left: 24px; }
.pricing-bar__cta .btn { white-space: nowrap; padding: 12px 24px; }

/* MEMBER STRIP */
.member-strip {
  background: linear-gradient(90deg, var(--color-mid) 0%, var(--color-deep) 100%);
  text-align: center; padding: 8px 40px;
  font-size: 13px; color: var(--color-white); font-weight: 500;
}
.member-strip strong { font-weight: 700; }
.member-strip a { color: var(--color-white); }

/* V3 CONTENT SECTIONS — two-column */
.content-section {
  max-width: var(--content-wide); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 420px;
}
.content-section:nth-child(even) .content-section__text { order: 2; }
.content-section:nth-child(even) .content-section__media { order: 1; }
.content-section:nth-child(even) { background: var(--color-white); }
.content-section__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 64px;
}
.content-section__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-orange); margin-bottom: 14px;
}
.content-section__heading {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  color: var(--color-text); line-height: 1.25; margin-bottom: 18px;
}
.content-section__body { font-size: 15px; line-height: 1.8; color: var(--color-text-light); }
.content-section__body p { margin-bottom: 14px; }
.content-section__body p:last-child { margin-bottom: 0; }
.content-section__body ul { list-style: none; padding: 0; margin: 14px 0; }
.content-section__body ul li {
  position: relative; padding-left: 22px; padding-bottom: 10px;
  font-size: 15px; line-height: 1.6;
}
.content-section__body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--color-orange);
}
.content-section__media {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-mid) 100%);
  min-height: 400px;
}
.content-section__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.content-section__media--video {
  display: flex; align-items: center; justify-content: center;
}
.video-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; position: relative; z-index: 2;
}
.video-play:hover { background: var(--color-orange); border-color: var(--color-orange); transform: scale(1.06); }
.video-play::after {
  content: ''; width: 0; height: 0;
  border-left: 22px solid var(--color-white);
  border-top: 14px solid transparent; border-bottom: 14px solid transparent;
  margin-left: 5px;
}

/* V3 STORYTELLING SECTION — full-width centred text with drop cap */
.content-section--story {
  display: block; max-width: var(--content-wide); margin: 0 auto;
  padding: 72px 64px; background: var(--color-white);
  border-top: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.04);
  border-bottom: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.04);
}
.content-section--story .content-section__label { text-align: center; display: block; }
.content-section--story .content-section__heading {
  text-align: center; max-width: 700px; margin-left: auto; margin-right: auto;
  font-size: 34px; margin-bottom: 28px;
}
.content-section--story .content-section__body {
  max-width: 760px; margin: 0 auto;
  font-size: 16px; line-height: 1.9; color: var(--color-text-light);
}
.content-section--story .content-section__body p { margin-bottom: 18px; }
.content-section--story .content-section__body p:first-child::first-letter {
  font-family: var(--font-display); font-size: 52px; float: left;
  line-height: 1; padding-right: 10px; padding-top: 4px;
  color: var(--color-deep); font-weight: 700;
}
.content-section--story .content-section__body blockquote {
  border-left: 3px solid var(--color-orange);
  padding-left: 24px; margin: 24px 0;
  font-style: italic; font-size: 17px; color: var(--color-text);
}
.content-section--story .content-section__body mark,
.content-block mark,
.info-page__content mark {
  background: linear-gradient(to top, rgba(254,107,0,0.15) 0%, rgba(254,107,0,0.15) 40%, transparent 40%);
  color: inherit; padding: 0 2px;
}
.content-section--story .content-section__body strong { color: var(--color-text); font-weight: 600; }

/* V3 INFO CARDS */
.info-cards-section { max-width: 1200px; margin: 0 auto; padding: 64px 40px; }
.info-cards-section__title {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  color: var(--color-text); text-align: center; margin-bottom: 40px;
}
.info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.06);
  transition: box-shadow 0.3s;
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-card__icon { font-size: 28px; margin-bottom: 14px; }
.info-card__title {
  font-family: var(--font-subheading); font-size: 17px; font-weight: 600;
  color: var(--color-text); margin-bottom: 12px;
}
.info-card__list { list-style: none; padding: 0; }
.info-card__list li {
  position: relative; padding-left: 20px; padding-bottom: 8px;
  font-size: 13px; line-height: 1.55; color: var(--color-text-light);
}
.info-card__list li::before {
  content: '\2713'; position: absolute; left: 0; top: 0;
  color: var(--color-mid); font-weight: 700; font-size: 13px;
}

/* V3 GALLERY */
.gallery-section { background: var(--color-white); padding: 64px 40px; }
.gallery-section__inner { max-width: var(--content-wide); margin: 0 auto; }
.gallery-section__title {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  color: var(--color-text); margin-bottom: 28px;
}
.gallery__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px; gap: 12px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-mid) 100%);
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.gallery__item:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.gallery__item:first-child { grid-row: 1 / 3; }
.gallery__item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* V3 TESTIMONIALS */
.testimonials-section--v3 { max-width: 1200px; margin: 0 auto; padding: 64px 40px; }
.testimonials-section--v3 .testimonials-section__title {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  color: var(--color-text); margin-bottom: 28px; text-align: center;
}
.testimonials-section--v3 .testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial--v3 {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.06);
}
.testimonial--v3 .testimonial__stars { color: var(--color-orange); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial--v3 .testimonial__context {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--color-orange); margin-bottom: 8px;
}
.testimonial--v3 .testimonial__text {
  font-style: italic; font-size: 14px; line-height: 1.7;
  color: var(--color-text-light); margin-bottom: 18px;
}
.testimonial--v3 .testimonial__author { display: flex; align-items: center; gap: 10px; }
.testimonial--v3 .testimonial__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-mid); display: flex; align-items: center;
  justify-content: center; color: var(--color-white); font-size: 13px; font-weight: 600;
}
.testimonial--v3 .testimonial__name { font-size: 13px; font-weight: 600; color: var(--color-text); }

/* V3 BOOKING SECTION */
.booking-section {
  background: var(--color-white);
  border-top: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.06);
  padding: 64px 40px;
}
.booking-section__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.booking-section__title {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--color-text); margin-bottom: 8px;
}
.booking-section__subtitle { font-size: 16px; color: var(--color-text-light); margin-bottom: 32px; }
.booking-section__fallback {
  background: var(--color-cream); border-radius: var(--radius-lg);
  padding: 48px; border: 2px dashed rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.1);
  color: var(--color-text-light); text-align: center;
}
.booking-section__fallback a { color: var(--color-orange); font-weight: 600; }

/* V3 CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--color-orange) 0%, #e85d00 100%);
  padding: 64px 40px; text-align: center; color: var(--color-white);
}
.cta-section__title {
  font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 12px;
}
.cta-section__text {
  font-size: 16px; opacity: 0.9; margin-bottom: 28px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-section__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========== V3 RESPONSIVE ========== */
@media (max-width: 1024px) {
  .pricing-bar__divider { display: none; }
  .pricing-bar__right { width: 100%; justify-content: center; border-top: 1px solid rgba(var(--color-navy-r), var(--color-navy-g), var(--color-navy-b), 0.06); padding: 12px 0; }
  .pricing-bar__facts { width: 100%; justify-content: center; }
  .info-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 775px) {
  .hero--v3 { min-height: 55vh; padding: calc(var(--nav-height) + 24px) 24px 40px; }
  .hero--v3 .hero__title { font-size: 30px; }
  .pricing-bar { padding: 0 24px; }
  .pricing-bar__facts { flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
  .pricing-bar__right { flex-wrap: wrap; justify-content: center; }
  .pricing-bar__prices { flex-wrap: wrap; gap: 16px; }
  .pricing-bar__cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; }
  .price-tier { border-right: none; }
  .content-section { grid-template-columns: 1fr; min-height: auto; }
  .content-section:nth-child(even) .content-section__text { order: 1; }
  .content-section:nth-child(even) .content-section__media { order: 2; }
  .content-section__text { padding: 40px 24px; }
  .content-section--story { padding: 48px 24px; }
  .content-section--story .content-section__heading { font-size: 26px; }
  .content-section--story .content-section__body { font-size: 15px; }
  .content-section--story .content-section__body p:first-child::first-letter { font-size: 42px; }
  .content-section__media { min-height: 260px; }
  .info-cards { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item:first-child { grid-row: auto; grid-column: 1 / -1; }
  .testimonials-section--v3 .testimonials__grid { grid-template-columns: 1fr; }
  .sticky-book-bar { padding: 10px 20px; gap: 16px; }
}

/* ── Social Proof Strip ── */
.social-proof {
  background: var(--color-white);
  padding: 40px;
  border-bottom: 1px solid rgba(0,52,87,0.06);
}
.social-proof__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
}
.social-proof__stat { text-align: center; }
.social-proof__number {
  display: block;
  font-family: var(--font-subheading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.social-proof__label {
  font-size: 13px;
  color: var(--color-text-light);
}
@media (max-width: 775px) {
  .social-proof__inner { flex-wrap: wrap; gap: 32px; }
  .social-proof__stat { flex: 0 0 45%; }
}

/* ── Pricing Grid (hire pages) ── */
.pricing-grid-section {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 48px 40px;
}
.pricing-grid-section__inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(0,52,87,0.06);
  box-shadow: 0 2px 12px rgba(0,29,61,0.06);
}
.pricing-grid-section__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 6px;
}
.pricing-grid-section__subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 28px;
}
.pricing-grid-wrapper {
  overflow-x: auto;
}
.pricing-grid {
  width: 100%;
  border-collapse: collapse;
}
.pricing-grid thead th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  padding: 12px 16px;
  text-align: center;
  border-bottom: 2px solid rgba(0,52,87,0.08);
}
.pricing-grid thead th:first-child {
  text-align: left;
}
.pricing-grid tbody tr {
  border-bottom: 1px solid rgba(0,52,87,0.04);
}
.pricing-grid tbody tr:last-child {
  border-bottom: none;
}
.pricing-grid tbody td {
  padding: 16px;
  text-align: center;
  vertical-align: middle;
}
.pricing-grid__craft {
  text-align: left !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-grid__craft-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-block;
  background: url('/assets/img/craft-sprites.png') no-repeat;
  background-size: 48px 240px;
}
.pricing-grid__craft strong {
  display: block;
  font-size: 15px;
  color: var(--color-text);
}
.pricing-grid__craft-note {
  font-size: 12px;
  color: var(--color-text-light);
}
.pricing-grid__price {
  display: block;
  font-family: var(--font-subheading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}
.pricing-grid__member {
  display: block;
  font-size: 11px;
  color: var(--color-mid);
  font-weight: 600;
  margin-top: 2px;
}
.pricing-grid__member strong {
  color: var(--color-orange);
}
.pricing-grid tbody tr:hover {
  background: var(--color-cream);
}
.pricing-grid-section__note {
  font-size: 13px;
  color: var(--color-mid);
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
}
@media (max-width: 775px) {
  .pricing-grid-section { padding: 32px 24px; }
  .pricing-grid-section__inner { padding: 24px 16px; }
  .pricing-grid__price { font-size: 16px; }
  .pricing-grid thead th { font-size: 10px; padding: 10px 8px; }
  .pricing-grid tbody td { padding: 12px 8px; }
}

/* ── Conditions Card (hire pages) ── */
.conditions-card {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 32px 40px;
}
.conditions-card__inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid rgba(0,52,87,0.06);
  box-shadow: 0 2px 12px rgba(0,29,61,0.06);
}
.conditions-card__title {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: center;
}
.conditions-card__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.conditions-card__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.conditions-card__icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.conditions-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 2px;
}
.conditions-card__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.conditions-card__value--green { color: #2e7d32; }
.conditions-card__value--amber { color: #e65100; }
.conditions-card__value--red { color: #c62828; }
@media (max-width: 775px) {
  .conditions-card { padding: 24px 20px; }
  .conditions-card__grid {
    flex-wrap: wrap;
    gap: 24px;
  }
  .conditions-card__item {
    flex: 0 0 45%;
  }
}

/* ── Accessibility ── */
:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Native Forms (replaces HubSpot) ── */
.native-form__field { margin-bottom: 20px; }
.native-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-deep);
  margin-bottom: 6px;
}
.native-form__field .required { color: var(--color-orange); }
.native-form__field .optional { font-weight: 400; color: var(--color-body); font-size: 13px; }
.native-form__field input[type="text"],
.native-form__field input[type="email"],
.native-form__field input[type="tel"],
.native-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,52,87,0.15);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-deep);
  background: var(--color-white);
  transition: border-color 0.2s;
}
.native-form__field input:focus,
.native-form__field textarea:focus {
  border-color: var(--color-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}
.native-form__field textarea { resize: vertical; min-height: 100px; }
.native-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-body);
  line-height: 1.5;
}
.native-form__checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--color-orange); }
.native-form__btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}
.native-form__btn:hover { background: var(--color-orange-hover, #e67e00); }
.native-form__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.native-form__msg {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}
.native-form__msg--success { background: #d4edda; color: #155724; }
.native-form__msg--error { background: #f8d7da; color: #721c24; }

/* Newsletter form in footer */
.newsletter-form__row {
  display: flex;
  gap: 8px;
  max-width: 420px;
}
.newsletter-form__input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}
.newsletter-form__input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form__input:focus {
  border-color: var(--color-orange-light);
  outline: none;
  background: rgba(255,255,255,0.15);
}
.newsletter-form__btn {
  padding: 12px 24px;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form__btn:hover { background: var(--color-orange-hover, #e67e00); }
.newsletter-form__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.newsletter-form__msg {
  margin-top: 8px;
  font-size: 13px;
}
.newsletter-form__msg--success { color: #a3e4a3; }
.newsletter-form__msg--error { color: #ffa3a3; }

@media (max-width: 480px) {
  .newsletter-form__row { flex-direction: column; }
  .newsletter-form__btn { width: 100%; }
}
