/* ════════════════════════════════════════════════════════════════════
   Bachelor y bachelorette · sistema visual

   Portado del paquete de diseno. Igual que en las otras paginas: clases
   con prefijo bb- para no chocar con base.css, y las variables del
   paquete redefinidas a partir de los tokens del sitio.
   ════════════════════════════════════════════════════════════════════ */

.bb-page {
  /* Las tipografias salen de los tokens del sitio, no de las del paquete. */
  --serif: var(--pg-serif);
  --sans:  var(--pg-display);
  --mono:  var(--pg-mono);
  --ease:  cubic-bezier(.2,.75,.22,1);
  --nav-h: var(--pg-nav-h, 80px);
}

/* base.css pone overflow-x:hidden en el body y eso rompe position:sticky.
   Con clip se recorta igual sin crear contenedor de scroll. */
.bb-page { overflow-x: clip; }

/* :where() no aporta especificidad: solo se aplica donde ninguna otra
   regla pinta el enlace, para no pisar la barra ni el pie del sitio. */
:where(.bb-page a) { color: inherit; text-decoration: none; }
:where(.bb-page button) { border: 0; font: inherit; color: inherit; cursor: pointer; }

/* El hero sube la altura de la barra para quedar debajo de ella. */
.bb-hero {
  margin-top: calc(-1 * var(--pg-nav-h, 80px));
  padding-top: var(--pg-nav-h, 80px);
}

