/* ═══════════════════════════════════════════════════════════════
   yachts.css — BlueVoyage fleet listing
   Distinct from hotel-room zigzag: cinematic hero, full-bleed
   vessel datasheets stacked vertically, deep-sea palette,
   nautical typographic eyebrows + numeric vessel index.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bv-deep:    #06141f;   /* deep ocean */
  --bv-mid:     #0e2535;   /* mid water */
  --bv-night:   #03101a;   /* near-black sea */
  --bv-foam:    #e8eef2;   /* off-white foam */
  --bv-mist:    #b9c5cf;   /* dim text on dark */
  --bv-rope:    #c4a882;   /* warm gold (matches global gold) */
  --bv-rope-2:  #8a7252;   /* shadow gold */
  --bv-rule:    rgba(196, 168, 130, 0.28);
  --bv-rule-d:  rgba(196, 168, 130, 0.12);
}

body[data-brand="BlueVoyage"] { background: var(--bv-deep); }

/* ── HERO ─────────────────────────────────────────────────────── */
.yachts-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--bv-foam);
}
.yachts-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(1.1);
}
/* Multi-slide layer (same pattern as .brand-hero-media). */
.yachts-hero-media {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.yachts-hero-media.active {
  opacity: 1;
  pointer-events: auto;
}
video.yachts-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.yachts-hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(6,20,31,0.85) 100%),
    linear-gradient(180deg, rgba(6,20,31,0.55) 0%, rgba(6,20,31,0.15) 50%, var(--bv-deep) 100%);
}
.yachts-hero-dark {
  position: absolute; inset: 0;
  background: #000;
  pointer-events: none;
}
.yachts-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 100px;
  max-width: 760px;
}
.yachts-hero-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.yachts-hero-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--bv-foam);
}
.yachts-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 24px;
}
.yachts-hero-eyebrow-rule {
  width: 36px;
  height: 1px;
  background: var(--bv-rope);
}
.yachts-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.yachts-hero-title em {
  font-style: italic;
  color: var(--bv-rope);
}
.yachts-hero-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--bv-mist);
  max-width: 560px;
  margin: 0 auto 40px;
}
.yachts-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border: 1px solid var(--bv-rope);
  color: var(--bv-rope);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: rgba(196, 168, 130, 0.04);
  transition: background 0.3s, color 0.3s;
}
.yachts-hero-cta:hover {
  background: var(--bv-rope);
  color: var(--bv-night);
}
.yachts-hero-cta-arrow {
  font-size: 14px;
  letter-spacing: 0;
}

/* ── FLEET CONTAINER ──────────────────────────────────────────── */
.yachts-fleet {
  background: var(--bv-deep);
  padding: 80px 0 120px;
  color: var(--bv-foam);
}

/* ── EMPTY STATE ──────────────────────────────────────────────── */
.yachts-empty {
  max-width: 640px;
  margin: 80px auto;
  padding: 48px 24px;
  text-align: center;
}
.yachts-empty-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 18px;
}
.yachts-empty-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 22px;
}
.yachts-empty-title em {
  font-style: italic;
  color: var(--bv-rope);
}
.yachts-empty p {
  color: var(--bv-mist);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px;
}
.yachts-empty-cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--bv-rope);
  color: var(--bv-night);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ── YACHT CARD (datasheet) ───────────────────────────────────── */
.yacht-card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 110px;
  padding: 0 48px;
}
.yacht-card:last-child { margin-bottom: 0; }

.yacht-card-index {
  position: absolute;
  top: -28px;
  left: 48px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bv-rope);
  font-variant-numeric: tabular-nums;
}
.yacht-card-index::before {
  content: "—";
  margin-right: 12px;
  color: var(--bv-rope-2);
}

.yacht-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--bv-rule-d);
  background: var(--bv-mid);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}
.yacht-card--alt .yacht-card-grid {
  grid-template-columns: 1fr 1.15fr;
}
.yacht-card--alt .yacht-card-visual { order: 2; }
.yacht-card--alt .yacht-card-info   { order: 1; border-right: 1px solid var(--bv-rule-d); border-left: none; }

/* ── Visual side ── */
.yacht-card-visual {
  position: relative;
  background: var(--bv-night);
  min-height: 540px;
  overflow: hidden;
}
.yacht-gallery {
  position: absolute;
  inset: 0;
}
.yacht-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.yacht-gallery-slide.is-active { opacity: 1; pointer-events: auto; }
.yacht-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yacht-gallery-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.yacht-gallery-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.yacht-gallery-dot.is-active { background: var(--bv-rope); }
.yacht-gallery-counter {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--bv-foam);
  background: rgba(6, 20, 31, 0.6);
  padding: 6px 12px;
  border: 1px solid var(--bv-rule-d);
  font-variant-numeric: tabular-nums;
}
.yacht-gallery-counter-sep { opacity: 0.4; margin: 0 4px; }
.yacht-card-category {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-foam);
  background: rgba(6, 20, 31, 0.7);
  border: 1px solid var(--bv-rope);
  padding: 8px 14px;
}

/* ── Info side ── */
.yacht-card-info {
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, var(--bv-mid) 0%, var(--bv-night) 100%);
  border-left: 1px solid var(--bv-rule-d);
}
.yacht-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.yacht-card-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--bv-rope);
}
.yacht-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 46px;
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--bv-foam);
}
.yacht-card-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--bv-rope);
  margin-bottom: 20px;
}
.yacht-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--bv-mist);
  margin: 0 0 28px;
}

/* Spec sheet — like a vessel datasheet */
.yacht-spec {
  margin: 0 0 28px;
  padding: 22px 0;
  border-top: 1px solid var(--bv-rule-d);
  border-bottom: 1px solid var(--bv-rule-d);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.yacht-spec-row {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--bv-rule-d);
}
.yacht-spec-row:last-child { border-right: none; }
.yacht-spec-row dt {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin: 0 0 6px;
}
.yacht-spec-row dd {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--bv-foam);
  font-variant-numeric: tabular-nums;
}

/* Onboard chips */
.yacht-onboard {
  margin-bottom: 32px;
}
.yacht-onboard-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 12px;
}
.yacht-onboard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.yacht-chip {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 1px solid var(--bv-rule-d);
  color: var(--bv-mist);
  background: rgba(196, 168, 130, 0.04);
}

