/* Beans & Blues — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Jost:wght@200;300;400;500;600&display=swap');

:root {
  --black:  #0c0c0c;
  --white:  #ffffff;
  --cream:  #f7f4ef;
  --gold:   #c9a84c;
  --grey:   #5a5a5a;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}
h1 { font-size: clamp(48px, 8vw, 120px); font-weight: 400; }
h2 { font-size: clamp(36px, 5vw, 72px); font-weight: 400; }
h3 { font-size: clamp(22px, 2.5vw, 36px); }
p  { font-size: 15px; line-height: 1.9; color: var(--grey); }
em { font-style: italic; }

.bb-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.bb-label--gold { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────── */
.bb-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 44px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
  margin-top: 32px;
}
.bb-btn:hover { background: var(--black); color: var(--white); }

.bb-btn--white {
  border-color: rgba(255,255,255,.8);
  color: var(--white);
}
.bb-btn--white:hover { background: var(--white); color: var(--black); }

.bb-btn--ghost {
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.7);
  margin-top: 20px;
}
.bb-btn--ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ── HEADER ──────────────────────────────────── */
.bb-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  padding: 28px 6%;
  transition: background .5s ease, padding .5s ease, box-shadow .5s ease;
}
.bb-header.scrolled {
  background: rgba(255,255,255,.97);
  padding: 16px 6%;
  box-shadow: 0 1px 30px rgba(0,0,0,.07);
}

.bb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bb-header__logo img,
.bb-header__logo .custom-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .5s ease;
}
.bb-header.scrolled .bb-header__logo img,
.bb-header.scrolled .bb-header__logo .custom-logo { filter: none; }

.bb-header__logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  transition: color .5s;
}
.bb-header.scrolled .bb-header__logo-text { color: var(--black); }

.bb-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.bb-nav__list li a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  transition: opacity .3s;
}
.bb-header.scrolled .bb-nav__list li a { color: var(--black); }
.bb-nav__list li a:hover { opacity: .5; }

.bb-nav__reserve {
  border: 1px solid rgba(255,255,255,.6) !important;
  padding: 10px 20px !important;
  margin-left: 10px;
  transition: background .3s, color .3s, border-color .3s !important;
}
.bb-nav__reserve:hover {
  background: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
  opacity: 1 !important;
}
.bb-header.scrolled .bb-nav__reserve {
  border-color: var(--black) !important;
  color: var(--black) !important;
}

/* Hamburger */
.bb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.bb-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: background .5s;
}
.bb-header.scrolled .bb-hamburger span { background: var(--black); }

/* Mobile menu */
.bb-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.bb-mobile-menu.open { opacity: 1; pointer-events: all; }

.bb-mobile-menu__close {
  position: absolute;
  top: 28px; right: 6%;
  background: none; border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

.bb-mobile-nav ul { text-align: center; }
.bb-mobile-nav li { margin: 16px 0; }
.bb-mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 52px);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  transition: color .3s;
}
.bb-mobile-nav a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────── */
.bb-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.bb-hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}
.bb-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}
.bb-hero__trust {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.bb-hero__trust strong { color: #c9a84c; }
.bb-hero__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.bb-hero__title {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  text-shadow: 0 4px 60px rgba(0,0,0,.3);
  margin-bottom: 28px;
}
.bb-hero__sub {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Scroll indicator */
.bb-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.bb-hero__scroll span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.bb-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.4);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTIONS ────────────────────────────────── */
.bb-section { padding: 120px 8%; }
.bb-section--dark { background: var(--black); }
.bb-section--dark h2, .bb-section--dark h3 { color: var(--white); }
.bb-section--dark .bb-label { color: var(--gold); }
.bb-section--dark p { color: rgba(255,255,255,.5); }

.bb-section__inner { max-width: 1300px; margin: 0 auto; }

/* ── INTRO ───────────────────────────────────── */
.bb-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bb-intro__text h2 { margin-bottom: 24px; }
.bb-intro__text p  { margin-bottom: 16px; }
.bb-intro__provenance { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 24px !important; }
.bb-menu-hero__provenance { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 8px; }
.bb-intro__video {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 4px;
  max-height: 600px;
}
.bb-intro__video video,
.bb-intro__video img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── MENUS GRID ──────────────────────────────── */
.bb-menus { text-align: center; }
.bb-menus h2 { color: var(--white); margin-bottom: 64px; }

.bb-menus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.bb-menu-card {
  display: block;
  padding: 56px 40px;
  border: 1px solid rgba(255,255,255,.08);
  transition: background .4s ease;
  text-align: left;
  cursor: pointer;
}
.bb-menu-card:hover { background: rgba(255,255,255,.05); }

.bb-menu-card__num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.bb-menu-card h3 {
  color: var(--white);
  font-size: clamp(20px, 2vw, 30px);
  margin-bottom: 16px;
  font-weight: 400;
  font-style: italic;
}
.bb-menu-card p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.bb-menu-card__link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  transition: letter-spacing .3s;
}
.bb-menu-card:hover .bb-menu-card__link { letter-spacing: 3px; }

/* ── INFO ────────────────────────────────────── */
.bb-info { background: var(--cream); }
.bb-info__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.bb-info__divider {
  width: 1px;
  height: 200px;
  background: rgba(0,0,0,.12);
}
.bb-info__block h2 { margin-bottom: 20px; }
.bb-info__hours {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 0;
}
.bb-info__hours strong { font-weight: 600; color: var(--black); }

/* ── CTA SECTION ─────────────────────────────── */
.bb-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 8%;
}
.bb-cta__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bb-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bb-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 1;
}
.bb-cta__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.bb-cta__content h2 { color: var(--white); margin-bottom: 20px; }
.bb-cta__content p  { color: rgba(255,255,255,.7); font-size: 16px; }
.bb-cta__content a[href^="tel"] { color: var(--gold); }

