/* ==========================================================================
   BARBARASHKA — ресторан кавказской кухни, Тверь
   Design system: warm ivory/sand base, wine + terracotta + olive accents,
   editorial serif (Lora) x modern grotesk (Manrope), Cyrillic + Latin.
   ========================================================================== */

@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../assets/fonts/Lora-Italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}

:root {
  --ivory: #F4EDE1;
  --paper: #ECE1CD;
  --card: #FAF6EE;
  --espresso: #1E1712;
  --espresso-soft: #2B2119;
  --wood: #8C5B34;
  --wood-deep: #4E3018;
  --terracotta: #A8492E;
  --terracotta-bright: #C15E3B;
  --wine: #5E1F22;
  --wine-bright: #7A2C2E;
  --olive: #6B6E4C;
  --charcoal: #1A211F;
  --charcoal-blue: #1B262B;
  --cream-text: #F4EDE1;
  --line-dark: rgba(30, 23, 18, 0.14);
  --line-light: rgba(244, 237, 225, 0.22);
  --header-h: 84px;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[id] { scroll-margin-top: var(--header-h); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
::selection { background: var(--wine); color: var(--cream-text); }

.section-pad { padding: clamp(80px, 12vw, 160px) var(--pad); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow--light { color: rgba(244, 237, 225, 0.72); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.bb-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--pad);
  background: transparent;
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease), height 0.4s var(--ease);
}
.bb-header.is-scrolled {
  background: rgba(30, 23, 18, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 68px;
  box-shadow: 0 12px 30px -20px rgba(0,0,0,0.6);
}
.bb-header__logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bb-header__logo svg { width: 26px; height: 26px; flex: none; }
.bb-header__nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 40px);
}
.bb-header__nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(244, 237, 225, 0.82);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.bb-header__nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--terracotta-bright);
  transition: right 0.35s var(--ease);
}
.bb-header__nav a:hover { color: var(--cream-text); }
.bb-header__nav a:hover::after { right: 0; }
.bb-header__right { display: flex; align-items: center; gap: 18px; }
.bb-header__phone {
  font-size: 13px;
  font-weight: 600;
  color: rgba(244, 237, 225, 0.85);
  letter-spacing: 0.02em;
}
.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.bb-btn--solid {
  background: var(--terracotta);
  color: var(--cream-text);
}
.bb-btn--solid:hover { background: var(--terracotta-bright); transform: translateY(-2px); }
.bb-btn--outline {
  background: transparent;
  color: var(--cream-text);
  border: 1px solid rgba(244, 237, 225, 0.4);
}
.bb-btn--outline:hover { border-color: var(--cream-text); transform: translateY(-2px); }
.bb-btn--dark {
  background: var(--espresso);
  color: var(--cream-text);
}
.bb-btn--dark:hover { background: var(--wood-deep); transform: translateY(-2px); }
.bb-header .bb-btn--solid { padding: 11px 22px; }

.bb-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.bb-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream-text);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.bb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   MOBILE MENU (fullscreen)
   ========================================================================== */