/* ── Inline charter bookbar (replaces top date strip) ── */
.yacht-card-bookbar {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--bv-rule-d);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.yacht-card-bookbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.yacht-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 140px;
}

/* Override the global .booking-widget chrome inside a yacht card so it
   matches the deep navy palette and sits inline with the price label. */
.booking-widget.yacht-booking {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  background: rgba(6, 20, 31, 0.55);
  border: 1px solid var(--bv-rule-d);
  border-radius: 0;
  box-shadow: none;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}
.booking-widget.yacht-booking .booking-widget-field {
  border-right: 1px solid var(--bv-rule-d);
  padding: 8px 16px;
  background: transparent;
  cursor: pointer;
  min-width: 96px;
}
.booking-widget.yacht-booking .booking-widget-field:last-child { border-right: none; }
.booking-widget.yacht-booking .booking-widget-field label {
  color: var(--bv-rope) !important;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.booking-widget.yacht-booking .booking-date-display {
  color: var(--bv-foam);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.booking-widget.yacht-booking .booking-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1;
  color: var(--bv-foam);
  font-variant-numeric: tabular-nums;
}
.booking-widget.yacht-booking .booking-date-month {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--bv-mist);
}
.booking-widget.yacht-booking .booking-date-sep { color: var(--bv-mist); opacity: 0.5; }
.booking-widget.yacht-booking .booking-date-arrow {
  color: var(--bv-rope);
  font-size: 10px;
  margin-left: 4px;
}

/* Totals strip (Estimated · €X · 5 days · charter total) */
.yacht-card-bookbar-totals {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(196, 168, 130, 0.06);
  border: 1px solid var(--bv-rule-d);
  flex-wrap: wrap;
}
.yacht-card-totals-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bv-rope);
}
.yacht-card-totals-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1;
  color: var(--bv-foam);
  font-variant-numeric: tabular-nums;
}
.yacht-card-totals-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bv-mist);
}
.yacht-card-price-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 4px;
}
.yacht-card-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1;
  color: var(--bv-foam);
  font-variant-numeric: tabular-nums;
}
.yacht-card-price-unit {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bv-mist);
  margin-top: 4px;
}
.yacht-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-yacht-outline,
.btn-yacht-primary {
  display: inline-block;
  padding: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid var(--bv-rope);
}
.btn-yacht-outline {
  background: transparent;
  color: var(--bv-rope);
}
.btn-yacht-outline:hover {
  background: var(--bv-rope);
  color: var(--bv-night);
}
.btn-yacht-primary {
  background: var(--bv-rope);
  color: var(--bv-night);
}
.btn-yacht-primary:hover {
  background: var(--bv-foam);
  border-color: var(--bv-foam);
}
.btn-yacht-primary.booking-widget-btn--disabled {
  background: rgba(196, 168, 130, 0.18);
  color: var(--bv-mist);
  border-color: var(--bv-rule);
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   DETAIL PAGE — single vessel (yacht.ejs)
   ═══════════════════════════════════════════════════════════════ */

.yacht-detail-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--bv-foam);
}
.yacht-detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(1.05);
}
.yacht-detail-hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(6,20,31,0.85) 100%),
    linear-gradient(180deg, rgba(6,20,31,0.5) 0%, rgba(6,20,31,0.15) 50%, var(--bv-deep) 100%);
}
.yacht-detail-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 100px;
  max-width: 880px;
}
.yacht-detail-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 28px;
}
.yacht-detail-hero-eyebrow-rule {
  width: 36px;
  height: 1px;
  background: var(--bv-rope);
}
.yacht-detail-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(50px, 8vw, 96px);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.yacht-detail-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bv-rope);
  margin-bottom: 48px;
}
.yacht-detail-hero-sub em { font-style: italic; }
.yacht-detail-hero-quickspecs {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--bv-rule);
  border-bottom: 1px solid var(--bv-rule);
  padding: 22px 0;
  max-width: 720px;
  margin: 0 auto;
}
.yacht-detail-quickspec {
  flex: 1;
  min-width: 120px;
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid var(--bv-rule-d);
}
.yacht-detail-quickspec:last-child { border-right: none; }
.yacht-detail-quickspec-k {
  display: block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 6px;
}
.yacht-detail-quickspec-v {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bv-foam);
}

/* Back-bar */
.yacht-detail-backbar {
  background: var(--bv-deep);
  padding: 24px 48px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.yacht-detail-back {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bv-rope);
  text-decoration: none;
}
.yacht-detail-back:hover { color: var(--bv-foam); }

/* Booking strip */
.yacht-detail-bookstrip {
  background: var(--bv-deep);
  padding: 32px 48px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.yacht-detail-bookstrip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--bv-mid);
  border: 1px solid var(--bv-rule-d);
  padding: 22px 28px;
}
.yacht-detail-bookstrip-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 160px;
  padding-right: 24px;
  border-right: 1px solid var(--bv-rule-d);
}
.yacht-detail-bookstrip-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 4px;
}
.yacht-detail-bookstrip-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  line-height: 1;
  color: var(--bv-foam);
  font-variant-numeric: tabular-nums;
}
.yacht-detail-bookstrip-unit {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bv-mist);
  margin-top: 4px;
}
.yacht-detail-bookstrip-cta a {
  display: inline-block;
  padding: 16px 32px;
}
.yacht-detail-bookstrip-totals {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 28px;
  background: rgba(196, 168, 130, 0.06);
  border: 1px solid var(--bv-rule-d);
  border-top: none;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Story */
.yacht-detail-story,
.yacht-detail-spec,
.yacht-detail-onboard,
.yacht-detail-amenities,
.yacht-detail-related {
  background: var(--bv-deep);
  padding: 80px 0;
  color: var(--bv-foam);
}
.yacht-detail-story-inner,
.yacht-detail-spec-inner,
.yacht-detail-onboard-inner,
.yacht-detail-amenities-inner,
.yacht-detail-related-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.yacht-detail-story-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 18px;
}
.yacht-detail-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 22px;
}
.yacht-detail-story-title em { font-style: italic; color: var(--bv-rope); }
.yacht-detail-story-rule {
  width: 64px;
  height: 1px;
  background: var(--bv-rope);
  margin: 0 auto 32px;
}
.yacht-detail-story-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--bv-mist);
  font-style: italic;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