/* ── NEWSLETTER ──────────────────────────────── */
.bb-newsletter {
  background: #1a1a1a;
  padding: 70px 8%;
  border-top: 1px solid rgba(201,168,76,0.3);
}
.bb-newsletter__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.bb-newsletter__text {
  flex: 1;
  min-width: 260px;
}
.bb-newsletter__text h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  margin: 12px 0 10px;
}
.bb-newsletter__text p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.7;
}
.bb-newsletter__form {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
}
.bb-newsletter__form form {
  max-width: 100% !important;
}
.bb-newsletter__form .input {
  max-width: 280px !important;
  flex: 1 1 200px !important;
}
@media (max-width: 680px) {
  .bb-newsletter__inner { flex-direction: column; gap: 30px; }
}

/* ── BREVO OVERRIDES (kill white box) ──────────── */
#sib-form-container,
#sib-container,
.sib-form-container,
.sib-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 100% !important;
}
#sib-container a { color: var(--gold) !important; }
.bb-newsletter .sib-form-message-panel {
  margin-bottom: 12px;
}

/* ── FOOTER ──────────────────────────────────── */
.bb-footer {
  background: var(--black);
  padding: 90px 8% 40px;
}
.bb-footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bb-footer__col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.bb-footer__col p,
.bb-footer__col li,
.bb-footer__col a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 2.2;
  transition: color .3s;
}
.bb-footer__col a:hover { color: var(--gold); }

.bb-footer__bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bb-footer__bottom p {
  font-family: var(--sans);
  font-size: 12px;
  color: #444;
}
.bb-footer__logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(0.6);
}
.bb-footer__social {
  display: flex;
  gap: 24px;
}
.bb-footer__social a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  transition: color .3s;
}
.bb-footer__social a:hover { color: var(--gold); }
.bb-footer__social svg { flex-shrink: 0; }

/* ── INSTAGRAM FEED ──────────────────────────── */
.bb-instagram { background: var(--cream); }
.bb-instagram .bb-section__inner { text-align: center; padding: 100px 6%; }
.bb-instagram h2 { margin: 16px 0 8px; }
.bb-instagram__handle { margin-bottom: 48px; }
.bb-instagram__handle a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.bb-instagram__handle a:hover { text-decoration: underline; }
.bb-instagram__feed { max-width: 1200px; margin: 0 auto; }

/* ── JOURNAL / BLOG ─────────────────────────── */
.bb-journal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}
.bb-journal__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--black);
}
.bb-journal__card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.bb-journal__card-img { aspect-ratio: 16/9; overflow: hidden; }
.bb-journal__card-img img { width: 100%; height: 100%; object-fit: cover; }
.bb-journal__card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.bb-journal__card-date { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.bb-journal__card-title { font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; margin-bottom: 12px; }
.bb-journal__card-excerpt { color: var(--grey); font-size: 0.9rem; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.bb-journal__card-link { font-size: 0.85rem; letter-spacing: 0.05em; color: var(--gold); font-weight: 500; }

/* ── SINGLE ARTICLE ─────────────────────────── */
.bb-article { background: var(--white); }
.bb-article__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: start;
}
.bb-article__body { font-size: 1.05rem; line-height: 1.85; color: #2a2a2a; }
.bb-article__body h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--black);
}
.bb-article__body p { margin-bottom: 1.4rem; }
.bb-article__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.bb-article__body strong { font-weight: 600; color: var(--black); }
.bb-article__sidebar { position: sticky; top: 120px; }
.bb-article__cta-box {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.bb-article__cta-box h3 { font-family: var(--serif); font-size: 1.4rem; margin: 12px 0 16px; }
.bb-article__cta-box p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }
.bb-article__back { max-width: 1100px; margin: 48px auto 0; }
.bb-article__back-link { font-size: 0.85rem; color: var(--grey); letter-spacing: 0.05em; }
.bb-article__back-link:hover { color: var(--gold); }
@media (max-width: 900px) {
  .bb-article__inner { grid-template-columns: 1fr; gap: 48px; }
  .bb-article__sidebar { position: static; }
}

