:root {
    --bb-orange: #ff6b00;
    --bb-orange-dark: #e55f00;
    --bb-ink: #0b0b0b;
  }
  body {
    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
    background: var(--bb-ink);
    color: #fff;
  }
  a { color: var(--bb-orange); text-decoration: none; }
  a:hover { color: #ff8c33; }

  /* Hero */
  .bb-hero { position: relative; height: auto; min-height: 90vh; display: flex; flex-direction: column; }
  .bb-hero__media { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: #141210; }
  .bb-hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: bbDrift 24s ease-in-out infinite alternate; }
  .bb-hero__placeholder {
    position: absolute; inset: 0;
/*    background-image: repeating-linear-gradient(115deg, #1c1917 0 14px, #211d1a 14px 28px);*/
    display: block;
  }
  .bb-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.32) 38%, rgba(0,0,0,.58) 100%);
  }
  @keyframes bbDrift { from { transform: scale(1.06); } to { transform: scale(1.14) translate3d(-2%, -1.5%, 0); } }
  @keyframes bbFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  .bb-fade { animation: bbFadeUp 700ms ease-out both; }
  .bb-fade-1 { animation-delay: 60ms; }
  .bb-fade-2 { animation-delay: 140ms; }
  .bb-fade-3 { animation-delay: 220ms; }

  /* Header */
  .bb-header { position: relative; z-index: 60; padding: 22px clamp(16px, 3vw, 48px); transition: background .25s ease, box-shadow .25s ease, padding .25s ease; }
  .bb-header.is-stuck {
    position: fixed; top: 0; left: 0; right: 0; padding-top: 12px; padding-bottom: 12px;
    background: #fff; box-shadow: 0 8px 26px rgba(0,0,0,.12);
  }
  .bb-header.is-stuck .bb-logo { color: var(--bb-ink); }
  .bb-header.is-stuck .bb-nav { /*background: #f4f2f0; border-color: #e6e1dc; */}
  .bb-header.is-stuck .bb-nav::before { backdrop-filter: none; }
  .bb-header.is-stuck .bb-nav__link { color: #4a443f; }
  .bb-header.is-stuck .bb-nav__link:hover, .bb-header.is-stuck .bb-nav__link.show { background: var(--bb-ink); color: #fff; }
  .bb-header.is-stuck .bb-btn-ghost { color: var(--bb-ink); background: #fff; border-color: #ddd6cf; backdrop-filter: none; }
  .bb-header.is-stuck .bb-btn-ghost:hover { background: #f4f2f0; }
  .bb-header.is-stuck .bb-btn-ghost svg { stroke: var(--bb-ink); }
  .bb-logo { font-size: clamp(20px, 2vw, 26px); font-weight: 800; letter-spacing: -.03em; color: #fff; }
  .bb-logo:hover { color: #fff; }
  .bb-logo span { color: var(--bb-orange); }

  .bb-nav {
    position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px;
/*    background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.12);*/
    border-radius: 26px; padding: 6px; min-width: 0; max-width: 100%;
  }
  .bb-nav::before { content: ""; position: absolute; inset: 0; border-radius: 26px; /*backdrop-filter: blur(14px);*/ pointer-events: none; }
  .bb-nav__link {
    position: relative; z-index: 1; display: block; padding: 10px 16px; border-radius: 999px;
    font-size: 14px; font-weight: 600; color: rgba(255,255,255,.88); background: none; border: 0;
  }
  .bb-nav__link:hover, .bb-nav__link.show { background: rgba(255,255,255,.12); color: #fff; }

  .bb-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 16px; border-radius: 999px;
    font-size: 14px; font-weight: 600; color: #fff; background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(14px);
  }
  .bb-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
  .bb-btn-ghost--icon { width: 44px; padding: 0; justify-content: center; }
  .bb-btn-orange {
    height: 44px; padding: 0 20px; border-radius: 999px; border: 0;
    font-size: 14px; font-weight: 700; color: #fff; background: var(--bb-orange);
  }
  .bb-btn-orange:hover { background: var(--bb-orange-dark); color: #fff; }

  /* Discover mega menu */
  .bb-mega {
    background: #fff; color: var(--bb-ink); border: 0; border-radius: 20px; padding: 18px;
    box-shadow: 0 28px 60px rgba(0,0,0,.38);
  }
  .bb-mega { width: min(330px, calc(100vw - 32px)); }
  .bb-mega__grid { display: flex; flex-direction: column; gap: 2px; }
  .bb-mega__item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; color: var(--bb-ink); font-size: 13.5px; font-weight: 600; }
  .bb-mega__item:hover { background: #fff4ec; color: var(--bb-ink); }
  .bb-mega__icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: #fff1e6; flex: none; }
  .bb-mega__promo { display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 12px; border-radius: 12px; background: var(--bb-ink); color: #fff; }
  .bb-mega__promo small { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--bb-orange); }
  .bb-mega__promo strong { font-size: 13.5px; font-weight: 600; line-height: 1.3; }

  /* Hero content */
  .bb-hero__content { position: relative; z-index: 10; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 40px clamp(16px, 3vw, 48px) 200px; gap: 22px; }
  .bb-eyebrow {
    display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
    background: rgba(255,107,0,.16); border: 1px solid rgba(255,107,0,.42);
    font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #ffb27a;
  }
  .bb-eyebrow i { width: 6px; height: 6px; border-radius: 999px; background: var(--bb-orange); display: block; }
  .bb-title { max-width: 16ch; margin: 0; font-size: clamp(44px, 6.2vw, 72px); line-height: .98; letter-spacing: -.045em; font-weight: 800; text-wrap: balance; }
  .bb-title em { font-style: normal; color: var(--bb-orange); }
  .bb-sub { max-width: 62ch; margin: 0; font-size: clamp(15px, 1.25vw, 19px); line-height: 1.6; color: rgba(255,255,255,.82); text-wrap: pretty; }

  /* Search form */
  .bb-search {
    width: 100%; max-width: 850px; margin-top: 18px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 0;
    background: #fff; border-radius: 28px; padding: 8px 8px 8px 6px; box-shadow: 0 24px 60px rgba(0,0,0,.35);
  }
  .bb-field { display: flex; align-items: center; gap: 10px; padding: 7px clamp(12px, 1.6vw, 20px); border-radius: 22px; cursor: pointer; min-width: 0; }
  .bb-field:hover { background: #f6f5f4; }
  .bb-field--loc, .bb-field--guests { flex: 1 1 150px; }
  .bb-field--date { flex: 1.15 1 170px; }
  .bb-field__icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; background: #fff1e6; flex: none; }
  .bb-field__body { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-align: left; }
  .bb-field__label { font-size: 12px; font-weight: 600;  color: #6b6560; }
  .bb-field__input {
    width: 100%; min-width: 0; appearance: none; border: 0; outline: none; background: transparent;
    font-family: inherit; font-size: 14px; font-weight: 600; color: #57524d; cursor: pointer;
  }
  .bb-search__go { flex: none; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 999px; background: var(--bb-orange); border: 0; }
  .bb-search__go:hover { background: var(--bb-orange-dark); }
  .bb-divider { width: 1px; height: 34px; background: #e3e0dd; flex: none; }

  .bb-categories { --bb-lift: 178px; position: relative; z-index: 20; padding: 0 0 72px; margin-top: calc(var(--bb-lift) * -1); }
  .bb-categories::before { content: ""; position: absolute; left: 0; right: 0; top: var(--bb-lift); bottom: 0; background: #fff; z-index: -1; }
  .bb-cat-head {
    display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px 24px;
    margin-bottom: 28px;
  }
  .bb-cat-head h2 { margin: 0; font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; letter-spacing: -.03em; color: #fff; }
  .bb-cat-head a { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--bb-orange); }
  .bb-cat-head a:hover { color: var(--bb-orange-dark); }
  .bb-quick__wrap { padding: 0 clamp(16px, 3vw, 48px); position: relative; z-index: 20; }
  .bb-quick__link { height: 100%; }
  .bb-quick__link {
    display: flex; flex-direction: column; gap: 12px;
    padding: 14px; border-radius: 18px; overflow: hidden;
    background: #fff; border: 1px solid #ece8e4; box-shadow: 0 18px 40px rgba(0,0,0,.18);
    color: var(--bb-ink); font-size: 14px; font-weight: 700; line-height: 1.25;
    transition: transform .18s ease, border-color .18s ease;
  }
  .bb-quick__link:hover { transform: translateY(-4px); border-color: var(--bb-orange); color: var(--bb-ink); }
  .bb-quick__icon { position: absolute; left: 10px; top: 10px; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.14); }
  .bb-quick__img {
    position: relative; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden;
/*    background-image: repeating-linear-gradient(115deg, #efece8 0 10px, #e6e2dd 10px 20px);*/
    display: flex; align-items: flex-end; justify-content: center; padding: 8px; background-size: cover!important;
  }

  .bb-quick__img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bb-quick__link:hover  .bb-quick__img::before {background: rgba(0, 0, 0, 0);  }

  .bb-quick__img em {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-style: normal;
    font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #8a8580;
  }
  .bb-quick__title { display: block; padding: 0 4px 4px; text-align:center; }

  @media (max-width: 991.98px) {
    .bb-divider { display: none; }
  }

  /* Originals */
  .bb-originals { background: #fff; padding: 8px 0 88px; }
  .bb-sec-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; margin-bottom: 26px; }
  .bb-sec-head h2 { margin: 0; font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; letter-spacing: -.03em; color: var(--bb-ink); }
  .bb-sec-nav { display: flex; gap: 8px; }
  .bb-sec-nav button {
    width: 42px; height: 42px; border-radius: 999px; border: 1px solid #e3ded9; background: #fff;
    display: flex; align-items: center; justify-content: center; color: var(--bb-ink);
  }
  .bb-sec-nav button:hover { background: var(--bb-orange); border-color: var(--bb-orange); color: #fff; }
  .bb-rail {
    display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, calc((100% - 80px) / 5));
    gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding-bottom: 8px; scrollbar-width: none;
  }
  .bb-rail::-webkit-scrollbar { display: none; }
  @media (max-width: 575.98px) { .bb-rail { grid-auto-columns: minmax(0, calc((100% - 20px) / 2)); } .bb-card__img em { display: none; } }
  .bb-card { scroll-snap-align: start; display: flex; flex-direction: column; gap: 10px; padding: 10px 10px 14px; border: 1px solid #ece8e4; border-radius: 20px; background: #fff; color: var(--bb-ink); }
  .bb-card:hover { border-color: var(--bb-orange); }
  .bb-card:hover { color: var(--bb-ink); }
  .bb-card:hover .bb-card__img { transform: translateY(-4px); }
  .bb-card__img {
    position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
/*    background-image: repeating-linear-gradient(115deg, #efece8 0 10px, #e6e2dd 10px 20px);*/
    display: flex; align-items: center; justify-content: center; padding: 8px;
    transition: transform .18s ease; background-size: cover!important;
  }
  .bb-card__img em { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-style: normal; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #8a8580; }
  .bb-card__date {
    position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; align-items: center;
    padding: 7px 11px; border-radius: 12px; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.16); line-height: 1;
  }
  .bb-card__date span { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-orange); }
  .bb-card__date strong { font-size: 17px; font-weight: 800; }
  .bb-card h3 { margin: 4px 2px 0; font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
  .bb-card p { margin: 0 2px; font-size: 13px; line-height: 1.5; color: #6b6560; }
  .bb-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 2px; padding: 0 2px; }
  .bb-card__loc { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: #6b6560; }
  .bb-card__price {
    position: absolute; left: 12px; bottom: 12px; z-index: 2;
    padding: 7px 12px; border-radius: 999px; background: var(--bb-orange);
    font-size: 14px; font-weight: 800; color: #fff; line-height: 1;
  }
  .bb-card__price small { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.85); }

  /* Discover More */
  .bb-more { background: #f7fafc; padding: 72px 0 88px; }
  .bb-tabs { gap: 10px; margin: 0 0 26px; }
  .bb-tab {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px;
    border: 1px solid #d8dee5; background: transparent; font-size: 14.5px; font-weight: 600; color: #2b2723;
  }
  .bb-tab:hover { border-color: var(--bb-orange); color: var(--bb-orange); }
  .bb-tabs .nav-link.bb-tab.active { background: var(--bb-ink); border-color: var(--bb-ink); color: #fff; font-weight: 700; }
  .bb-more .bb-card { background: #fff; border-color: #e5eaef; }

  /* Party CTA */
  .bb-party {  background: #fff; }
  .bb-party__inner {
    position: relative; overflow: hidden;
    padding: 80px 0 88px;
    background-color: #17161a;
/*    background-image: repeating-linear-gradient(115deg, #1a181c 0 16px, #201d22 16px 32px);*/
background-image: url(../img/section-bg.webp); background-size: cover;
  }

  /* Black overlay */
.bb-party__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Keep the content above the overlay */
.bb-party__inner > * {
    position: relative;
    z-index: 2;
}
  .bb-party__hint {
    position: absolute; right: 18px; bottom: 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; letter-spacing: .14em;
    text-transform: uppercase; color: rgba(255,255,255,.28);
  }
  .bb-party__body { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 18px; }
  .bb-party__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 16px; }
  .bb-btn-outline {
    display: inline-flex; align-items: center; height: 52px; padding: 0 26px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff; font-size: 15px; font-weight: 700;
  }
  .bb-btn-outline:hover { background: #fff; color: var(--bb-ink); border-color: #fff; }

  .bb-reviews { position: relative; }
  .bb-reviews__track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
  .bb-reviews__track::-webkit-scrollbar { display: none; }
  .bb-review {
    scroll-snap-align: start; padding: 28px; border-radius: 20px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    display: flex; flex-direction: column; gap: 16px;
  }
  .bb-review__stars { display: flex; gap: 3px; color: var(--bb-orange); font-size: 14px; letter-spacing: 2px; }
  .bb-review p { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.88); }
  .bb-review footer { display: flex; align-items: center; gap: 12px; }
  .bb-review__avatar { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,107,0,.2); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--bb-orange); }
  .bb-review strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
  .bb-review small { font-size: 12.5px; color: rgba(255,255,255,.6); }
  .bb-reviews__nav { display: flex; gap: 8px; margin-top: 18px; }
  .bb-reviews__nav button { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; display: flex; align-items: center; justify-content: center; }
  .bb-reviews__nav button:hover { background: var(--bb-orange); border-color: var(--bb-orange); }

  .bb-party h2 { margin: 0; max-width: 18ch; font-size: clamp(34px, 5vw, 64px); line-height: 1.05; letter-spacing: -.04em; font-weight: 800; color: #fff; }
  .bb-party h2 em { font-style: normal; display: block; color: var(--bb-orange); }
  .bb-party p { margin: 0; max-width: 52ch; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; color: rgba(255,255,255,.82); }
  .bb-party a.bb-btn-orange { display: inline-flex; align-items: center; height: 52px; padding: 0 30px; font-size: 15px; }

  /* Newsletter */
  .bb-news { background: var(--bb-orange); padding: 56px 0; }

  .bb-news h2 { margin: 0 0 8px; font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; letter-spacing: -.03em; color: #fff; }
  .bb-news p { margin: 0; max-width: 54ch; font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; color: #fff; }
  .bb-news form { display: flex; align-items: center; gap: 12px; }
  .bb-news input {
    flex: 1 1 0; min-width: 0; height: 56px; padding: 0 20px; border-radius: 14px; border: 0;
    font-family: inherit; font-size: 15px; font-weight: 500; color: #2b2723; background: #fff;
  }
  .bb-news input::placeholder { color: #8a8580; }
  .bb-news input:focus { outline: 3px solid rgba(255,255,255,.55); }
  .bb-news button {
    flex: none; height: 56px; padding: 0 34px; border-radius: 14px; border: 0;
    font-family: inherit; font-size: 15px; font-weight: 700; color: #fff; background: var(--bb-ink);
  }
  .bb-news button:hover { background: #000; }
  @media (max-width: 400px) { .bb-news form { flex-wrap: wrap; } .bb-news button { width: 100%; } }
  .bb-news input:focus { outline-color: rgba(11,11,11,.6); }

  /* Footer */
  .bb-footer { background: #000; color: rgba(255,255,255,.72); padding: 64px 0 28px; }

  .bb-footer__brand p { margin: 14px 0 0; max-width: 40ch; font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.62); }
  .bb-footer__social { display: flex; gap: 10px; margin-top: 20px; }
  .bb-footer__social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); color: #fff; }
  .bb-footer__social a:hover { background: var(--bb-orange); border-color: var(--bb-orange); color: #fff; }
  .bb-footer h4 { margin: 0 0 14px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; }
  .bb-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .bb-footer ul a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.72); }
  .bb-footer ul a:hover { color: var(--bb-orange); }
  .bb-footer__bottom {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px;
    margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
    font-size: 13px; color: rgba(255,255,255,.55);
  }
  .bb-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }
  .bb-footer__legal a { color: rgba(255,255,255,.55); }
  .bb-footer__legal a:hover { color: #fff; }
