/* ============================================================
   PROMO BANNERS v3 — THE ROSEDENE signature aesthetic
   Deep wine card + shimmering gold gradient border +
   cream serif headlines + gold ornaments. Matches the cookie
   banner / brand-content-banner pattern that defines the site.
   ============================================================ */

:root {
  --pb-wine:        #1a0a10;
  --pb-wine-lift:   #251019;
  --pb-burgundy:    #784356;
  --pb-burgundy-soft: #a8778a;
  --pb-gold:        #c4a052;
  --pb-gold-bright: #e0c178;
  --pb-cream:       #fefbf8;
  --pb-cream-mute:  rgba(254,251,248,0.72);
  --pb-cream-soft:  rgba(254,251,248,0.18);
  --pb-serif:       'Cormorant Garamond', Georgia, serif;
  --pb-sans:        'Jost', system-ui, sans-serif;
  --pb-accent:      var(--pb-gold);
}

.pb { box-sizing: border-box; }
.pb *, .pb *::before, .pb *::after { box-sizing: border-box; }

/* ── HIDE — must beat .pb--modal display:flex ─────────────────────── */
.pb[hidden] { display: none !important; }

/* ────────────────────────────────────────────────────────────────────
   CARD — the jewel box.
   Outer 3px gold-shimmer border (matches cookie banner pattern).
   Inner deep wine background with subtle painterly noise.
   ──────────────────────────────────────────────────────────────────── */
.pb__card {
  position: relative;
  padding: 3px;                                  /* the gold border width */
  background: linear-gradient(135deg,
    var(--pb-burgundy-soft) 0%,
    var(--pb-gold) 25%,
    var(--pb-burgundy-soft) 50%,
    var(--pb-gold) 75%,
    var(--pb-burgundy-soft) 100%);
  background-size: 220% 220%;
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow:
    0 36px 80px -16px rgba(0,0,0,0.65),
    0 12px 28px -10px rgba(60,15,25,0.45),
    0 1px 0 0 rgba(255,255,255,0.06) inset;
  animation: pbShimmer 8s ease-in-out infinite;
}
@keyframes pbShimmer {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 100% 100%; }
}

/* Inner panel — the dark wine surface */
.pb__inner {
  position: relative;
  background: var(--pb-wine);
  color: var(--pb-cream);
  font-family: var(--pb-sans);
  border-radius: 2px;
  overflow: hidden;
  flex: 1; display: flex; flex-direction: column;
}
/* Subtle radial light from top — adds depth */
.pb__inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse at top, rgba(196,160,82,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── HERO IMAGE ─────────────────────────────────────────────────── */
.pb__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #2a0f1a;
}
/* Image is tinted into the wine palette */
.pb__image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,10,16,0.18) 0%,
    rgba(26,10,16,0.05) 25%,
    rgba(26,10,16,0.45) 75%,
    rgba(26,10,16,0.95) 100%);
  pointer-events: none;
}
/* Gold hairline below image */
.pb__image::after {
  content: '';
  position: absolute; left: 36px; right: 36px; bottom: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(196,160,82,0.5) 50%,
    transparent 100%);
}

/* ── CLOSE — refined gold-ringed circle ─────────────────────────── */
.pb__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: rgba(26,10,16,0.75);
  color: var(--pb-cream);
  border: 1px solid rgba(196,160,82,0.4);
  border-radius: 50%; cursor: pointer;
  font-family: var(--pb-sans); font-size: 17px; font-weight: 300; line-height: 1;
  padding: 0;
  display: grid; place-items: center;
  z-index: 5;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s ease, color 0.2s ease, border-color 0.2s ease;
}
.pb__close:hover {
  color: var(--pb-gold);
  border-color: var(--pb-gold);
  transform: rotate(90deg);
}