/* ── ABOUT PAGE ──────────────────────────────── */
.bb-section--cream { background: var(--cream); }

/* Intro */
.bb-about-intro { background: var(--white); }
.bb-about-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.bb-about-intro__text h2 { margin: 16px 0 24px; }
.bb-about-intro__text p { color: var(--grey); line-height: 1.8; margin-bottom: 16px; }
.bb-about-intro__logo {
  width: 100%;
  max-width: 320px;
  opacity: 0.12;
  filter: none;
}

/* Stats */
.bb-about-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.bb-about-stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 8px;
}
.bb-about-stat__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

/* Philosophy */
.bb-about-philosophy { background: var(--white); }
.bb-about-philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bb-about-philosophy__image-col {
  position: relative;
  overflow: visible;
  padding-bottom: 160px;
}
.bb-about-philosophy__img-stack {
  position: relative;
  height: 500px;
}
.bb-about-philosophy__img {
  position: absolute;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}
.bb-about-philosophy__img--top {
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.beansandblues.co.uk/wp-content/uploads/bb-photos/gallery/g03.jpg');
  background-position: left center;
  background-color: var(--cream);
  border-radius: 8px;
}
.bb-about-philosophy__plate {
  position: absolute;
  bottom: -120px;
  left: -220px;
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  will-change: transform;
  z-index: 2;
}
.bb-about-philosophy__text h2 { margin: 16px 0 24px; }
.bb-about-philosophy__text p { color: var(--grey); line-height: 1.8; margin-bottom: 16px; }

/* Values */
.bb-about-values .bb-section__inner { padding: 100px 6%; text-align: center; }
.bb-about-values h2 { margin: 16px 0 60px; }
.bb-about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}
.bb-about-value { padding: 32px 24px; background: var(--white); border-radius: 4px; }
.bb-about-value__icon { font-size: 28px; display: block; margin-bottom: 16px; }
.bb-about-value h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 12px; font-style: italic; }
.bb-about-value p { color: var(--grey); font-size: 14px; line-height: 1.8; }

/* Reviews */
.bb-about-reviews { background: var(--white); }
.bb-about-reviews .bb-section__inner { padding: 100px 6%; text-align: center; }
.bb-about-reviews h2 { margin: 16px 0 60px; }
.bb-about-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.bb-about-review {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: 4px;
  text-align: left;
}
.bb-about-review__stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.bb-about-review p { color: var(--grey); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.bb-about-review__author { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #999; }
.bb-about-reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 40px;
  border: 1px solid #e0d9d0;
  border-radius: 4px;
}
.bb-about-reviews__score { font-family: var(--serif); font-size: 48px; font-style: italic; color: var(--black); }
.bb-about-reviews__stars { color: var(--gold); font-size: 20px; }
.bb-about-reviews__count { font-family: var(--sans); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); }

/* About responsive */
@media (max-width: 900px) {
  .bb-about-intro__inner,
  .bb-about-philosophy__inner { grid-template-columns: 1fr; gap: 40px; }
  .bb-about-intro__image { display: none; }
  .bb-about-stats__inner,
  .bb-about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .bb-about-reviews__grid { grid-template-columns: 1fr; }
  .bb-about-philosophy__img-stack { height: 300px; }
}
@media (max-width: 600px) {
  .bb-about-stats__inner,
  .bb-about-values__grid { grid-template-columns: 1fr; }
  .bb-about-reviews__badge { flex-direction: column; gap: 8px; }
}

/* ── INNER PAGES ─────────────────────────────── */
.bb-page { padding-top: 100px; min-height: 60vh; }
.bb-page__inner { max-width: 1200px; margin: 0 auto; padding: 60px 6%; }