.yacht-detail-story-body p { margin: 0 0 22px; }

/* Spec section (full datasheet) */
.yacht-detail-spec { padding-top: 0; }
.yacht-detail-spec-head { margin-bottom: 36px; }
.yacht-detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--bv-rule);
  border-bottom: 1px solid var(--bv-rule);
  padding: 32px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.yacht-detail-spec-cell {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--bv-rule-d);
}
.yacht-detail-spec-cell:last-child { border-right: none; }
.yacht-detail-spec-cell dt {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 8px;
}
.yacht-detail-spec-cell dd {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bv-foam);
}

/* Onboard grid */
.yacht-detail-onboard { padding-top: 0; }
.yacht-detail-onboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
.yacht-detail-onboard-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bv-rule-d);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--bv-foam);
}
.yacht-detail-onboard-mark {
  color: var(--bv-rope);
  font-size: 10px;
}

/* Gallery mosaic */
.yacht-detail-gallery {
  background: var(--bv-night);
  padding: 80px 0;
}
.yacht-detail-gallery-head {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}
.yacht-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4px;
}
.yacht-detail-gallery-tile {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.yacht-detail-gallery-tile.is-wide {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
}
.yacht-detail-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.yacht-detail-gallery-tile:hover img { transform: scale(1.04); }

/* Amenities chips section */
.yacht-detail-amenities-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}

/* Related vessels */
.yacht-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 8px;
  text-align: left;
}
.yacht-detail-related-card {
  display: block;
  background: var(--bv-mid);
  border: 1px solid var(--bv-rule-d);
  text-decoration: none;
  color: var(--bv-foam);
  transition: transform 0.4s, border-color 0.4s;
}
.yacht-detail-related-card:hover {
  transform: translateY(-4px);
  border-color: var(--bv-rope);
}
.yacht-detail-related-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.yacht-detail-related-body { padding: 22px 24px 24px; }
.yacht-detail-related-cat {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 8px;
}
.yacht-detail-related-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 10px;
}
.yacht-detail-related-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--bv-mist);
}
.yacht-detail-related-price small { font-size: 11px; opacity: 0.7; }

/* ── Tablet ── */
@media (max-width: 1024px) {
  .yacht-card { padding: 0 32px; margin-bottom: 88px; }
  .yacht-card-grid,
  .yacht-card--alt .yacht-card-grid {
    grid-template-columns: 1fr;
  }
  .yacht-card--alt .yacht-card-visual { order: 1; }
  .yacht-card--alt .yacht-card-info   { order: 2; border-right: none; border-left: none; border-top: 1px solid var(--bv-rule-d); }
  .yacht-card-info { border-left: none; border-top: 1px solid var(--bv-rule-d); }
  .yacht-card-visual { min-height: 440px; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .yachts-hero { min-height: 70vh; }
  .yachts-hero-inner { padding: 60px 20px 80px; }
  .yachts-hero-logo { height: 48px; }
  .yachts-hero-title { font-size: clamp(34px, 9vw, 48px); }
  .yachts-hero-lede { font-size: 17px; }

  .yachts-fleet { padding: 60px 0 80px; }
  .yacht-card { padding: 0 16px; margin-bottom: 64px; }
  .yacht-card-index { left: 16px; top: -22px; font-size: 9px; }
  .yacht-card-visual { min-height: 320px; }
  .yacht-card-info { padding: 32px 24px 28px; }
  .yacht-card-name { font-size: 36px; }
  .yacht-card-subtitle { font-size: 15px; }
  .yacht-card-desc { font-size: 16px; }
  .yacht-spec {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
  }
  .yacht-spec-row {
    border-right: none;
    border-bottom: 1px solid var(--bv-rule-d);
    padding: 12px 8px;
    text-align: left;
  }
  .yacht-spec-row:nth-last-child(-n+2) { border-bottom: none; }
  .yacht-card-price-amount { font-size: 32px; }
  .yacht-card-actions { width: 100%; }
  .yacht-card-actions a { flex: 1; text-align: center; }

  .yacht-card-bookbar-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .booking-widget.yacht-booking { width: 100%; }
  .booking-widget.yacht-booking .booking-widget-field { flex: 1; padding: 8px 12px; min-width: 0; }
  .yacht-card-totals-amount { font-size: 24px; }

  /* Detail page mobile */
  .yacht-detail-hero { min-height: 70vh; }
  .yacht-detail-hero-inner { padding: 60px 20px 80px; }
  .yacht-detail-hero-quickspecs { padding: 18px 0; }
  .yacht-detail-quickspec { padding: 0 12px; min-width: 50%; border-bottom: 1px solid var(--bv-rule-d); padding-bottom: 12px; margin-bottom: 12px; }
  .yacht-detail-quickspec:nth-child(2) { border-right: none; }
  .yacht-detail-quickspec:nth-last-child(-n+2) { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .yacht-detail-quickspec-v { font-size: 18px; }
  .yacht-detail-bookstrip { padding: 24px 16px 32px; }
  .yacht-detail-bookstrip-inner { flex-direction: column; align-items: stretch; padding: 18px 18px; }
  .yacht-detail-bookstrip-price { border-right: none; border-bottom: 1px solid var(--bv-rule-d); padding-right: 0; padding-bottom: 14px; }
  .yacht-detail-bookstrip-cta a { width: 100%; text-align: center; }
  .yacht-detail-story,
  .yacht-detail-spec,
  .yacht-detail-onboard,
  .yacht-detail-amenities,
  .yacht-detail-related { padding: 60px 0; }
  .yacht-detail-story-inner,
  .yacht-detail-spec-inner,
  .yacht-detail-onboard-inner,
  .yacht-detail-amenities-inner,
  .yacht-detail-related-inner { padding: 0 20px; }
  .yacht-detail-story-body { font-size: 17px; }
  .yacht-detail-spec-grid { grid-template-columns: repeat(2, 1fr); padding: 16px 0; }
  .yacht-detail-spec-cell { border-right: none; border-bottom: 1px solid var(--bv-rule-d); padding: 16px 8px; }
  .yacht-detail-spec-cell:nth-last-child(-n+1) { border-bottom: none; }
  .yacht-detail-onboard-grid { grid-template-columns: 1fr; gap: 0; }
  .yacht-detail-gallery-grid { grid-template-columns: 1fr; }
  .yacht-detail-gallery-tile,
  .yacht-detail-gallery-tile.is-wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ═══════════════════════════════════════════════════════════════
   BV CONCEPT PAGE — brand-bluevoyage-concept.ejs
   ═══════════════════════════════════════════════════════════════ */

/* Shared utilities */
.bvc-rule {
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--bv-rope);
  opacity: 0.55;
}
.bvc-gold { color: var(--bv-rope); }
.bvc-divider {
  width: 56px; height: 1px;
  background: var(--bv-rope);
  opacity: 0.5;
  margin: 28px auto 32px;
}
.bvc-divider--left { margin-left: 0; }
.bvc-section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 24px;
}
.bvc-section-eyebrow--light {
  color: var(--bv-rope);
}

/* ── HERO ── */
.bvc-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--bv-foam);
}
.bvc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.05);
}
.bvc-hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(6,20,31,0.85) 100%),
    linear-gradient(180deg, rgba(6,20,31,0.45) 0%, transparent 50%, var(--bv-deep) 100%);
}
.bvc-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 100px;
}
.bvc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 1.0;
  margin: 0 0 0;
  letter-spacing: -0.01em;
}
.bvc-hero-title em {
  font-style: italic;
  color: var(--bv-foam);
}
.bvc-hero-title-gold {
  color: var(--bv-rope);
  display: block;
}
.bvc-hero-sub-rule {
  width: 56px; height: 1px;
  background: var(--bv-rope);
  margin: 32px auto 24px;
  opacity: 0.6;
}
.bvc-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--bv-mist);
  letter-spacing: 0.04em;
}
.bvc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 32px;
}