.bb-mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--espresso);
  clip-path: circle(0% at calc(100% - 38px) 38px);
  transition: clip-path 0.65s var(--ease);
  display: flex; flex-direction: column;
  visibility: hidden;
}
.bb-mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 38px) 38px);
  visibility: visible;
}
.bb-mobile-menu__bg {
  position: absolute; inset: 0;
  opacity: 0.24;
  z-index: 0;
}
.bb-mobile-menu__bg img { width: 100%; height: 100%; object-fit: cover; }
.bb-mobile-menu__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,23,18,0.65), rgba(30,23,18,0.95) 70%);
}
.bb-mobile-menu__top {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  height: var(--header-h);
  padding-top: env(safe-area-inset-top);
}
.bb-mobile-menu__logo {
  font-family: var(--font-serif); font-weight: 700; font-size: 20px; color: var(--cream-text);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.bb-mobile-menu__close {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--cream-text);
}
.bb-mobile-menu__close svg { width: 22px; height: 22px; }
.bb-mobile-menu__nav {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--pad);
  gap: clamp(10px, 3vh, 22px);
}
.bb-mobile-menu__nav li {
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.bb-mobile-menu.is-open .bb-mobile-menu__nav li { opacity: 1; transform: translateY(0); }
.bb-mobile-menu__num {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; color: var(--terracotta-bright);
  letter-spacing: 0.05em;
}
.bb-mobile-menu__nav a {
  font-family: var(--font-serif); font-size: clamp(30px, 9vw, 44px); font-weight: 600; color: var(--cream-text);
}
.bb-mobile-menu__footer {
  position: relative; z-index: 2;
  padding: 0 var(--pad) calc(env(safe-area-inset-bottom) + 28px);
  display: flex; flex-direction: column; gap: 18px;
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
  margin-top: 12px;
}
.bb-mobile-menu__addr { font-size: 14px; color: rgba(244,237,225,0.7); line-height: 1.6; }
.bb-mobile-menu__footer .bb-btn { align-self: flex-start; }

/* ==========================================================================
   HERO
   ========================================================================== */
.bb-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}
.bb-hero__media {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 0);
}
.bb-hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  transform: scale(1.08);
  transition: transform 8s var(--ease-soft);
}
.js-ready .bb-hero__media img { transform: scale(1); }
.bb-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,11,0.55) 0%, rgba(20,15,11,0.15) 32%, rgba(20,15,11,0.25) 62%, rgba(20,15,11,0.88) 100%);
}
.bb-hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: calc(var(--header-h) + 24px) var(--pad) clamp(40px, 6vw, 72px);
  display: flex; flex-direction: column; gap: clamp(18px, 3vw, 30px);
}
.bb-hero__tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,237,225,0.82);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s var(--ease) 0.5s, transform 0.7s var(--ease) 0.5s;
}
.js-ready .bb-hero__tag { opacity: 1; transform: translateY(0); }
.bb-hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 12vw, 168px); overflow-wrap: break-word;
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--cream-text);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.15s var(--ease) 0.15s;
}
.js-ready .bb-hero__title.is-revealed { clip-path: inset(0 0% 0 0); }
.bb-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: rgba(244,237,225,0.92);
  max-width: 34ch;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s var(--ease) 0.7s, transform 0.7s var(--ease) 0.7s;
}
.js-ready .bb-hero__sub { opacity: 1; transform: translateY(0); }
.bb-hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 3vw, 32px);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s var(--ease) 0.85s, transform 0.7s var(--ease) 0.85s;
}
.js-ready .bb-hero__meta { opacity: 1; transform: translateY(0); }
.bb-hero__place {
  font-size: 13px; color: rgba(244,237,225,0.72); line-height: 1.5;
}
.bb-hero__place strong { color: var(--cream-text); display: block; font-weight: 600; }
.bb-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.bb-hero__scroll {
  position: absolute; left: var(--pad); bottom: 26px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,237,225,0.6);
  opacity: 0; transition: opacity 0.7s var(--ease) 1.1s;
}
.js-ready .bb-hero__scroll { opacity: 1; }
.bb-hero__scroll-line { width: 1px; height: 34px; background: rgba(244,237,225,0.4); position: relative; overflow: hidden; }
.bb-hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--terracotta-bright);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ==========================================================================
   INTRO / STORY
   ========================================================================== */
