/* ==================================================
   GLOBAL VARIABLES
================================================== */
:root {
  --bb-black: #0C0C0C;
  --bb-red: #9E1B1B;
  --bb-red-bright: #D32828;
  --bb-cream: #F5EEDC;
  --bb-white: #FAFAF5;
  --bb-panel: #141414;
  --bb-border: rgba(245, 238, 220, 0.08);
  --bb-container: 1500px;
}

/* ==================================================
   BASE / RESET
================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bb-black);
  color: var(--bb-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.bb-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ==================================================
   TYPOGRAPHY
================================================== */
.section-kicker,
.bb-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,238,220,.74);
}
.section-kicker span,
.section-kicker strong,
.bb-kicker span,
.bb-kicker strong {
  color: var(--bb-red-bright);
}

/* ==================================================
   LAYOUT UTILITIES
================================================== */
.container,
.bb-container {
  /* Larghezza massima riusabile: cambia qui il respiro laterale di tutte le sezioni. */
  width: min(100% - 48px, var(--bb-container));
  margin-inline: auto;
}
.section,
.bb-section {
  position: relative;
}
.section-dark,
.bb-section--dark {
  background: #121212;
  border-block: 1px solid var(--bb-border);
}
.section-panel,
.bb-section--panel {
  background: var(--bb-panel);
}
.section-media,
.bb-section--media {
  overflow: hidden;
}
.grid,
.bb-grid {
  display: grid;
}
.grid-5,
.bb-grid--5 {
  /* Griglia larga per liste a 5 elementi, usata nelle categorie menu. */
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.grid-4,
.bb-grid--4 {
  /* Griglia larga per liste a 4 elementi, usata nelle specialita. */
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stack,
.bb-stack {
  display: flex;
  flex-direction: column;
}
.content-narrow,
.bb-content-narrow {
  /* Larghezza massima per testi editoriali, evita righe troppo lunghe. */
  max-width: 36rem;
}
.media-cover,
.bb-media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay,
.bb-overlay {
  position: absolute;
  inset: 0;
}

/* ==================================================
   BUTTONS
================================================== */
.btn,
.bb-header-cta,
.bb-btn {
  /* Stile base dei pulsanti: altezza minima, padding, peso e tracking. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 4px;
  padding: 15px 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn-primary,
.bb-header-cta,
.bb-btn--red {
  background: var(--bb-red);
  color: var(--bb-white);
  box-shadow: 0 0 24px rgba(158,27,27,.25);
}
.btn-primary:hover,
.bb-btn--red:hover,
.bb-header-cta:hover {
  background: #b72727;
  transform: translateY(-1px);
}
.btn-outline,
.bb-btn--outline {
  border: 1px solid rgba(245,238,220,.22);
  background: rgba(12,12,12,.45);
  color: var(--bb-white);
  backdrop-filter: blur(12px);
}
.btn-outline:hover,
.bb-btn--outline:hover {
  border-color: rgba(245,238,220,.48);
  transform: translateY(-1px);
}

/* ==================================================
   SECTIONS
================================================== */

/* Header: barra fissa, menu desktop e compensazione admin bar WordPress. */
.bb-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  overflow: visible;
  background: rgba(5,5,5,.88);
  border-bottom: 1px solid var(--bb-border);
  backdrop-filter: blur(18px);
}
body.admin-bar .bb-header { top: 32px; }

/* Header layout: altezza, spaziatura interna, logo e navigazione. */
.bb-header__inner {
  /* Altezza desktop dell'header: influenza anche il padding superiore della hero. */
  width: min(100% - 48px, var(--bb-container));
  height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.bb-logo {
  /* Impostazioni del logo immagine usato in header e footer. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bb-logo__image {
  /* Dimensione logo header: modifica max-height per scalarlo globalmente. */
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 66px;
  object-fit: contain;
}
.bb-logo--footer {
  align-items: flex-start;
  justify-content: flex-start;
}
.bb-logo--footer .bb-logo__image {
  /* Dimensione logo footer, leggermente piu grande per bilanciare la colonna brand. */
  max-width: 170px;
  max-height: 76px;
}
.bb-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}
.bb-nav__list {
  /* Spaziatura tra le voci del menu WordPress desktop. */
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.bb-nav li {
  margin: 0;
  padding: 0;
}
.bb-nav a {
  /* Tipografia delle voci menu: dimensione, peso e spazio tra lettere. */
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--bb-white);
}
.bb-nav a:hover,
.bb-nav .current-menu-item > a,
.bb-nav .current_page_item > a,
.bb-nav .current-menu-ancestor > a {
  color: var(--bb-red-bright);
}
.bb-nav .current-menu-item > a::after,
.bb-nav .current_page_item > a::after,
.bb-nav .current-menu-ancestor > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -34px;
  width: 44px;
  height: 2px;
  background: var(--bb-red-bright);
}
.bb-menu-toggle {
  /* Dimensione e tipografia dell'icona hamburger mobile. */
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(245,238,220,.15);
  background: transparent;
  color: var(--bb-white);
  font-size: 22px;
}
.bb-mobile-panel {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.bb-mobile-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==================================================
   HOMEPAGE - HERO
================================================== */

/* Hero: apertura homepage con immagine, titolo e pulsanti principali. */
.bb-hero {
  /* Spazio superiore pari all'header fisso desktop. */
  overflow: hidden;
  padding-top: 96px;
  background: #080606;
}
.bb-hero__texture {
  position: absolute;
  inset: 0;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 7px 7px;
}
.bb-hero__inner {
  /* Layout desktop della hero: testo a sinistra e immagine assoluta a destra. */
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  min-height: 690px;
}
.bb-hero__content {
  /* Spazio verticale del blocco testo hero. */
  position: relative;
  z-index: 4;
  padding-block: 80px;
}
.bb-hero__title {
  /* Titolo hero: font brand, peso, interlinea e spazio tra caratteri. */
  margin: 24px 0 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 700;
  line-height: .9;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: #F1EDE4;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.55));
}
.bb-hero__title span {
  /* Dimensione responsive delle prime righe del titolo hero. */
  display: block;
  font-size: clamp(4rem, 7.4vw, 7.7rem);
}
.bb-hero__title span:last-child {
  /* Dimensione e colore della riga finale del titolo hero. */
  color: #A92323;
  font-size: clamp(3.45rem, 6.25vw, 6.55rem);
}
.bb-hero__text {
  /* Testo descrittivo hero: larghezza, margine e interlinea leggibile. */
  max-width: 28rem;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(250,250,245,.88);
}
.bb-signature {
  /* Firma decorativa sotto il testo hero. */
  margin: 20px 0 0;
  font-family: 'Brush Script MT', cursive;
  font-size: 40px;
  font-style: italic;
  line-height: 1;
  color: var(--bb-red-bright);
}
.bb-actions {
  /* Spaziatura tra i pulsanti principali della hero. */
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.bb-hero__media {
  /* Dimensione dell'immagine hero su desktop. */
  position: absolute;
  top: 96px;
  right: 0;
  bottom: 0;
  width: 67%;
  min-height: 440px;
  overflow: hidden;
}
.bb-hero__media img {
  position: absolute;
  inset: 0;
  object-position: center;
  opacity: .93;
  filter: contrast(1.08) saturate(.93);
}
.bb-hero__media::before,
.bb-hero__media::after,
.bb-hero__glow,
.bb-hero__fog {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bb-hero__media::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(12,12,12,.88), rgba(12,12,12,.18) 45%, transparent), linear-gradient(0deg, rgba(12,12,12,.88), transparent 35%, rgba(12,12,12,.3));
}
.bb-hero__glow {
  z-index: 2;
  background: radial-gradient(circle at 62% 42%, rgba(255,115,31,.22), transparent 18%), radial-gradient(circle at 82% 22%, rgba(158,27,27,.20), transparent 24%);
}
.bb-hero__fog {
  z-index: 3;
  opacity: .22;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), transparent 12%), radial-gradient(circle at 70% 45%, rgba(255,255,255,.10), transparent 18%);
  filter: blur(22px);
}