/* ── ORIGIN ── */
.bvc-origin {
  background: var(--bv-night);
  padding: 110px 24px;
  color: var(--bv-foam);
}
.bvc-origin-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.bvc-origin-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  margin: 0 0 8px;
}
.bvc-origin-title em { font-style: italic; }
.bvc-origin-body {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bvc-origin-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
  color: var(--bv-mist);
  margin: 0;
}
.bvc-origin-body p:first-child {
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--bv-foam);
  font-style: italic;
}
.bvc-origin-body em { color: var(--bv-rope); font-style: italic; }

/* ── PILLARS ── */
.bvc-pillars {
  background: var(--bv-deep);
  padding: 100px 24px;
  color: var(--bv-foam);
}
.bvc-pillars-inner { max-width: 1280px; margin: 0 auto; }
.bvc-pillars-head {
  text-align: center;
  margin-bottom: 72px;
}
.bvc-pillars-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0;
}
.bvc-pillars-title em { font-style: italic; }
.bvc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--bv-rule-d);
}
.bvc-pillar {
  padding: 44px 32px 40px;
  border-right: 1px solid var(--bv-rule-d);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, var(--bv-mid) 0%, var(--bv-night) 100%);
}
.bvc-pillar:last-child { border-right: none; }
.bvc-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  line-height: 1;
  color: rgba(196, 168, 130, 0.18);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.bvc-pillar-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin: 0;
  font-weight: 400;
}
.bvc-pillar-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bv-foam);
  margin: 0;
}

/* ── SPLIT ── */
.bvc-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 600px;
  background: var(--bv-mid);
  color: var(--bv-foam);
}
.bvc-split-img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.bvc-split-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.bvc-split-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin: 0 0 8px;
}
.bvc-split-title em { font-style: italic; }
.bvc-split-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--bv-mist);
  margin: 0 0 16px;
}

/* ── DESTINATIONS ── */
.bvc-destinations {
  background: var(--bv-night);
  padding: 100px 24px 80px;
  color: var(--bv-foam);
}
.bvc-destinations-head {
  max-width: 800px;
  margin: 0 auto 72px;
  text-align: center;
}
.bvc-destinations-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
  margin: 0 0 20px;
}
.bvc-destinations-title em { font-style: italic; color: var(--bv-foam); }
.bvc-destinations-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bv-mist);
  margin: 0;
}
.bvc-dest-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bv-rule-d);
}
.bvc-dest-card {
  background: var(--bv-mid);
  display: flex;
  flex-direction: column;
}
.bvc-dest-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.bvc-dest-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,20,31,0.7) 100%);
}
.bvc-dest-card-num {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(196, 168, 130, 0.22);
  font-variant-numeric: tabular-nums;
  z-index: 2;
  pointer-events: none;
}
.bvc-dest-card-body {
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bvc-dest-card-kicker {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 10px;
}
.bvc-dest-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--bv-foam);
}
.bvc-dest-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bv-foam);
  margin: 0;
}

/* ── A DAY ABOARD ── */
.bvc-day {
  background: var(--bv-deep);
  color: var(--bv-foam);
}
.bvc-day-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.bvc-day-text {
  padding: 80px 64px 80px 48px;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bvc-day-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin: 0 0 8px;
}
.bvc-day-title em { font-style: italic; }
.bvc-day-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--bv-mist);
  margin: 0 0 32px;
  line-height: 1.6;
}
.bvc-day-img {
  background-size: cover;
  background-position: center;
}
.bvc-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--bv-rule-d);
}
.bvc-timeline li {
  display: flex;
  gap: 24px;
  padding: 20px 0 20px 24px;
  border-bottom: 1px solid var(--bv-rule-d);
  align-items: flex-start;
}
.bvc-timeline li:last-child { border-bottom: none; }
.bvc-tl-time {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bv-rope);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 46px;
  font-variant-numeric: tabular-nums;
}
.bvc-tl-content {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bv-mist);
}
.bvc-tl-content strong {
  font-style: normal;
  color: var(--bv-foam);
  font-weight: 400;
}

/* ── PULL QUOTE ── */
.bvc-quote {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bv-foam);
}
.bvc-quote-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(6,20,31,0.88) 100%),
    rgba(6,20,31,0.55);
}
.bvc-quote-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 32px;
}
.bvc-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  line-height: 0.6;
  color: var(--bv-rope);
  opacity: 0.5;
  margin-bottom: 24px;
}
.bvc-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.5;
  color: var(--bv-foam);
  margin: 0 0 28px;
}
.bvc-quote-rule {
  width: 40px; height: 1px;
  background: var(--bv-rope);
  margin: 0 auto 20px;
  opacity: 0.6;
}
.bvc-quote-attr {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bv-rope);
}