/* ── TRUST BADGE — bracketed pill, sits on top of image ─────────── */
.pb__trust {
  position: absolute; top: 18px; left: 18px;
  background: rgba(26,10,16,0.78);
  color: var(--pb-gold);
  font-family: var(--pb-sans);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 7px 13px;
  border: 1px solid rgba(196,160,82,0.45);
  border-radius: 2px;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pb__trust::before, .pb__trust::after {
  content: ''; width: 10px; height: 1px; background: var(--pb-gold); opacity: 0.7;
}

/* ── BODY ───────────────────────────────────────────────────────── */
.pb__body {
  position: relative;
  z-index: 2;
  padding: 30px 36px 36px;
  display: flex; flex-direction: column; gap: 14px;
  text-align: center;
}

/* Corner ornaments */
.pb__body::before, .pb__body::after {
  content: '✦';
  position: absolute; top: 14px;
  font-size: 0.7rem;
  color: var(--pb-gold);
  opacity: 0.6;
}
.pb__body::before { left: 18px; }
.pb__body::after  { right: 18px; }

/* ── EYEBROW — gold caps with hairline rule ─────────────────────── */
.pb__eyebrow {
  font-family: var(--pb-sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--pb-gold);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.pb__eyebrow::after {
  content: ''; position: absolute;
  left: 50%; bottom: 0;
  width: 36px; height: 1px;
  background: var(--pb-gold);
  opacity: 0.75;
  transform: translateX(-50%);
}

/* ── HEADLINE — Cormorant in cream ──────────────────────────────── */
.pb__headline {
  font-family: var(--pb-serif);
  font-size: clamp(1.65rem, 4.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--pb-cream);
  margin: 0;
  text-wrap: balance;
}

/* ── SUBHEAD ────────────────────────────────────────────────────── */
.pb__subhead {
  font-family: var(--pb-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--pb-cream-mute);
  margin: 0;
  max-width: 38ch;
  margin-left: auto; margin-right: auto;
  font-weight: 300;
}

.pb__copy {
  font-family: var(--pb-sans);
  font-size: 0.85rem; line-height: 1.7;
  color: var(--pb-cream-mute);
}

/* ── ACTIONS — gold divider rule, then the CTA ──────────────────── */
.pb__actions {
  margin-top: 18px;
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  position: relative;
}
.pb__actions::before {
  content: ''; display: block;
  width: 52px; height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--pb-gold) 50%,
    transparent 100%);
  opacity: 0.6;
  margin: 0 auto 10px;
}

/* ── CTA — the gold button ─────────────────────────────────────── */
.pb__cta {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  background: linear-gradient(180deg,
    var(--pb-gold-bright) 0%,
    var(--pb-gold) 100%);
  color: var(--pb-wine);
  text-decoration: none; text-align: center;
  padding: 17px 28px;
  border-radius: 2px;
  font-family: var(--pb-sans); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid rgba(255,235,180,0.5);
  box-shadow:
    0 12px 28px -8px rgba(196,160,82,0.65),
    0 2px 6px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(120,67,86,0.25);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s, filter 0.28s;
}
.pb__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 20px 40px -10px rgba(196,160,82,0.85),
    0 4px 12px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.6);
}
.pb__cta:active { transform: translateY(0); }

.pb__code {
  display: inline-block;
  font-family: var(--pb-sans);
  font-weight: 500; letter-spacing: 0.15em;
  font-size: 0.62rem;
  opacity: 0.78;
  text-transform: none;
  font-style: italic;
  color: var(--pb-wine);
}
.pb__code::before { content: 'with code '; opacity: 0.65; font-style: normal; }

/* ── TERMS LINK ─────────────────────────────────────────────────── */
.pb__terms-toggle {
  background: transparent; border: none; cursor: pointer;
  color: var(--pb-cream-mute);
  font-family: var(--pb-sans);
  font-size: 0.7rem; letter-spacing: 0.08em;
  font-style: italic;
  padding: 6px 4px 2px;
  transition: color 0.2s;
}
.pb__terms-toggle:hover { color: var(--pb-gold); }

.pb__terms {
  padding: 14px 32px 22px;
  border-top: 1px solid rgba(196,160,82,0.18);
  font-size: 0.7rem; line-height: 1.7;
  color: var(--pb-cream-mute);
  background: rgba(0,0,0,0.18);
  text-align: left;
  position: relative; z-index: 2;
}

/* ────────────────────────────────────────────────────────────────────
   MODE: MODAL — centred on dark backdrop with vignette
   ──────────────────────────────────────────────────────────────────── */
