/* =========================================================================
   SAINT POLAIRE — /bundles — "THE CROSSING"
   Bundle experience stylesheet. Scoped under .bundles / prefixed .bdl-.
   Extends the shared design system (index.html <style>). Loads AFTER it.
   Vanilla CSS only. Every cinematic effect is reduced-motion-gated at the
   bottom of this file. Nothing on the money path (selector, chips, toggle,
   sticky bar) uses keyframes — those are interruptible CSS transitions.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Brand tokens. Declared on :root as well as .bundles because the bundle
   popups (.bdl-cov) and the sticky bar are appended to <body> — OUTSIDE
   main.bundles — and would otherwise resolve every var() to nothing.
   ------------------------------------------------------------------------- */
:root,
.bundles {
  --navy: #16202E;
  --navy-2: #1E2C3E;
  --gold: #B89968;
  --paper: #F4F0E6;
  --paper-2: #ECE6D6;
  --gold-line: rgba(184, 153, 104, 0.5);
  --scrim: linear-gradient(180deg, rgba(22, 32, 46, 0) 0%, rgba(22, 32, 46, 0.35) 55%, rgba(22, 32, 46, 0.72) 100%);
  --ease-cine: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-site: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* --ink is the ONE token that must NOT reach :root. Site-wide it means dark
   navy (checkout.html; i18n.js styles its language panel with
   var(--ink,#16202E)), but here it means cream-on-navy. On :root the cream
   would inherit into i18n's body-mounted panel and render it invisible, so
   scope it to the bundle surfaces — including the two mounted on <body>. */
.bundles,
.bdl-cov,
.bdl-sticky {
  --ink: rgba(244, 240, 230, 0.72);
}

.bundles {
  padding-top: 0; /* hero is full-bleed; nav floats over it */
}

/* The bundles main resets .page top-padding — hero owns the top edge. */
main.page.bundles {
  padding-top: 0;
}

/* -------------------------------------------------------------------------
   Reveal engine (S2 — materialize-in). One IO toggles .is-in.
   ------------------------------------------------------------------------- */
.bundles [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition:
    opacity 0.7s var(--ease-site),
    transform 0.7s var(--ease-site),
    filter 0.7s var(--ease-site);
  transition-delay: calc(var(--i, 0) * 0.09s);
  will-change: opacity, transform, filter;
}
.bundles [data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Compass-star seal (S1 stroke-trace) shared styling */
.bdl-seal {
  display: block;
  color: var(--gold);
  overflow: visible;
}
.bdl-seal .bdl-seal-trace {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.bdl-seal .bdl-seal-fill {
  fill: currentColor;
  opacity: 0;
}
.bundles [data-seal].is-in .bdl-seal-trace {
  animation: bdl-trace 1.55s var(--ease-cine) forwards;
}
.bundles [data-seal].is-in .bdl-seal-fill {
  animation: bdl-fill 0.5s 1.1s var(--ease-site) forwards;
}
@keyframes bdl-trace {
  to { stroke-dashoffset: 0; }
}
@keyframes bdl-fill {
  from { opacity: 0; filter: blur(3px); }
  to   { opacity: 1; filter: blur(0); }
}

/* Section eyebrow / title helpers scoped to bundle sections */
.bdl-eyebrow {
  font-family: Georgia, 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.bdl-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0.004em;
  margin: 0;
}
.bdl-title em { font-style: italic; }
.bdl-lede {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 18px auto 0;
}

/* A gold hairline flourish used between chapters */
.bdl-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 4px 0;
}
.bdl-divider::before,
.bdl-divider::after {
  content: "";
  height: 1px;
  width: 64px;
  background: var(--gold-line);
}
.bdl-divider svg { width: 26px; height: 26px; color: var(--gold); }

/* =========================================================================
   §1 · HERO — open water
   ========================================================================= */
.bdl-hero {
  position: relative;
  min-height: 620px;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--navy);
}
.bdl-hero-vid,
.bdl-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
}
.bdl-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--scrim);
  will-change: opacity;
}
/* the vertical gold horizon rule behind the lockup */
.bdl-hero-horizon {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.bdl-hero-horizon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 42vh;
  transform: translateY(-50%) scaleY(0);
  transform-origin: center;
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  animation: bdl-draw-v 1.4s 0.3s var(--ease-cine) forwards;
}
@keyframes bdl-draw-v {
  to { transform: translateY(-50%) scaleY(1); }
}
.bdl-hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px 12svh;
  max-width: 820px;
}
.bdl-hero-seal { margin: 0 auto 22px; width: 54px; height: 54px; }
.bdl-hero-eyebrow {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.bdl-hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(58px, 9.5vw, 132px);
  line-height: 1.02;
  color: var(--paper);
  margin: 0 0 22px;
  letter-spacing: 0.004em;
}
.bdl-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 460px;
  margin: 0 auto;
}
/* headline materialize — per line stagger, backwards fill kills pre-delay flash */
.bdl-hero-anim {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  animation: bdl-materialize 0.75s var(--ease-site) both;
  animation-delay: calc(0.6s + var(--i, 0) * 0.14s);
}
@keyframes bdl-materialize {
  to { opacity: 1; transform: none; filter: blur(0); }
}
/* scroll cue */
.bdl-hero-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--paper);
  opacity: 0;
  animation: bdl-cue-in 0.8s 1.9s var(--ease-site) forwards;
}
.bdl-hero-cue:hover { opacity: 0.7 !important; }
.bdl-hero-cue-rule {
  width: 1px;
  height: 26px;
  background: var(--gold);
  animation: bdl-cue-bob 2.4s ease-in-out infinite;
}
.bdl-hero-cue-label {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
}
@keyframes bdl-cue-in { to { opacity: 1; } }
@keyframes bdl-cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* =========================================================================
   §2 · THE TWO VESSELS — diptych
   ========================================================================= */