/* ==================================================
   HOMEPAGE - CATEGORY CARDS
================================================== */

/* Categorie menu: griglia di card riusabile per pagine elenco. */
.bb-categories {
  /* Padding verticale della fascia categorie. */
  padding-block: 32px;
}
.bb-categories__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* ==================================================
   CARDS
================================================== */

/* Card riusabile: immagine full-cover, overlay e contenuto in basso. */
.card,
.bb-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #090909;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.card:focus-visible,
.bb-card:focus-visible {
  outline: 2px solid var(--bb-red-bright);
  outline-offset: 4px;
}
.category-card,
.bb-category-card {
  /* Altezza minima delle card categoria. */
  min-height: 390px;
}
.specialty-card,
.bb-specialty-card {
  /* Altezza minima delle card specialita. */
  min-height: 255px;
}
.card-image,
.bb-card img {
  position: absolute;
  inset: 0;
  opacity: .9;
  transition: transform .7s ease;
}
.card:hover .card-image,
.bb-card:hover img { transform: scale(1.05); }
.card-overlay,
.bb-card__overlay {
  background: linear-gradient(0deg, #050505, rgba(5,5,5,.52) 45%, transparent);
}
.bb-category-card .bb-card__overlay {
  background: linear-gradient(0deg, rgba(5,5,5,.92), rgba(5,5,5,.58) 34%, rgba(5,5,5,.18) 58%, transparent);
}
.card-content,
.bb-card__body {
  /* Spazio interno del contenuto sovrapposto alle card. */
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 28px;
}
.category-card__content {
  left: 24px;
  right: 24px;
  bottom: 26px;
  max-width: 82%;
  padding: 0;
}
.bb-card__icon {
  margin-bottom: 16px;
  color: var(--bb-red);
}
.bb-category-card .bb-card__icon {
  margin-bottom: 10px;
}
.card h2,
.bb-card h2,
.card h3,
.bb-card h3 {
  /* Titoli card: font brand, dimensione, peso e tracking. */
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--bb-white);
}
.card h3,
.bb-card h3 {
  /* Variante titolo card piu piccola per prodotti/specialita. */
  font-size: 24px;
  letter-spacing: .015em;
}
.card p,
.bb-card p {
  /* Testo descrittivo card: larghezza e interlinea. */
  max-width: 15rem;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,238,220,.78);
}
.bb-category-card p {
  max-width: 13rem;
  margin-top: 7px;
  line-height: 1.42;
}
.bb-card__cta {
  /* Link testuale nelle card: piccolo, bold e con tracking. */
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bb-red-bright);
}
.bb-category-card .bb-card__cta {
  margin-top: 13px;
}

/* ==================================================
   HOMEPAGE - ATMOSPHERE
================================================== */