.pb--modal {
  position: fixed; inset: 0;
  z-index: 11000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: pbFadeIn 0.5s ease-out;
}
.pb--modal .pb__backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,5,2,0.6) 0%, rgba(10,5,2,0.9) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pb--modal .pb__card {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  animation: pbRise 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── MODE: CORNER ───────────────────────────────────────────────── */
.pb--corner {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 10999;
  width: 380px; max-width: calc(100vw - 32px);
  animation: pbSlideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pb--corner .pb__image { aspect-ratio: 21 / 9; }
.pb--corner .pb__body { padding: 22px 24px 26px; }
.pb--corner .pb__headline { font-size: 1.3rem; }
.pb--corner .pb__subhead { font-size: 0.85rem; }

/* ── MODE: BOTTOM_BAR ───────────────────────────────────────────── */
.pb--bottom_bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 10999;
  animation: pbSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pb--bottom_bar .pb__card {
  padding: 0;
  background: linear-gradient(180deg,
    var(--pb-burgundy-soft) 0%,
    var(--pb-gold) 50%,
    var(--pb-burgundy-soft) 100%);
  border-radius: 0;
  max-width: 1180px; margin: 0 auto;
}
.pb--bottom_bar .pb__inner { padding: 1px 0; }
.pb--bottom_bar .pb__image { display: none; }
.pb--bottom_bar .pb__body {
  flex-direction: row; align-items: center; gap: 22px;
  padding: 14px 28px; text-align: left;
}
.pb--bottom_bar .pb__body::before,
.pb--bottom_bar .pb__body::after { display: none; }
.pb--bottom_bar .pb__eyebrow { padding: 0; margin: 0; flex-shrink: 0; }
.pb--bottom_bar .pb__eyebrow::after { display: none; }
.pb--bottom_bar .pb__headline { font-size: 1.05rem; flex: 1; line-height: 1.3; color: var(--pb-cream); }
.pb--bottom_bar .pb__subhead, .pb--bottom_bar .pb__copy { display: none; }
.pb--bottom_bar .pb__actions { margin: 0; flex-shrink: 0; }
.pb--bottom_bar .pb__actions::before { display: none; }
.pb--bottom_bar .pb__cta { padding: 12px 22px; }
.pb--bottom_bar .pb__close { top: 50%; transform: translateY(-50%); }

/* ── MODE: BOTTOM_SHEET ─────────────────────────────────────────── */
.pb--bottom_sheet {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 11000;
  animation: pbSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.pb--bottom_sheet .pb__card {
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  border-top-left-radius: 18px; border-top-right-radius: 18px;
}
.pb--bottom_sheet .pb__inner {
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  border-top-left-radius: 16px; border-top-right-radius: 16px;
  max-height: 92vh; overflow-y: auto;
}
.pb--bottom_sheet .pb__inner::before {
  content: ''; display: block;
  width: 44px; height: 4px;
  background: var(--pb-gold);
  opacity: 0.5;
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ── MODE: INLINE (used on /offers page) ────────────────────────── */
.pb--inline {
  position: static; display: block; margin: 0; padding: 0;
}
.pb--inline .pb__card {
  height: 100%;
  animation: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s;
}
.pb--inline:hover .pb__card {
  transform: translateY(-6px);
  box-shadow:
    0 48px 100px -20px rgba(0,0,0,0.75),
    0 18px 36px -12px rgba(60,15,25,0.55);
}
.pb--inline .pb__close { display: none; }
.pb--inline .pb__image { aspect-ratio: 4 / 3; }

/* ────────────────────────────────────────────────────────────────────
   VARIANTS
   ──────────────────────────────────────────────────────────────────── */

/* PHOTOGRAPHIC — full bleed image with text overlaid */
.pb--photographic .pb__image {
  position: absolute; inset: 0; aspect-ratio: auto;
}
.pb--photographic .pb__image::before {
  background: linear-gradient(
    180deg,
    rgba(26,10,16,0.25) 0%,
    rgba(26,10,16,0.55) 50%,
    rgba(26,10,16,0.95) 100%);
}
.pb--photographic .pb__body {
  position: relative; z-index: 2;
  min-height: 400px; justify-content: flex-end;
  padding: 80px 32px 32px;
}

/* BOLD — sans headline, uppercase */
.pb--bold .pb__headline {
  font-family: var(--pb-sans);
  font-weight: 700; letter-spacing: -0.005em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  line-height: 1.05;
  color: var(--pb-cream);
}

/* MINIMAL — no image, slimmer */
.pb--minimal .pb__image { display: none; }
.pb--minimal .pb__body { padding-top: 46px; }

/* ── MOBILE ────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .pb--corner {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-width: 100%;
    animation: pbSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .pb--corner .pb__card {
    border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  }
  .pb__body { padding: 26px 22px 30px; }
}

/* ── REDUCED MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .pb, .pb__card, .pb__cta { animation: none !important; transition: none !important; }
}

/* ── KEYFRAMES ─────────────────────────────────────────────────── */
@keyframes pbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pbRise {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pbSlideInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pbSlideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LEAVING ───────────────────────────────────────────────────── */
.pb.is-leaving { animation: pbFadeOut 0.4s ease-in forwards; }
@keyframes pbFadeOut {
  to { opacity: 0; transform: scale(0.96); }
}

/* ============================================================
   /BOOK PROMO CALLOUT — matching jewel-box treatment
   ============================================================ */
.promo-callout {
  position: relative;
  padding: 3px;
  background: linear-gradient(135deg,
    var(--pb-burgundy-soft) 0%,
    var(--pb-gold) 25%,
    var(--pb-burgundy-soft) 50%,
    var(--pb-gold) 75%,
    var(--pb-burgundy-soft) 100%);
  background-size: 220% 220%;
  border-radius: 4px;
  margin-bottom: 32px;
  box-shadow: 0 20px 48px -14px rgba(0,0,0,0.4),
              0 4px 10px rgba(60,15,25,0.18);
  animation: pbShimmer 8s ease-in-out infinite;
}
.promo-callout-inner {
  position: relative;
  background: var(--pb-wine);
  color: var(--pb-cream);
  padding: 30px 36px;
  border-radius: 2px;
}
.promo-callout-inner::before, .promo-callout-inner::after {
  content: '✦';
  position: absolute; top: 12px;
  font-size: 0.7rem; color: var(--pb-gold); opacity: 0.6;
}
.promo-callout-inner::before { left: 14px; }
.promo-callout-inner::after  { right: 14px; }
.promo-callout__eyebrow {
  display: block;
  font-family: var(--pb-sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--pb-gold);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.promo-callout__eyebrow::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 1px;
  background: var(--pb-gold); opacity: 0.7;
}
.promo-callout__title {
  font-family: var(--pb-serif);
  font-size: clamp(1.4rem, 3.6vw, 1.75rem);
  font-weight: 400; line-height: 1.2;
  color: var(--pb-cream);
  margin: 0 0 18px;
}
.promo-callout__code-row {
  display: flex; align-items: stretch; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.promo-callout__code {
  flex: 1 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--pb-sans);
  font-size: 1.45rem; font-weight: 600;
  letter-spacing: 0.24em;
  padding: 14px 26px;
  background: rgba(196,160,82,0.08);
  color: var(--pb-gold);
  border: 1.5px dashed var(--pb-gold);
  border-radius: 3px;
  text-transform: uppercase;
}
.promo-callout__copy {
  background: linear-gradient(180deg, var(--pb-gold-bright) 0%, var(--pb-gold) 100%);
  color: var(--pb-wine);
  border: 1px solid rgba(255,235,180,0.4);
  padding: 14px 22px;
  border-radius: 3px;
  font-family: var(--pb-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 16px -6px rgba(196,160,82,0.6),
              inset 0 1px 0 rgba(255,255,255,0.5);
}
.promo-callout__copy::before { content: '⧉'; font-size: 0.9rem; }
.promo-callout__copy:hover { filter: brightness(1.08); transform: translateY(-1px); }
.promo-callout__hint {
  font-family: var(--pb-sans);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--pb-cream-mute);
  margin: 0;
  font-style: italic;
}

@media (max-width: 640px) {
  .promo-callout-inner { padding: 24px 22px; }
  .promo-callout__code { font-size: 1.15rem; padding: 12px 18px; }
}

/* ============================================================
   /OFFERS GALLERY SECTION
   ============================================================ */
.offers-gallery {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f2e8 0%, #f3eddf 100%);
  position: relative;
}
.offers-gallery::before, .offers-gallery::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(196,160,82,0.4) 50%, transparent 100%);
}
.offers-gallery::before { top: 0; }
.offers-gallery::after  { bottom: 0; }
.offers-gallery__head {
  text-align: center; margin-bottom: 64px; position: relative;
}
.offers-gallery__head::before, .offers-gallery__head::after {
  content: '✦'; position: absolute; top: 50%;
  font-size: 0.85rem; color: var(--pb-gold); opacity: 0.6;
  transform: translateY(-50%);
}
.offers-gallery__head::before { left: 24%; }
.offers-gallery__head::after  { right: 24%; }
.offers-gallery__eyebrow {
  display: inline-block;
  font-family: var(--pb-sans);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--pb-burgundy);
  margin-bottom: 18px;
  padding: 0 16px;
}
.offers-gallery__title {
  font-family: var(--pb-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400; line-height: 1.1;
  color: #1e1c19; margin: 0;
  letter-spacing: 0.005em;
}
.offers-gallery__title::after {
  content: ''; display: block;
  width: 56px; height: 1px;
  background: var(--pb-gold); opacity: 0.7;
  margin: 22px auto 0;
}
.offers-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
  max-width: 1220px;
  margin: 0 auto; padding: 0 24px;
}
.offers-gallery__cell .pb { display: block; height: 100%; }
.offers-gallery__cell .pb--inline { height: 100%; }
.offers-gallery__cell .pb__card { height: 100%; }

@media (max-width: 640px) {
  .offers-gallery { padding: 64px 0; }
  .offers-gallery__head { margin-bottom: 44px; }
  .offers-gallery__head::before, .offers-gallery__head::after { display: none; }
  .offers-gallery__grid { gap: 28px; }
}

/* ── Trust badge inline variant (used when no hero image) ─────────── */
.pb__trust--inline {
  position: static;
  display: inline-flex;
  margin: 0 auto 14px;
  background: rgba(196,160,82,0.10);
  border-color: rgba(196,160,82,0.6);
}
.pb--photographic .pb__trust--inline { display: none; }
/* When no image present, push corner ornaments down a touch */
.pb__body:has(.pb__trust--inline)::before,
.pb__body:has(.pb__trust--inline)::after { top: 18px; }
/* ============================================================
   PROMO BANNERS — distinct modal variants + bottom-bar urgency
   Appended 2026-05-30 to break the modal samey-samey problem.
   Each variant now has a genuinely different visual treatment.
   ============================================================ */

/* ── EDITORIAL (newspaper card) ── used by #1 Direct-Booking ──────── */
.pb--modal.pb--editorial .pb__card {
    max-width: 460px;
    background: rgb(252 248 241);
    border: 1px solid rgb(228 222 214);
    border-top: 6px double var(--pb-accent, rgb(125 79 58));
    border-bottom: 6px double var(--pb-accent, rgb(125 79 58));
    padding: 0;
    box-shadow: 0 24px 60px rgb(0 0 0 / 0.35), inset 0 0 0 1px rgb(255 255 255 / 0.6);
}
.pb--modal.pb--editorial .pb__image { display: none; }
.pb--modal.pb--editorial .pb__body {
    padding: 2.25rem 2.25rem 2rem;
    text-align: center;
    font-family: 'Cormorant Garamond', 'Garamond', Georgia, serif;
}
.pb--modal.pb--editorial .pb__eyebrow {
    display: inline-block;
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pb-accent, rgb(125 79 58));
    font-weight: 600;
    padding: 0.3rem 0 0.85rem;
    position: relative;
}
.pb--modal.pb--editorial .pb__eyebrow::before,
.pb--modal.pb--editorial .pb__eyebrow::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--pb-accent, rgb(125 79 58));
    vertical-align: middle;
    margin: 0 0.6rem;
}
.pb--modal.pb--editorial .pb__headline {
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.005em;
    color: rgb(45 40 35);
    margin: 0 0 0.85rem;
}
.pb--modal.pb--editorial .pb__subhead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.45;
    color: rgb(95 86 76);
    max-width: 32ch;
    margin: 0 auto 1.3rem;
}
.pb--modal.pb--editorial .pb__cta {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.9rem 1.75rem;
    background: var(--pb-accent, rgb(125 79 58));
    color: rgb(252 248 241);
    border-radius: 0;
}
.pb--modal.pb--editorial .pb__code {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'Jost', monospace, system-ui;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    padding: 0.55rem 1.2rem;
    background: rgb(244 238 228);
    border: 1px dashed var(--pb-accent, rgb(125 79 58));
    color: var(--pb-accent, rgb(125 79 58));
    border-radius: 0.2rem;
}
.pb--modal.pb--editorial .pb__trust {
    font-family: 'Jost', system-ui, sans-serif;
    font-size: 0.68rem;
    color: rgb(150 138 122);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.1rem;
    display: block;
}