.bdl-vessels {
  padding: clamp(72px, 10vw, 130px) 0 clamp(60px, 8vw, 110px);
  background: var(--bg);
}
.bdl-vessels-head { text-align: center; margin-bottom: clamp(48px, 6vw, 84px); }
.bdl-diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-line);
  max-width: 1280px;
  margin: 0 auto;
}
.bdl-vessel {
  position: relative;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bdl-vessel--light { background: var(--paper); color: var(--navy); }
.bdl-vessel--dark { background: var(--navy); color: var(--paper); }
.bdl-vessel-media {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1; /* the set photography is square — 4/5 cropped its edges */
  background: var(--soft);
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid var(--gold-line);
  will-change: clip-path;
}
.bdl-vessel--dark .bdl-vessel-media { background: rgba(244, 240, 230, 0.06); }
.bdl-vessel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.6s var(--ease-site);
}
/* clip-path tide wipe */
.bdl-vessel-media.bdl-wipe { clip-path: inset(0 0 100% 0); }
.bdl-vessel-media.bdl-wipe.is-in {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.9s var(--ease-cine);
}
.bdl-vessel-eyebrow {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.bdl-vessel-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
}
/* The base h1–h6 rule sets a dark colour, which beats the card's inherited
   cream on the navy panel. Restate it per card so both stay readable. */