/* Esperienza: banda fotografica con testo sovrapposto. */
.bb-experience {
  /* Altezza minima della sezione editoriale con immagini sullo sfondo. */
  min-height: 520px;
  border-bottom: 1px solid var(--bb-border);
}
.bb-experience__bg {
  /* Composizione a tre colonne delle immagini di sfondo desktop. */
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: .24fr .52fr .24fr;
}
.bb-experience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
}
.bb-experience__bg img:nth-child(2) {
  object-position: center top;
  opacity: .96;
}
.bb-experience__shade {
  background: linear-gradient(90deg, rgba(12,12,12,.92) 0%, rgba(12,12,12,.72) 28%, rgba(12,12,12,.18) 52%, rgba(12,12,12,.56) 100%);
}
.bb-experience__inner {
  /* Spazio verticale e allineamento del contenuto nella sezione esperienza. */
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-block: 76px;
}
.bb-experience__content {
  /* Distanza verticale tra kicker, titolo, testo e CTA. */
  max-width: 31rem;
  gap: 20px;
}
.bb-experience h2 {
  /* Titolo grande sezione esperienza: font, dimensione responsive, interlinea e tracking. */
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 700;
  font-size: clamp(2.85rem, 5.2vw, 4.9rem);
  line-height: .96;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.bb-experience h2 span {
  display: block;
  font-style: italic;
  color: var(--bb-red-bright);
}
.bb-experience p {
  /* Paragrafo sezione esperienza: larghezza massima e interlinea. */
  max-width: 34rem;
  margin: 0;
  line-height: 1.6;
  color: rgba(245,238,220,.78);
}
.bb-experience .bb-btn { width: fit-content; }

/* ==================================================
   HOMEPAGE - SPECIALTIES
================================================== */

/* Specialita: sezione con intestazione e griglia prodotti. */
.bb-specialties {
  /* Padding verticale della sezione specialita. */
  padding-block: 56px 64px;
}
.section-header,
.bb-section-head {
  /* Spazio e allineamento tra titolo sezione e link laterale. */
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-title,
.bb-section-title {
  /* Distanza tra icona e titolo delle sezioni. */
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-title span,
.bb-section-title span {
  /* Dimensione dell'icona decorativa nei titoli sezione. */
  color: var(--bb-red-bright);
  font-size: 30px;
}
.section-title h2,
.bb-section-title h2 {
  /* Titolo sezione standard: dimensione responsive e tracking marcato. */
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-header > a,
.bb-section-head > a {
  /* Link di intestazione sezione: testo piccolo, bold e spaziato. */
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bb-red-bright);
}

/* CTA / Reservation: banda riutilizzabile per prenotazioni e azioni finali. */
.bb-booking {
  /* Padding verticale della CTA prenotazione. */
  border-block: 1px solid var(--bb-border);
  background: var(--bb-black);
  padding-block: 48px;
}
.bb-booking > img {
  /* Larghezza immagine di sfondo prenotazione su desktop. */
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  opacity: .4;
}
.bb-booking__shade {
  background: linear-gradient(90deg, var(--bb-black), rgba(12,12,12,.9), rgba(12,12,12,.25));
}
.bb-booking__inner {
  position: relative;
}
.bb-booking h2 {
  /* Titolo CTA prenotazione: font brand, dimensione responsive e tracking. */
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bb-booking h2 span { color: var(--bb-red-bright); }
.bb-booking p {
  /* Testo breve CTA: margini verticali e dimensione. */
  margin: 18px 0 28px;
  font-size: 20px;
  color: rgba(245,238,220,.78);
}

/* ==================================================
   CONTACT PAGE / CONTACT FORM
================================================== */
.bb-contact-page {
  background: var(--bb-black);
  color: var(--bb-white);
}
.bb-contact-hero {
  min-height: 680px;
  padding-top: 96px;
  background: #080606;
}
.bb-contact-hero__image {
  position: absolute;
  inset: 0;
  object-position: center;
  filter: contrast(1.04) saturate(1.03);
}
.bb-contact-hero__shade {
  background: linear-gradient(90deg, rgba(5,5,5,.76), rgba(5,5,5,.55) 48%, rgba(5,5,5,.34));
}
.bb-contact-hero__inner {
  position: relative;
  min-height: 584px;
  display: flex;
  align-items: center;
}
.bb-contact-hero__content {
  max-width: 42rem;
}
.bb-contact-hero h1,
.bb-contact-form-section h2,
.bb-contact-final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 700;
  line-height: .94;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-contact-hero h1 {
  margin-top: 22px;
  font-size: clamp(4rem, 8vw, 8rem);
  color: #F1EDE4;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.55));
}
.bb-contact-hero p {
  max-width: 34rem;
  margin: 24px 0 0;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.58;
  color: rgba(250,250,245,.9);
}
.bb-contact-info {
  padding-block: 42px;
}
.bb-contact-info__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.bb-contact-card {
  min-height: 245px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #171717, #0d0d0d);
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.12), 0 20px 50px rgba(0,0,0,.24);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.bb-contact-card:hover {
  border-color: rgba(211,40,40,.58);
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.20), 0 22px 55px rgba(0,0,0,.30);
  transform: translateY(-1px);
}
.bb-contact-card__content {
  position: relative;
  inset: auto;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 28px;
}
.bb-contact-card h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-contact-card p,
.bb-contact-card address {
  margin: 0;
  color: rgba(245,238,220,.78);
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}
.bb-contact-card .bb-card__cta {
  margin-top: auto;
  padding-top: 12px;
}
.bb-contact-card p span {
  display: block;
  color: rgba(211,40,40,.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bb-contact-map {
  padding-block: 58px 66px;
  background: #101010;
}
.bb-contact-map .section-header {
  align-items: flex-start;
  margin-bottom: 28px;
}
.bb-contact-map .section-header p {
  max-width: 25rem;
  margin: 0;
  color: rgba(245,238,220,.72);
  line-height: 1.55;
  font-size: 15px;
}
.bb-contact-map__frame {
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--bb-border);
  background: #090909;
  box-shadow: 0 20px 60px rgba(0,0,0,.34);
}
.bb-contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.18) contrast(1.02);
}
.bb-contact-form-section {
  padding-block: 78px;
}
.bb-contact-form-section__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}
.bb-contact-form-section__intro {
  gap: 22px;
  max-width: 34rem;
}
.bb-contact-form-section h2 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}
.bb-contact-form-section h2 span {
  display: block;
  color: var(--bb-red-bright);
}
.bb-contact-form-section__intro p {
  margin: 0;
  color: rgba(245,238,220,.76);
  line-height: 1.7;
}
.bb-contact-form-section__form {
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #151515, #0b0b0b);
  padding: clamp(28px, 4.5vw, 48px);
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.12), 0 18px 48px rgba(0,0,0,.26);
}
.bb-contact-form {
  display: grid;
  gap: 18px;
}
.bb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.bb-form-field {
  display: grid;
  gap: 8px;
}
.bb-form-field label {
  color: rgba(245,238,220,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bb-contact-form input,
.bb-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(245,238,220,.16);
  border-radius: 4px;
  background: rgba(5,5,5,.72);
  color: var(--bb-white);
  font: inherit;
  min-height: 50px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.bb-contact-form textarea {
  min-height: 155px;
  resize: vertical;
}
.bb-contact-form input:focus,
.bb-contact-form textarea:focus {
  border-color: rgba(211,40,40,.78);
  background: rgba(10,10,10,.94);
  box-shadow: 0 0 0 3px rgba(158,27,27,.16);
}
.bb-form-actions {
  margin-top: 4px;
}
.bb-form-privacy {
  gap: 0;
  color: rgba(245,238,220,.72);
  font-size: 13px;
  line-height: 1.55;
}
.bb-form-privacy .wpcf7-form-control-wrap {
  display: block;
}
.bb-form-privacy .wpcf7-list-item {
  display: block;
  margin: 0;
}
.bb-form-privacy label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  color: rgba(245,238,220,.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}
.bb-contact-form .bb-form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--bb-red-bright);
}
.bb-form-privacy a {
  color: var(--bb-red-bright);
  font-weight: 700;
}
.bb-contact-form input[type="submit"] {
  width: auto;
  min-height: 50px;
  border: 0;
  background: var(--bb-red);
  box-shadow: 0 0 24px rgba(158,27,27,.25);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bb-contact-form input[type="submit"]:hover {
  background: #b72727;
}
.bb-contact-form .wpcf7-not-valid-tip,
.bb-contact-form .wpcf7-response-output {
  color: rgba(245,238,220,.82);
  font-size: 13px;
}
.bb-contact-form .wpcf7-response-output {
  margin: 18px 0 0;
  border-color: rgba(211,40,40,.56);
}
.bb-contact-final-cta {
  overflow: hidden;
  border-block: 1px solid var(--bb-border);
  background:
    linear-gradient(90deg, rgba(8,8,8,.95), rgba(8,8,8,.78) 52%, rgba(8,8,8,.92)),
    url('../images/contatti/hero/buffalo-bill-contatti-hero.webp') center/cover;
  padding-block: 82px;
}
.bb-contact-final-cta__shade {
  opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 7px 7px;
}
.bb-contact-final-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 250px;
}
.bb-contact-final-cta h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.bb-contact-final-cta p {
  max-width: 42rem;
  margin: 18px 0 30px;
  color: rgba(245,238,220,.78);
  font-size: 20px;
  line-height: 1.55;
}