/* ── CTA ── */
.bvc-cta {
  background: var(--bv-deep);
  padding: 100px 24px;
  color: var(--bv-foam);
  text-align: center;
  border-top: 1px solid var(--bv-rule-d);
}
.bvc-cta-inner { max-width: 720px; margin: 0 auto; }
.bvc-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin: 24px 0 24px;
}
.bvc-cta-title em { font-style: italic; color: var(--bv-foam); }
.bvc-cta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bv-mist);
  margin: 0 0 44px;
}
.bvc-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   BV EXPERIENCES PAGE — brand-bluevoyage-experiences.ejs
   ═══════════════════════════════════════════════════════════════ */

/* ── Experience blocks (alternating dark/mid) ── */
.bvx-exp {
  color: var(--bv-foam);
}
.bvx-exp--dark  { background: var(--bv-deep); }
.bvx-exp--mid   { background: var(--bv-mid); }
.bvx-exp-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 580px;
  max-width: 100%;
}
.bvx-exp--rev .bvx-exp-inner {
  grid-template-columns: 1fr 1.05fr;
}
.bvx-exp--rev .bvx-exp-img { order: 2; }
.bvx-exp--rev .bvx-exp-text { order: 1; }
.bvx-exp-img {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  overflow: hidden;
}
.bvx-exp-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,20,31,0.15) 0%, transparent 100%);
}
.bvx-exp--rev .bvx-exp-img::after {
  background: linear-gradient(270deg, rgba(6,20,31,0.15) 0%, transparent 100%);
}
.bvx-exp-num {
  position: absolute;
  bottom: 24px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(196,168,130,0.18);
  font-variant-numeric: tabular-nums;
  z-index: 2;
  pointer-events: none;
}
.bvx-exp-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--bv-rule-d);
}
.bvx-exp--rev .bvx-exp-text {
  border-left: none;
  border-right: 1px solid var(--bv-rule-d);
}
.bvx-exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  margin: 0 0 8px;
  color: var(--bv-foam);
}
.bvx-exp-title em { font-style: italic; }
.bvx-exp-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--bv-mist);
  margin: 0 0 16px;
}
.bvx-includes {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--bv-rule-d);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bvx-includes li {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--bv-foam);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bvx-check {
  color: var(--bv-rope);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Always Included ── */
.bvx-included {
  background: var(--bv-night);
  padding: 100px 24px;
  color: var(--bv-foam);
}
.bvx-included-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.bvx-included-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin: 0 0 60px;
}
.bvx-included-title em { font-style: italic; color: var(--bv-rope); }
.bvx-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bv-rule-d);
  border: 1px solid var(--bv-rule-d);
  text-align: left;
}
.bvx-item {
  background: var(--bv-mid);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bvx-item-icon {
  font-size: 20px;
  color: var(--bv-rope);
  opacity: 0.7;
  margin-bottom: 4px;
}
.bvx-item-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-rope);
}
.bvx-item-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--bv-foam);
  margin: 0;
}

/* ── Seasons ── */
.bvx-seasons {
  background: var(--bv-deep);
  padding: 100px 24px;
  color: var(--bv-foam);
}
.bvx-seasons-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.bvx-seasons-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin: 0 0 60px;
}
.bvx-seasons-title em { font-style: italic; }
.bvx-seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--bv-rule-d);
}
.bvx-season {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--bv-rule-d);
  text-align: left;
  background: var(--bv-mid);
  opacity: 0.7;
}
.bvx-season:last-child { border-right: none; }
.bvx-season--peak {
  opacity: 1;
  background: linear-gradient(180deg, rgba(196,168,130,0.06) 0%, var(--bv-mid) 100%);
}
.bvx-season-month {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 10px;
}
.bvx-season-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--bv-foam);
  margin-bottom: 14px;
}
.bvx-season-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--bv-foam);
  margin: 0;
}

/* ── BVX Responsive ── */
@media (max-width: 960px) {
  .bvx-exp-inner,
  .bvx-exp--rev .bvx-exp-inner { grid-template-columns: 1fr; }
  .bvx-exp-img { min-height: 320px; }
  .bvx-exp--rev .bvx-exp-img { order: 0; }
  .bvx-exp--rev .bvx-exp-text { order: 0; border-right: none; border-top: 1px solid var(--bv-rule-d); }
  .bvx-exp-text { border-left: none; border-top: 1px solid var(--bv-rule-d); padding: 44px 28px; }
  .bvx-included-grid { grid-template-columns: repeat(2, 1fr); }
  .bvx-seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .bvx-season { border-bottom: 1px solid var(--bv-rule-d); }
}
@media (max-width: 600px) {
  .bvx-included-grid { grid-template-columns: 1fr; }
  .bvx-seasons-grid { grid-template-columns: 1fr; }
  .bvx-season { border-right: none; }
  .bvx-exp-text { padding: 36px 20px; }
}

