﻿@charset "UTF-8";

:root {
  --default-font: "Montserrat", "Segoe UI", sans-serif;
  --heading-font: "DM Serif Display", Georgia, serif;
  --nav-font: "Montserrat", "Segoe UI", sans-serif;
  --background-color: #120f19;
  --default-color: #efe7dd;
  --heading-color: #f8efe5;
  --accent-color: #cf8f4a;
  --accent-strong: #efbc78;
  --accent-soft: rgba(207, 143, 74, 0.16);
  --surface-color: #1d1828;
  --surface-alt: #281f36;
  --contrast-color: #ffffff;
  --dark-panel: #16111f;
  --dark-panel-soft: #100c17;
  --nav-color: rgba(245, 235, 224, 0.9);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #16111f;
  --nav-dropdown-background-color: #20182c;
  --nav-dropdown-color: #f0e5d8;
  --nav-dropdown-hover-color: #cf8f4a;
  --shadow-soft: 0 18px 42px rgba(5, 3, 8, 0.38);
  --shadow-strong: 0 30px 90px rgba(3, 2, 6, 0.5);
  --italian-green: #8f3b52;
  --italian-green-deep: #f6eadf;
  --italian-red: #cf8f4a;
  --italian-red-soft: rgba(207, 143, 74, 0.18);
  --italian-cream: #181320;
  --italian-gold: #efbc78;
}

.light-background {
  --background-color: #181320;
  --surface-color: #221a2f;
}

.dark-background {
  --background-color: #16111f;
  --default-color: #f6eee4;
  --heading-color: #ffffff;
  --surface-color: #100c17;
  --contrast-color: #ffffff;
}