/* Footer: colonne informative e link legali. */
.bb-footer {
  /* Padding complessivo del footer. */
  background: linear-gradient(180deg, #0a0a0a, #070707);
  border-top: 1px solid rgba(245,238,220,.08);
  padding-block: 54px 24px;
}
.bb-footer__grid {
  /* Griglia colonne footer e distanza tra blocchi. */
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.25fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--bb-border);
}
.bb-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 12px;
}
.bb-footer__panel {
  padding-top: 8px;
  min-height: 100%;
}
.bb-footer p {
  /* Testo descrittivo footer: larghezza, dimensione e interlinea. */
  max-width: 20rem;
  margin: 22px 0 0;
  color: rgba(245,238,220,.66);
  line-height: 1.7;
  font-size: 14px;
}
.bb-footer__brand p,
.bb-footer__cta p {
  color: rgba(245,238,220,.66);
}
.bb-footer h3 {
  /* Titoletti footer: piccoli, bold e molto spaziati. */
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,250,245,.92);
}
.bb-footer ul {
  /* Liste footer: reset lista, gap tra righe e dimensione testo. */
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(245,238,220,.62);
  font-size: 14px;
}
.bb-footer__address {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  color: rgba(245,238,220,.78);
  font-style: normal;
  line-height: 1.6;
}
.bb-footer__links {
  gap: 10px;
}
.bb-footer__links li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: baseline;
  color: rgba(245,238,220,.7);
}
.bb-footer__links li > span {
  color: rgba(211,40,40,.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bb-footer__links a,
.bb-footer__bottom a {
  color: inherit;
  transition: color .25s ease;
}
.bb-footer__links a:hover,
.bb-footer__bottom a:hover {
  color: var(--bb-red-bright);
}
.bb-hours {
  gap: 11px;
}
.bb-hours li {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(245,238,220,.075);
}
.bb-hours li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.bb-hours span {
  color: rgba(245,238,220,.6);
  font-size: 13px;
}
.bb-hours strong {
  color: rgba(250,250,245,.88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.bb-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 13px 20px;
  border: 1px solid rgba(245,238,220,.18);
  background: transparent;
  color: var(--bb-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.bb-footer__button:hover {
  transform: translateY(-1px);
  border-color: var(--bb-red-bright);
  background: rgba(158,27,27,.18);
}
.bb-social {
  /* Link social footer: pulsanti icona con dimensioni stabili. */
  margin-top: 24px;
  display: flex;
  gap: 10px;
}
.bb-social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245,238,220,.14);
  background: rgba(255,255,255,.025);
  color: rgba(245,238,220,.82);
  transition: transform .25s ease, color .25s ease, border-color .25s ease, background .25s ease;
}
.bb-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(211,40,40,.72);
  background: rgba(158,27,27,.16);
  color: var(--bb-red-bright);
}
.bb-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.bb-footer__bottom {
  /* Barra legale footer: spaziatura tra link e padding superiore. */
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 24px;
  color: rgba(245,238,220,.42);
  font-size: 12px;
}

/* Template generico: fallback per pagine senza template dedicato. */
.bb-generic-page {
  /* Spazio superiore per pagine generiche sotto header fisso. */
  padding-top: 140px;
  min-height: 80vh;
}
.bb-fallback-content {
  /* Padding verticale del contenuto fallback. */
  padding-block: 80px;
}

/* ==================================================
   RESPONSIVE
================================================== */

/* Responsive tablet: menu mobile, hero impilata e griglie ridotte. */
@media (max-width: 1280px) {
  /* Nasconde navigazione desktop e CTA quando lo spazio orizzontale non basta. */
  .bb-nav, .bb-header-cta { display: none; }
  /* Mostra il pulsante hamburger mobile. */
  .bb-menu-toggle { display: grid; }
  /* Riduce l'altezza dell'header su tablet/mobile. */
  .bb-header__inner { height: 82px; }
  .bb-mobile-panel {
    /* Pannello menu mobile: posizione, padding e animazione di apertura. */
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(5,5,5,.96);
    border-bottom: 1px solid var(--bb-border);
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s ease, visibility .2s ease;
  }
  /* Offset del pannello mobile quando e visibile la admin bar WordPress. */
  body.admin-bar .bb-mobile-panel { top: 114px; }
  body.bb-menu-open .bb-mobile-panel {
    /* Stato aperto del menu mobile. */
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .bb-mobile-panel li {
    /* Reset spaziature delle voci generate da wp_nav_menu. */
    margin: 0;
    padding: 0;
  }
  .bb-mobile-panel a {
    /* Tipografia e spaziatura delle voci menu mobile. */
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--bb-border);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  /* Riduce il padding superiore della hero in base all'header mobile. */
  .bb-hero { padding-top: 82px; }
  /* Impila la hero su una sola colonna. */
  .bb-hero__inner { grid-template-columns: 1fr; min-height: auto; padding-top: 0; }
  .bb-hero__media {
    /* Immagine hero sopra al testo su tablet/mobile. */
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100% + 48px);
    margin-inline: -24px;
    min-height: 460px;
    order: -1;
  }
  /* Overlay hero mobile: sfuma l'immagine verso il contenuto. */
  .bb-hero__media::before { background: linear-gradient(0deg, var(--bb-black), transparent 44%, rgba(12,12,12,.25)); }
  /* Padding verticale del contenuto hero in layout mobile/tablet. */
  .bb-hero__content { padding-block: 36px 56px; }
  /* Griglie ridotte a due colonne su tablet. */
  .grid-5, .bb-grid--5, .grid-4, .bb-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .bb-categories__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .bb-category-card { min-height: 360px; }
  .bb-contact-info__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bb-contact-form-section__grid { grid-template-columns: 1fr; }
  /* Footer ridotto a due colonne su tablet. */
  .bb-footer__grid { grid-template-columns: 1fr 1fr; }
  .bb-footer__brand { padding-right: 0; }
}

/* Responsive WordPress admin bar mobile. */
@media (max-width: 782px) {
  /* Altezza admin bar WordPress su mobile. */
  body.admin-bar .bb-header { top: 46px; }
  body.admin-bar .bb-mobile-panel { top: 128px; }
}

/* Responsive mobile: layout a colonna singola e spaziature compatte. */
@media (max-width: 720px) {
  /* Riduce il margine laterale dei contenitori su schermi piccoli. */
  .container, .bb-container, .bb-header__inner { width: min(100% - 32px, var(--bb-container)); }
  /* Scala il logo nel menu mobile. */
  .bb-logo__image { max-width: 122px; max-height: 54px; }
  /* Altezza immagine hero su mobile. */
  .bb-hero__media { min-height: 360px; }
  /* Kicker mobile: dimensione e tracking ridotti per evitare overflow. */
  .bb-kicker { font-size: 10px; gap: 8px; letter-spacing: .18em; flex-wrap: wrap; }
  /* Titolo hero mobile: dimensioni dedicate per non uscire dallo schermo. */
  .bb-hero__title span { font-size: clamp(3.5rem, 16vw, 5rem); }
  .bb-hero__title span:last-child { font-size: clamp(3rem, 13.5vw, 4.35rem); }
  /* Pulsanti full width su mobile. */
  .bb-actions, .btn, .bb-btn { width: 100%; }
  .btn, .bb-btn { padding-inline: 18px; }
  /* Tutte le griglie principali passano a una colonna. */
  .grid-5, .bb-grid--5, .grid-4, .bb-grid--4, .bb-footer__grid { grid-template-columns: 1fr; }
  .bb-categories__grid { grid-template-columns: 1fr; gap: 18px; }
  .bb-footer__panel { padding-top: 0; }
  .bb-footer { padding-block: 44px 24px; }
  .bb-footer__grid { gap: 30px; padding-bottom: 34px; }
  .bb-footer__links li,
  .bb-hours li { grid-template-columns: 1fr; gap: 5px; }
  .bb-footer__bottom { align-items: flex-start; }
  /* Altezza card categoria mobile. */
  .bb-category-card { min-height: 320px; }
  .category-card__content {
    left: 22px;
    right: 22px;
    bottom: 24px;
    max-width: 84%;
  }
  /* Sezione esperienza mobile: usa una sola immagine di sfondo. */
  .bb-experience {
    min-height: 620px;
  }
  .bb-experience__bg { grid-template-columns: 1fr; }
  .bb-experience__bg img:first-child, .bb-experience__bg img:last-child { display: none; }
  .bb-experience__bg img:nth-child(2) { object-position: center top; }
  .bb-experience__inner {
    min-height: 620px;
    align-items: flex-end;
    padding-block: 260px 48px;
  }
  .bb-experience__content {
    max-width: 28rem;
    gap: 16px;
  }
  .bb-experience h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }
  /* Overlay piu uniforme per migliorare la leggibilita su mobile. */
  .bb-experience__shade { background: linear-gradient(180deg, rgba(12,12,12,.12) 0%, rgba(12,12,12,.26) 42%, rgba(12,12,12,.88) 100%); }
  /* Header sezione in colonna quando manca spazio. */
  .section-header, .bb-section-head { align-items: flex-start; flex-direction: column; }
  /* Immagine booking full width e piu tenue su mobile. */
  .bb-booking > img { width: 100%; opacity: .24; }
  .bb-booking__shade { background: rgba(12,12,12,.78); }
  /* Titolo booking allineato in alto quando va su piu righe. */
  .bb-booking h2 { align-items: flex-start; }
  /* Link legali footer in colonna su mobile. */
  .bb-footer__bottom { flex-direction: column; gap: 12px; }
  .bb-contact-hero {
    min-height: 650px;
    padding-top: 82px;
    text-align: center;
  }
  .bb-contact-hero__shade {
    background: linear-gradient(180deg, rgba(5,5,5,.42), rgba(5,5,5,.72));
  }
  .bb-contact-hero__inner {
    min-height: 568px;
    align-items: center;
    justify-content: center;
  }
  .bb-contact-hero__content {
    align-items: center;
  }
  .bb-contact-hero p {
    font-size: 1.08rem;
  }
  .bb-contact-info {
    padding-block: 28px;
  }
  .bb-contact-info__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .bb-contact-card,
  .bb-contact-card__content {
    min-height: 220px;
  }
  .bb-contact-map {
    padding-block: 48px;
  }
  .bb-contact-map .section-header {
    margin-bottom: 24px;
  }
  .bb-contact-map__frame {
    height: 350px;
  }
  .bb-contact-form-section {
    padding-block: 52px;
  }
  .bb-form-grid {
    grid-template-columns: 1fr;
  }
  .bb-contact-form input[type="submit"] {
    width: 100%;
  }
  .bb-contact-final-cta {
    padding-block: 60px;
  }
  .bb-contact-final-cta__inner {
    min-height: 220px;
  }
.bb-contact-final-cta p {
  font-size: 18px;
}
}

/* ==================================================
   RESTAURANT PAGE
================================================== */
.bb-restaurant-page {
  background: var(--bb-black);
  color: var(--bb-white);
}
.bb-restaurant-hero {
  min-height: 700px;
  padding-top: 96px;
  background: #080606;
}
.bb-restaurant-hero__image {
  position: absolute;
  inset: 0;
  object-position: center;
  filter: contrast(1.05) saturate(1.04);
}
.bb-restaurant-hero__shade {
  background: linear-gradient(90deg, rgba(5,5,5,.78), rgba(5,5,5,.55) 48%, rgba(5,5,5,.32));
}
.bb-restaurant-hero__inner {
  position: relative;
  min-height: 604px;
  display: flex;
  align-items: center;
}
.bb-restaurant-hero__content {
  max-width: 48rem;
}
.bb-restaurant-hero h1,
.bb-restaurant-atmosphere h2,
.bb-restaurant-growth h2,
.bb-restaurant-final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 700;
  line-height: .94;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-restaurant-hero h1 {
  margin-top: 22px;
  font-size: clamp(4rem, 8vw, 8rem);
  color: #F1EDE4;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.55));
}
.bb-restaurant-hero p {
  max-width: 40rem;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.62;
  color: rgba(250,250,245,.9);
}
.bb-restaurant-atmosphere {
  padding-block: 72px;
}
.bb-restaurant-atmosphere__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.bb-restaurant-atmosphere__media {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--bb-border);
  background: #090909;
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
}
.bb-restaurant-atmosphere__media img {
  object-position: center top;
}
.bb-restaurant-atmosphere__content {
  gap: 22px;
}
.bb-restaurant-atmosphere h2 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}
.bb-restaurant-atmosphere p,
.bb-restaurant-growth p,
.bb-restaurant-events__head p {
  margin: 0;
  color: rgba(245,238,220,.76);
  line-height: 1.7;
}
.bb-restaurant-events {
  padding-block: 72px;
  background: #101010;
}
.bb-restaurant-events__head {
  align-items: flex-start;
}
.bb-restaurant-events__head p {
  max-width: 34rem;
  font-size: 15px;
}
.bb-restaurant-events__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.bb-restaurant-event-card {
  min-height: 265px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #171717, #0d0d0d);
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.10), 0 18px 46px rgba(0,0,0,.22);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.bb-restaurant-event-card:hover {
  border-color: rgba(211,40,40,.58);
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.20), 0 22px 52px rgba(0,0,0,.3);
  transform: translateY(-1px);
}
.bb-restaurant-event-card__content {
  position: relative;
  inset: auto;
  display: flex;
  min-height: 265px;
  flex-direction: column;
  padding: 26px;
}
.bb-restaurant-event-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-restaurant-event-card p {
  margin: 12px 0 0;
  color: rgba(245,238,220,.76);
  font-size: 14px;
  line-height: 1.6;
}
.bb-restaurant-event-card .bb-card__cta {
  margin-top: auto;
  padding-top: 18px;
}
.bb-restaurant-growth {
  padding-block: 64px;
}
.bb-restaurant-growth__inner {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.bb-restaurant-growth h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}
.bb-restaurant-growth__text {
  display: grid;
  gap: 18px;
}
.bb-restaurant-final-cta {
  min-height: 420px;
  overflow: hidden;
  border-block: 1px solid var(--bb-border);
  background: #080808;
}
.bb-restaurant-final-cta > img {
  position: absolute;
  inset: 0;
  opacity: .42;
  object-position: center;
}
.bb-restaurant-final-cta__shade {
  background: linear-gradient(90deg, rgba(8,8,8,.96), rgba(8,8,8,.74) 52%, rgba(8,8,8,.9));
}
.bb-restaurant-final-cta__inner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding-block: 76px;
}
.bb-restaurant-final-cta h2 {
  max-width: 48rem;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}