/* ── BV CONCEPT RESPONSIVE ── */
@media (max-width: 1100px) {
  .bvc-pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .bvc-pillar:nth-child(3) { border-right: none; }
  .bvc-pillar:nth-child(4) { border-top: 1px solid var(--bv-rule-d); }
  .bvc-pillar:nth-child(5) { border-top: 1px solid var(--bv-rule-d); border-right: none; }
  .bvc-dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .bvc-split { grid-template-columns: 1fr; }
  .bvc-split-img { min-height: 340px; }
  .bvc-split-text { padding: 48px 32px; }
  .bvc-day-inner { grid-template-columns: 1fr; }
  .bvc-day-img { min-height: 300px; order: -1; }
  .bvc-day-text { padding: 56px 28px; max-width: 100%; }
}
@media (max-width: 700px) {
  .bvc-pillars-grid { grid-template-columns: 1fr; }
  .bvc-pillar { border-right: none; border-top: 1px solid var(--bv-rule-d); }
  .bvc-pillar:first-child { border-top: none; }
  .bvc-dest-grid { grid-template-columns: 1fr; }
  .bvc-origin { padding: 70px 20px; }
  .bvc-destinations { padding: 70px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   BV HOME PAGE — brand-bluevoyage-home.ejs
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero slideshow overlay for multiple media items ── */
.bvh-hero { min-height: 100vh; }
.bvh-hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(1.1);
  opacity: 0;
  transition: opacity 0.9s ease;
}
.bvh-hero-media.is-active { opacity: 1; }
.bvh-hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}
.bvh-hero-dot {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.bvh-hero-dot.is-active { background: var(--bv-rope); }

/* ── Philosophy / Story ── */
.bvh-story {
  background: var(--bv-deep);
  padding: 110px 24px;
  color: var(--bv-foam);
}
.bvh-story-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.bvh-story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 40px;
}
.bvh-story-rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--bv-rope);
  opacity: 0.6;
}
.bvh-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.08;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.bvh-story-title em {
  font-style: italic;
  display: block;
  color: var(--bv-foam);
}
.bvh-story-title-gold { color: var(--bv-rope); }
.bvh-story-divider {
  width: 64px;
  height: 1px;
  background: var(--bv-rope);
  margin: 0 auto 36px;
  opacity: 0.5;
}
.bvh-story-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  color: var(--bv-mist);
  max-width: 720px;
  margin: 0 auto 72px;
}
.bvh-story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--bv-rule-d);
  background: var(--bv-rule-d);
  margin-top: 64px;
}
.bvh-pillar {
  background: var(--bv-mid);
  padding: 44px 32px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bvh-pillar-icon {
  font-size: 22px;
  color: var(--bv-rope);
  opacity: 0.8;
  margin-bottom: 6px;
}
.bvh-pillar-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-rope);
}
.bvh-pillar-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--bv-foam);
  margin: 0;
}

/* ── Mid-banner (cinematic divider) ── */
.bvh-midbanner {
  position: relative;
  min-height: 55vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bvh-midbanner-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(6,20,31,0.88) 100%),
    linear-gradient(180deg, rgba(6,20,31,0.6) 0%, rgba(6,20,31,0.3) 50%, rgba(6,20,31,0.75) 100%);
}
.bvh-midbanner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  color: var(--bv-foam);
}
.bvh-midbanner-eyebrow {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 22px;
}
.bvh-midbanner-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  margin: 0 0 40px;
}
.bvh-midbanner-title em {
  font-style: italic;
  color: var(--bv-rope);
}

/* ── Fleet Teaser ── */
.bvh-fleet {
  background: var(--bv-night);
  padding: 100px 24px 80px;
  color: var(--bv-foam);
}
.bvh-fleet-header {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.bvh-fleet-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 28px;
}
.bvh-fleet-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  margin: 0 0 20px;
}
.bvh-fleet-title em { font-style: italic; color: var(--bv-rope); }
.bvh-fleet-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--bv-mist);
  margin: 0;
}
.bvh-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bv-rule-d);
}
.bvh-vessel-card {
  background: var(--bv-mid);
  display: flex;
  flex-direction: column;
}
.bvh-vessel-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.bvh-vessel-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,20,31,0.75) 100%);
}
.bvh-vessel-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bv-foam);
  background: rgba(6, 20, 31, 0.7);
  border: 1px solid var(--bv-rope);
  padding: 7px 13px;
}
.bvh-vessel-index {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1;
  color: rgba(196, 168, 130, 0.18);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.bvh-vessel-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.bvh-vessel-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--bv-foam);
}
.bvh-vessel-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bv-mist);
  margin: 14px 0 18px;
}
.bvh-vessel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.bvh-vessel-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--bv-rule-d);
}
.bvh-fleet-cta-wrap {
  text-align: center;
  margin-top: 60px;
}
.bvh-fleet-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 44px;
  border: 1px solid var(--bv-rope);
  color: var(--bv-rope);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: rgba(196, 168, 130, 0.04);
  transition: background 0.3s, color 0.3s;
}
.bvh-fleet-cta:hover {
  background: var(--bv-rope);
  color: var(--bv-night);
}

/* ── Destinations ── */
.bvh-destinations {
  background: var(--bv-deep);
  padding: 100px 24px;
  color: var(--bv-foam);
}
.bvh-destinations-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.bvh-dest-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  margin: 0 0 24px;
}
.bvh-dest-title em { font-style: italic; color: var(--bv-rope); }
.bvh-dest-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bv-mist);
  margin: 0 0 36px;
  max-width: 480px;
}
.bvh-dest-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.bvh-dest-list li {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bv-mist);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bvh-dest-list li span { color: var(--bv-rope); font-size: 10px; }
.bvh-dest-right {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr;
  gap: 4px;
  height: 540px;
}
.bvh-dest-img {
  background-size: cover;
  background-position: center;
  display: block;
}
.bvh-dest-img--large { grid-row: span 1; }
.bvh-dest-img--small { }

/* ── Gallery ── */
.bvh-gallery {
  background: var(--bv-night);
  padding: 80px 24px;
}
.bvh-gallery-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bv-rope);
  margin-bottom: 36px;
}
.bvh-gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
}
.bvh-gallery-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.bvh-gallery-item:hover { transform: scale(1.02); }
.bvh-gallery-item--wide {
  grid-column: span 3;
  grid-row: span 2;
}
.bvh-gallery-item--std {
  grid-column: span 1;
}