.bdl-vessel--light .bdl-vessel-name { color: var(--navy); }
.bdl-vessel--dark .bdl-vessel-name { color: var(--paper); }
.bdl-vessel-line {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.82;
  margin: 0 0 22px;
  max-width: 320px;
}
.bdl-vessel--light .bdl-vessel-line { color: rgba(22, 32, 46, 0.78); }
.bdl-vessel--dark .bdl-vessel-line { color: var(--ink); }
.bdl-vessel-price {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
}
.bdl-vessel-price-cur {
  font-size: 0.32em;
  letter-spacing: 0.24em;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.6;
}
/* the 2-or-3 compass stars */
.bdl-vessel-stars {
  display: flex;
  gap: 10px;
  margin: 20px 0 4px;
  min-height: 26px;
  align-items: center;
}
.bdl-vessel-stars svg { width: 20px; height: 20px; color: var(--gold); }
.bdl-vessel-stars .bdl-mini-seal .bdl-seal-fill { opacity: 0; }
.bdl-vessel-stars.is-in .bdl-mini-seal:nth-child(1) .bdl-seal-fill { animation: bdl-fill 0.4s 0.1s var(--ease-site) forwards; }
.bdl-vessel-stars.is-in .bdl-mini-seal:nth-child(2) .bdl-seal-fill { animation: bdl-fill 0.4s 0.24s var(--ease-site) forwards; }
.bdl-vessel-stars.is-in .bdl-mini-seal:nth-child(3) .bdl-seal-fill { animation: bdl-fill 0.4s 0.38s var(--ease-site) forwards; }
.bdl-vessel-stars.is-in .bdl-mini-seal .bdl-seal-trace { animation: bdl-trace 0.9s var(--ease-cine) forwards; }
.bdl-vessel-ship {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin: 16px 0 4px;
}
.bdl-vessel-pill {
  display: inline-block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  padding: 7px 18px;
  margin: 0 0 30px;
}
/* vessel CTA — hairline outline on transparent (restyled .btn-inline) */
.bdl-vessel-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease-site), color 0.3s var(--ease-site), opacity 0.3s var(--ease-site);
}
.bdl-vessel--light .bdl-vessel-cta:hover { background: var(--navy); color: var(--paper); opacity: 1; border-color: var(--navy); }
.bdl-vessel--dark .bdl-vessel-cta:hover { background: var(--paper); color: var(--navy); opacity: 1; border-color: var(--paper); }
.bdl-vessel-cta:active { transform: scale(0.98); }

/* =========================================================================
   §3 · THE SELECTOR — navy band, the money path
   ========================================================================= */
.bdl-selector {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  padding: clamp(70px, 9vw, 120px) 0 clamp(90px, 11vw, 140px);
  overflow: hidden;
}
.bdl-selector-head { text-align: center; margin-bottom: clamp(36px, 4vw, 56px); }
.bdl-selector-head .bdl-eyebrow { color: var(--gold); }
.bdl-selector-head .bdl-title { color: var(--paper); }
.bdl-selector-head .bdl-lede { color: var(--ink); }

/* mode toggle */
.bdl-modes {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  background: rgba(244, 240, 230, 0.03);
}
.bdl-modes-wrap { text-align: center; }
.bdl-mode {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: none;
  border-radius: 100px;
  padding: 13px 26px;
  cursor: pointer;
  transition: color 0.25s var(--ease-site), background 0.25s var(--ease-site);
  white-space: nowrap;
}
.bdl-mode:hover { color: var(--paper); opacity: 1; }
.bdl-mode.is-active {
  background: var(--gold);
  color: var(--navy);
}
.bdl-mode:active { transform: scale(0.98); }
.bdl-mode-n {
  display: inline-block;
  margin-left: 8px;
  opacity: 0.6;
  font-size: 0.85em;
}
.bdl-mode.is-active .bdl-mode-n { opacity: 0.8; }

/* selector body — kit | berths */
.bdl-provision {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.bdl-col-heading {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-line);
}