.bb-restaurant-final-cta p {
  max-width: 38rem;
  margin: 20px 0 30px;
  color: rgba(245,238,220,.78);
  font-size: 20px;
  line-height: 1.55;
}

@media (max-width: 1280px) {
  .bb-restaurant-hero {
    padding-top: 82px;
  }
  .bb-restaurant-hero__inner {
    min-height: 600px;
  }
  .bb-restaurant-atmosphere__grid,
  .bb-restaurant-growth__inner {
    grid-template-columns: 1fr;
  }
  .bb-restaurant-events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bb-restaurant-hero {
    min-height: 690px;
    text-align: center;
  }
  .bb-restaurant-hero__shade {
    background: linear-gradient(180deg, rgba(5,5,5,.38), rgba(5,5,5,.78));
  }
  .bb-restaurant-hero__inner {
    min-height: 608px;
    justify-content: center;
  }
  .bb-restaurant-hero__content {
    align-items: center;
  }
  .bb-restaurant-hero p {
    font-size: 1.04rem;
  }
  .bb-restaurant-atmosphere,
  .bb-restaurant-events,
  .bb-restaurant-growth {
    padding-block: 52px;
  }
  .bb-restaurant-atmosphere__media {
    min-height: 320px;
  }
  .bb-restaurant-events__grid {
    grid-template-columns: 1fr;
  }
  .bb-restaurant-event-card,
  .bb-restaurant-event-card__content {
    min-height: 235px;
  }
  .bb-restaurant-final-cta,
  .bb-restaurant-final-cta__inner {
    min-height: 390px;
  }
  .bb-restaurant-final-cta__inner {
    padding-block: 58px;
  }
  .bb-restaurant-final-cta p {
    font-size: 18px;
  }
}