.bb-intro {
  background: var(--ivory);
  padding: clamp(90px, 14vw, 180px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}
.bb-intro__num { font-family: var(--font-serif); font-size: 15px; color: var(--terracotta); font-weight: 600; }
.bb-intro__quote {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.18;
  font-weight: 600;
  color: var(--espresso);
  margin-top: 14px;
}
.bb-intro__body { max-width: 46ch; }
.bb-intro__text {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
  color: rgba(30,23,18,0.78);
}
.bb-intro__word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.bb-intro__quote.is-in .bb-intro__word {
  animation: wordUp 0.7s var(--ease) forwards;
}

@keyframes wordUp { to { transform: translateY(0); opacity: 1; } }

/* ==========================================================================
   FOOD SHOWCASE — editorial gallery
   ========================================================================== */
.bb-showcase {
  background: var(--ivory);
  padding: 0 var(--pad) clamp(90px, 12vw, 160px);
}
.bb-showcase__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  margin-bottom: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}
.bb-showcase__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.02;
  max-width: 14ch;
}
.bb-showcase__note {
  max-width: 32ch; font-size: 14px; color: rgba(30,23,18,0.6); line-height: 1.6;
  padding-bottom: 6px;
}
.bb-showcase__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 28px);
}
.bb-shot { position: relative; overflow: hidden; border-radius: 3px; background: var(--paper); }
.bb-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.bb-shot:hover img { transform: scale(1.045); }
.bb-shot__cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--cream-text);
}
.bb-shot__cap::before { content: ""; }
.bb-shot--tint::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,11,0) 55%, rgba(20,15,11,0.55) 100%);
}
.bb-shot-1 { grid-column: 1 / 8; aspect-ratio: 4 / 5; }
.bb-shot-2 { grid-column: 8 / 13; aspect-ratio: 3 / 4; margin-top: clamp(30px, 6vw, 90px); }
.bb-shot-3 { grid-column: 1 / 5; aspect-ratio: 3 / 4; }
.bb-shot-4 {
  grid-column: 5 / 13; aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(20px, 4vw, 60px);
}
.bb-shot-4__text {
  font-family: var(--font-serif); font-weight: 600; font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px); text-align: center; line-height: 1.4;
  color: var(--espresso);
}
.bb-shot-5 { grid-column: 1 / 6; aspect-ratio: 3 / 4; margin-top: clamp(20px, 4vw, 60px); }
.bb-shot-6 { grid-column: 6 / 13; aspect-ratio: 5 / 4; }
.bb-shot-7 { grid-column: 1 / 5; aspect-ratio: 1 / 1; }
.bb-shot-8 { grid-column: 5 / 13; aspect-ratio: 16 / 9; }

/* ==========================================================================
   SIGNATURE — "С огня — прямо к столу"
   ========================================================================== */
.bb-signature {
  position: relative;
  background: var(--espresso);
  color: var(--cream-text);
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.bb-signature__media { position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 4 / 5; }
.bb-signature__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.4s var(--ease-soft); }
.bb-signature__media.is-in img { transform: scale(1); }
.bb-signature__text { display: flex; flex-direction: column; gap: 22px; }
.bb-signature__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.08;
}
.bb-signature__body { font-size: 16px; line-height: 1.75; color: rgba(244,237,225,0.72); max-width: 40ch; }

/* ==========================================================================
   KHINKALI moment
   ========================================================================== */
.bb-khinkali {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.bb-khinkali__media { position: absolute; inset: 0; }
.bb-khinkali__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.bb-khinkali__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,15,11,0.85) 0%, rgba(20,15,11,0.1) 45%); }
.bb-khinkali__content {
  position: relative; z-index: 2; padding: clamp(40px, 8vw, 90px) var(--pad);
  display: flex; flex-direction: column; gap: 16px;
}
.bb-khinkali__title {
  font-family: var(--font-serif); font-weight: 700; color: var(--cream-text);
  font-size: clamp(38px, 9vw, 130px); line-height: 0.94; overflow-wrap: break-word;
}
.bb-khinkali__sub {
  font-family: var(--font-serif); font-style: italic; color: rgba(244,237,225,0.85);
  font-size: clamp(17px, 2vw, 22px); max-width: 30ch;
}

/* ==========================================================================
   ATMOSPHERE
   ========================================================================== */