/* ── PHOTOGRAPHIC (split horizontal) ── used by #3 Length-of-Stay ─── */
.pb--modal.pb--photographic .pb__card {
    max-width: 720px;
    background: rgb(34 32 28);
    color: rgb(245 240 232);
    padding: 0;
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: 0 28px 70px rgb(0 0 0 / 0.45);
}
.pb--modal.pb--photographic .pb__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: 360px;
    padding: 0;
}
.pb--modal.pb--photographic .pb__image {
    background-image: var(--pb-hero-image, linear-gradient(135deg, var(--pb-accent, rgb(142 107 58)) 0%, rgb(34 32 28) 100%));
    background-size: cover;
    background-position: center;
    aspect-ratio: auto;
    min-height: 360px;
    position: relative;
}
.pb--modal.pb--photographic .pb__image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(34, 32, 28, 0.5) 100%);
}
.pb--modal.pb--photographic .pb__body {
    padding: 2.2rem 2.4rem;
    display: flex; flex-direction: column;
    justify-content: center;
    font-family: 'Jost', system-ui, sans-serif;
}
.pb--modal.pb--photographic .pb__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(212 178 110);
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.pb--modal.pb--photographic .pb__headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    line-height: 1.1;
    color: rgb(245 240 232);
    margin: 0 0 0.85rem;
    font-weight: 500;
}
.pb--modal.pb--photographic .pb__subhead {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgb(200 192 180);
    margin-bottom: 1.4rem;
}
.pb--modal.pb--photographic .pb__cta {
    align-self: flex-start;
    background: rgb(212 178 110);
    color: rgb(34 32 28);
    padding: 0.85rem 1.6rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    border-radius: 0.25rem;
}
@media (max-width: 640px) {
    .pb--modal.pb--photographic .pb__card { max-width: 92vw; }
    .pb--modal.pb--photographic .pb__inner { grid-template-columns: 1fr; }
    .pb--modal.pb--photographic .pb__image { min-height: 180px; aspect-ratio: 16/9; }
    .pb--modal.pb--photographic .pb__body { padding: 1.5rem 1.5rem 1.75rem; }
}