/* ==================================================
   TAKEAWAY PAGE
================================================== */
.bb-takeaway-page {
  background: var(--bb-black);
  color: var(--bb-white);
}
.bb-takeaway-hero {
  min-height: 680px;
  padding-top: 96px;
  background: #080606;
}
.bb-takeaway-hero__image {
  position: absolute;
  inset: 0;
  object-position: center;
  filter: contrast(1.06) saturate(.95);
}
.bb-takeaway-hero__shade {
  background: linear-gradient(90deg, rgba(5,5,5,.80), rgba(5,5,5,.55) 48%, rgba(5,5,5,.35));
}
.bb-takeaway-hero__inner {
  position: relative;
  min-height: 584px;
  display: flex;
  align-items: center;
}
.bb-takeaway-hero__content {
  max-width: 46rem;
}
.bb-takeaway-hero h1,
.bb-takeaway-benefit h2,
.bb-takeaway-final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 700;
  line-height: .94;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-takeaway-hero h1 {
  margin-top: 22px;
  font-size: clamp(3.8rem, 7.6vw, 7.6rem);
  color: #F1EDE4;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.55));
}
.bb-takeaway-hero p {
  max-width: 39rem;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.62;
  color: rgba(250,250,245,.9);
}
.bb-takeaway-steps,
.bb-takeaway-food,
.bb-takeaway-faq {
  padding-block: 68px;
}
.bb-takeaway-section-head {
  align-items: flex-start;
}
.bb-takeaway-section-head p {
  max-width: 34rem;
  margin: 0;
  color: rgba(245,238,220,.72);
  line-height: 1.6;
}
.bb-takeaway-steps__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.bb-takeaway-step-card {
  height: 100%;
  min-height: 245px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #171717, #0d0d0d);
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.10), 0 18px 46px rgba(0,0,0,.22);
}
.bb-takeaway-step-card__content {
  position: relative;
  inset: auto;
  display: flex;
  height: 100%;
  min-height: 245px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 28px;
}
.bb-takeaway-step-card span {
  color: rgba(211,40,40,.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.bb-takeaway-step-card h3,
.bb-takeaway-faq__item h3 {
  margin: 12px 0 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-takeaway-step-card p,
.bb-takeaway-food-card p,
.bb-takeaway-faq__item p,
.bb-takeaway-benefit p {
  margin: 12px 0 0;
  color: rgba(245,238,220,.76);
  font-size: 15px;
  line-height: 1.65;
}
.bb-takeaway-step-card__content > span,
.bb-takeaway-step-card__content > h3,
.bb-takeaway-step-card__content > p {
  margin: 0;
}
.bb-takeaway-step-card__content > p {
  flex: 1 1 auto;
}
.bb-takeaway-food {
  background: #101010;
}
.bb-takeaway-food__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.bb-takeaway-food-card {
  min-height: 320px;
}
.bb-takeaway-food-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-takeaway-food__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.bb-takeaway-benefit {
  padding-block: 72px;
}
.bb-takeaway-benefit__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.bb-takeaway-benefit__content {
  gap: 22px;
}
.bb-takeaway-benefit h2 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}
.bb-takeaway-benefit__media {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--bb-border);
  background: #090909;
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
}
.bb-takeaway-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.bb-takeaway-faq__item {
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #151515, #0d0d0d);
  padding: 26px;
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.08);
}
.bb-takeaway-final-cta {
  min-height: 410px;
  overflow: hidden;
  border-block: 1px solid var(--bb-border);
  background: #080808;
}
.bb-takeaway-final-cta > img {
  position: absolute;
  inset: 0;
  opacity: .38;
  object-position: center;
}
.bb-takeaway-final-cta__shade {
  background: linear-gradient(90deg, rgba(8,8,8,.96), rgba(8,8,8,.78) 54%, rgba(8,8,8,.92));
}
.bb-takeaway-final-cta__inner {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  padding-block: 74px;
}
.bb-takeaway-final-cta h2 {
  max-width: 44rem;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
}
.bb-takeaway-final-cta p {
  max-width: 36rem;
  margin: 20px 0 30px;
  color: rgba(245,238,220,.78);
  font-size: 20px;
  line-height: 1.55;
}