/* the kit — 3 polo tiles */
.bdl-kit { display: grid; grid-template-columns: 1fr; gap: 14px; }
.bdl-kit-tile {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: rgba(244, 240, 230, 0.04);
  border: 1px solid var(--gold-line);
  cursor: pointer;
  text-align: left;
  color: var(--paper);
  transition: border-color 0.25s var(--ease-site), background 0.25s var(--ease-site);
}
.bdl-kit-tile:hover { border-color: var(--gold); background: rgba(244, 240, 230, 0.07); opacity: 1; }
.bdl-kit-tile:active { transform: scale(0.985); }
.bdl-kit-tile[aria-disabled="true"] {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}
.bdl-kit-media {
  width: 68px;
  height: 68px;
  background: var(--soft);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.bdl-kit-media img {
  position: absolute;
  inset: 6% 8%;
  width: 84%;
  height: 88%;
  object-fit: contain;
}
.bdl-kit-info { min-width: 0; }
.bdl-kit-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 3px;
}
.bdl-kit-hint {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.bdl-kit-plus {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.bdl-kit-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  border-radius: 100px;
}
.bdl-kit-tile.has-count .bdl-kit-count { display: flex; }

/* the berths */
.bdl-berths { display: grid; gap: 16px; }
.bdl-berth {
  position: relative;
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--gold-line);
  padding: 18px;
  min-height: 118px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  transition: border-color 0.3s var(--ease-site), background 0.3s var(--ease-site), box-shadow 0.3s var(--ease-site);
  overflow: hidden;
}
.bdl-berth.is-drop-target {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.bdl-berth-watermark {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  color: var(--navy);
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-site), filter 0.4s var(--ease-site);
}
.bdl-berth.is-filled .bdl-berth-watermark { opacity: 0; filter: blur(4px); }
.bdl-berth-thumb {
  position: relative;
  width: 84px;
  height: 84px;
  background: var(--soft);
  border: 1px solid var(--gold-line);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.bdl-berth-thumb img {
  position: absolute;
  inset: 6% 8%;
  width: 84%;
  height: 88%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s var(--ease-site), transform 0.25s var(--ease-site), filter 0.25s var(--ease-site);
}
/* The polo shows the moment it is chosen — not only once a size is picked. */
.bdl-berth.is-picking .bdl-berth-thumb img,
.bdl-berth.is-filled .bdl-berth-thumb img { opacity: 1; }
.bdl-berth-thumb-empty {
  color: rgba(22, 32, 46, 0.28);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bdl-berth.is-picking .bdl-berth-thumb-empty,
.bdl-berth.is-filled .bdl-berth-thumb-empty { display: none; }
.bdl-berth-body { min-width: 0; position: relative; }
.bdl-berth-label {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
  position: relative;
  display: inline-block;
}
/* gold underline sweep beneath berth label on fill */
.bdl-berth-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-site);
}
.bdl-berth.is-filled .bdl-berth-label::after { transform: scaleX(1); }
.bdl-berth-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.1;
  margin: 0 0 10px;
  transition: transform 0.3s var(--ease-site), opacity 0.3s var(--ease-site);
}
.bdl-berth-empty-title { color: rgba(22, 32, 46, 0.55); }
/* size row inside a berth — reuses the .size-option pattern feel */
.bdl-berth-sizes {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
}
.bdl-berth.is-picking .bdl-berth-sizes,
.bdl-berth.is-filled .bdl-berth-sizes { display: flex; }
.bdl-size-chip {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--gold-line);
  padding: 8px 11px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease-site), color 0.15s var(--ease-site), background 0.15s var(--ease-site);
}
.bdl-size-chip:hover { border-color: var(--navy); opacity: 1; }
.bdl-size-chip.is-selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}
.bdl-size-chip:active { transform: scale(0.97); }
.bdl-size-prompt {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(22, 32, 46, 0.55);
  margin: 0;
}
.bdl-berth-clear {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 28px;
  height: 28px;
  display: none;
  place-items: center;
  background: rgba(244, 240, 230, 0.9);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
}
.bdl-berth-clear:hover { background: #fff; opacity: 1; }
.bdl-berth.is-filled .bdl-berth-clear,
.bdl-berth.is-picking .bdl-berth-clear { display: grid; }
/* berth 3 unfold */
.bdl-berth.is-unfolding {
  animation: bdl-berth-unfold 0.5s var(--ease-site);
}
@keyframes bdl-berth-unfold {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}
/* berth exit (clear) */
.bdl-berth.is-clearing .bdl-berth-thumb img {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
}

/* progress caption + ADD button */
.bdl-provision-foot {
  max-width: 1080px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  text-align: center;
}
.bdl-progress {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
  transition: opacity 0.3s var(--ease-site), transform 0.3s var(--ease-site);
}
.bdl-progress.is-ready {
  color: var(--gold);
}
.bdl-add {
  display: inline-block;
  min-width: 300px;
  max-width: 100%;
  padding: 20px 44px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.25s var(--ease-site), background 0.25s var(--ease-site);
}
.bdl-add:hover { opacity: 0.85; }
.bdl-add:active { transform: scale(0.98); }
.bdl-add[disabled] {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-line);
  cursor: not-allowed;
  opacity: 1;
}
.bdl-add[disabled]:hover { opacity: 1; }
/* one-shot shimmer sweep across berths when complete */
.bdl-berths.is-complete { position: relative; }
.bdl-berths.is-complete::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(184, 153, 104, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: bdl-shimmer 0.7s var(--ease-site) forwards;
}
@keyframes bdl-shimmer {
  to { transform: translateX(120%); }
}