body {
  background:
    radial-gradient(circle at top, rgba(143, 59, 82, 0.22), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(207, 143, 74, 0.14), transparent 18%),
    linear-gradient(180deg, #140f1d 0%, #0f0b15 100%);
}

.luxury-page::before {
  display: none;
}

.establishment-hero-mobile-spacing {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .establishment-hero-mobile-spacing {
    margin-top: 0;
  }
}

.roma-page {
  --landing-dark: #16111f;
  --landing-light: #120f19;
  --landing-accent: #cf8f4a;
  --landing-accent-soft: rgba(207, 143, 74, 0.18);
  --landing-highlight: #efbc78;
  background: var(--landing-light);
  color: #efe7dd;
}

.roma-page.luxury-page::before {
  display: none;
}

.roma-page .header {
  --background-color: rgba(12, 9, 18, 0.78);
  backdrop-filter: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.roma-page .header .branding {
  background: rgba(15, 11, 22, 0.96);
  border-bottom: 1px solid rgba(239, 188, 120, 0.14);
}

.roma-page .header .header-shell {
  max-width: 100%;
  width: 100%;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.roma-page .brand-mark {
  flex-shrink: 0;
  margin-right: 24px;
}

.roma-page .navmenu {
  margin-left: auto;
}

.roma-page .navmenu ul {
  justify-content: flex-end;
  gap: 6px;
}

.roma-page.scrolled .header {
  --background-color: rgba(10, 7, 15, 0.94);
}

.roma-page.scrolled .header .branding {
  background: rgba(15, 11, 22, 0.98);
}

.roma-page .navmenu li:hover > a,
.roma-page .navmenu .active,
.roma-page .navmenu .active:focus {
  background: rgba(207, 143, 74, 0.16);
}

.roma-page .navmenu .language-link {
  color: #ffffff;
}

.roma-page .navmenu .navmenu-dropdown > ul {
  background: var(--landing-dark);
  border: 1px solid rgba(247, 241, 228, 0.18);
}

.roma-page .navmenu .navmenu-dropdown > ul a,
.roma-page .navmenu .navmenu-dropdown > ul a:focus {
  color: #ffffff;
}

.roma-page .navmenu .navmenu-dropdown > ul a:hover,
.roma-page .navmenu .navmenu-dropdown > ul .is-active {
  background: var(--landing-accent);
  color: #ffffff;
}

@media (max-width: 1199px) {
  .roma-page .navmenu ul {
    background: linear-gradient(180deg, rgba(22, 17, 31, 0.98), rgba(16, 12, 23, 0.98));
  }

  .roma-page .navmenu a,
  .roma-page .navmenu a:focus {
    color: #eef3f6;
  }

  .roma-page .mobile-nav-active .navmenu {
    background: rgba(15, 11, 9, 0.58);
  }

  .roma-page .mobile-nav-active #header .topbar,
  .roma-page .mobile-nav-active #header .branding {
    background: transparent;
    border-bottom-color: transparent;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 190px;
  padding-bottom: 110px;
  background: #16111f;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-veil {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(8, 5, 12, 0.84), rgba(28, 14, 24, 0.58)),
    rgba(10, 7, 15, 0.48);
  pointer-events: none;
}

.hero-orb {
  display: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero-layout {
  min-height: calc(100vh - 220px);
}

.hero .hero-text {
  max-width: 560px;
}

.hero-showcase {
  margin-top: 0;
}

.hero-showcase-stage {
  position: relative;
  padding: 16px;
  background: rgba(25, 19, 35, 0.88);
  border: 1px solid rgba(239, 188, 120, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.hero-showcase-stage::before {
  display: none;
}

.hero-showcase .gallery-carousel {
  padding-bottom: 0;
}

.hero-showcase .gallery-card {
  max-width: none;
}

.hero-showcase .gallery-card .gallery-card-image {
  height: 620px;
  min-height: 620px;
}

.hero .hero-text .hero-title,
.hero-stat-value {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.hero .hero-text .hero-description,
.hero-stat-label {
  color: rgba(245, 232, 221, 0.9);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.hero .hero-text .hero-features .feature-item,
.hero-stat-card {
  background: #fbf8f3;
  border-color: #e2d6c4;
  backdrop-filter: none;
}

.hero .hero-text .hero-features .feature-item i {
  background: rgba(207, 143, 74, 0.12);
  color: #efbc78;
  box-shadow: none;
}

.hero .hero-text .hero-features .feature-item .feature-text .value,
.hero .hero-text .hero-features .feature-item .feature-text a {
  color: #f6eadf;
}

.hero .hero-text .hero-actions .btn.btn-ghost {
  color: #f6eadf;
  background: rgba(24, 18, 34, 0.82);
  border-color: var(--landing-accent);
  border-radius: 0;
  box-shadow: none;
}

.hero .hero-text .hero-actions .btn.btn-primary {
  color: #ffffff;
  border-color: var(--landing-accent);
  background: var(--landing-accent);
  border-radius: 0;
  box-shadow: none;
}

.hero .hero-text .hero-actions .btn.btn-ghost:hover {
  color: #ffffff;
  border-color: var(--landing-accent);
  background: var(--landing-accent);
}

.hero .hero-text .hero-actions .btn.btn-primary:hover {
  color: #ffffff;
  border-color: var(--landing-highlight);
  background: #963229;
}

.about {
  background: #ffffff;
}

#menu.about.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roma-menu-list {
  text-align: left;
}

.menu-panel-intro {
  max-width: 64ch;
  margin: 0 auto 28px;
  color: rgba(239, 231, 222, 0.76);
  line-height: 1.75;
}

.menu-section-title,
.menu-section-shell {
  width: min(100%, 1680px);
  padding-left: clamp(22px, 4vw, 56px);
  padding-right: clamp(22px, 4vw, 56px);
  margin: 0 auto;
}

.menu-section-shell {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.menu-section-shell > .row {
  flex: 1;
  align-items: stretch;
}

.menu-section-shell > .row > .col-12 {
  display: flex;
}

.menu-panel-expanded {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(24px, 2.6vw, 34px) clamp(20px, 2.4vw, 34px);
  min-height: auto;
}

.menu-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.menu-tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 12px 18px;
  border: 1px solid rgba(207, 143, 74, 0.3);
  border-radius: 0;
  background: rgba(29, 24, 40, 0.9);
  color: rgba(246, 234, 223, 0.84);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-tab-button:hover,
.menu-tab-button:focus {
  background: var(--landing-accent);
  color: #ffffff;
  border-color: var(--landing-accent);
  transform: translateY(-1px);
  box-shadow: none;
}

.menu-tab-button.is-active {
  background: linear-gradient(135deg, #8f3b52 0%, #6a2947 100%);
  color: #ffffff;
  border-color: #a44c67;
  box-shadow: none;
}

.menu-tab-panel {
  display: none;
}

.menu-tab-panel.is-active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.roma-menu-sections-grid {
  column-gap: 14px;
}

.roma-menu-section {
  display: inline-block;
  width: 100%;
  padding: clamp(20px, 2vw, 28px);
  margin: 0 0 14px;
  border: 1px solid rgba(239, 188, 120, 0.16);
  background: linear-gradient(180deg, rgba(30, 23, 42, 0.96), rgba(20, 15, 29, 0.96));
  break-inside: avoid;
  page-break-inside: avoid;
}

.roma-menu-section-header {
  margin-bottom: 22px;
}

.roma-menu-section-header h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
  color: var(--italian-green-deep);
}

.roma-menu-section-note {
  display: block;
  color: var(--italian-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roma-menu-items {
  display: block;
}

.roma-menu-item {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(207, 143, 74, 0.12);
}

.roma-menu-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.roma-menu-item-head {
  display: block;
  margin-bottom: 8px;
}

.roma-menu-item-head h4 {
  margin: 0;
  font-size: 1rem;
  color: #f4e5d9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roma-menu-item p {
  margin: 0;
  color: rgba(239, 231, 222, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.luxury-panel,
.about-gallery-shell {
  background: rgba(24, 18, 34, 0.92);
  border-color: rgba(239, 188, 120, 0.18);
}

.about .about-content h2,
.about .about-content .fst-italic,
.about-signature,
.section-title p {
  color: rgba(239, 231, 222, 0.74);
}

.about .about-content p {
  color: rgba(239, 231, 222, 0.74);
}

@media (min-width: 1200px) {
  .roma-menu-sections-grid {
    column-count: 2;
    column-gap: 16px;
  }

  .roma-menu-section-header {
    max-width: 72ch;
  }
}

@media (min-width: 1600px) {
  .roma-menu-sections-grid {
    column-count: 3;
    column-gap: 18px;
  }

  .menu-panel-expanded {
    width: min(100%, 1720px);
  }
}

.about-signature span:first-child {
  background: rgba(199, 161, 92, 0.32);
}

.about-gallery-accent {
  border-color: #cfb894;
}

.about-story-badge {
  background: #241b14;
  color: #ffffff;
  border: 1px solid var(--landing-accent);
  box-shadow: 0 12px 24px rgba(36, 27, 20, 0.12);
}

.gallery-showcase {
  background: transparent;
}

.gallery-showcase .section-title h2,
.gallery-showcase .section-title p {
  color: #f5e8dd;
}

.gallery-showcase .section-title span {
  color: rgba(36, 27, 20, 0.08);
}

.gallery-showcase .gallery-card {
  overflow: hidden;
  max-width: none;
  margin: 0 auto;
  min-height: 100%;
  background: #17111f;
  border: 1px solid rgba(239, 188, 120, 0.2);
  border-color: rgba(239, 188, 120, 0.2);
  box-shadow: var(--shadow-soft);
}

.gallery-carousel {
  padding-bottom: 84px;
}

.gallery-carousel .carousel-inner {
  overflow: hidden;
}

.gallery-carousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

.gallery-showcase .gallery-card .gallery-card-image {
  position: relative;
  overflow: hidden;
  height: 620px;
  min-height: 620px;
}

.gallery-showcase .gallery-card .gallery-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 18, 0.06), rgba(12, 9, 18, 0.28));
}

.gallery-showcase .gallery-card .gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-carousel-controls {
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  position: static;
  width: 58px;
  height: 58px;
  background: rgba(23, 17, 31, 0.92);
  border: 1px solid rgba(239, 188, 120, 0.24);
  opacity: 1;
  pointer-events: auto;
}

.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
  background: rgba(207, 143, 74, 0.16);
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
  width: 1.1rem;
  height: 1.1rem;
  filter: invert(22%) sepia(24%) saturate(1282%) hue-rotate(99deg) brightness(92%) contrast(89%);
}

.gallery-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(24%) sepia(78%) saturate(1754%) hue-rotate(343deg) brightness(91%) contrast(91%);
}

.location-section {
  margin-top: 0;
  padding: 0 0 96px;
  background: #ffffff;
}

.location-section-title {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 32px clamp(22px, 4vw, 56px) 28px;
  text-align: center;
}

.location-section-title h2 {
  margin: 0 0 12px;
  color: #241b14;
}

.location-section-title p {
  margin: 0;
  color: #5a4d43;
}

.location-map-shell {
  width: 100%;
  border-top: 1px solid rgba(239, 188, 120, 0.16);
  border-bottom: 1px solid rgba(239, 188, 120, 0.16);
}

.location-map-shell iframe {
  display: block;
  width: 100%;
  height: min(72vh, 680px);
  min-height: 420px;
  filter: saturate(0.72) hue-rotate(-18deg) brightness(0.82) contrast(1.08);
}

.footer {
  background: #0f0b15;
}

.footer::before {
  display: none;
}

.footer .footer-content p,
.footer .footer-content .logo,
.footer .footer-content .logo .sitename,
.footer .footer-content .sitename,
.footer .footer-links h4,
.footer .footer-links ul a,
.footer .footer-links ul i,
.footer .footer-contact h4,
.footer .footer-contact .contact-item .contact-info p,
.footer .footer-contact .contact-item .contact-info a,
.footer .footer-contact .contact-item .contact-icon i,
.footer .footer-bottom .copyright p,
.footer .footer-bottom .copyright .sitename,
.footer .footer-bottom .credits,
.footer .footer-bottom .credits a,
.footer .footer-bottom .sitename {
  color: #ffffff;
}

.footer .footer-contact .contact-item .contact-icon {
  background: rgba(207, 143, 74, 0.1);
  border-color: rgba(239, 188, 120, 0.18);
}

.footer-brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}

.footer .footer-content {
  text-align: center;
}

.footer .footer-content .logo {
  justify-content: center;
}

#preloader {
  background: var(--landing-light);
}

.scroll-top {
  background: linear-gradient(135deg, #8f3b52 0%, #cf8f4a 100%);
  box-shadow: none;
}

@media (max-width: 992px) {
  .hero {
    padding-top: 150px;
    min-height: 88vh;
  }

  .hero-layout {
    min-height: auto;
  }

  .gallery-showcase .gallery-card .gallery-card-image {
    min-height: 320px;
  }

  .buda-page .events-inline-gallery-image {
    height: 190px;
    min-height: 190px;
  }

  .buda-page .live-music-gallery-image {
    min-height: 320px;
  }

}

@media (max-width: 768px) {
  .hero {
    min-height: 78vh;
    padding-top: 138px;
    padding-bottom: 90px;
  }

  .hero-showcase {
    margin-top: 8px;
  }

  .hero-showcase-stage {
    padding: 14px;
  }

  .hero-showcase .gallery-card .gallery-card-image {
    height: 360px;
    min-height: 360px;
  }

  .buda-page .events-inline-gallery-shell {
    margin-top: 18px;
    max-width: 320px;
  }

  .buda-page .live-music-gallery-shell {
    margin-top: 0;
    max-width: none;
  }

  .buda-page .events-inline-gallery-image {
    height: 170px;
    min-height: 170px;
  }

  .buda-page .live-music-gallery-image {
    height: 280px;
    min-height: 280px;
  }

  .gallery-carousel {
    padding-bottom: 78px;
  }

  .gallery-showcase .gallery-card .gallery-card-image {
    height: 360px;
    min-height: 360px;
  }

  .gallery-carousel-controls {
    inset: auto 0 14px 0;
    transform: none;
    justify-content: center;
    gap: 12px;
    pointer-events: auto;
  }

  .gallery-carousel .carousel-control-prev,
  .gallery-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
  }

  .menu-section-title,
  .menu-section-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-panel-expanded {
    width: 100%;
    padding: 24px 20px;
    min-height: auto;
  }

  .roma-menu-section {
    margin-bottom: 14px;
  }

  .location-section {
    margin-top: 0;
    padding-bottom: 72px;
  }

  .location-section-title {
    padding: 24px 16px 22px;
  }

  .location-map-shell iframe {
    height: 54vh;
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .about-gallery-accent {
    width: 70px;
    height: 70px;
  }

  .gallery-showcase .gallery-card .gallery-card-image {
    height: 280px;
    min-height: 280px;
  }

  .buda-page .events-inline-gallery-image {
    height: 150px;
    min-height: 150px;
  }

  .buda-page .live-music-gallery-image {
    height: 240px;
    min-height: 240px;
  }

  .gallery-showcase .gallery-card {
    max-width: 100%;
  }

  .menu-panel-expanded {
    padding: 20px 18px;
  }

  .hero-showcase .gallery-card .gallery-card-image {
    height: 280px;
    min-height: 280px;
  }
}

/* Budha-specific layout on top of the Roma base */

.buda-page .establishment-brand-mark .brand-mark-label {
  padding-left: 2px;
}

.buda-page .header .branding {
  border-top: 0;
}

.buda-page .hero-showcase .gallery-card,
.buda-page .gallery-showcase .gallery-card {
  background: #120e19;
}

.buda-page .hero-showcase .gallery-card .gallery-card-image,
.buda-page .gallery-showcase .gallery-card .gallery-card-image {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(143, 59, 82, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(18, 14, 25, 0.98), rgba(11, 8, 16, 0.98));
}

.buda-page .hero-showcase .gallery-card .gallery-card-image::after,
.buda-page .gallery-showcase .gallery-card .gallery-card-image::after {
  background: linear-gradient(180deg, rgba(10, 7, 15, 0.04), rgba(10, 7, 15, 0.12));
}

.buda-page .hero-showcase .gallery-card .gallery-card-image img,
.buda-page .gallery-showcase .gallery-card .gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.buda-page .about-intro {
  padding-top: 96px;
  padding-bottom: 96px;
  background: transparent;
}

.buda-page .about-copy-panel {
  height: 100%;
}

.buda-page .about-intro-title {
  margin-bottom: 1rem;
  color: #f6eadf;
}

.buda-page .about-intro-text {
  margin-bottom: 2rem;
  color: rgba(239, 231, 222, 0.74);
  line-height: 1.8;
}

.buda-page .about-features {
  display: grid;
  gap: 18px;
}

.buda-page .about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fbf8f3;
  border: 1px solid #e2d6c4;
}

.buda-page .about-features .feature-item i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #241b14;
  background: #f3ede4;
}

.buda-page .about-features .feature-text {
  display: flex;
  flex-direction: column;
}

.buda-page .about-features .feature-text .label {
  margin-bottom: 3px;
  color: #6b5d50;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.buda-page .about-features .feature-text .value,
.buda-page .about-features .feature-text a {
  color: #241b14;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.buda-page .about-intro-shell {
  width: min(100%, 1100px);
}

.buda-page .menu-section-shell .luxury-panel {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.buda-page .menu-scroll-shell::after,
.buda-page .menu-scroll-hint {
  display: none;
}

.buda-page .drink-menu-list,
.buda-page .brunch-menu-list {
  max-height: none;
  overflow: visible;
}

.buda-page .drink-menu-section,
.buda-page .brunch-menu-section {
  display: inline-block;
  width: 100%;
  padding: clamp(20px, 2vw, 28px);
  margin: 0 0 14px;
  border: 1px solid rgba(239, 188, 120, 0.16);
  background: linear-gradient(180deg, rgba(30, 23, 42, 0.96), rgba(20, 15, 29, 0.96));
  break-inside: avoid;
  page-break-inside: avoid;
}

.buda-page .drink-menu-section-header,
.buda-page .brunch-menu-section-header {
  margin-bottom: 22px;
}

.buda-page .drink-menu-section-header h3,
.buda-page .brunch-menu-section-header h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  color: #f6eadf;
}

.buda-page .drink-menu-section-note {
  display: block;
  color: #cf8f4a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buda-page .drink-menu-items,
.buda-page .brunch-menu-items {
  display: grid;
  gap: 16px;
}

.buda-page .drink-menu-item,
.buda-page .brunch-menu-item {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(207, 143, 74, 0.12);
}

.buda-page .drink-menu-item:first-child,
.buda-page .brunch-menu-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.buda-page .drink-menu-item-head,
.buda-page .brunch-menu-item-head {
  display: block;
  margin-bottom: 8px;
}

.buda-page .drink-menu-item-head h4,
.buda-page .brunch-menu-item-head h4 {
  margin: 0;
  font-size: 1rem;
  color: #f4e5d9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.buda-page .drink-menu-item p,
.buda-page .brunch-menu-item-copy p {
  margin: 0;
  color: rgba(239, 231, 222, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.buda-page .events {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #ffffff;
}

.buda-page .live-music-section {
  padding-bottom: 0;
  background: #f8f3ec;
}

.buda-page .events .section-title h2 {
  color: #241b14;
}

.buda-page .events .section-title p {
  color: #5a4d43;
}

.buda-page .events-panel,
.buda-page .events-panel-copy {
  padding: clamp(24px, 2.6vw, 34px);
  background: rgba(24, 18, 34, 0.92);
  border: 1px solid rgba(239, 188, 120, 0.18);
  box-shadow: var(--shadow-soft);
}

.buda-page .events-panel-title {
  margin-bottom: 14px;
  color: #f6eadf;
}

.buda-page .events-panel-text {
  color: rgba(239, 231, 222, 0.74);
  line-height: 1.75;
}

.buda-page .events-highlight-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.buda-page .events-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(32, 24, 44, 0.84);
  border: 1px solid rgba(239, 188, 120, 0.14);
}

.buda-page .events-highlight-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 143, 74, 0.12);
  color: #efbc78;
  flex-shrink: 0;
}

.buda-page .events-highlight-item p {
  margin: 0;
  color: rgba(239, 231, 222, 0.72);
  line-height: 1.65;
}

.buda-page .event-form-field {
  display: flex;
  flex-direction: column;
}

.buda-page .event-form-label {
  margin-bottom: 8px;
  text-align: left;
  color: #efbc78;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buda-page .event-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(239, 188, 120, 0.22);
  background: rgba(16, 12, 23, 0.92);
  color: #f4e5d9;
  box-shadow: none;
}

.buda-page .event-form-control:focus {
  outline: none;
  border-color: rgba(207, 143, 74, 0.52);
  box-shadow: none;
}

.buda-page .event-form-control::placeholder {
  color: rgba(239, 231, 222, 0.38);
}

.buda-page .event-form-textarea {
  min-height: 180px;
  resize: vertical;
}

.buda-page .event-form-help {
  margin-top: 8px;
  color: rgba(239, 231, 222, 0.56);
  font-size: 0.84rem;
}

.buda-page .events-inline-gallery-shell {
  margin-top: 22px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.buda-page .live-music-gallery-shell {
  max-width: none;
  margin-top: 0;
}

.buda-page .events-inline-gallery-carousel {
  padding-bottom: 0;
  overflow: hidden;
}

.buda-page .events-inline-gallery-carousel .carousel-inner {
  overflow: hidden;
}

.buda-page .events-inline-gallery-image {
  height: 210px;
  min-height: 210px;
  padding: 0;
  background: transparent;
}

.buda-page .live-music-gallery-image {
  height: 100%;
  min-height: 420px;
}

.buda-page .events-inline-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.buda-page .event-form-error {
  min-height: 1.4em;
  margin-top: 6px;
  color: #f19a7c;
  font-size: 0.82rem;
}

.buda-page .event-form-control.is-invalid {
  border-color: #f19a7c;
}

.buda-page .event-form-actions {
  margin-top: 22px;
}

.buda-page .event-form-submit {
  min-width: 220px;
  padding: 15px 28px;
  border: 1px solid #cf8f4a;
  background: linear-gradient(135deg, #8f3b52 0%, #cf8f4a 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(8, 5, 12, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.buda-page .event-form-submit:hover,
.buda-page .event-form-submit:focus {
  border-color: #efbc78;
  background: linear-gradient(135deg, #a64864 0%, #e1a85e 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(8, 5, 12, 0.42);
}

.buda-page .event-form-submit:focus-visible {
  outline: 3px solid rgba(199, 161, 92, 0.32);
  outline-offset: 3px;
}

.buda-page .event-form-submit:disabled,
.buda-page .event-form-submit.disabled {
  opacity: 0.74;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.buda-page .event-form-status {
  margin-top: 18px;
  color: rgba(239, 231, 222, 0.72);
  line-height: 1.65;
}

.buda-page .event-form-status.is-success {
  color: #efbc78;
}

.buda-page .event-form-status.is-error {
  color: #f19a7c;
}

@media (min-width: 1200px) {
  .buda-page .drink-menu-list,
  .buda-page .brunch-menu-list {
    column-count: 2;
    column-gap: 16px;
  }

  .buda-page .drink-menu-items,
  .buda-page .brunch-menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

@media (min-width: 1600px) {
  .buda-page .drink-menu-list,
  .buda-page .brunch-menu-list {
    column-count: 3;
    column-gap: 18px;
  }
}

@media (max-width: 992px) {
  .buda-page .about-intro,
  .buda-page .events {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .buda-page .events-panel,
  .buda-page .events-panel-copy {
    padding: 24px 20px;
  }

  .buda-page .event-form-submit {
    width: 100%;
    min-width: 0;
  }
}

/* Buda migration overrides: align home and menu subpages with the Roma pattern */

.buda-page .hero .hero-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buda-page .hero-veil {
  background:
    linear-gradient(135deg, rgba(8, 5, 12, 0.52), rgba(28, 14, 24, 0.3)),
    rgba(10, 7, 15, 0.18);
}

.buda-page .hero .hero-actions {
  justify-content: center;
}

.buda-page .hero .hero-description {
  margin-left: auto;
  margin-right: auto;
}

.buda-page #menu.about.section {
  min-height: auto;
  padding-top: clamp(86px, 10vw, 132px);
  padding-bottom: 0;
  background: #ffffff;
}

.buda-page .menu-section-title,
.buda-page .menu-section-shell {
  width: min(100%, 1180px);
}

.buda-page .menu-section-title {
  text-align: center;
}

.buda-page .menu-section-title h2 {
  margin-bottom: 20px;
  color: #0f0b16;
  font-size: clamp(3rem, 5.6vw, 4.9rem);
  line-height: 0.95;
  text-shadow: 0 10px 24px rgba(20, 11, 8, 0.08);
}

.buda-page .menu-section-title p {
  margin-bottom: 0;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  color: #6b4931;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.buda-page .menu-section-shell {
  margin-top: 36px;
}

.buda-page .menu-section-shell > .row,
.buda-page .menu-section-shell > .row > .col-12 {
  min-width: 0;
}

.buda-page .menu-panel-expanded {
  width: min(100%, 980px);
  padding: 0;
}

.buda-page .menu-section-links-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.buda-page .menu-tabs {
  gap: 20px;
  margin-bottom: 0;
}

.buda-page .menu-tab-button {
  min-width: 164px;
  min-height: 56px;
  padding: 15px 26px;
  border: 2px solid #0f0b16;
  background-color: transparent;
  background-image: linear-gradient(to bottom, #0f0b16 0%, #0f0b16 100%);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 0;
  color: #0f0b16;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: transform 0.25s ease, background-size 0.32s ease, color 0.25s ease, border-color 0.25s ease;
}

.buda-page .menu-tab-button:hover,
.buda-page .menu-tab-button:focus,
.buda-page .menu-tab-button.is-active {
  background-size: 100% 100%;
  color: #ffffff;
  border-color: #0f0b16;
  box-shadow: none;
}

.buda-page .buda-feature-links {
  padding: 54px 0 42px;
  background: #ffffff;
}

.buda-page .buda-feature-links-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.buda-page .buda-feature-links-intro h2 {
  margin: 0 0 16px;
  color: #111111;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.buda-page .buda-feature-links-intro p {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.buda-page .buda-feature-link-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  background: #111111;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
  transition: box-shadow 0.25s ease;
}

.buda-page .buda-feature-link-card:hover,
.buda-page .buda-feature-link-card:focus-visible {
  box-shadow: 0 22px 42px rgba(17, 17, 17, 0.14);
}

.buda-page .buda-feature-link-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.buda-page .buda-feature-link-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buda-page .buda-feature-link-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.8vw, 32px);
}

.buda-page .buda-feature-link-kicker {
  color: var(--landing-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.buda-page .buda-feature-link-title {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.buda-page .buda-feature-link-copy {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.buda-page .buda-feature-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  align-self: flex-start;
  min-width: 164px;
  min-height: 56px;
  padding: 15px 26px;
  border: 2px solid var(--landing-accent);
  border-radius: 0;
  background-color: transparent;
  background-image: linear-gradient(to bottom, var(--landing-accent) 0%, var(--landing-accent) 100%);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 0;
  color: var(--landing-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.25s ease, background-size 0.32s ease, color 0.25s ease, border-color 0.25s ease;
}

.buda-page .buda-feature-link-cta i {
  font-size: 0.95rem;
}

.buda-page .buda-feature-link-card:hover .buda-feature-link-cta,
.buda-page .buda-feature-link-card:focus-visible .buda-feature-link-cta {
  background-size: 100% 100%;
  border-color: var(--landing-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.buda-page .gallery-showcase {
  background: #ffffff;
  padding: 36px 0 0;
}

.buda-page .gallery-showcase-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.buda-page .gallery-showcase .menu-section-shell {
  margin-top: 0;
}

.buda-page .gallery-showcase .hero-showcase-stage {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.buda-page .gallery-showcase .hero-showcase-stage::before {
  display: none;
}

.buda-page .location-section {
  padding: 0 0 96px;
}

.buda-page .location-section-title {
  width: min(100%, 1680px);
  padding: 0 clamp(22px, 4vw, 56px) 28px;
}

.buda-page .location-map-shell {
  border-top: 0;
  border-bottom: 0;
}

.buda-page .location-map-shell iframe {
  filter: saturate(0.72) hue-rotate(-18deg) brightness(0.82) contrast(1.08);
}

.buda-menu-page .hero {
  min-height: auto;
  padding-top: 170px;
  padding-bottom: 64px;
}

.buda-menu-page .hero-content {
  padding-left: clamp(18px, 3vw, 36px);
  padding-right: clamp(18px, 3vw, 36px);
}

.buda-menu-page .menu-page-hero-shell {
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.buda-menu-page .menu-page-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.buda-menu-page .menu-page-description {
  width: min(100%, 64ch);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.8;
}

.buda-menu-page .menu-page-section {
  padding-top: 18px;
  background: #ffffff;
}

.buda-menu-page .menu-page-panel {
  width: min(100%, 980px);
  max-width: 100%;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.buda-menu-page .menu-page-featured-gallery {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto 44px;
}

.buda-menu-page .menu-page-featured-gallery-header {
  margin-bottom: 22px;
  text-align: center;
}

.buda-menu-page .menu-page-featured-gallery-header h2 {
  margin: 0;
  color: #8f3b52;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.buda-menu-page .brunch-inline-gallery {
  --gallery-gap: 18px;
  --gallery-card-width: clamp(220px, 22vw, 320px);
  --gallery-card-height: clamp(260px, 28vw, 380px);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  margin-top: 28px;
  padding: 18px 0;
  mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.buda-menu-page .brunch-inline-gallery::before,
.buda-menu-page .brunch-inline-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 9%;
  pointer-events: none;
  z-index: 2;
}

.buda-menu-page .brunch-inline-gallery::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.buda-menu-page .brunch-inline-gallery::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}

.buda-menu-page .brunch-inline-gallery-track {
  display: flex;
  align-items: center;
  gap: var(--gallery-gap);
  width: max-content;
  min-width: 0;
  animation: buda-brunch-inline-gallery-scroll 34s linear infinite;
  will-change: transform;
}

.buda-menu-page .brunch-inline-gallery:hover .brunch-inline-gallery-track,
.buda-menu-page .brunch-inline-gallery:focus-within .brunch-inline-gallery-track {
  animation-play-state: paused;
}

.buda-menu-page .brunch-inline-gallery-item {
  display: block;
  overflow: hidden;
  background: #120e19;
  width: var(--gallery-card-width);
  height: var(--gallery-card-height);
  flex: 0 0 var(--gallery-card-width);
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(59, 32, 20, 0.14);
  transform-origin: center center;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.buda-menu-page .brunch-inline-gallery-item:nth-child(4n + 1) {
  transform: translateY(18px) rotate(-4deg) scale(0.94);
}

.buda-menu-page .brunch-inline-gallery-item:nth-child(4n + 2) {
  transform: translateY(-8px) rotate(2deg) scale(1.02);
}

.buda-menu-page .brunch-inline-gallery-item:nth-child(4n + 3) {
  transform: translateY(10px) rotate(4deg) scale(0.97);
}

.buda-menu-page .brunch-inline-gallery-item:nth-child(4n + 4) {
  transform: translateY(-18px) rotate(-2deg) scale(0.92);
}

.buda-menu-page .brunch-inline-gallery-item:hover,
.buda-menu-page .brunch-inline-gallery-item:focus-visible {
  transform: translateY(-10px) rotate(0deg) scale(1.03);
  box-shadow: 0 30px 64px rgba(59, 32, 20, 0.2);
  filter: saturate(1.04);
  z-index: 3;
}

.buda-menu-page .brunch-inline-gallery-item.is-gallery-clone {
  pointer-events: none;
}

.buda-menu-page .brunch-inline-gallery-item.glightbox,
.buda-menu-page .brunch-inline-gallery-item.glightbox .brunch-inline-gallery-image {
  cursor: zoom-in;
}

.buda-menu-page .brunch-inline-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 14px;
  background:
    radial-gradient(circle at top, rgba(143, 59, 82, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(18, 14, 25, 0.98), rgba(11, 8, 16, 0.98));
}

@keyframes buda-brunch-inline-gallery-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc((-1 * var(--gallery-card-width) * 4) - (var(--gallery-gap) * 4)), 0, 0);
  }
}

.buda-menu-page .menu-section-shell,
.buda-menu-page .menu-section-shell > .row,
.buda-menu-page .menu-section-shell > .row > .col-12,
.buda-menu-page .menu-page-panel,
.buda-menu-page .menu-page-featured-gallery,
.buda-menu-page .brunch-inline-gallery,
.buda-menu-page .brunch-inline-gallery-track,
.buda-menu-page .buda-menu-list,
.buda-menu-page .buda-menu-sections-grid {
  min-width: 0;
}

.buda-menu-page .menu-section-shell,
.buda-menu-page .menu-section-shell > .row,
.buda-menu-page .menu-section-shell > .row > .col-12,
.buda-menu-page .buda-menu-list,
.buda-menu-page .buda-menu-sections-grid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.buda-menu-page .buda-menu-list {
  column-count: initial;
  column-gap: 0;
}

.buda-menu-page .buda-menu-sections-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.buda-menu-page .buda-menu-section {
  display: block;
  width: 100%;
  padding: clamp(22px, 2.8vw, 34px) 0;
  margin: 0;
  border: 0;
  background: transparent;
  break-inside: auto;
  page-break-inside: auto;
  text-align: center;
}

.buda-menu-page .buda-menu-section-header {
  margin: 0 auto 26px;
  max-width: 60ch;
}

.buda-menu-page .buda-menu-section-header h3 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  color: #8f3b52;
}

.buda-menu-page .buda-menu-section-note {
  display: block;
  color: #cf8f4a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buda-menu-page .buda-menu-items {
  display: block;
  max-width: 70ch;
  margin: 0 auto;
}

.buda-menu-page .buda-menu-item {
  display: block;
  padding-top: 20px;
  border-top: 1px solid rgba(143, 59, 82, 0.12);
}

.buda-menu-page .buda-menu-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.buda-menu-page .buda-menu-item-head {
  display: block;
  margin-bottom: 10px;
}

.buda-menu-page .buda-menu-item-head h4 {
  margin: 0;
  font-size: 1.02rem;
  color: #4e2f1d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.buda-menu-page .buda-menu-item p {
  margin: 0;
  color: #6b4931;
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (prefers-reduced-motion: reduce) {
  .buda-menu-page .brunch-inline-gallery-track {
    animation: none;
  }

  .buda-menu-page .brunch-inline-gallery-item,
  .buda-menu-page .brunch-inline-gallery-item:hover,
  .buda-menu-page .brunch-inline-gallery-item:focus-visible {
    transform: none;
    transition: none;
  }
}

@media (max-width: 992px) {
  .buda-menu-page .hero {
    padding-top: 150px;
    padding-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .buda-page .menu-panel-expanded {
    width: 100%;
    padding: 24px 20px;
  }

  .buda-page .buda-feature-links {
    padding-bottom: 8px;
  }

  .buda-page .buda-feature-links-intro {
    margin-bottom: 28px;
  }

  .buda-page .location-section {
    padding-bottom: 72px;
  }

  .buda-page .location-section-title {
    padding: 0 16px 22px;
  }

  .buda-menu-page .hero {
    padding-top: 138px;
    padding-bottom: 42px;
  }

  .buda-menu-page .brunch-inline-gallery {
    --gallery-card-width: clamp(210px, 42vw, 280px);
    --gallery-card-height: clamp(250px, 52vw, 330px);
  }
}

@media (max-width: 576px) {
  .buda-page .menu-panel-expanded {
    padding: 0;
  }

  .buda-menu-page .brunch-inline-gallery {
    --gallery-gap: 12px;
    --gallery-card-width: 72vw;
    --gallery-card-height: 88vw;
    overflow-x: auto;
    overflow-y: visible;
    padding: 10px 4px 16px;
    mask-image: none;
    -webkit-mask-image: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .buda-menu-page .brunch-inline-gallery::-webkit-scrollbar {
    display: none;
  }

  .buda-menu-page .brunch-inline-gallery::before,
  .buda-menu-page .brunch-inline-gallery::after {
    display: none;
  }

  .buda-menu-page .brunch-inline-gallery-track {
    animation: none;
    padding-right: 8px;
  }

  .buda-menu-page .brunch-inline-gallery-item {
    scroll-snap-align: center;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(59, 32, 20, 0.14);
  }

  .buda-menu-page .brunch-inline-gallery-item:nth-child(n) {
    transform: none;
  }

  .buda-menu-page .brunch-inline-gallery-item.is-gallery-clone {
    display: none;
  }
}

.buda-events-page .hero {
  min-height: auto;
  padding-top: 170px;
  padding-bottom: 64px;
}

.buda-events-page .hero-content {
  padding-left: clamp(18px, 3vw, 36px);
  padding-right: clamp(18px, 3vw, 36px);
}

.buda-events-page .menu-page-hero-shell {
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.buda-events-page .menu-page-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.buda-events-page .menu-page-description {
  width: min(100%, 64ch);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.8;
}

.buda-events-page .menu-page-section {
  padding-top: 18px;
  background: #ffffff;
}

.buda-events-page .menu-section-shell,
.buda-events-page .menu-section-shell > .row,
.buda-events-page .menu-section-shell > .row > .col-12,
.buda-events-page .menu-page-panel,
.buda-events-page .menu-page-featured-gallery,
.buda-events-page .brunch-inline-gallery,
.buda-events-page .brunch-inline-gallery-track,
.buda-events-page .buda-events-form-shell {
  min-width: 0;
}

.buda-events-page .menu-page-panel {
  width: min(100%, 1120px);
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.buda-events-page .menu-page-featured-gallery {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 44px;
}

.buda-events-page .buda-events-gallery-grid-shell {
  margin-top: 48px;
  margin-bottom: 0;
}

.buda-events-page .menu-page-featured-gallery-header {
  margin-bottom: 22px;
  text-align: center;
}

.buda-events-page .menu-page-featured-gallery-header h2 {
  margin: 0;
  color: #8f3b52;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 0.98;
}

.buda-events-page .buda-events-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.buda-events-page .buda-events-gallery-card {
  display: block;
  overflow: hidden;
  background: #120e19;
  aspect-ratio: 1 / 1;
  box-shadow: 0 24px 54px rgba(59, 32, 20, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.buda-events-page .buda-events-gallery-card:hover,
.buda-events-page .buda-events-gallery-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(59, 32, 20, 0.2);
  filter: saturate(1.04);
}

.buda-events-page .buda-events-gallery-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.buda-events-page .buda-events-form-shell {
  width: 100%;
  text-align: left;
}

.buda-events-page .buda-events-copy-block {
  width: min(100%, 760px);
  margin: 0 0 28px;
  text-align: left;
}

.buda-events-page .buda-events-section-title {
  margin: 0 0 14px;
  color: #8f3b52;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.buda-events-page .buda-events-section-subtitle {
  margin: 0;
  color: #6b4931;
  font-size: 1rem;
  line-height: 1.8;
}

.buda-events-page .buda-events-highlight-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 28px;
}

.buda-events-page .buda-events-highlight-row .events-highlight-item {
  height: 100%;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
}

.buda-events-page .buda-events-highlight-row .events-highlight-item i {
  margin-bottom: 0;
}

.buda-events-page .buda-events-form-panel {
  width: 100%;
}

.buda-events-page .event-form-actions,
.buda-events-page .event-form-help,
.buda-events-page .event-form-error,
.buda-events-page .event-form-status {
  text-align: left;
}

@media (max-width: 992px) {
  .buda-events-page .hero {
    padding-top: 150px;
    padding-bottom: 48px;
  }

  .buda-events-page .buda-events-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .buda-events-page .buda-events-highlight-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .buda-events-page .hero {
    padding-top: 138px;
    padding-bottom: 42px;
  }
}

@media (max-width: 576px) {
  .buda-events-page .buda-events-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.buda-live-music-page .hero {
  min-height: auto;
  padding-top: 170px;
  padding-bottom: 64px;
}

.buda-live-music-page .hero-content {
  padding-left: clamp(18px, 3vw, 36px);
  padding-right: clamp(18px, 3vw, 36px);
}

.buda-live-music-page .menu-page-hero-shell {
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.buda-live-music-page .menu-page-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.buda-live-music-page .menu-page-description {
  width: min(100%, 64ch);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.8;
}

.buda-live-music-page .menu-page-section {
  padding-top: 18px;
  background: #ffffff;
}

.buda-live-music-page .menu-section-shell,
.buda-live-music-page .menu-section-shell > .row,
.buda-live-music-page .menu-section-shell > .row > .col-12,
.buda-live-music-page .menu-page-panel,
.buda-live-music-page .menu-page-featured-gallery,
.buda-live-music-page .buda-live-music-content-shell {
  min-width: 0;
}

.buda-live-music-page .menu-page-panel {
  width: min(100%, 1120px);
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.buda-live-music-page .menu-page-featured-gallery {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 44px;
}

.buda-live-music-page .menu-page-featured-gallery-header {
  margin-bottom: 22px;
  text-align: center;
}

.buda-live-music-page .menu-page-featured-gallery-header h2 {
  margin: 0;
  color: #8f3b52;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 0.98;
}

.buda-live-music-page .buda-live-music-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.buda-live-music-page .buda-live-music-featured-image-shell {
  display: block;
  overflow: hidden;
  background: #120e19;
  border-radius: 0;
  box-shadow: 0 24px 54px rgba(59, 32, 20, 0.14);
}

.buda-live-music-page .buda-live-music-featured-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}

.buda-live-music-page .buda-live-music-content-shell {
  width: 100%;
}

.buda-live-music-page .buda-live-music-copy-panel,
.buda-live-music-page .events-panel-copy {
  height: 100%;
}

@media (max-width: 992px) {
  .buda-live-music-page .hero {
    padding-top: 150px;
    padding-bottom: 48px;
  }

  .buda-live-music-page .buda-live-music-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .buda-live-music-page .hero {
    padding-top: 138px;
    padding-bottom: 42px;
  }
}

@media (max-width: 576px) {
  .buda-live-music-page .buda-live-music-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .buda-live-music-page .buda-live-music-featured-image-shell {
    border-radius: 0;
  }
}