@media (max-width: 1280px) {
  .bb-takeaway-hero {
    padding-top: 82px;
  }
  .bb-takeaway-steps__grid,
  .bb-takeaway-food__grid,
  .bb-takeaway-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bb-takeaway-benefit__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .bb-takeaway-hero {
    min-height: 650px;
    text-align: center;
  }
  .bb-takeaway-hero__shade {
    background: linear-gradient(180deg, rgba(5,5,5,.42), rgba(5,5,5,.78));
  }
  .bb-takeaway-hero__inner {
    min-height: 568px;
    justify-content: center;
  }
  .bb-takeaway-hero__content {
    align-items: center;
  }
  .bb-takeaway-hero p {
    font-size: 1.04rem;
  }
  .bb-takeaway-steps,
  .bb-takeaway-food,
  .bb-takeaway-faq,
  .bb-takeaway-benefit {
    padding-block: 52px;
  }
  .bb-takeaway-steps__grid,
  .bb-takeaway-food__grid,
  .bb-takeaway-faq__list {
    grid-template-columns: 1fr;
  }
  .bb-takeaway-step-card,
  .bb-takeaway-step-card__content {
    min-height: 225px;
  }
  .bb-takeaway-food-card {
    min-height: 300px;
  }
  .bb-takeaway-benefit__media {
    min-height: 320px;
  }
  .bb-takeaway-final-cta,
  .bb-takeaway-final-cta__inner {
    min-height: 380px;
  }
  .bb-takeaway-final-cta__inner {
    padding-block: 58px;
  }
  .bb-takeaway-final-cta p {
    font-size: 18px;
  }
}