/* FLIP flight clone */
.bdl-flip-clone {
  position: fixed;
  z-index: 400;
  pointer-events: none;
  object-fit: contain;
  will-change: transform;
}

/* =========================================================================
   §4 · STICKY PRICE BAR
   ========================================================================= */
.bdl-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--navy);
  border-top: 1px solid var(--gold-line);
  box-shadow: 0 -14px 40px rgba(22, 32, 46, 0.28);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease-site);
  color: var(--paper);
}
.bdl-sticky.is-visible { transform: translateY(0); }
.bdl-sticky-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}
.bdl-sticky-label {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.1;
}
.bdl-sticky-ship {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  transition: opacity 0.35s var(--ease-site), filter 0.35s var(--ease-site);
}
.bdl-sticky-ship.is-swapping { opacity: 0; filter: blur(4px); }
.bdl-sticky-mid { text-align: right; }
.bdl-sticky-price {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
}
.bdl-sticky-progress {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 3px;
}
.bdl-sticky-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.25s var(--ease-site);
}
.bdl-sticky-cta:hover { opacity: 0.85; }
.bdl-sticky-cta:active { transform: scale(0.98); }
.bdl-sticky-cta[disabled] {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-line);
  cursor: not-allowed;
}
.bdl-sticky-cta[disabled]:hover { opacity: 1; }

/* =========================================================================
   §5 · CRAFT BAND
   ========================================================================= */
.bdl-craft {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--paper);
}
.bdl-craft-head { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.bdl-craft-head .bdl-eyebrow { color: var(--gold); }
.bdl-craft-head .bdl-title { color: var(--navy); }
.bdl-craft-head .bdl-lede { color: rgba(22, 32, 46, 0.66); max-width: 560px; }
.bdl-craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.bdl-craft-card { text-align: center; }
.bdl-craft-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--gold-line);
  will-change: clip-path;
}
.bdl-craft-media.bdl-wipe { clip-path: inset(0 0 100% 0); }
.bdl-craft-media.bdl-wipe.is-in {
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.9s var(--ease-cine);
}
.bdl-craft-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bdl-craft-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 6px;
}
.bdl-craft-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 22px;
  color: var(--navy);
  margin: 0;
}

/* =========================================================================
   §6 · EDITORIAL PROOF
   ========================================================================= */
.bdl-proof {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.bdl-proof-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  will-change: transform;
}
.bdl-proof-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 32, 46, 0.55), rgba(22, 32, 46, 0.35) 50%, rgba(22, 32, 46, 0.7));
}
.bdl-proof-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 760px;
}
.bdl-proof-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.12;
  color: var(--paper);
  margin: 0 0 30px;
}
.bdl-proof-quote {
  position: relative;
  min-height: 2.2em;
}
.bdl-proof-line {
  position: absolute;
  left: 0;
  right: 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.9s var(--ease-site), filter 0.9s var(--ease-site);
}
.bdl-proof-line.is-active { opacity: 1; filter: blur(0); }