/* ── CTA / Contact ── */
.bvh-cta {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bvh-cta-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(6,20,31,0.9) 100%),
    linear-gradient(180deg, rgba(6,20,31,0.65) 0%, rgba(6,20,31,0.45) 100%);
}
.bvh-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  color: var(--bv-foam);
  max-width: 720px;
}
.bvh-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.03;
  margin: 24px 0 24px;
}
.bvh-cta-title em { font-style: italic; color: var(--bv-rope); }
.bvh-cta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bv-mist);
  margin: 0 0 40px;
}
.bvh-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BV Home Responsive ── */
@media (max-width: 960px) {
  .bvh-story-pillars { grid-template-columns: 1fr; }
  .bvh-destinations-inner { grid-template-columns: 1fr; gap: 48px; }
  .bvh-dest-right { height: 340px; }
  .bvh-dest-list { grid-template-columns: 1fr; }
  .bvh-fleet-grid { grid-template-columns: 1fr; }
  .bvh-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bvh-gallery-item--wide { grid-column: span 2; }
  .bvh-midbanner { background-attachment: scroll; }
  .bvh-cta { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .bvh-story { padding: 70px 20px; }
  .bvh-fleet  { padding: 70px 20px; }
  .bvh-fleet-grid { gap: 0; }
  .bvh-vessel-body { padding: 28px 22px; }
  .bvh-destinations { padding: 70px 20px; }
  .bvh-dest-right { grid-template-columns: 1fr; height: auto; gap: 4px; }
  .bvh-dest-img { height: 220px; }
  .bvh-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .bvh-gallery-item--wide { grid-column: span 2; grid-row: span 1; }
  .bvh-cta-inner { padding: 60px 20px; }
  .bvh-vessel-actions { flex-direction: column; }
}

/* ── Ultra-Mobile (390px) ── */
@media (max-width: 480px) {
  /* Yacht fleet page */
  .yachts-hero-title { font-size: clamp(28px, 8vw, 40px); }
  .yacht-card-name { font-size: 28px; }
  .yacht-card-subtitle { font-size: 14px; }
  .yacht-card-price-amount { font-size: 26px; }
  .yacht-card-info { padding: 24px 16px 20px; }

  /* Yacht detail */
  .yacht-detail-hero-inner { padding: 48px 16px 60px; }
  .yacht-detail-quickspec { min-width: 50%; }
  .yacht-detail-bookstrip-inner { padding: 14px 12px; }
  .yacht-detail-spec-grid { grid-template-columns: 1fr; }
  .yacht-detail-spec-cell:nth-last-child(-n+1) { border-bottom: none; }

  /* BV Concept */
  .bvc-hero-title { font-size: clamp(28px, 8vw, 44px); }
  .bvc-pillars-grid { grid-template-columns: 1fr; }
  .bvc-section-title { font-size: 26px; }

  /* BV Experiences */
  .bve-hero-title { font-size: clamp(28px, 8vw, 44px); }

  /* BV Home */
  .bvh-story-title { font-size: 28px; }
  .bvh-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .bvh-gallery-item--wide { grid-column: span 1; }
}

/* ── Featured Package full-bleed banner (Le Rouge Honeymoon Privée) ── */
.bv-feature-package {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  margin: 40px 0 0;
  overflow: hidden;
}
.bv-feature-package-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,21,30,0.92) 0%, rgba(10,21,30,0.78) 45%, rgba(10,21,30,0.45) 100%),
    linear-gradient(180deg, rgba(10,21,30,0) 60%, rgba(10,21,30,0.6) 100%);
}
.bv-feature-package-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.bv-feature-package-content {
  max-width: 620px;
  color: var(--bv-foam, #f0e6d8);
}
.bv-feature-package-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.08;
  margin: 18px 0 16px;
  color: var(--bv-foam, #f0e6d8);
}
.bv-feature-package-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--bv-foam, #d8d2c6);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: baseline;
  margin-bottom: 24px;
}
.bv-feature-package-price {
  color: var(--bv-rope, #c4a882);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 19px;
}
.bv-feature-package-sep { opacity: 0.5; }
.bv-feature-package-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--bv-foam, #e8eef2);
  margin: 0 0 24px;
  max-width: 560px;
}
.bv-feature-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.bv-feature-package-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--bv-foam, #e8eef2);
}
.bv-feature-package-bullet {
  flex: 0 0 auto;
  color: var(--bv-rope, #c4a882);
  font-size: 13px;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .bv-feature-package { min-height: 560px; padding: 60px 20px; }
  .bv-feature-package-overlay {
    background:
      linear-gradient(180deg, rgba(10,21,30,0.55) 0%, rgba(10,21,30,0.92) 60%);
  }
  .bv-feature-package-list { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 640px) {
  .bv-feature-package-title { font-size: 32px; }
  .bv-feature-package-intro { font-size: 17px; }
}

/* ── Holiday Concepts grid: balance 5 cards in 3-col layout ── */
.bv-holiday-concepts .bvc-dest-grid > .bv-holiday-card { align-self: stretch; }
@media (min-width: 1024px) {
  /* When 5 cards in 3-col, last row has 2 — push them to center for symmetry */
  .bv-holiday-concepts .bvc-dest-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .bv-holiday-concepts .bvc-dest-grid > .bv-holiday-card { grid-column: span 2; }
  .bv-holiday-concepts .bvc-dest-grid > .bv-holiday-card:nth-child(4) { grid-column: 2 / span 2; }
  .bv-holiday-concepts .bvc-dest-grid > .bv-holiday-card:nth-child(5) { grid-column: 4 / span 2; }
}

/* ── Featured Package callout (legacy, now orphaned — kept for compat) ── */
.bv-holiday-package {
  margin-top: 22px;
  padding: 22px 22px 24px;
  background: rgba(196, 168, 130, 0.06);
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-left: 3px solid var(--bv-rope, #c4a882);
  border-radius: 2px;
}
.bv-holiday-package-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bv-rope, #c4a882);
  margin-bottom: 10px;
}
.bv-holiday-package-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--bv-foam, #f0e6d8);
  margin: 0 0 8px;
}
.bv-holiday-package-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bv-foam, #d8d2c6);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: baseline;
}
.bv-holiday-package-price {
  color: var(--bv-rope, #c4a882);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.02em;
}
.bv-holiday-package-sep { opacity: 0.5; }
.bv-holiday-package-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--bv-foam, #d8d2c6);
  margin: 0 0 14px;
}
.bv-holiday-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bv-holiday-package-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--bv-foam, #e8eef2);
}
.bv-holiday-package-cta {
  display: inline-block;
  margin-top: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--bv-rope, #c4a882);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,168,130,0.4);
  padding-bottom: 2px;
}
.bv-holiday-package-cta:hover {
  color: #f0e6d8;
  border-bottom-color: var(--bv-rope, #c4a882);
}
@media (max-width: 640px) {
  .bv-holiday-package { padding: 18px 18px 20px; }
  .bv-holiday-package-name { font-size: 20px; }
  .bv-holiday-package-list li { font-size: 14.5px; }
}

/* ── Cross-promo block (Concept → Hotels) ── */
.bvc-xpromo {
  background: var(--bv-mid, #0f1d29);
  padding: 90px 24px 80px;
  border-top: 1px solid var(--bv-rule-d, rgba(196,168,130,0.15));
}
.bvc-xpromo-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.bvc-xpromo-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  margin: 18px 0 18px;
  color: var(--bv-foam, #f0e6d8);
}
.bvc-xpromo-title em { font-style: italic; }
.bvc-xpromo-title .bvc-gold { color: var(--bv-rope, #c4a882); }
.bvc-xpromo-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
  color: var(--bv-foam, #e8eef2);
  max-width: 680px;
  margin: 0 auto 48px;
}
.bvc-xpromo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.bvc-xpromo-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bv-deep, #0a151e);
  border: 1px solid var(--bv-rule-d, rgba(196,168,130,0.15));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.bvc-xpromo-card:hover {
  transform: translateY(-4px);
  border-color: var(--bv-rope, #c4a882);
}
.bvc-xpromo-card-img {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
}
.bvc-xpromo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,21,30,0) 40%, rgba(10,21,30,0.6) 100%);
}
.bvc-xpromo-card-body {
  padding: 26px 28px 30px;
  text-align: left;
}
.bvc-xpromo-card-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bv-rope, #c4a882);
  margin-bottom: 10px;
}
.bvc-xpromo-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 30px;
  margin: 0 0 10px;
  color: var(--bv-foam, #f0e6d8);
}
.bvc-xpromo-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--bv-foam, #d8d2c6);
  margin: 0 0 18px;
  opacity: 0.92;
}
.bvc-xpromo-card-cta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--bv-rope, #c4a882);
  border-bottom: 1px solid rgba(196,168,130,0.4);
  padding-bottom: 2px;
  display: inline-block;
}
@media (max-width: 768px) {
  .bvc-xpromo { padding: 64px 18px; }
  .bvc-xpromo-grid { grid-template-columns: 1fr; gap: 18px; }
  .bvc-xpromo-card-img { height: 220px; }
  .bvc-xpromo-card-title { font-size: 26px; }
}