/* ==================================================
   BOOKING PAGE
================================================== */
.bb-booking-page {
  background: var(--bb-black);
  color: var(--bb-white);
}
.bb-booking-hero {
  min-height: 680px;
  padding-top: 96px;
  background: #080606;
}
.bb-booking-hero__image {
  position: absolute;
  inset: 0;
  object-position: center;
  filter: contrast(1.05) saturate(1.02);
}
.bb-booking-hero__shade {
  background: linear-gradient(90deg, rgba(5,5,5,.78), rgba(5,5,5,.58) 50%, rgba(5,5,5,.42));
}
.bb-booking-hero__inner {
  position: relative;
  min-height: 584px;
  display: flex;
  align-items: center;
}
.bb-booking-hero__content {
  max-width: 48rem;
}
.bb-booking-hero h1,
.bb-booking-intro h2,
.bb-booking-form-section h2,
.bb-booking-final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 700;
  line-height: .94;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-booking-hero h1 {
  margin-top: 22px;
  font-size: clamp(3.8rem, 7.4vw, 7.4rem);
  color: #F1EDE4;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.55));
}
.bb-booking-hero p {
  max-width: 38rem;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.62;
  color: rgba(250,250,245,.9);
}
.bb-booking-intro {
  padding-block: 68px;
}
.bb-booking-intro__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}
.bb-booking-intro__content {
  gap: 22px;
}
.bb-booking-intro h2 {
  max-width: 42rem;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
}
.bb-booking-intro__text {
  display: grid;
  gap: 18px;
}
.bb-booking-intro__text p {
  margin: 0;
  color: rgba(245,238,220,.76);
  font-size: 17px;
  line-height: 1.7;
}
.bb-booking-intro__text strong {
  display: block;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(198,40,40,.10);
  color: rgba(250,250,245,.92);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.12);
}
.bb-booking-form-section {
  padding-block: 78px;
}
.bb-booking-form-section__form .wpcf7-form {
  display: grid;
  gap: 18px;
}
.bb-booking-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(245,238,220,.16);
  border-radius: 4px;
  background: rgba(5,5,5,.72);
  color: var(--bb-white);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.bb-booking-form select:focus {
  border-color: rgba(211,40,40,.78);
  background: rgba(10,10,10,.94);
  box-shadow: 0 0 0 3px rgba(158,27,27,.16);
}
.bb-booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .9;
}
.bb-booking-steps {
  padding-block: 68px;
  background: #101010;
}
.bb-booking-section-head {
  align-items: flex-start;
}
.bb-booking-section-head p {
  max-width: 34rem;
  margin: 0;
  color: rgba(245,238,220,.72);
  line-height: 1.6;
}
.bb-booking-steps__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.bb-booking-step-card {
  height: 100%;
  min-height: 245px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #171717, #0d0d0d);
  box-shadow: inset 0 0 0 1px rgba(198,40,40,.10), 0 18px 46px rgba(0,0,0,.22);
}
.bb-booking-step-card__content {
  position: relative;
  inset: auto;
  display: flex;
  height: 100%;
  min-height: 245px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 28px;
}
.bb-booking-step-card span {
  color: rgba(211,40,40,.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}
.bb-booking-step-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.bb-booking-step-card p {
  flex: 1 1 auto;
  margin: 0;
  color: rgba(245,238,220,.76);
  font-size: 15px;
  line-height: 1.65;
}
.bb-booking-final-cta {
  min-height: 410px;
  overflow: hidden;
  border-block: 1px solid var(--bb-border);
  background: #080808;
}
.bb-booking-final-cta > img {
  position: absolute;
  inset: 0;
  opacity: .34;
  object-position: center;
}
.bb-booking-final-cta__shade {
  background: linear-gradient(90deg, rgba(8,8,8,.96), rgba(8,8,8,.78) 54%, rgba(8,8,8,.92));
}
.bb-booking-final-cta__inner {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  padding-block: 74px;
}
.bb-booking-final-cta h2 {
  max-width: 44rem;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
}
.bb-booking-final-cta p {
  max-width: 36rem;
  margin: 20px 0 30px;
  color: rgba(245,238,220,.78);
  font-size: 20px;
  line-height: 1.55;
}

@media (max-width: 1280px) {
  .bb-booking-hero {
    padding-top: 82px;
  }
  .bb-booking-intro__grid,
  .bb-booking-form-section__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .bb-booking-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bb-booking-hero {
    min-height: 650px;
    text-align: center;
  }
  .bb-booking-hero__shade {
    background: linear-gradient(180deg, rgba(5,5,5,.46), rgba(5,5,5,.82));
  }
  .bb-booking-hero__inner {
    min-height: 568px;
    justify-content: center;
  }
  .bb-booking-hero__content {
    align-items: center;
  }
  .bb-booking-hero p {
    font-size: 1.04rem;
  }
  .bb-booking-intro,
  .bb-booking-form-section,
  .bb-booking-steps {
    padding-block: 52px;
  }
  .bb-booking-steps__grid {
    grid-template-columns: 1fr;
  }
  .bb-booking-step-card,
  .bb-booking-step-card__content {
    min-height: 225px;
  }
  .bb-booking-final-cta,
  .bb-booking-final-cta__inner {
    min-height: 380px;
  }
  .bb-booking-final-cta__inner {
    padding-block: 58px;
  }
  .bb-booking-final-cta p {
    font-size: 18px;
  }
}