/* ── COVER (Le Grand Été — luxury magazine) ── variant for #5 Seasonal ─── */
.pb--modal.pb--cover .pb__card {
    max-width: 880px;
    width: 92vw;
    background: rgb(250 244 232);
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.06);
    position: relative;
}
.pb--modal.pb--cover .pb__inner {
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 500px;
    padding: 0;
    position: relative;
    border: none !important;
}
/* HERO IMAGE — filmic warm wash, full bleed left */
.pb--modal.pb--cover .pb__image {
    grid-column: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    filter: saturate(1.10) contrast(1.04) brightness(1.02);
    min-height: 500px;
}
.pb--modal.pb--cover .pb__image::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(15,12,10,0.55) 0%, rgba(15,12,10,0.15) 35%, rgba(0,0,0,0) 55%),
        linear-gradient(360deg, rgba(15,12,10,0.50) 0%, rgba(0,0,0,0) 42%);
    pointer-events: none;
}
/* Issue marker — italic cream serif overlay top-left of image */
.pb--modal.pb--cover .pb__trust {
    position: absolute;
    top: 26px; left: 28px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: rgb(255 250 240);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.18rem;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.55);
    line-height: 1.1;
    text-transform: none;
    font-weight: 500;
    z-index: 2;
}
.pb--modal.pb--cover .pb__trust::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: rgb(231 184 121);
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
/* Tiny sun glyph anchored bottom-left of image */
.pb--modal.pb--cover .pb__image::after {
    content: '☼';
    position: absolute;
    bottom: 22px; left: 28px;
    color: rgb(255 250 240);
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.55);
    pointer-events: none;
}
/* RIGHT COPY PANEL — cream paper, editorial type, one gold rule */
.pb--modal.pb--cover .pb__body {
    grid-column: 2;
    padding: 2.6rem 2.4rem 2.4rem;
    font-family: 'Jost', system-ui, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    color: rgb(45 40 35);
}
/* Cream panel meets image — hairline gold rule */
.pb--modal.pb--cover .pb__body::before {
    content: '';
    position: absolute;
    left: 0; top: 26px; bottom: 26px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(184,133,71,0.55) 18%, rgba(184,133,71,0.55) 82%, transparent 100%);
}
/* Eyebrow — tracked caps, middot ornament */
.pb--modal.pb--cover .pb__eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(60,52,46,0.65);
    font-weight: 500;
    margin: 0 0 1.3rem;
    line-height: 1;
}
.pb--modal.pb--cover .pb__eyebrow::after {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: rgb(184 133 71);
    margin-top: 1rem;
}
/* HEADLINE — the hero. Big italic Cormorant. */
.pb--modal.pb--cover .pb__headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.0;
    letter-spacing: -0.012em;
    color: rgb(45 40 35);
    margin: 0 0 1.4rem;
    max-width: 11ch;
}
/* Lede — italic serif body */
.pb--modal.pb--cover .pb__subhead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.45;
    color: rgba(60,52,46,0.85);
    margin: 0 0 1.8rem;
    max-width: 30ch;
    font-weight: 400;
}
/* Footer block: thin rule, detail caps, CTA */
.pb--modal.pb--cover .pb__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: relative;
}
.pb--modal.pb--cover .pb__actions::before {
    content: 'Two nights · Breakfast · Bar tasting';
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(60,52,46,0.55);
    padding: 1rem 0;
    border-top: 1px solid rgba(184,133,71,0.5);
    margin-bottom: 1rem;
    font-weight: 500;
}
.pb--modal.pb--cover .pb__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.4rem;
    background: rgb(38 33 28);
    color: rgb(250 244 232);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.25s ease;
    position: relative;
}
.pb--modal.pb--cover .pb__cta::after {
    content: '→';
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.25s ease;
}
.pb--modal.pb--cover .pb__cta:hover { background: rgb(120 67 86); }
.pb--modal.pb--cover .pb__cta:hover::after { transform: translateX(4px); }
.pb--modal.pb--cover .pb__cta .pb__code {
    background: transparent;
    border: 1px dashed rgba(250,244,232,0.4);
    padding: 4px 8px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    border-radius: 0;
    margin-left: auto;
    margin-right: 0.4rem;
}
.pb--modal.pb--cover .pb__terms-toggle {
    background: none;
    border: none;
    color: rgba(60,52,46,0.5);
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    padding: 0.85rem 0 0;
    text-align: left;
    width: 100%;
}
.pb--modal.pb--cover .pb__terms-toggle:hover { color: rgb(120 67 86); }
/* CLOSE — minimal cream circle top-right of card */
.pb--modal.pb--cover .pb__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: none;
    background: rgba(250,244,232,0.95);
    color: rgb(38 33 28);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    font-size: 20px; line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}