.bb-atmosphere { background: var(--paper); padding: clamp(90px, 12vw, 160px) var(--pad); }
.bb-atmosphere__head { max-width: 44ch; margin-bottom: clamp(40px, 6vw, 80px); }
.bb-atmosphere__title {
  font-family: var(--font-serif); font-weight: 700; font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  margin-top: 12px;
}
.bb-atmosphere__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 2vw, 26px);
}
.bb-atm-1 { grid-column: 1 / 6; aspect-ratio: 3/4; }
.bb-atm-2 { grid-column: 6 / 13; aspect-ratio: 16/11; margin-top: clamp(40px, 6vw, 80px); }
.bb-atm-shot { position: relative; overflow: hidden; border-radius: 3px; }
.bb-atm-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.bb-atm-shot:hover img { transform: scale(1.045); }
.bb-atm-shot__cap {
  margin-top: 12px; font-size: 12px; color: rgba(30,23,18,0.55); font-style: italic; font-family: var(--font-serif);
}

/* ==========================================================================
   BRAND MOMENT
   ========================================================================== */
.bb-brand {
  position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--espresso);
}
.bb-brand__media { position: absolute; inset: 0; }
.bb-brand__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; opacity: 0.55; }
.bb-brand__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 40%, rgba(20,15,11,0.25), rgba(20,15,11,0.88)); }
.bb-brand__content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 40px var(--pad); }
.bb-brand__caucasus { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,237,225,0.6); }
.bb-brand__arrow { font-size: 22px; color: var(--terracotta-bright); }
.bb-brand__word {
  font-family: var(--font-serif); font-weight: 700; color: var(--cream-text);
  font-size: clamp(34px, 10vw, 140px); line-height: 0.95; letter-spacing: -0.01em; overflow-wrap: break-word;
}
.bb-brand__city { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,237,225,0.72); }

/* ==========================================================================
   MENU
   ========================================================================== */
.bb-menu { background: var(--ivory); padding: clamp(90px, 12vw, 160px) var(--pad); }
.bb-menu__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  margin-bottom: clamp(40px, 6vw, 70px); flex-wrap: wrap;
}
.bb-menu__title-wrap { display: flex; align-items: baseline; gap: 18px; }
.bb-menu__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(40px, 6vw, 76px); line-height: 1;
}
.bb-menu__index { font-family: var(--font-serif); font-size: 20px; color: var(--terracotta); }
.bb-menu__thumb { width: 92px; aspect-ratio: 3/4; overflow: hidden; border-radius: 3px; transform: rotate(-3deg); box-shadow: 0 18px 40px -18px rgba(30,23,18,0.4); }
.bb-menu__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bb-menu__tabs { display: flex; gap: 10px; margin-bottom: clamp(30px, 4vw, 50px); }
.bb-menu__tab {
  padding: 10px 22px; border-radius: 999px; font-size: 13px; font-weight: 700;
  border: 1px solid var(--line-dark); color: rgba(30,23,18,0.55);
  transition: all 0.3s var(--ease); min-height: 44px; display: inline-flex; align-items: center;
}
.bb-menu__tab.is-active { background: var(--espresso); color: var(--cream-text); border-color: var(--espresso); }
.bb-menu__layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.bb-menu__cats { position: sticky; top: calc(var(--header-h) + 30px); display: flex; flex-direction: column; gap: 4px; }
.bb-menu__cats a {
  padding: 10px 0; font-size: 14px; color: rgba(30,23,18,0.5); border-left: 2px solid transparent; padding-left: 14px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.bb-menu__cats a.is-active { color: var(--terracotta); border-left-color: var(--terracotta); font-weight: 700; }
.bb-menu__content { display: flex; flex-direction: column; gap: clamp(46px, 6vw, 70px); }
.bb-menu__group-title {
  font-family: var(--font-serif); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 6px;
}
.bb-menu__group-note { font-size: 13px; color: rgba(30,23,18,0.5); margin-bottom: 18px; font-style: italic; font-family: var(--font-serif); }
.bb-menu__row {
  display: flex; align-items: baseline; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line-dark);
}
.bb-menu__row-name { font-size: 16px; font-weight: 600; }
.bb-menu__row-vol { font-size: 12px; color: rgba(30,23,18,0.45); margin-left: 6px; font-weight: 400; }
.bb-menu__row-dots { flex: 1; border-bottom: 1px dotted rgba(30,23,18,0.28); transform: translateY(-5px); min-width: 16px; }
.bb-menu__row-price { font-size: 15px; font-weight: 700; color: var(--terracotta); white-space: nowrap; }
.bb-menu__more { margin-top: 10px; align-self: flex-start; }
.bb-menu__hidden-group { display: none; }
.bb-menu__hidden-group.is-shown { display: flex; flex-direction: column; gap: clamp(46px, 6vw, 70px); }