.bb-scroll-progress { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; will-change: transform; }
.bb-cursor-orbit { position: fixed; z-index: 998; top: -18px; left: -18px; width: 36px; height: 36px; border: 1px solid var(--accent); border-radius: 50%; opacity: 0; pointer-events: none; transition: width .25s var(--ease), height .25s var(--ease), top .25s var(--ease), left .25s var(--ease), background .25s ease, opacity .2s ease; mix-blend-mode: difference; }
.bb-cursor-orbit.is-visible { opacity: .7; }
.bb-cursor-orbit.is-active { top: -28px; left: -28px; width: 56px; height: 56px; background: color-mix(in srgb, var(--accent) 35%, transparent); }
.bb-bachelor-page {
  --ink: #f2eee6;
  --muted: rgba(242,238,230,.58);
  --line: rgba(242,238,230,.16);
  --surface: #0b0d0c;
  --surface-2: #131815;
  --accent: #b8c77b;
  background: var(--surface);
  color: var(--ink);
}
.bb-bachelorette-page {
  --ink: #2b1718;
  --muted: rgba(43,23,24,.62);
  --line: rgba(43,23,24,.17);
  --surface: #f4eee5;
  --surface-2: #eadbcf;
  --accent: #8f263e;
  background: var(--surface);
  color: var(--ink);
}
.bb-page-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}
.bb-page-switch a { padding: 9px 16px; border-radius: 999px; color: var(--muted); font-size: 11px; transition: .25s ease; }
.bb-page-switch a:hover, .bb-page-switch a:focus-visible { color: var(--ink); }
.bb-page-switch a.is-current { background: var(--ink); color: var(--surface); }
.bb-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  padding: calc(var(--nav-h) + 7vh) 4vw 8vh;
  isolation: isolate;
}
.bb-bachelor-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(88,111,62,.2), transparent 34%),
    linear-gradient(110deg, #0a0c0b 0%, #0a0c0b 52%, #111713 100%);
}
.bb-hero-noise { position: absolute; inset: 0; opacity: .16; pointer-events: none; background: repeating-linear-gradient(105deg, transparent 0 18px, rgba(255,255,255,.018) 18px 19px); }
.bb-bachelorette-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(194,132,116,.3), transparent 30%),
    linear-gradient(120deg, #f7f1e8 0%, #f1e6da 58%, #ead7cc 100%);
}
.bb-hero-copy { position: relative; z-index: 4; max-width: 760px; padding-right: 3vw; }
.bb-eyebrow { margin: 0 0 22px; color: var(--accent); font: 9px/1 var(--mono); letter-spacing: .22em; text-transform: uppercase; }
.bb-hero-title { margin: 0; font-size: clamp(65px, 7.15vw, 126px); font-weight: 400; line-height: .76; letter-spacing: -.055em; }
.bb-hero-line { display: block; overflow: hidden; padding-bottom: .08em; }
.bb-hero-line > span { display: block; transform: translateY(115%); animation: bb-title-up 1.1s var(--ease) forwards; }
.bb-hero-line:nth-child(1) > span { animation-delay: 1.35s; }
.bb-hero-line:nth-child(2) > span { animation-delay: 1.47s; }
.bb-hero-line:nth-child(3) > span { animation-delay: 1.59s; }
.bb-hero-line--accent { color: var(--accent); font-family: var(--serif); font-style: italic; letter-spacing: -.045em; }
.bb-hero-lede { max-width: 520px; margin: 32px 0 0; color: var(--muted); font-size: clamp(14px, 1.2vw, 18px); font-weight: 300; line-height: 1.65; }
.bb-hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.bb-hero-reveal { opacity: 0; transform: translateY(18px); animation: bb-soft-up .8s var(--ease) 1.82s forwards; }
.bb-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 22px; border: 1px solid transparent; font-size: 11px; font-weight: 600; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.bb-button span { transition: transform .25s ease; }
.bb-button:hover span { transform: translateY(3px); }
.bb-button--light { background: #efebe4; color: #101310; }
.bb-button--light:hover { background: var(--accent); }
.bb-button--dark { background: var(--ink); color: #f7f1e8; }
.bb-button--dark:hover { background: var(--accent); }
.bb-availability { color: var(--muted); font-size: 10px; }
.bb-availability i { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 15%, transparent); animation: bb-pulse 2.5s ease infinite; }
.bb-hero-visual { position: relative; z-index: 2; width: 100%; height: min(71vh, 760px); opacity: 0; animation: bb-visual-in 1.25s var(--ease) 1.25s forwards; }
.bb-hero-frame, .bb-editorial-frame { position: absolute; margin: 0; overflow: hidden; }
.bb-hero-frame img, .bb-editorial-frame img { transition: transform 1.2s var(--ease); }
.bb-hero-frame:hover img, .bb-editorial-frame:hover img { transform: scale(1.04); }
.bb-hero-frame figcaption, .bb-editorial-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; gap: 12px;
  padding: 26px 16px 12px;
  color: #fff;
  font: 500 10.5px/1.3 var(--mono);
  letter-spacing: .14em; text-transform: uppercase;
  /* El pie iba en 8px blanco sobre foto: ilegible. Sube de tamano y se
     apoya en un degradado propio en vez de una sombra suelta. */
  background: linear-gradient(0deg, rgba(8,8,7,.72), rgba(8,8,7,.34) 55%, transparent);
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
}
.bb-hero-frame--main { inset: 4% 13% 0 2%; clip-path: polygon(0 0,100% 0,100% 91%,90% 100%,0 100%); }
.bb-hero-frame--side { z-index: 3; top: 0; right: 0; width: 31%; height: 34%; border: 8px solid #101310; }
.bb-hero-seal { position: absolute; z-index: 5; right: 3%; bottom: 2%; width: 104px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 1px solid rgba(242,238,230,.4); border-radius: 50%; background: rgba(9,12,10,.75); backdrop-filter: blur(10px); animation: bb-orbit 16s linear infinite; }
.bb-hero-seal span { font: 35px/.8 var(--serif); color: var(--accent); }
.bb-hero-seal small { margin-top: 8px; font: 7px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; }
.bb-editorial-frame--main { inset: 6% 18% 4% 8%; border-radius: 48% 48% 4px 4px; }
.bb-editorial-frame--wellness { z-index: 4; top: 0; right: 0; width: 32%; height: 38%; border: 9px solid #f0e4d8; transform: rotate(2deg); }
.bb-editorial-frame--boat { z-index: 4; left: 0; bottom: 0; width: 34%; height: 29%; border: 9px solid #f0e4d8; transform: rotate(-2deg); }
.bb-editorial-note { position: absolute; z-index: 5; right: 1%; bottom: 5%; width: 180px; padding: 22px; background: #8f263e; color: #fff8f0; transform: rotate(-4deg); box-shadow: 0 20px 70px rgba(91,32,47,.22); }
.bb-editorial-note em { display: block; font: italic 27px/1 var(--serif); }
.bb-editorial-note span { display: block; margin-top: 7px; font: 7px/1.3 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.bb-petal { position: absolute; z-index: 0; border: 1px solid rgba(143,38,62,.13); border-radius: 50% 0 50% 0; animation: bb-drift 12s ease-in-out infinite alternate; }
.bb-petal--one { width: 260px; height: 330px; right: 4%; top: 16%; transform: rotate(35deg); }
.bb-petal--two { width: 180px; height: 240px; left: 38%; bottom: 7%; transform: rotate(-25deg); animation-delay: -5s; }
.bb-hero-index { position: absolute; left: 4vw; right: 4vw; bottom: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; color: var(--muted); font: 7px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.bb-hero-index-line { height: 1px; background: var(--line); overflow: hidden; }
.bb-hero-index-line i { display: block; width: 30%; height: 100%; background: var(--accent); animation: bb-index-run 4s var(--ease) 2s infinite; }
.bb-signal-strip { min-height: 82px; display: flex; align-items: center; overflow: hidden; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font: 8px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.bb-signal-track { flex: 0 0 auto; display: flex; align-items: center; gap: clamp(22px,3vw,54px); width: max-content; padding-left: clamp(22px,3vw,54px); animation: bb-marquee 28s linear infinite; }
.bb-signal-strip i { width: 4px; aspect-ratio: 1; border-radius: 50%; background: var(--accent); }
/* Shared sections */
.bb-section-dark { background: #0b0d0c; color: #f2eee6; --ink: #f2eee6; --muted: rgba(242,238,230,.58); --line: rgba(242,238,230,.15); --accent: #b8c77b; }
.bb-section-light { background: #f2ede4; color: #151813; --ink: #151813; --muted: rgba(21,24,19,.6); --line: rgba(21,24,19,.16); }
.bb-section-wine { background: #541b2a; color: #fbf2e8; --ink: #fbf2e8; --muted: rgba(251,242,232,.67); --line: rgba(251,242,232,.18); --accent: #e3ad8e; }
.bb-section-rose { background: #ddc4b8; color: #31191c; --ink: #31191c; --muted: rgba(49,25,28,.64); --line: rgba(49,25,28,.16); --accent: #8f263e; }
[data-reveal] { opacity: 0; transform: translateY(50px); transition: opacity .95s var(--ease), transform .95s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.bb-intro { display: grid; grid-template-columns: .32fr 1.25fr .8fr; gap: 6vw; padding: 150px 4vw; border-bottom: 1px solid var(--line); }
.bb-intro-kicker { display: flex; gap: 15px; align-items: flex-start; color: var(--muted); font: 8px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.bb-intro-kicker span { color: var(--accent); }
.bb-intro-kicker p { margin: 0; }
.bb-intro-statement > p:first-child { max-width: 560px; margin: 0 0 34px; color: var(--muted); font-size: clamp(17px,1.5vw,23px); font-weight: 300; line-height: 1.6; }
.bb-intro-statement h2 { margin: 0; font: 400 clamp(64px,8vw,138px)/.78 var(--serif); letter-spacing: -.055em; }
.bb-intro-statement h2 em { color: var(--accent); font-weight: 400; }
.bb-intro-statement > p:last-child { max-width: 590px; margin: 38px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.bb-metric-rail { border-top: 1px solid var(--line); }
.bb-metric-rail article { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.bb-metric-rail strong { color: var(--accent); font: 400 clamp(34px,4vw,66px)/1 var(--serif); }
.bb-metric-rail span { color: var(--muted); font: 7px/1.4 var(--mono); letter-spacing: .12em; text-align: right; text-transform: uppercase; }
.bb-section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 6vw; margin-bottom: 90px; }
.bb-section-heading > .bb-eyebrow { grid-column: 1 / -1; margin-bottom: 4px; }
.bb-section-heading h2 { margin: 0; font: 400 clamp(66px,8vw,138px)/.8 var(--sans); letter-spacing: -.065em; }
.bb-section-heading h2 em { color: var(--accent); font-family: var(--serif); font-weight: 400; }
.bb-section-heading > p, .bb-section-heading--split > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.bb-section-heading--split > div .bb-eyebrow { margin-bottom: 34px; }
.bb-section-heading--center { display: block; max-width: 920px; margin-left: auto; margin-right: auto; text-align: center; }
.bb-section-heading--center .bb-eyebrow { margin-bottom: 30px; }
.bb-story { position: relative; padding: 160px 4vw 100px; }
.bb-story::before { content: "THE WEEKEND"; position: absolute; top: 410px; left: -2vw; color: rgba(255,255,255,.022); font: 500 17vw/1 var(--sans); letter-spacing: -.08em; white-space: nowrap; pointer-events: none; }
.bb-story-rows { position: relative; z-index: 1; }
.bb-story-row { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; gap: 8vw; align-items: center; min-height: 92vh; padding: 9vh 0; border-top: 1px solid var(--line); }
.bb-story-row::before { content: attr(data-chapter); position: absolute; top: 20px; right: 0; color: var(--accent); font: 9px/1 var(--mono); }
.bb-story-row--reverse .bb-story-media { grid-column: 2; }
.bb-story-row--reverse .bb-story-copy { grid-row: 1; grid-column: 1; padding-left: 5vw; }
.bb-story-media { position: relative; height: 72vh; max-height: 820px; overflow: hidden; clip-path: inset(0 0 0 0); }
.bb-story-media img { height: 115%; transform: translateY(var(--parallax-y, -6%)) scale(1.02); will-change: transform; }
.bb-story-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 60%,rgba(0,0,0,.55)); pointer-events: none; }
.bb-media-tag { position: absolute; z-index: 2; left: 22px; bottom: 20px; color: #fff; font: 8px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.bb-story-copy { max-width: 610px; }
.bb-story-copy h3 { margin: 0; font: 400 clamp(52px,5.4vw,92px)/.86 var(--serif); letter-spacing: -.045em; }
.bb-story-copy h3 em { color: var(--accent); font-weight: 400; }
.bb-story-copy > p:not(.bb-eyebrow) { margin: 34px 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.bb-story-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.bb-story-copy li { padding: 10px 13px; border: 1px solid var(--line); color: var(--muted); font: 7px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.bb-villa-section { padding: 160px 4vw; }
.bb-villa-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 12px; }
.bb-villa-card { position: relative; min-height: 610px; overflow: hidden; background: #111; color: #fff; }
.bb-villa-card img { transition: transform 1.1s var(--ease), filter .5s ease; }
.bb-villa-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.bb-villa-shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.03) 30%,rgba(0,0,0,.78)); }
.bb-villa-no { position: absolute; top: 20px; left: 20px; font: 8px/1 var(--mono); letter-spacing: .12em; }
.bb-villa-card-copy { position: absolute; left: 28px; right: 28px; bottom: 28px; }
.bb-villa-card-copy small { font: 7px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.bb-villa-card-copy h3 { margin: 10px 0 0; font: 400 clamp(36px,3.6vw,64px)/.9 var(--serif); }
.bb-villa-card-copy p { max-width: 390px; margin: 14px 0 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.6; }
.bb-villa-card:not(.bb-villa-card--wide) .bb-villa-card-copy p { display: none; }
.bb-handled { position: relative; padding: 160px 4vw; overflow: hidden; }
.bb-bento-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, 390px); gap: 12px; }
.bb-bento-card { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line); background: #111512; }
.bb-bento-card--large { grid-row: 1 / 3; }
.bb-bento-card--accent { background: var(--accent); color: #0d110d; --muted: rgba(13,17,13,.62); }
.bb-bento-card > span { position: relative; z-index: 2; color: var(--muted); font: 7px/1 var(--mono); letter-spacing: .17em; text-transform: uppercase; }
.bb-bento-card h3 { position: relative; z-index: 2; margin: 36px 0 0; font: 400 clamp(38px,4vw,68px)/.88 var(--serif); }
.bb-bento-card p { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.bb-bento-card--image { color: #fff; display: flex; align-items: flex-end; }
.bb-bento-card--image img { position: absolute; inset: 0; transition: transform 1s var(--ease); }
.bb-bento-card--image:hover img { transform: scale(1.05); }
.bb-bento-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.8)); }
.bb-bento-card--image > span { position: absolute; left: 34px; top: 34px; color: rgba(255,255,255,.66); }
.bb-faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; padding: 160px 4vw; border-top: 1px solid var(--line); }
.bb-faq .bb-section-heading { display: block; margin: 0; }
.bb-faq .bb-section-heading .bb-eyebrow { margin-bottom: 34px; }
.bb-faq .bb-section-heading h2 { font-size: clamp(58px,6.2vw,104px); }
.bb-accordion { border-top: 1px solid var(--line); }
.bb-faq-item { border-bottom: 1px solid var(--line); }
.bb-faq-item button { width: 100%; min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; border: 0; background: transparent; color: var(--ink); font: 500 16px/1.3 var(--sans); text-align: left; cursor: pointer; }
.bb-faq-item button i { position: relative; flex: 0 0 32px; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; }
.bb-faq-item button i::before, .bb-faq-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: currentColor; transform: translate(-50%,-50%); transition: transform .3s ease; }
.bb-faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.bb-faq-item.is-open button i::after { transform: translate(-50%,-50%) rotate(0); }
.bb-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.bb-faq-answer > p { overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.bb-faq-item.is-open .bb-faq-answer { grid-template-rows: 1fr; }
.bb-faq-item.is-open .bb-faq-answer > p { padding: 0 70px 28px 0; }
.bb-final-cta { position: relative; min-height: 94vh; display: grid; place-items: center; overflow: hidden; color: #fff; text-align: center; }
.bb-final-cta-image, .bb-final-cta-shade { position: absolute; inset: -6%; }
.bb-final-cta-image img { height: 112%; transform: translateY(var(--parallax-y, -5%)) scale(1.02); }
.bb-final-cta-shade { z-index: 1; background: linear-gradient(180deg,rgba(0,0,0,.3),rgba(0,0,0,.77)); }
.bb-final-cta-copy { position: relative; z-index: 2; max-width: 1000px; padding: 100px 4vw; }
.bb-final-cta-copy .bb-eyebrow { color: #d5b36b; }
.bb-final-cta-copy h2 { margin: 28px 0; font: 400 clamp(68px,9vw,150px)/.76 var(--sans); letter-spacing: -.07em; }
.bb-final-cta-copy h2 em { color: #e2c682; font-family: var(--serif); font-weight: 400; }
.bb-final-cta-copy p { max-width: 540px; margin: 0 auto 35px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
.bb-final-cta-copy .bb-button { margin: auto; }
/* Bachelorette-specific editorial system */
.bb-bachelorette-intro { grid-template-columns: .28fr 1.1fr .62fr; background: #f5eee5; }
.bb-bachelorette-intro .bb-intro-statement h2 { color: #2b1718; }
.bb-bachelorette-intro .bb-intro-statement h2 em { color: #8f263e; }
.bb-editorial-quote { align-self: end; padding: 40px 0 0 40px; border-left: 1px solid var(--line); }
.bb-editorial-quote span { color: var(--accent); font: 80px/.5 var(--serif); }
.bb-editorial-quote p { margin: 20px 0 0; font: italic 31px/1.2 var(--serif); }
.bb-mood-story { position: relative; padding: 160px 4vw 200px; overflow: hidden; }
.bb-mood-story::before { content: "HER WEEKEND"; position: absolute; left: -2vw; top: 38%; color: rgba(255,255,255,.027); font: 500 18vw/1 var(--sans); letter-spacing: -.09em; white-space: nowrap; }
.bb-day-collage { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: 760px 680px; gap: 90px 18px; }
.bb-day-panel { position: relative; }
.bb-day-panel figure { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.bb-day-panel figure img { height: 112%; transform: translateY(var(--parallax-y, -5%)) scale(1.02); }
.bb-day-panel-copy { position: absolute; z-index: 2; max-width: 390px; padding: 34px; background: #f6eee4; color: #32191d; box-shadow: 0 24px 80px rgba(37,8,18,.2); }
.bb-day-panel-copy > span { color: #8f263e; font: 8px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.bb-day-panel-copy h3 { margin: 13px 0; font: 400 clamp(42px,4.4vw,70px)/.86 var(--serif); }
.bb-day-panel-copy p { margin: 0 0 22px; color: rgba(50,25,29,.68); font-size: 12px; line-height: 1.7; }
.bb-day-panel-copy small { font: 7px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.bb-day-panel--welcome { grid-column: 1 / 8; grid-row: 1; }
.bb-day-panel--welcome .bb-day-panel-copy { right: -14%; bottom: -4%; }
.bb-day-panel--boat { grid-column: 9 / 13; grid-row: 1; height: 72%; align-self: end; }
.bb-day-panel--boat .bb-day-panel-copy { left: -34%; top: -8%; }
.bb-day-panel--reset { grid-column: 2 / 6; grid-row: 2; height: 90%; }
.bb-day-panel--reset .bb-day-panel-copy { right: -35%; bottom: -8%; }
.bb-day-panel--brunch { grid-column: 7 / 13; grid-row: 2; height: 82%; align-self: end; }
.bb-day-panel--brunch .bb-day-panel-copy { left: -20%; top: -8%; }
.bb-bachelorette-villas { background: #f5eee5; }
.bb-bachelorette-villas .bb-section-heading h2 { color: #2b1718; }
.bb-bachelorette-villas .bb-section-heading h2 em { color: #8f263e; }
.bb-editorial-villas { display: grid; grid-template-columns: 1.28fr .72fr; grid-template-rows: 370px 370px; gap: 14px; }
.bb-editorial-villa { position: relative; overflow: hidden; color: #fff; }
.bb-editorial-villa::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.03),rgba(31,8,14,.78)); }
.bb-editorial-villa img { transition: transform 1.1s var(--ease); }
.bb-editorial-villa:hover img { transform: scale(1.045); }
.bb-editorial-villa--hero { grid-row: 1 / 3; }
.bb-editorial-villa > span { position: absolute; z-index: 2; top: 24px; left: 24px; font: 7px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.bb-editorial-villa > div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; }
.bb-editorial-villa h3 { margin: 0; font: 400 clamp(42px,4vw,68px)/.9 var(--serif); }
.bb-editorial-villa p { margin: 10px 0 0; color: rgba(255,255,255,.7); font-size: 11px; }
.bb-bachelorette-handled { padding-bottom: 190px; }
.bb-bachelorette-handled .bb-section-heading h2 { font-family: var(--serif); letter-spacing: -.04em; }
.bb-ritual-grid { display: grid; grid-template-columns: 1fr .86fr 1fr; grid-template-rows: repeat(2, 390px); gap: 14px; }
.bb-ritual-card { position: relative; overflow: hidden; min-height: 300px; background: #3b2023; color: #fff; }
.bb-ritual-card--tall { grid-row: 1 / 3; }
.bb-ritual-card img { transition: transform 1.05s var(--ease); }
.bb-ritual-card:hover img { transform: scale(1.05); }
.bb-ritual-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 36%,rgba(38,12,17,.76)); }
.bb-ritual-card > div { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 27px; }
.bb-ritual-card span, .bb-ritual-card--text > span { font: 7px/1 var(--mono); letter-spacing: .17em; text-transform: uppercase; }
.bb-ritual-card h3 { margin: 12px 0 0; font: 400 clamp(34px,3.5vw,60px)/.9 var(--serif); }
.bb-ritual-card--text { padding: 34px; background: #eee1d7; color: #32191d; }
.bb-ritual-card--text::after { display: none; }
.bb-ritual-card--text p { position: absolute; left: 34px; right: 34px; bottom: 28px; margin: 0; color: rgba(50,25,29,.65); font-size: 12px; line-height: 1.7; }
.bb-ritual-card--wine { background: #6f1e33; color: #fff; }
.bb-ritual-card--wine p { color: rgba(255,255,255,.68); }
.bb-bachelorette-faq { background: #f5eee5; }
.bb-bachelorette-faq .bb-section-heading h2 em { color: #8f263e; }
.bb-bachelorette-final .bb-final-cta-shade { background: linear-gradient(180deg,rgba(77,16,34,.26),rgba(43,10,20,.82)); }
@keyframes bb-marquee { to { transform: translateX(-50%); } }
@keyframes bb-wipe-away { to { transform: scaleY(0); } }
@keyframes bb-wipe-copy { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes bb-title-up { to { transform: none; } }
@keyframes bb-soft-up { to { opacity: 1; transform: none; } }
@keyframes bb-visual-in { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes bb-pulse { 50% { opacity: .5; transform: scale(.75); } }
@keyframes bb-orbit { to { transform: rotate(360deg); } }
@keyframes bb-drift { 50% { transform: translateY(-18px) rotate(28deg); } }
@keyframes bb-index-run { 0% { transform: translateX(-110%); } 60%,100% { transform: translateX(340%); } }
@media (max-width: 900px) {
  .bb-hero { min-height: auto; grid-template-columns: 1fr; gap: 32px; padding: 120px 20px 72px; }
  .bb-hero-copy { padding: 0; }
  .bb-hero-title { font-size: clamp(56px, 16vw, 86px); }
  .bb-hero-visual { height: 64svh; min-height: 520px; }
  .bb-hero-index { display: none; }
  .bb-signal-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .bb-intro, .bb-bachelorette-intro { grid-template-columns: 1fr; gap: 42px; padding: 100px 24px; }
  .bb-intro-kicker { margin-bottom: 10px; }
  .bb-metric-rail { display: grid; grid-template-columns: repeat(2,1fr); }
  .bb-metric-rail article:nth-child(odd) { padding-right: 18px; }
  .bb-metric-rail article:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
  .bb-editorial-quote { max-width: 520px; margin-left: auto; }
  .bb-section-heading, .bb-section-heading--split { grid-template-columns: 1fr; gap: 34px; margin-bottom: 64px; }
  .bb-section-heading h2 { font-size: clamp(58px,12vw,96px); }
  .bb-story, .bb-villa-section, .bb-handled, .bb-faq, .bb-mood-story { padding: 110px 24px; }
  .bb-story-row, .bb-story-row--reverse { grid-template-columns: 1fr; gap: 42px; min-height: auto; padding: 80px 0; }
  .bb-story-row--reverse .bb-story-media, .bb-story-row--reverse .bb-story-copy { grid-column: auto; grid-row: auto; }
  .bb-story-row--reverse .bb-story-copy { padding-left: 0; }
  .bb-story-media { height: 65svh; min-height: 540px; }
  .bb-story-copy { max-width: 690px; }
  .bb-villa-grid { grid-template-columns: 1fr 1fr; }
  .bb-villa-card { min-height: 500px; }
  .bb-villa-card--wide { grid-column: 1 / -1; }
  .bb-bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 560px 360px 360px; }
  .bb-bento-card--large { grid-row: auto; grid-column: 1 / -1; }
  .bb-faq { grid-template-columns: 1fr; }
  .bb-faq .bb-section-heading { margin-bottom: 50px; }
  .bb-day-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2,650px); gap: 26px; }
  .bb-day-panel, .bb-day-panel--welcome, .bb-day-panel--boat, .bb-day-panel--reset, .bb-day-panel--brunch { grid-column: auto; grid-row: auto; height: auto; align-self: stretch; }
  .bb-day-panel .bb-day-panel-copy { left: 20px; right: 20px; top: auto; bottom: 20px; max-width: none; }
  .bb-editorial-villas { grid-template-columns: 1fr 1fr; grid-template-rows: 620px 400px; }
  .bb-editorial-villa--hero { grid-row: auto; grid-column: 1 / -1; }
  .bb-ritual-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 560px 360px 360px; }
  .bb-ritual-card--tall { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 560px) {
  .bb-hero { padding-top: 108px; }
  .bb-hero-lede { margin-top: 24px; }
  .bb-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .bb-hero-frame--main { inset: 3% 6% 0 0; }
  .bb-hero-frame--side { width: 35%; height: 28%; }
  .bb-hero-seal { width: 84px; }
  .bb-editorial-frame--main { inset: 5% 8% 5% 8%; }
  .bb-editorial-frame--wellness { width: 38%; height: 30%; }
  .bb-editorial-frame--boat { width: 40%; height: 24%; }
  .bb-editorial-note { right: 0; bottom: 4%; width: 145px; padding: 16px; }
  .bb-intro, .bb-bachelorette-intro { padding: 82px 20px; }
  .bb-intro-statement h2 { font-size: 62px; }
  .bb-metric-rail { grid-template-columns: 1fr; }
  .bb-metric-rail article:nth-child(odd), .bb-metric-rail article:nth-child(even) { padding-left: 0; padding-right: 0; border-left: 0; }
  .bb-editorial-quote { padding: 34px 0 0 24px; }
  .bb-editorial-quote p { font-size: 27px; }
  .bb-story, .bb-villa-section, .bb-handled, .bb-faq, .bb-mood-story { padding: 86px 20px; }
  .bb-section-heading h2, .bb-faq .bb-section-heading h2 { font-size: 58px; }
  .bb-story-row { padding: 62px 0; }
  .bb-story-media { min-height: 440px; height: 62svh; }
  .bb-story-copy h3 { font-size: 50px; }
  .bb-villa-grid { display: flex; gap: 12px; margin-right: -20px; padding-right: 20px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .bb-villa-card, .bb-villa-card--wide { flex: 0 0 84vw; min-height: 520px; scroll-snap-align: start; }
  .bb-villa-card:not(.bb-villa-card--wide) .bb-villa-card-copy p { display: block; }
  .bb-bento-grid, .bb-ritual-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: auto; }
  .bb-bento-card, .bb-ritual-card, .bb-ritual-card--tall { min-height: 390px; grid-column: auto; grid-row: auto; }
  .bb-bento-card--large { min-height: 580px; }
  .bb-faq-item button { min-height: 86px; font-size: 14px; }
  .bb-faq-item.is-open .bb-faq-answer > p { padding-right: 20px; }
  .bb-final-cta { min-height: 88svh; }
  .bb-final-cta-copy h2 { font-size: 63px; }
  .bb-day-collage { display: flex; gap: 14px; margin-right: -20px; padding: 0 20px 14px 0; overflow-x: auto; scroll-snap-type: x mandatory; }
  .bb-day-panel, .bb-day-panel--welcome, .bb-day-panel--boat, .bb-day-panel--reset, .bb-day-panel--brunch { flex: 0 0 86vw; height: 650px; scroll-snap-align: start; }
  .bb-day-panel .bb-day-panel-copy { left: 12px; right: 12px; bottom: 12px; padding: 26px; }
  .bb-day-panel-copy h3 { font-size: 48px; }
  .bb-editorial-villas { display: flex; gap: 12px; margin-right: -20px; padding-right: 20px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .bb-editorial-villa, .bb-editorial-villa--hero { flex: 0 0 84vw; height: 570px; scroll-snap-align: start; }
}

/* ─── Cambiador entre las dos paginas ────────────────────────────────
   El paquete lo traia dentro de su propia barra, que aqui no se usa: la
   de arriba la genera js/nav.js. Queda como una tira al cierre, que es
   donde tiene sentido saltar a la otra pagina. */
.bb-switch-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 clamp(20px, 4vw, 56px) clamp(56px, 7vw, 96px);
}
.bb-switch-strip a {
  padding: 13px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}
.bb-switch-strip a:hover { color: var(--ink); border-color: var(--ink); }
.bb-switch-strip a.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}

/* ─── Bloque de enlaces finales ──────────────────────────────────────
   Viene de services.css, pensado para el fondo claro del sitio. Aqui
   cada pagina tiene su propio fondo, asi que se repinta con sus tokens. */
.bb-page .svc-related {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.bb-page .svc-related .svc-section-tag { color: var(--accent); }
.bb-page .svc-related p { color: var(--muted); }
.bb-page .svc-related a { color: var(--ink); border-bottom: 1px solid var(--line); }
.bb-page .svc-related a:hover { color: var(--accent); border-bottom-color: var(--accent); }