/* =========================================================================
   §7 · QUIET FAQ
   ========================================================================= */
.bdl-faq {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg);
}
.bdl-faq-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.bdl-faq-head .bdl-eyebrow { color: var(--gold); }
.bdl-faq-head .bdl-title { color: var(--navy); }
.bdl-faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.bdl-faq-item { border-bottom: 1px solid var(--border); }
.bdl-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--navy);
  transition: opacity var(--t);
}
.bdl-faq-q:hover { opacity: 0.7; }
.bdl-faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}
.bdl-faq-icon::before,
.bdl-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease-site);
}
.bdl-faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.bdl-faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.bdl-faq-item.is-open .bdl-faq-icon::after { transform: translateX(-50%) scaleY(0); }
.bdl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-site);
}
.bdl-faq-a-inner {
  padding: 0 4px 28px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
}

/* =========================================================================
   §8 · CLOSING STRIP
   ========================================================================= */
.bdl-closing {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.bdl-closing-seal { margin: 0 auto 26px; width: 44px; height: 44px; }
.bdl-closing-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--navy);
  margin: 0 0 30px;
}
.bdl-closing-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--navy);
  border: 1px solid var(--navy);
  padding: 18px 44px;
  cursor: pointer;
  transition: opacity 0.25s var(--ease-site);
}
.bdl-closing-cta:hover { opacity: 0.85; }
.bdl-closing-cta:active { transform: scale(0.98); }

/* =========================================================================
   COMPLETION POPUP (inline on /bundles) — apology shell, bundle content
   ========================================================================= */