/* ==========================================================================
   RESERVATION CTA
   ========================================================================== */
.bb-cta {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  overflow: hidden; background: var(--wine);
}
.bb-cta__media { position: absolute; inset: 0; }
.bb-cta__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.bb-cta__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(94,31,34,0.94), rgba(30,23,18,0.75)); }
.bb-cta__content { position: relative; z-index: 2; padding: clamp(60px, 8vw, 0) var(--pad); width: 100%; }
.bb-cta__title {
  font-family: var(--font-serif); font-weight: 700; color: var(--cream-text);
  font-size: clamp(40px, 7vw, 92px); line-height: 1.04; max-width: 14ch;
}
.bb-cta__row { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.bb-cta .bb-btn--solid { padding: 18px 38px; font-size: 14px; }
.bb-cta__hint { font-size: 13px; color: rgba(244,237,225,0.6); }

/* ==========================================================================
   CONTACTS
   ========================================================================== */
.bb-contact {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--espresso);
}
.bb-contact__media { position: absolute; inset: 0; }
.bb-contact__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.bb-contact__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,15,11,0.92) 10%, rgba(20,15,11,0.2) 55%, rgba(20,15,11,0.5) 100%); }
.bb-contact__content { position: relative; z-index: 2; width: 100%; padding: clamp(60px, 10vw, 100px) var(--pad) clamp(50px, 7vw, 80px); }
.bb-contact__title {
  font-family: var(--font-serif); font-weight: 700; color: var(--cream-text);
  font-size: clamp(36px, 11.5vw, 158px); line-height: 0.9; margin-bottom: 28px; overflow-wrap: break-word;
}
.bb-contact__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-end; }
.bb-contact__info { display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: rgba(244,237,225,0.82); line-height: 1.6; }
.bb-contact__info strong { color: var(--cream-text); }
.bb-contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bb-footer { background: var(--charcoal); color: rgba(244,237,225,0.7); padding: clamp(50px, 7vw, 80px) var(--pad) clamp(24px, 4vw, 36px); overflow: hidden; }
.bb-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(30px, 5vw, 50px); }
.bb-footer__word {
  font-family: var(--font-serif); font-weight: 700; color: var(--cream-text);
  font-size: clamp(34px, 9vw, 120px); line-height: 0.9; letter-spacing: -0.01em;
  margin: 0 0 clamp(30px,5vw,60px) calc(var(--pad) * -0.02);
  max-width: 100%;
  overflow-wrap: break-word;
}
.bb-footer__cols { display: flex; gap: clamp(40px, 8vw, 100px); flex-wrap: wrap; }
.bb-footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.bb-footer__col a { color: rgba(244,237,225,0.68); transition: color 0.3s var(--ease); }
.bb-footer__col a:hover { color: var(--cream-text); }
.bb-footer__col-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,237,225,0.4); margin-bottom: 4px; }
.bb-footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--line-light);
  font-size: 12px; color: rgba(244,237,225,0.4);
}

/* ==========================================================================
   CUSTOM CURSOR (desktop only)
   ========================================================================== */