/* ── ENTRANCE ANIMATIONS ─────────────────────── */
.bb-fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.bb-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.bb-fade:nth-child(2) { transition-delay: .1s; }
.bb-fade:nth-child(3) { transition-delay: .2s; }
.bb-fade:nth-child(4) { transition-delay: .3s; }
.bb-fade:nth-child(5) { transition-delay: .4s; }
.bb-fade:nth-child(6) { transition-delay: .5s; }

/* ══════════════════════════════════════════════
   MENU PAGE
══════════════════════════════════════════════ */

/* Hero */
.bb-menu-hero {
  background: var(--black);
  padding: 180px 8% 100px;
  text-align: center;
}
.bb-menu-hero h1 { color: var(--white); }
.bb-menu-hero p  { color: rgba(255,255,255,.5); font-size: 14px; letter-spacing: 2px; margin-top: 16px; }

/* Tab nav */
.bb-menu-tabs {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8e4dd;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.bb-menu-tabs__inner {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.bb-menu-tabs__inner::-webkit-scrollbar { display: none; }

.bb-tab {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  background: none;
  border: none;
  padding: 22px 32px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}
.bb-tab:hover  { color: var(--black); }
.bb-tab.active { color: var(--black); border-bottom-color: var(--gold); }

/* Tab panels */
.bb-tab-panel { display: none; }
.bb-tab-panel.active { display: block; }

/* Menu body */
.bb-menu-body { background: var(--cream); padding: 80px 8%; }

/* Grid */
.bb-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Section card */
.bb-menu-section {
  background: var(--white);
  padding: 48px 44px;
}
.bb-menu-section--gold {
  background: var(--black);
}
.bb-menu-section--gold .bb-menu-section__title { color: var(--gold); }
.bb-menu-section--gold .bb-item__name { color: rgba(255,255,255,.85); }
.bb-menu-section--gold .bb-item__desc { color: rgba(255,255,255,.4); }
.bb-menu-section--gold .bb-item__price { color: var(--gold); }
.bb-menu-section--gold .bb-menu-list li { border-color: rgba(255,255,255,.07); }

.bb-menu-section__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ece8e1;
}
.bb-menu-section--gold .bb-menu-section__title { border-color: rgba(255,255,255,.1); }

.bb-menu-section__note {
  font-size: 12px;
  color: #999;
  letter-spacing: .5px;
  margin-bottom: 20px;
  font-style: italic;
}

/* Menu list */
.bb-menu-list { margin-top: 16px; }
.bb-menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f0ece5;
}
.bb-menu-list li:last-child { border-bottom: none; }

.bb-item__name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.bb-item__desc {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  line-height: 1.6;
}
.bb-item__price {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Allergen note */
.bb-menu-allergen {
  background: var(--black);
  padding: 40px 8%;
  text-align: center;
}
.bb-menu-allergen p {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  letter-spacing: .5px;
  line-height: 2;
}

/* Responsive */
@media (max-width: 900px) {
  .bb-menu-grid { grid-template-columns: 1fr; }
  .bb-menu-section { padding: 36px 28px; }
  .bb-tab { padding: 18px 20px; font-size: 10px; }
}

/* ── PAGE HERO (inner pages) ─────────────────── */
.bb-page-hero {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.bb-page-hero--short { height: 300px; }
.bb-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}
.bb-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.bb-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.bb-page-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.bb-page-hero__sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── RESERVATION ─────────────────────────────── */
.bb-reservation {
  padding: 80px 6%;
  background: var(--white);
}
.bb-reservation__inner {
  max-width: 900px;
  margin: 0 auto;
}

.bb-reservation-info {
  padding: 64px 6%;
  background: var(--cream);
}
.bb-reservation-info__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.bb-reservation-info__block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.bb-reservation-info__block p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
}
.bb-reservation-info__block a {
  color: var(--gold);
  text-decoration: none;
}
.bb-reservation-info__block a:hover { text-decoration: underline; }
.bb-small { font-size: 12px !important; color: #aaa !important; }

@media (max-width: 768px) {
  .bb-reservation-info__inner { grid-template-columns: 1fr; gap: 32px; }
  .bb-page-hero--short { height: 220px; }
}

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .bb-nav { display: none; }
  .bb-hamburger { display: flex; }
  .bb-menus__grid { grid-template-columns: repeat(2, 1fr); }
  .bb-footer__inner { grid-template-columns: repeat(2, 1fr); }
  .bb-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .bb-intro__video { max-height: 400px; aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .bb-section { padding: 80px 5%; }
  .bb-menus__grid { grid-template-columns: 1fr; }
  .bb-info__inner { grid-template-columns: 1fr; gap: 48px; }
  .bb-info__divider { width: 60px; height: 1px; margin: 0 auto; }
  .bb-footer__inner { grid-template-columns: 1fr 1fr; }
  .bb-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .bb-hero__title { font-size: clamp(44px, 12vw, 80px); }
}

@media (max-width: 480px) {
  .bb-footer__inner { grid-template-columns: 1fr; }
  .bb-menu-card { padding: 40px 28px; }
}

/* ── GALLERY ─────────────────────────────────── */
.bb-gallery-section { background: var(--cream); padding: 80px 6%; }
.bb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.bb-gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: 4px;
}
.bb-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bb-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.bb-gallery__overlay span {
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bb-gallery__item:hover img { transform: scale(1.06); }
.bb-gallery__item:hover .bb-gallery__overlay { background: rgba(0,0,0,0.4); }
.bb-gallery__item:hover .bb-gallery__overlay span { opacity: 1; transform: scale(1); }

@media (max-width: 900px) { .bb-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bb-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ── LIGHTBOX ────────────────────────────────── */
.bb-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bb-lightbox.open { opacity: 1; pointer-events: all; }
.bb-lightbox__wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-lightbox__wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
}
.bb-lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 24px;
  cursor: pointer; z-index: 10000;
  opacity: 0.7; transition: opacity 0.2s;
}
.bb-lightbox__close:hover { opacity: 1; }
.bb-lightbox__prev,
.bb-lightbox__next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: none; border: 2px solid var(--gold);
  color: var(--gold); font-size: 36px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10000;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