/* ── Anchor jump offset (sticky brand-subnav compensation for #voyages etc.) ── */
.bvc-anchor-jump {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
  pointer-events: none;
}

/* ── Voyages section accent (slightly differentiated from anchorage cards below) ── */
.bvc-voyages {
  padding-bottom: 24px;
}
.bvc-voyages + .bvc-destinations {
  padding-top: 32px;
  border-top: 1px solid var(--bv-rule-d, rgba(196,168,130,0.15));
}

/* ── Holiday Concepts: bullets list inside expand card ── */
.bv-holiday-card .bvc-dest-card-body {
  padding-bottom: 22px;
}
.bv-holiday-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bv-holiday-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--bv-foam, #f0e6d8);
  opacity: 1;
}
.bv-holiday-bullet-mark {
  flex: 0 0 auto;
  color: var(--bv-rope, #c4a882);
  font-size: 13px;
  margin-top: 2px;
}
.bv-holiday-cta-link,
.bv-route-cta {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--bv-rope, #c4a882);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,168,130,0.4);
  padding-bottom: 2px;
  transition: border-color 0.18s ease, color 0.18s ease;
  letter-spacing: 0.01em;
}
.bv-holiday-cta-link:hover,
.bv-route-cta:hover {
  border-bottom-color: var(--bv-rope, #c4a882);
  color: #f0e6d8;
}
@media (max-width: 640px) {
  .bv-holiday-bullets li { font-size: 16px; }
  .bv-holiday-cta-link  { font-size: 15px; }
  .bvc-anchor-jump      { top: -68px; }
  .bv-route-cta         { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════════════
   BV inquiry modal — Charter Inquiry popup (yacht + dates + party).
   Brand-contact-modal core CSS uzerine BV teması (deep sea + rope gold).
   ═══════════════════════════════════════════════════════════════ */
.brand-bluevoyage-inquiry-modal .bv-card {
  max-width: 580px;
  background: var(--bv-night, #03101a);
  border: 1px solid var(--bv-rule, rgba(196, 168, 130, 0.28));
}
.brand-bluevoyage-inquiry-modal .bv-header {
  padding-bottom: 22px;
}
.brand-bluevoyage-inquiry-modal .bv-form {
  padding: 0 32px 14px;
}
.brand-bluevoyage-inquiry-modal .bv-actions {
  margin-top: 16px;
}
.brand-bluevoyage-inquiry-modal .bv-action-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
  margin-top: 8px;
}
.brand-bluevoyage-inquiry-modal .bv-submit-email {
  width: 100%;
}
.brand-bluevoyage-inquiry-modal .bv-submit-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  height: 100%;
  min-height: 46px;
  background: #25d366;
  color: #fff;
  border: 1px solid #1eb858;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.brand-bluevoyage-inquiry-modal .bv-submit-whatsapp:hover {
  background: #1eb858;
  transform: translateY(-1px);
}
.brand-bluevoyage-inquiry-modal .bv-submit-whatsapp svg {
  flex-shrink: 0;
}

/* Footer mini-bar */
.brand-bluevoyage-inquiry-modal .bv-mini-channels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 32px 24px;
  border-top: 1px solid var(--bv-rule-d, rgba(196, 168, 130, 0.12));
  margin-top: 14px;
}
.brand-bluevoyage-inquiry-modal .bv-mini-channel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(232, 238, 242, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.brand-bluevoyage-inquiry-modal .bv-mini-channel:hover {
  color: var(--bv-rope, #c4a882);
}
.brand-bluevoyage-inquiry-modal .bv-mini-channel svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.brand-bluevoyage-inquiry-modal .bv-mini-sep {
  color: rgba(196, 168, 130, 0.4);
  font-size: 14px;
}

@media (max-width: 540px) {
  .brand-bluevoyage-inquiry-modal .bv-form {
    padding: 0 18px 10px;
  }
  .brand-bluevoyage-inquiry-modal .bv-action-row {
    grid-template-columns: 1fr;
  }
  .brand-bluevoyage-inquiry-modal .bv-submit-whatsapp {
    min-height: 42px;
  }
  .brand-bluevoyage-inquiry-modal .bv-mini-channels {
    padding: 10px 18px 18px;
    gap: 10px;
    font-size: 10px;
  }
}
