/* ─── Bar-Key 2026 Storybook Redesign ───
   Styles for the storybook section types: journey_doors, storybook_tiers,
   storybook_chapter, cross_sell_brands, occasions_grid.
   Source of truth: design/weddings-redesign-handoff .dc.html prototypes (§8 of the
   handoff README). Motion is gated behind html.bk-anim-ready (set by storybook.js)
   so pages render fully without JS. */

/* ── Keyframes (verbatim timings from prototypes) ── */
@keyframes bkGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes bkReveal { from { opacity: 0; transform: translateY(34px); filter: blur(8px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes bkFadeUp { from { opacity: 0; transform: translateY(18px); filter: blur(5px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes bkKen { from { transform: scale(1.09); } to { transform: scale(1); } }
@keyframes bkRise { 0% { transform: translateY(0) scale(1); opacity: 0; } 12% { opacity: .75; } 100% { transform: translateY(-460px) scale(1.3); opacity: 0; } }
@keyframes bkCue { 0%, 100% { transform: scaleY(.25); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes bkPop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes bkFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bkParallax { from { transform: translateY(4.5%) scale(1.14); } to { transform: translateY(-4.5%) scale(1.14); } }
@keyframes bkRevealL { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes bkRevealR { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }

/* ── Scroll-reveal plumbing ──
   Without JS: everything visible, no animation.
   With JS (html.bk-anim-ready): elements animate, paused until IntersectionObserver
   flips animation-play-state to running (storybook.js). */
[data-bk-anim] { animation: none; }
.bk-anim-ready [data-bk-anim] { animation-play-state: paused; animation-fill-mode: backwards; }
.bk-anim-ready [data-bk-anim].bk-a-reveal   { animation-name: bkReveal;  animation-duration: .8s;  animation-timing-function: cubic-bezier(.16,1,.3,1); }
.bk-anim-ready [data-bk-anim].bk-a-fadeup   { animation-name: bkFadeUp;  animation-duration: .7s;  animation-timing-function: cubic-bezier(.16,1,.3,1); }
.bk-anim-ready [data-bk-anim].bk-a-left     { animation-name: bkRevealL; animation-duration: .8s;  animation-timing-function: cubic-bezier(.16,1,.3,1); }
.bk-anim-ready [data-bk-anim].bk-a-right    { animation-name: bkRevealR; animation-duration: .8s;  animation-timing-function: cubic-bezier(.16,1,.3,1); }
.bk-anim-ready [data-bk-anim].bk-a-grow     { animation-name: bkGrow;    animation-duration: .8s;  animation-timing-function: cubic-bezier(.65,0,.35,1); transform-origin: top; }
.bk-anim-ready [data-bk-anim].bk-a-pop      { animation-name: bkPop;     animation-duration: .5s;  animation-timing-function: cubic-bezier(.16,1,.3,1); }
.bk-anim-ready [data-bk-anim].bk-a-ken      { animation-name: bkKen;     animation-duration: 7s;   animation-timing-function: cubic-bezier(.16,1,.3,1); }
.bk-anim-ready [data-bk-anim].bk-a-reveal-slow { animation-name: bkReveal; animation-duration: 1.1s; animation-timing-function: cubic-bezier(.16,1,.3,1); }
.bk-d-1 { animation-delay: .1s !important; } .bk-d-2 { animation-delay: .2s !important; }
.bk-d-25 { animation-delay: .25s !important; } .bk-d-3 { animation-delay: .3s !important; }
.bk-d-45 { animation-delay: .45s !important; } .bk-d-5 { animation-delay: .5s !important; }
.bk-d-55 { animation-delay: .55s !important; } .bk-d-65 { animation-delay: .65s !important; }

@media (prefers-reduced-motion: reduce) {
  .bk-anim-ready [data-bk-anim], [data-bk-cine] { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}
@media (max-width: 860px) { [data-bk-hide-sm] { display: none !important; } }

/* ── Shared storybook typography/layout ── */
/* reveal transforms (translateX ±32px) must never cause horizontal scroll;
   clip (not hidden) so position:sticky (tab bar) keeps working */
html { overflow-x: clip; }
/* storybook sections carry their own light paper — CEO: white pages get the
   white TEXTURE, never flat white */
.bk-section, .bk-light-section { background: #FAFAF7 url("../img/light-white-texture.png") repeat; background-size: 600px 400px; }
.bk-sb { color: #262626; }
.bk-sb-eyebrow { color: #E5444F; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.bk-sb-h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(32px, 4vw, 52px); line-height: 1.12; letter-spacing: -.015em; margin: 0 auto 16px; text-wrap: balance; }
.bk-sb-lede { font-size: 16.5px; color: #666; max-width: 52ch; margin: 0 auto 36px; font-weight: 300; line-height: 1.7; text-wrap: pretty; }
.bk-sb-serif-note { font-family: var(--font-serif); font-style: italic; }

.bk-sb-btn { display: inline-flex; align-items: center; justify-content: center; border: none; padding: 13px 22px; border-radius: 12px; font-family: inherit; font-weight: 600; font-size: 13.5px; cursor: pointer; text-decoration: none; transition: background .2s ease, transform .2s ease, filter .2s ease, border-color .2s ease; }
.bk-sb-btn:active { transform: scale(.98); }
.bk-sb-btn--coral { background: #FF5E6B; color: #fff; }
.bk-sb-btn--coral:hover { background: #E5444F; }
.bk-sb-btn--teal { background: #17313B; color: #fff; }
.bk-sb-btn--teal:hover { background: #1E4958; }
.bk-sb-btn--gold { background: #FFB800; color: #17313B; }
.bk-sb-btn--gold:hover { background: #FFCC40; }
.bk-sb-btn--ghost { background: transparent; color: #17313B; border: 1.5px solid rgba(23,49,59,.3); }
.bk-sb-btn--ghost:hover { border-color: #17313B; background: rgba(23,49,59,.05); }
.bk-sb-btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.bk-sb-btn--ghost-light:hover { border-color: rgba(255,255,255,.6); }

/* asset:// placeholder — neutral frame until the media pass runs */
.bk-sb-placeholder { width: 100%; background: linear-gradient(135deg, rgba(23,49,59,.10), rgba(23,49,59,.04)); display: flex; align-items: center; justify-content: center; }
.bk-sb-placeholder::after { content: ""; width: 34px; height: 34px; border-radius: 9999px; border: 1.5px solid rgba(23,49,59,.25); }

/* ── journey_doors (Home) ── */
.bk-doors-wrap { display: flex; flex-wrap: wrap; gap: 14px; max-width: 1320px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.bk-door { position: relative; display: block; flex: 1 1 300px; aspect-ratio: 4 / 5; align-self: flex-start; border-radius: 24px; overflow: hidden; text-decoration: none; box-shadow: 0 20px 40px -14px rgba(23,49,59,.3); transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease; }
.bk-door:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 30px 56px -16px rgba(23,49,59,.45); }
.bk-door-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 6s cubic-bezier(.16,1,.3,1); }
.bk-door-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,32,40,.15) 0%, rgba(15,32,40,.05) 40%, rgba(15,32,40,.85) 100%); }
.bk-door-num { position: absolute; top: 22px; left: 26px; font-family: var(--font-serif); font-style: italic; font-size: 20px; color: rgba(255,255,255,.85); }
.bk-door-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 30px 32px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.bk-door-kicker { color: #FFB800; font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.bk-door-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 3vw, 40px); line-height: 1.1; color: #fff; margin: 0 0 10px; text-wrap: balance; }
.bk-door-cta { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 600; border-bottom: 1.5px solid rgba(255,94,107,.9); padding-bottom: 3px; }
.bk-doors-helper { max-width: 720px; margin: 36px auto 0; padding: 0 24px; text-align: center; }
.bk-doors-helper p { text-wrap: pretty; font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 1.8vw, 21px); color: #737373; line-height: 1.6; margin: 0; }
.bk-doors-helper a { color: #E5444F; text-decoration: none; border-bottom: 1px solid rgba(229,68,79,.35); }
.bk-doors-helper a:hover { border-bottom-color: #E5444F; }

/* ── storybook_tiers: guest control ── */
.bk-guest-card { max-width: 560px; margin: 0 auto 56px; background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 16px; padding: 22px 28px 14px; box-shadow: 0 10px 15px -3px rgba(0,0,0,.05); text-align: left; }
.bk-guest-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.bk-guest-head-label { font-size: 14px; font-weight: 500; color: #262626; }
.bk-guest-head-hint { font-size: 10.5px; color: #999; letter-spacing: .1em; text-transform: uppercase; }
.bk-guest-head-count { font-size: 13px; font-weight: 600; color: #E5444F; }
.bk-guest-note { text-wrap: pretty; font-size: 12.5px; color: #737373; font-weight: 300; line-height: 1.6; margin: 0 0 16px; }
.bk-guest-card input[type="range"] { width: 100%; accent-color: #FF5E6B; cursor: pointer; display: block; margin: 0; }
.bk-guest-stops { display: flex; justify-content: space-between; margin-top: 4px; }
.bk-guest-stop { background: none; border: none; padding: 4px 2px; cursor: pointer; font-family: inherit; font-size: 12.5px; font-weight: 300; color: #999; transition: color .2s ease; }
.bk-guest-stop.is-active { font-weight: 600; color: #E5444F; }

/* ── storybook_tiers: tier cards ── */
.bk-tier-cards { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; align-items: stretch; }
.bk-tier-card { flex: 1 1 300px; max-width: 370px; background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,.05); text-align: left; display: flex; flex-direction: column; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; }
.bk-tier-card:hover { transform: translateY(-5px); box-shadow: 0 22px 34px -10px rgba(0,0,0,.14); }
.bk-tier-card--popular { border: 1px solid rgba(255,94,107,.35); box-shadow: 0 14px 24px -6px rgba(229,68,79,.14); }
.bk-tier-card--popular:hover { box-shadow: 0 24px 38px -10px rgba(229,68,79,.22); }
.bk-tier-card--flagship { background: #17313B; border: 1px solid rgba(255,184,0,.45); box-shadow: 0 14px 24px -6px rgba(23,49,59,.3); }
.bk-tier-card--flagship:hover { box-shadow: 0 24px 38px -10px rgba(23,49,59,.4); }
.bk-tier-card-imgwrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.bk-tier-card-imgwrap img, .bk-tier-card-imgwrap .bk-sb-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.bk-tier-badge { position: absolute; top: 14px; left: 14px; background: #FF5E6B; color: #fff; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 9999px; }
.bk-tier-card--flagship .bk-tier-badge { background: #FFB800; color: #17313B; }
.bk-tier-card-body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bk-tier-kicker { font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #17313B; }
.bk-tier-card--popular .bk-tier-kicker { color: #E5444F; }
.bk-tier-card--flagship .bk-tier-kicker { color: #FFB800; }
.bk-tier-card-title { text-wrap: balance; font-family: var(--font-serif); font-weight: 600; font-size: 27px; line-height: 1.15; margin: 0; }
.bk-tier-card--flagship .bk-tier-card-title { color: #fff; }
.bk-tier-card-copy { text-wrap: pretty; font-size: 14px; color: #666; font-weight: 300; line-height: 1.65; margin: 0; flex: 1; }
.bk-tier-card--flagship .bk-tier-card-copy { color: rgba(255,255,255,.72); }
.bk-tier-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.bk-tier-price { font-family: var(--font-serif); font-weight: 600; font-size: 24px; color: #262626; }
.bk-tier-card--flagship .bk-tier-price { color: #FFB800; }
.bk-tier-price-caption { font-size: 11.5px; color: #999; letter-spacing: .04em; }
.bk-tier-card--flagship .bk-tier-price-caption { color: rgba(255,255,255,.55); }
.bk-sb-under-cards { font-size: 14px; color: #737373; font-weight: 300; margin: 44px auto 0; max-width: 52ch; text-wrap: pretty; }
.bk-sb-under-cards a { color: #E5444F; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(229,68,79,.35); }
.bk-sb-under-cards a:hover { border-bottom-color: #E5444F; }

/* ── storybook_tiers: sticky tab bar + tier heading ── */
.bk-tabs-sticky { position: sticky; top: var(--header-height, 72px); z-index: 40; background: rgba(250,250,247,.85); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid rgba(0,0,0,.06); }
@media (max-width: 860px) { .bk-tabs-sticky { top: var(--header-height-mobile, 60px); } }
.bk-tabs-row { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; position: relative; }
.bk-tab { background: transparent; color: #404040; border: 1px solid rgba(0,0,0,.16); padding: 9px 24px; border-radius: 9999px; font-family: inherit; font-weight: 500; font-size: 13px; cursor: pointer; transition: all .2s ease; white-space: nowrap; }
.bk-tab:active { transform: scale(.98); }
.bk-tab.is-active[data-bk-accent="teal"]  { background: #17313B; color: #fff; border-color: #17313B; }
.bk-tab.is-active[data-bk-accent="coral"] { background: #FF5E6B; color: #fff; border-color: #FF5E6B; }
.bk-tab.is-active[data-bk-accent="gold"]  { background: #FFB800; color: #17313B; border-color: #FFB800; }
.bk-tabs-count { position: absolute; right: 20px; font-size: 11px; color: #999; letter-spacing: .08em; text-transform: uppercase; }
.bk-tier-head { text-align: center; padding: 72px 24px 0; }
.bk-tier-head-title { text-wrap: balance; font-family: var(--font-serif); font-weight: 600; font-style: italic; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.15; margin: 0 0 14px; color: #262626; }
.bk-tier-head-lede { text-wrap: pretty; font-size: 16px; color: #737373; font-weight: 300; line-height: 1.7; max-width: 48ch; margin: 0 auto; }
.bk-meta-pill { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 6px 12px; margin-top: 20px; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 9999px; padding: 11px 24px; box-shadow: 0 10px 15px -3px rgba(0,0,0,.05); }
.bk-meta-pill .bk-mp-dim { font-size: 12.5px; color: #737373; font-weight: 300; }
.bk-meta-pill .bk-mp-dot { font-size: 12.5px; color: #D4D4D4; }
.bk-meta-pill .bk-mp-strong { font-size: 12.5px; color: #262626; font-weight: 500; }

/* ── storybook_chapter ── */
.bk-chapter { padding: 64px 0 8px; overflow-x: clip; /* paused ±32px reveal transforms must not widen the page */ }
.bk-chapter[hidden] { display: none; }
.bk-ch-connector { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bk-ch-line { width: 1px; height: 58px; transform-origin: top; }
.bk-ch-dot { width: 9px; height: 9px; border-radius: 9999px; }
.bk-ch-num { font-family: var(--font-serif); font-style: italic; font-size: 21px; }
.bk-ch-row { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: center; justify-content: center; max-width: 1100px; margin: 26px auto 0; padding: 0 28px; }
.bk-ch-row--reverse { flex-direction: row-reverse; }
.bk-ch-text { flex: 1 1 360px; max-width: 480px; }
.bk-ch-kicker { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.bk-ch-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.12; letter-spacing: -.01em; margin: 0 0 18px; text-wrap: balance; }
.bk-ch-body { text-wrap: pretty; font-size: 16px; color: #404040; font-weight: 300; line-height: 1.8; margin: 0; }
.bk-ch-media { flex: 1 1 340px; max-width: 440px; }
.bk-ch-imgframe { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 44px -14px rgba(23,49,59,.28); border: 1px solid rgba(0,0,0,.06); }
.bk-ch-img { width: 100%; background-size: cover; background-position: center; }
.bk-ch-note { margin-top: 22px; background: #F5EDEB; border: 1px solid rgba(201,153,110,.35); border-radius: 16px; padding: 20px 24px; }
.bk-ch-note-title { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: #A87D58; display: block; margin-bottom: 6px; }
.bk-ch-note-body { text-wrap: pretty; font-family: var(--font-serif); font-style: italic; font-size: 19px; color: #404040; line-height: 1.55; margin: 0; }
.bk-ch-quote { max-width: 640px; margin: 58px auto 0; text-align: center; padding: 0 28px; }
.bk-ch-quote p { text-wrap: pretty; font-family: var(--font-serif); font-style: italic; font-size: clamp(21px, 2.2vw, 26px); color: #262626; line-height: 1.5; margin: 0 0 10px; }
.bk-ch-quote span { font-size: 12px; color: #999; letter-spacing: .1em; text-transform: uppercase; }
/* accents per tier group */
.bk-accent-teal  { --bk-accent: #17313B; --bk-line: rgba(23,49,59,.3);   --bk-dot: #17313B; }
.bk-accent-coral { --bk-accent: #E5444F; --bk-line: rgba(255,94,107,.45); --bk-dot: #FF5E6B; }
.bk-accent-gold  { --bk-accent: #A87D58; --bk-line: rgba(201,153,110,.55); --bk-dot: #FFB800; }
.bk-ch-line { background: var(--bk-line, rgba(23,49,59,.3)); }
.bk-ch-dot { background: var(--bk-dot, #17313B); }
.bk-ch-num, .bk-ch-kicker { color: var(--bk-accent, #17313B); }
/* champagne bubbles overlay */
.bk-bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bk-bubbles span { position: absolute; bottom: -18px; border-radius: 9999px; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.12); }
.bk-anim-ready .bk-bubbles span { animation: bkRise 6s linear infinite; }
.bk-bubbles span:nth-child(1) { left: 12%; width: 9px;  height: 9px;  animation-duration: 6.5s; animation-delay: .2s; }
.bk-bubbles span:nth-child(2) { left: 28%; width: 6px;  height: 6px;  animation-duration: 5.2s; animation-delay: 1.6s; }
.bk-bubbles span:nth-child(3) { left: 46%; width: 12px; height: 12px; animation-duration: 7.4s; animation-delay: .8s; }
.bk-bubbles span:nth-child(4) { left: 63%; width: 7px;  height: 7px;  animation-duration: 5.8s; animation-delay: 2.4s; }
.bk-bubbles span:nth-child(5) { left: 78%; width: 10px; height: 10px; animation-duration: 6.9s; animation-delay: 3.1s; }
.bk-bubbles span:nth-child(6) { left: 90%; width: 6px;  height: 6px;  animation-duration: 5.5s; animation-delay: .5s; }
/* shopping-guide card */
.bk-guide-card { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 24px; padding: 32px 34px; box-shadow: 0 24px 44px -14px rgba(23,49,59,.18); }
.bk-guide-eyebrow { color: #A87D58; font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.bk-guide-title { text-wrap: balance; font-family: var(--font-serif); font-weight: 600; font-size: 26px; margin: 0 0 18px; }
.bk-guide-rows { display: flex; flex-direction: column; }
.bk-guide-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.bk-guide-row:last-child { border-bottom: none; }
.bk-guide-row .bk-g-label { font-size: 14.5px; color: #262626; }
.bk-guide-row .bk-g-qty { font-size: 14.5px; color: #404040; font-weight: 500; }
.bk-guide-row .bk-g-was { color: #bbb; font-weight: 300; margin-right: 8px; }
.bk-guide-caption { text-wrap: pretty; font-size: 12.5px; color: #737373; font-weight: 300; line-height: 1.6; margin: 16px 0 0; }

/* ── storybook end divider + nudges ── */
.bk-end-divider { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 56px 0 24px; }
.bk-end-divider .bk-end-line { width: 1px; height: 48px; background: rgba(0,0,0,.15); transform-origin: top; }
.bk-end-divider .bk-end-label { font-family: var(--font-serif); font-style: italic; font-size: 21px; color: #999; }
.bk-nudge-family { max-width: 880px; margin: 28px auto 72px; padding: 0 28px; text-align: center; }
.bk-nudge-family-lede { text-wrap: pretty; font-size: 14px; color: #737373; font-weight: 300; line-height: 1.7; max-width: 52ch; margin: 0 auto 24px; }
.bk-nudge-cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: stretch; text-align: left; }
.bk-nudge-tier { max-width: 560px; margin: 28px auto 72px; padding: 28px 32px; background: #F5EDEB; border: 1px solid rgba(201,153,110,.35); border-radius: 16px; text-align: center; }
.bk-nudge-tier p { text-wrap: pretty; font-family: var(--font-serif); font-style: italic; font-size: 20px; color: #404040; line-height: 1.5; margin: 0 0 16px; }

/* ── cross_sell_brands cards (also used inside family nudge) ── */
.bk-brand-card { flex: 1 1 300px; max-width: 420px; display: flex; flex-direction: column; gap: 12px; padding: 28px 30px; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; }
.bk-brand-card--scissortail { background: #F7F2E9; border: 1px solid rgba(52,50,46,.12); border-radius: 22px; }
.bk-brand-card--scissortail:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -10px rgba(52,50,46,.25); }
.bk-brand-card--boomtown { background: #191511; border-top: 5px solid #DE9E2C; border-radius: 12px; }
.bk-brand-card--boomtown:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(0,0,0,.6); }
.bk-brand-card img.bk-brand-logo { height: 40px; width: auto; object-fit: contain; align-self: flex-start; display: block; }
.bk-brand-card--boomtown img.bk-brand-logo { height: 42px; }
.bk-brand-name--scissortail { text-wrap: balance; font-family: 'Marcellus', Georgia, serif; font-weight: 400; font-size: 23px; color: #34322E; margin: 0; }
.bk-brand-name--boomtown { text-wrap: balance; font-family: 'Anton', 'Space Grotesk', sans-serif; font-weight: 400; font-size: 21px; letter-spacing: .03em; text-transform: uppercase; color: #ECE3D1; margin: 0; }
.bk-brand-copy--scissortail { text-wrap: pretty; font-family: 'Hanken Grotesk', 'Poppins', sans-serif; font-size: 13.5px; color: rgba(52,50,46,.75); font-weight: 400; line-height: 1.65; margin: 0; flex: 1; }
.bk-brand-copy--boomtown { text-wrap: pretty; font-family: 'Space Grotesk', 'Poppins', sans-serif; font-size: 13.5px; color: rgba(236,227,209,.72); font-weight: 400; line-height: 1.65; margin: 0; flex: 1; }
.bk-brand-btn--scissortail { display: inline-flex; align-self: flex-start; background: #C9745C; color: #fff; padding: 11px 22px; border-radius: 10px; text-decoration: none; font-family: 'Hanken Grotesk', 'Poppins', sans-serif; font-weight: 600; font-size: 13px; transition: transform .2s ease, filter .2s ease; }
.bk-brand-btn--scissortail:hover { transform: translateY(-1px); filter: brightness(1.05); }
.bk-brand-btn--boomtown { display: inline-flex; align-self: flex-start; background: #DE9E2C; color: #191511; padding: 11px 22px; border-radius: 6px; text-decoration: none; font-family: 'Space Grotesk', 'Poppins', sans-serif; font-weight: 600; font-size: 13px; transition: transform .2s ease, filter .2s ease; }
.bk-brand-btn--boomtown:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* ── occasions_grid ── */
.bk-occasions { max-width: 1100px; margin: 0 auto; text-align: center; }
.bk-occ-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 21px; color: #A87D58; display: block; margin-bottom: 14px; }
.bk-occ-title { text-wrap: balance; font-family: var(--font-serif); font-weight: 600; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.15; margin: 0 0 14px; }
.bk-occ-lede { text-wrap: pretty; font-size: 15px; color: #737373; font-weight: 300; line-height: 1.7; max-width: 52ch; margin: 0 auto 40px; }
/* CEO: symmetric 3×2 on desktop (6 tiles), never a 4+2 orphan row */
.bk-occ-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; text-align: left; }
@media (min-width: 861px) { .bk-occ-grid, .bk-occ-grid--wide { grid-template-columns: repeat(3, 1fr); } }
.bk-occ-tile { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3 / 4; box-shadow: 0 16px 30px -12px rgba(23,49,59,.25); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease; }
.bk-occ-tile:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -12px rgba(23,49,59,.35); }
.bk-occ-tile-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bk-occ-tile-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(15,32,40,.82) 100%); }
.bk-occ-tile-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; }
.bk-occ-tile-title { font-family: var(--font-serif); font-weight: 600; font-size: 23px; color: #fff; margin: 0 0 6px; }
.bk-occ-tile-copy { text-wrap: pretty; font-size: 12.5px; color: rgba(255,255,255,.78); font-weight: 300; line-height: 1.55; margin: 0; }
.bk-occ-callout { max-width: 640px; margin: 48px auto 0; padding: 26px 32px; background: #F5EDEB; border: 1px solid rgba(201,153,110,.35); border-radius: 16px; text-align: left; }
.bk-occ-callout-title { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: #A87D58; display: block; margin-bottom: 6px; }
.bk-occ-callout-body { text-wrap: pretty; font-family: var(--font-serif); font-style: italic; font-size: 19px; color: #404040; line-height: 1.55; margin: 0; }

/* ── finale (storybook_tiers variant=finale) ── */
.bk-finale { max-width: 680px; margin: 0 auto; text-align: center; }
.bk-finale-mark { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 22px; }
.bk-finale-mark .bk-fm-line { width: 1px; height: 52px; background: rgba(201,153,110,.55); transform-origin: top; }
.bk-finale-mark .bk-fm-dot { width: 9px; height: 9px; border-radius: 9999px; background: #FFB800; }
.bk-finale-mark .bk-fm-label { font-family: var(--font-serif); font-style: italic; font-size: 21px; color: #A87D58; }
.bk-finale-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.1; letter-spacing: -.015em; color: #262626; margin: 0 0 20px; text-wrap: balance; }
.bk-finale-title em { color: #FF5E6B; font-weight: 500; font-style: italic; }
.bk-finale-lede { text-wrap: pretty; font-size: 16.5px; color: #666; font-weight: 300; line-height: 1.8; margin: 0 auto 24px; max-width: 46ch; }
.bk-finale-cta { display: inline-flex; align-items: center; padding: 16px 34px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 15px; box-shadow: 0 14px 26px -10px rgba(23,49,59,.25); transition: transform .2s ease, filter .2s ease; }
.bk-finale-cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.bk-finale-cta:active { transform: scale(.98); }
.bk-finale-caption { text-wrap: pretty; font-size: 12.5px; color: #999; margin: 18px 0 0; font-weight: 300; }
.bk-other-stories { margin-top: 64px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.bk-other-rule { display: flex; align-items: center; gap: 14px; width: 100%; max-width: 420px; }
.bk-other-rule .bk-or-line { flex: 1; height: 1px; background: rgba(0,0,0,.1); }
.bk-other-rule .bk-or-label { font-family: var(--font-serif); font-style: italic; font-size: 19px; color: #737373; white-space: nowrap; }
.bk-other-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── teal storybook bands must not inherit light-theme text colors ── */
.bg-teal-textured.bk-portal-split h2,
.bg-teal-textured.bk-portal-split .text-body,
.bg-teal-textured.bk-portal-split p { color: rgba(255,255,255,.85) !important; }
.bg-teal-textured.bk-portal-split h2 { color: #fff !important; }
.bg-teal-textured.bk-portal-split .eyebrow { color: #FFB800 !important; }
.bg-teal-textured.bk-reviews, .bg-teal-textured.bk-reviews h2, .bg-teal-textured.bk-reviews p,
.bg-teal-textured.bk-reviews blockquote, .bg-teal-textured.bk-reviews .text-body { color: #fff !important; }
.bg-teal-textured.bk-reviews .text-body-sm, .bg-teal-textured.bk-reviews cite,
.bg-teal-textured.bk-reviews figcaption { color: rgba(255,255,255,.6) !important; }

/* ── prologue helper (text sections styled as dark storybook interludes via css_classes) ── */
.bk-prologue { position: relative; background: #17313B; padding: 110px 24px; text-align: center; overflow: hidden; background-image: radial-gradient(ellipse 70% 60% at 20% 0%, rgba(255,184,0,.06), transparent 60%), radial-gradient(ellipse 60% 50% at 85% 100%, rgba(255,94,107,.07), transparent 60%); }
.bk-prologue-inner { max-width: 760px; margin: 0 auto; position: relative; }
.bk-prologue .bk-pro-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: #FFB800; display: block; margin-bottom: 20px; }
.bk-prologue .bk-pro-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(34px, 4.6vw, 58px); line-height: 1.12; letter-spacing: -.015em; color: #fff; margin: 0 0 24px; text-wrap: balance; }
.bk-prologue .bk-pro-body { text-wrap: pretty; font-size: 17px; color: rgba(255,255,255,.75); font-weight: 300; line-height: 1.8; margin: 0; }

/* Mobile (CEO 2026-07-04 launch review): the hero scroll cue is absolutely
   positioned at the hero's bottom edge; on phones the stacked CTAs reach it
   and the label collides with the second button. The cue is decorative
   (aria-hidden) — hide it below 640px. !important is required: the hero
   partial sets display:flex INLINE, which silently beat the first version
   of this rule (CEO round-3 screenshots). */
@media (max-width: 640px) {
  .bk-scroll-cue { display: none !important; }
}