.bb-cursor {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px; border-radius: 50%;
  background: var(--terracotta-bright); pointer-events: none; z-index: 999;
  transform: translate(-50%, -50%); mix-blend-mode: difference;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s var(--ease);
  opacity: 0;
}
.bb-cursor.is-active { opacity: 1; }
.bb-cursor.is-view { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.bb-cursor__label {
  position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: #fff; pointer-events: none; z-index: 1000;
  opacity: 0; transition: opacity 0.25s var(--ease); mix-blend-mode: difference;
}
.bb-cursor__label.is-active { opacity: 1; }

/* ==========================================================================
   REVEAL / MOTION utilities
   ========================================================================== */
[data-reveal-up] { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal-up].is-in { opacity: 1; transform: translateY(0); }
[data-reveal-up].delay-1 { transition-delay: 0.08s; }
[data-reveal-up].delay-2 { transition-delay: 0.16s; }
[data-reveal-up].delay-3 { transition-delay: 0.24s; }
[data-reveal-scale] { opacity: 0; transform: scale(0.96); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal-scale].is-in { opacity: 1; transform: scale(1); }
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .bb-hero__title { clip-path: inset(0 0% 0 0) !important; }
  [data-reveal-up], [data-reveal-scale] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .bb-intro { grid-template-columns: 1fr; gap: 24px; }
  .bb-signature { grid-template-columns: 1fr; }
  .bb-signature__media { aspect-ratio: 16/10; }
  .bb-menu__layout { grid-template-columns: 1fr; }
  .bb-menu__cats {
    position: sticky; top: var(--header-h); z-index: 20; background: var(--ivory);
    flex-direction: row; overflow-x: auto; gap: 6px; padding: 12px 0; margin: 0 calc(var(--pad) * -1) 10px;
    padding-left: var(--pad); padding-right: var(--pad);
    border-bottom: 1px solid var(--line-dark);
    -webkit-overflow-scrolling: touch;
  }
  .bb-menu__cats a { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; padding: 6px 4px; }
  .bb-menu__cats a.is-active { border-left-color: transparent; border-bottom-color: var(--terracotta); }
}

@media (max-width: 960px) {
  .bb-header__nav, .bb-header__phone, .bb-header .bb-btn { display: none; }
  .bb-burger { display: flex; }
  .bb-cursor, .bb-cursor__label { display: none; }
  .bb-showcase__grid { grid-template-columns: 1fr; }
  .bb-shot-1, .bb-shot-2, .bb-shot-3, .bb-shot-4, .bb-shot-5, .bb-shot-6, .bb-shot-7, .bb-shot-8 {
    grid-column: 1 / -1; margin-top: 0 !important; aspect-ratio: 4/3;
  }
  .bb-shot-4 { aspect-ratio: auto; padding: 40px clamp(20px, 6vw, 40px); }
  .bb-atmosphere__grid { grid-template-columns: 1fr; }
  .bb-atm-1, .bb-atm-2 { grid-column: 1 / -1; margin-top: 0 !important; aspect-ratio: 4/3; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .bb-hero__content { padding-bottom: 88px; }
  .bb-hero__ctas { flex-direction: column; align-items: stretch; }
  .bb-hero__ctas .bb-btn { width: 100%; }
  .bb-hero__scroll { display: none; }
  .bb-menu__head { flex-direction: column; align-items: flex-start; }
  .bb-menu__thumb { display: none; }
  .bb-cta__row { flex-direction: column; align-items: flex-start; }
  .bb-contact__grid { flex-direction: column; align-items: flex-start; }
  .bb-contact__actions .bb-btn { flex: 1; }
  .bb-footer__top { flex-direction: column; }
}

/* Sticky mobile CTA bar */
.bb-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none;
  padding: 10px 14px calc(env(safe-area-inset-bottom) + 10px);
  background: rgba(30, 23, 18, 0.94);
  backdrop-filter: blur(8px);
  gap: 10px;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.bb-sticky-cta.is-visible { transform: translateY(0); }
.bb-sticky-cta a {
  flex: 1; text-align: center; padding: 13px 10px; border-radius: 999px; font-size: 13px; font-weight: 700;
  min-height: 44px; display: flex; align-items: center; justify-content: center;
}
.bb-sticky-cta__menu { background: rgba(244,237,225,0.12); color: var(--cream-text); }
.bb-sticky-cta__book { background: var(--terracotta); color: var(--cream-text); }
@media (max-width: 960px) { .bb-sticky-cta { display: flex; } }

.bb-social {
  display: flex; gap: 18px; margin-top: 8px;
}
.bb-social a { font-size: 13px; color: rgba(244,237,225,0.6); border-bottom: 1px solid rgba(244,237,225,0.25); padding-bottom: 2px; }