.bb-lightbox__prev { left: 20px; }
.bb-lightbox__next { right: 20px; }
.bb-lightbox__prev:hover,
.bb-lightbox__next:hover { background: var(--gold); color: var(--black); }

/* ── INSTAGRAM CUSTOM CAROUSEL ──────────────── */
.bb-ig-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.bb-ig-carousel__track-wrap { overflow: hidden; flex: 1; }
.bb-ig-carousel__track { display: flex; gap: 12px; transition: transform 0.4s ease; }
.bb-ig-carousel__slide {
  flex: 0 0 calc(33.333% - 8px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.bb-ig-carousel__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease; display: block;
}
.bb-ig-carousel__slide:hover img { transform: scale(1.05); }
.bb-ig-btn {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 32px; line-height: 1;
  cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; padding: 0;
}
.bb-ig-btn:hover { background: var(--gold); color: var(--black); }
@media (max-width: 768px) {
  .bb-ig-carousel__slide { flex: 0 0 calc(50% - 6px); }
  .bb-ig-btn { width: 36px; height: 36px; font-size: 24px; }
}
@media (max-width: 480px) { .bb-ig-carousel__slide { flex: 0 0 100%; } }

/* ── HOMEPAGE REVIEWS ────────────────────────── */
.bb-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.bb-review-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.bb-review-card__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.bb-review-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 20px;
}
.bb-review-card__author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--black);
  text-transform: uppercase;
}
.bb-reviews__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.bb-reviews__score {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
}
.bb-reviews__stars {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 2px;
}
.bb-reviews__count {
  font-size: 13px;
  color: var(--grey);
}
.bb-reviews__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.bb-reviews__link:hover { opacity: 0.7; }
@media (max-width: 900px) { .bb-reviews__grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── CONTACT PAGE ────────────────────────────── */
.bb-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.bb-contact__info h2 { margin-bottom: 36px; }
.bb-contact__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.bb-contact__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.bb-contact__detail strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.bb-contact__detail p { font-size: 14px; line-height: 1.7; color: var(--grey); }
.bb-contact__detail a { color: var(--grey); }
.bb-contact__detail a:hover { color: var(--black); }
.bb-contact__maplink {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold) !important;
  display: inline-block;
  margin-top: 6px;
}
.bb-contact__form-wrap { padding-top: 8px; }
.bb-contact__field { display: flex; flex-direction: column; margin-bottom: 20px; }
.bb-contact__field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--black);
}
.bb-contact__field input,
.bb-contact__field textarea {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.bb-contact__field input:focus,
.bb-contact__field textarea:focus { border-color: var(--gold); }
.bb-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bb-contact__success {
  background: #f0faf0;
  border: 1px solid #b2dfb2;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  font-size: 15px;
  color: #2d6a2d;
}
.bb-contact__error {
  background: #fff3f3;
  border: 1px solid #f5c0c0;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #a03030;
}
.bb-contact__map { width: 100%; line-height: 0; }
@media (max-width: 900px) {
  .bb-contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .bb-contact__row { grid-template-columns: 1fr; }
}