.bdl-cov {
  position: fixed;
  inset: 0;
  z-index: 9300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(22, 32, 46, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-site);
}
.bdl-cov.open { display: flex; }
.bdl-cov.in { opacity: 1; }
.bdl-cmodal {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--gold-line);
  box-shadow: 0 30px 90px rgba(22, 32, 46, 0.4);
  transform: translateY(14px) scale(0.99);
  transition: transform 0.45s var(--ease-site);
}
.bdl-cov.in .bdl-cmodal { transform: none; }
.bdl-cbody { padding: 52px 48px; text-align: center; }
@media (max-width: 560px) { .bdl-cbody { padding: 40px 26px; } }
.bdl-cclose {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(244, 240, 230, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
}
.bdl-cclose:hover { background: #fff; }
.bdl-cseal { display: block; margin: 0 auto 22px; width: 34px; height: 34px; color: var(--gold); }
/* cascade-wrap stack of chosen flatlays */
.bdl-cstack {
  position: relative;
  height: 130px;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 260px;
}
.bdl-cstack-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 96px;
  height: 120px;
  background: #fff;
  border: 1px solid var(--gold-line);
  box-shadow: 0 8px 24px rgba(22, 32, 46, 0.18);
  overflow: hidden;
  transform: translate(-50%, 20px) scale(0.9);
  opacity: 0;
}
.bdl-cstack-item img {
  position: absolute;
  inset: 8% 10%;
  width: 80%;
  height: 84%;
  object-fit: contain;
}
.bdl-cov.in .bdl-cstack-item {
  animation: bdl-cascade 0.55s var(--ease-site) forwards;
}
.bdl-cov.in .bdl-cstack-item:nth-child(1) { animation-delay: 0.15s; }
.bdl-cov.in .bdl-cstack-item:nth-child(2) { animation-delay: 0.27s; }
.bdl-cov.in .bdl-cstack-item:nth-child(3) { animation-delay: 0.39s; }
@keyframes bdl-cascade {
  to { opacity: 1; }
}
.bdl-ceyebrow {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.bdl-ctitle {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 34px;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 auto 8px;
}
.bdl-ctitle em { font-style: italic; }
.bdl-crule {
  height: 1px;
  width: 60px;
  background: var(--gold);
  margin: 14px auto 18px;
  transform: scaleX(0);
  transform-origin: center;
}
.bdl-cov.in .bdl-crule { animation: bdl-draw-h 0.6s 0.5s var(--ease-site) forwards; }
@keyframes bdl-draw-h { to { transform: scaleX(1); } }
/* Your selections — one row per chosen polo */
.bdl-clist {
  list-style: none;
  margin: 0 auto 20px;
  padding: 0;
  max-width: 340px;
  text-align: left;
}
.bdl-crow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--gold-line);
}
.bdl-crow:last-child { border-bottom: 1px solid var(--gold-line); }
.bdl-crow-name {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--navy);
}
.bdl-crow-size {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.bdl-cship {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(22, 32, 46, 0.72);
  margin: 0 auto 28px;
  max-width: 380px;
}
.bdl-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 38px;
  transition: opacity 0.3s;
}
.bdl-cta:hover { opacity: 0.85; }
.bdl-calt {
  display: block;
  margin: 18px auto 0;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
}
.bdl-calt:hover { color: var(--navy); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 960px) {
  .bdl-diptych { grid-template-columns: 1fr; }
  .bdl-provision { grid-template-columns: 1fr; gap: 40px; }
  .bdl-berths { margin-top: 4px; }
}
@media (max-width: 720px) {
  .bdl-craft-grid { grid-template-columns: 1fr; gap: 40px; max-width: 400px; }
  .bdl-sticky-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 18px;
  }
  .bdl-sticky-mid { grid-column: 1; grid-row: 1; text-align: left; }
  .bdl-sticky-label { grid-column: 1; grid-row: 2; font-size: 16px; }
  .bdl-sticky-cta { grid-column: 2; grid-row: 1 / span 2; }
  .bdl-sticky-price { font-size: 22px; }
}
@media (max-width: 560px) {
  .bdl-hero-inner { padding-bottom: 16svh; }
  .bdl-modes { flex-wrap: wrap; border-radius: 20px; }
  .bdl-mode { padding: 12px 18px; font-size: 10px; }
  .bdl-add { min-width: 100%; }
  .bdl-berth { grid-template-columns: 64px 1fr; gap: 14px; padding: 14px; }
  .bdl-berth-thumb { width: 64px; height: 64px; }
}

/* =========================================================================
   REDUCED MOTION — collapse all spectacle to instant, keep function
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .bundles [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .bundles [class*="bdl-"] {
    animation: none !important;
  }
  .bdl-hero-anim,
  .bdl-hero-cue { opacity: 1 !important; transform: translateX(-50%) !important; filter: none !important; }
  .bdl-hero-cue { transform: translateX(-50%) !important; }
  .bdl-hero-horizon::before { transform: translateY(-50%) scaleY(1) !important; }
  .bdl-seal .bdl-seal-trace { stroke-dashoffset: 0 !important; }
  .bdl-seal .bdl-seal-fill { opacity: 1 !important; }
  .bdl-vessel-media.bdl-wipe,
  .bdl-craft-media.bdl-wipe { clip-path: inset(0 0 0 0) !important; }
  .bdl-vessel-stars .bdl-mini-seal .bdl-seal-fill { opacity: 1 !important; }
  .bdl-berth-thumb img,
  .bdl-berth-label::after { transition: none !important; }
  .bdl-crule,
  .bdl-cstack-item { opacity: 1 !important; transform: none !important; }
  .bdl-crule { transform: scaleX(1) !important; }
  .bdl-cstack-item { transform: translate(-50%, 0) scale(0.9) !important; }
  .bdl-proof-line.is-active { transition: none !important; }
  .bdl-sticky { transition: none !important; }
}