.pb--modal.pb--cover .pb__close:hover { background: rgb(38 33 28); color: rgb(250 244 232); }

/* MOBILE — stack image above copy */
@media (max-width: 680px) {
    .pb--modal.pb--cover .pb__card { width: 94vw; max-width: 94vw; }
    .pb--modal.pb--cover .pb__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .pb--modal.pb--cover .pb__image {
        grid-column: 1;
        min-height: 0;
        aspect-ratio: 16/10;
    }
    .pb--modal.pb--cover .pb__body {
        grid-column: 1;
        padding: 2rem 1.6rem 1.8rem;
    }
    .pb--modal.pb--cover .pb__body::before { display: none; }
    .pb--modal.pb--cover .pb__headline { font-size: clamp(1.9rem, 8vw, 2.4rem); max-width: none; }
    .pb--modal.pb--cover .pb__subhead { max-width: none; }
    .pb--modal.pb--cover .pb__trust { top: 14px; left: 16px; font-size: 0.95rem; }
}

/* ── BOTTOM BAR — urgency cue (pulsing dot + sticky pill) ────────── */
.pb--bottom_bar .pb__eyebrow {
    position: relative;
    padding-left: 1rem;
}
.pb--bottom_bar .pb__eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 9px; height: 9px;
    background: rgb(220 70 60);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(220 70 60 / 0.5);
    animation: pbPulse 1.6s ease-in-out infinite;
}
@keyframes pbPulse {
    0%   { box-shadow: 0 0 0 0   rgb(220 70 60 / 0.55); }
    70%  { box-shadow: 0 0 0 10px rgb(220 70 60 / 0); }
    100% { box-shadow: 0 0 0 0   rgb(220 70 60 / 0); }
}
.pb--bottom_bar .pb__trust {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    background: rgb(220 70 60);
    color: rgb(254 251 248);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 999px;
    margin-left: 0.7rem;
}
.pb--bottom_bar .pb__trust::before {
    content: '◷';
    font-size: 0.8rem;
    line-height: 1;
}
