:root {
  --bordeaux: #CC1A24;
  --bordeaux-hover: #b5141d;
  --logo-grey: #0F1E36;
  --dark-charcoal: #091324;
  --off-white: #FAF9F6;
  --menu-bg: #09090b;
  --card-bg: #0e0e0e;
  --footer-card: #1a1a1b;
}


html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #0F1E36;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Oswald', sans-serif;
  background-color: var(--logo-grey);
  color: var(--off-white);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.section-heading {
  font-weight: 500;
  letter-spacing: -0.05em;
}

.text-bordeaux { color: var(--bordeaux); }
.bg-bordeaux { background-color: var(--bordeaux); }
.border-bordeaux { border-color: var(--bordeaux); }
.text-navy { color: var(--logo-grey); }

::selection {
  background-color: var(--bordeaux);
  color: #fff;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .animate-marquee {
    animation: none !important;
  }

  .menu-parallax,
  .sallang-parallax,
  .cta-section {
    background-attachment: scroll !important;
  }
}



#mobile-menu {
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  background-color: #fff;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.5s;
}

#mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  background-color: #fff;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.mobile-menu__close {
  color: rgba(15, 30, 54, 0.4);
  transition: color 0.2s ease;
}

.mobile-menu__close:hover {
  color: var(--logo-grey);
}

.mobile-menu__divider {
  border-color: rgba(15, 30, 54, 0.1);
}

.mobile-menu__copyright {
  font-family: 'Inter', sans-serif;
  color: #a3a3a3;
}

.mobile-menu__actions .btn-pill {
  font-size: 0.8125rem;
  padding-left: 0.875rem;
}

@media (max-width: 639px) {
  .hero-cta-row .btn-pill {
    font-size: 0.8125rem;
    padding-left: 0.875rem;
  }
}

.menu-cat-btn {
  border-radius: 9999px;
  border: 1px solid var(--section-border);
  background: var(--card-bg);
  color: var(--logo-grey);
  padding: 0.55rem 1.15rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (min-width: 640px) {
  .menu-cat-btn {
    font-size: 0.875rem;
    padding: 0.6rem 1.35rem;
  }
}

.menu-cat-btn:hover {
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--logo-grey);
  background: rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 14px rgba(15, 30, 54, 0.06);
  transform: translateY(-1px);
}

.menu-cat-btn.active {
  background-color: var(--logo-grey);
  border-color: var(--logo-grey);
  color: #fff;
  box-shadow: 0 4px 18px rgba(15, 30, 54, 0.22);
  transform: translateY(-1px);
}

.menu-cat-btn.active:hover {
  background-color: #1a2d4d;
  border-color: #1a2d4d;
  color: #fff;
}

.menu-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: var(--card-shadow);
  transition: border-color 0.35s ease;
}

.menu-card:hover {
  border-color: rgba(0, 0, 0, 0.22);
}

.menu-card--uniform.menu-card--with-image {
  height: 430px;
  min-height: 430px;
  max-height: 430px;
}

.menu-card--uniform .menu-card-media {
  height: 180px;
  min-height: 180px;
  max-height: 180px;
}

.menu-card--uniform .menu-card-body {
  flex: 1;
  min-height: 0;
}

.menu-card--uniform .menu-card-desc {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.menu-card--uniform .menu-card-extras {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .menu-card--uniform.menu-card--with-image {
    height: 256px;
    min-height: 256px;
    max-height: 256px;
  }

  .menu-card--uniform .menu-card-media {
    height: 100%;
    min-height: 0;
    max-height: none;
  }
}

.menu-card--drinks.menu-card--text {
  height: auto;
  min-height: 0;
  max-height: none;
}

.cta-section {
  background-image: url('../images/section-limonade-balatonszepezd.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.hero-bg-image {
  object-position: center center;
}

#navbar.navbar--default,
#navbar.navbar--scrolled {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

#navbar.navbar--hidden {
  transform: translateY(calc(-100% - 1.5rem));
  pointer-events: none;
}

.navbar-capsule {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 30, 54, 0.45);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: background 0.5s, border-color 0.5s, box-shadow 0.5s;
}

@media (min-width: 768px) {
  .navbar-capsule {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .navbar-capsule .nav-brand {
    grid-column: 1;
    justify-self: start;
  }

  .navbar-capsule .navbar-nav {
    grid-column: 2;
    justify-self: center;
  }

  .navbar-capsule .navbar-controls {
    grid-column: 3;
    justify-self: end;
  }
}

#navbar.navbar--scrolled .navbar-capsule {
  background: rgba(15, 30, 54, 0.45);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.nav-link {
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.125rem 0.125rem 0.125rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-pill--bordeaux {
  background-color: var(--bordeaux);
  color: #fff;
}

.btn-pill--bordeaux:hover {
  background-color: #b5141d;
}

.btn-pill--navy {
  background-color: var(--logo-grey);
  color: #fff;
}

.btn-pill--navy:hover {
  background-color: #1a2d4d;
}

.btn-pill--outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: none;
}

.btn-pill--outline:hover {
  background: #fff;
  color: #000;
}

.btn-pill--outline:hover .btn-pill__icon {
  background: #000;
  color: #fff;
}

.btn-pill__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.025rem;
  height: 2.025rem;
  border-radius: 9999px;
  background: #fff;
  flex-shrink: 0;
  line-height: 1;
  margin-left: auto;
}

.btn-pill:has(> .btn-pill__icon:only-child) {
  padding: 0.125rem;
}

.btn-pill:has(> .btn-pill__icon:only-child) .btn-pill__icon {
  margin-left: 0;
}

.btn-pill--bordeaux .btn-pill__icon {
  color: var(--bordeaux);
}

.btn-pill--navy .btn-pill__icon {
  color: var(--logo-grey);
}

.btn-pill--outline .btn-pill__icon {
  color: #000;
}

.btn-pill__icon svg {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 2.5;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.btn-pill:hover .btn-pill__icon svg {
  transform: scale(1.1) translateY(-1px);
}

.opening-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 30, 54, 0.45);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.opening-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.opening-badge--open {
  color: #fff;
}

.opening-badge--open .opening-badge__dot {
  background: #16a34a;
  animation: opening-pulse-green 2.8s ease-in-out infinite;
}

.opening-badge--closed {
  color: #fff;
}

.opening-badge--closed .opening-badge__dot {
  background: var(--bordeaux);
  animation: opening-pulse-red 2.8s ease-in-out infinite;
}

@keyframes opening-pulse-green {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.92);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }
}

@keyframes opening-pulse-red {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(204, 26, 36, 0.55);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.92);
    box-shadow: 0 0 0 6px rgba(204, 26, 36, 0);
  }
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-social-proof__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-social-proof__avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.55);
  margin-left: -10px;
  position: relative;
}

.hero-social-proof__avatars img:first-child {
  margin-left: 0;
  z-index: 3;
}

.hero-social-proof__avatars img:nth-child(2) {
  z-index: 2;
}

.hero-social-proof__avatars img:nth-child(3) {
  z-index: 1;
}

.hero-social-proof__text {
  text-align: left;
}

.hero-social-proof__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.25rem 0 0;
  line-height: 1;
}

.hero-social-proof__stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.hero-social-proof__star {
  width: 14px;
  height: 14px;
  color: #facc15;
  flex-shrink: 0;
}

.hero-social-proof__score {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}

.hero-social-proof__meta {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 640px) {
  .hero-social-proof__avatars img {
    width: 38px;
    height: 38px;
    margin-left: -12px;
  }
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
}

.cta-subtitle {
  font-family: 'Oswald', sans-serif;
}

.footer-desc,
.footer-contact__text,
.footer-hours__text {
  font-family: 'Inter', sans-serif;
}

.footer-desc__desktop,
.footer-desc__en--desktop {
  display: none;
}

.footer-follow__title--mobile,
.footer-map-link--mobile {
  display: none;
}

@media (min-width: 768px) {
  .footer-desc__mobile {
    display: none;
  }

  .footer-desc__desktop {
    display: block;
  }

  .footer-desc__en--mobile {
    display: none;
  }

  .footer-desc__en--desktop {
    display: block;
  }

  .footer-contact-col {
    display: block;
  }

  .footer-follow__title--mobile,
  .footer-map-link--mobile {
    display: none !important;
  }

  .footer-follow__title--desktop {
    display: inline;
  }
}

.footer-social-link {
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #fff;
}

.footer-social-link__icon {
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.group:hover .footer-social-link,
.footer-social-link:hover {
  background-color: var(--bordeaux);
  color: #fff;
}

.bistro-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.bistro-feature-card:hover {
  border-color: var(--logo-grey);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.bistro-feature-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--logo-grey);
  background-color: #1a2d4d;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.bistro-feature-card__icon img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.bistro-feature-card:hover .bistro-feature-card__icon {
  background-color: var(--logo-grey);
  transform: scale(1.05);
}

.bistro-feature-card__title {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--section-text);
}

@media (min-width: 768px) {
  .bistro-feature-card__title {
    font-size: calc(1rem + 2px);
  }
}

.bistro-feature-card__desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--section-text-muted);
}

.bistro-location__text {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
}

.bistro-location__icon {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(2.025rem + 2px);
  height: calc(2.025rem + 2px);
  border-radius: 50%;
  border: 2px solid var(--bordeaux);
  background: var(--section-bg);
  color: var(--bordeaux);
  flex-shrink: 0;
  line-height: 0;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.bistro-location__icon svg {
  display: block;
  flex-shrink: 0;
  width: calc(0.875rem + 2px);
  height: calc(0.875rem + 2px);
}

.bistro-location:hover .bistro-location__icon {
  border-color: var(--bordeaux);
  background: var(--bordeaux);
  color: #fff;
}

.bistro-location__city {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--section-text);
}

.bistro-location__link {
  display: inline-block;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--section-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s ease;
}

.bistro-location__link:hover {
  color: var(--bordeaux);
}

.sallang-parallax {
  background-image: url('../images/arboc-bisztro-telthaz-balatonszepezd.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 45vh;
  min-height: 300px;
}

.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid var(--section-border);
  background: transparent;
  color: var(--logo-grey);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  #galeria.section-surface {
    padding-bottom: 0;
  }
}

.gallery-marquee__scroller {
  overflow: hidden;
  width: 100%;
}

#rolunk.section-surface {
  padding-bottom: 0;
}

#konyhakert.section-surface {
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  #konyhakert.section-surface {
    padding-bottom: 5rem;
  }
}

.section-subtitle {
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 400;
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.about-section__copy {
  font-family: 'Inter', sans-serif;
}

.about-section__label {
  margin-bottom: 1.5rem;
}

.about-section__body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "content" "cta" "media";
  gap: 3rem;
}

.about-section__content {
  grid-area: content;
}

.about-section__cta {
  grid-area: cta;
}

#rolunk .about-section__cta {
  justify-self: start;
  width: fit-content;
}

.about-section__media {
  grid-area: media;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
}

.about-section__image {
  width: 100%;
}

.about-carousel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  height: 100%;
}

.about-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1.5rem;
}

.about-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.about-carousel__slide.is-previous {
  opacity: 1;
  z-index: 1;
}

.about-carousel__slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  animation: about-carousel-fade-in 1s ease-in-out both;
}

@keyframes about-carousel-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.about-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-carousel__viewport:hover .about-carousel__slide.is-active .about-carousel__img {
  transform: scale(1.05);
}

.about-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.875rem;
}

.about-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: #9ca3af;
  cursor: pointer;
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}

.about-carousel__dot.is-active {
  width: 0.75rem;
  height: 0.75rem;
  background: #6b7280;
}

@media (min-width: 1024px) {
  .about-section__body {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "content media" "cta media";
    column-gap: 6rem;
    row-gap: 1.5rem;
    align-items: stretch;
  }

  #konyhakert .about-section__body {
    grid-template-areas: "media content" "media cta";
  }

  .about-section__media {
    display: flex;
    align-items: stretch;
    max-width: none;
    margin-inline: 0;
    height: 100%;
  }

  .about-carousel {
    height: 100%;
    min-height: 100%;
  }

  .about-carousel__viewport {
    flex: 1;
    min-height: 0;
    aspect-ratio: auto;
  }

  #konyhakert .about-carousel {
    margin-inline: 0;
  }

  #konyhakert .about-section__content,
  #konyhakert .about-section__cta {
    padding-left: 2rem;
  }
}

.menu-parallax {
  background-image: url('../images/section-italok-balatonszepezd.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: -1px;
  height: 45vh;
  min-height: 300px;
}

@media (max-width: 767px) {
  .menu-parallax,
  .sallang-parallax {
    height: 36vh;
    min-height: 240px;
  }
}

.menu-card-content {
  --menu-price-col: 7rem;
}

.menu-card-title-row,
.menu-card-extras__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--menu-price-col);
  align-items: baseline;
  column-gap: 0.75rem;
}

.menu-card-title-row h3,
.menu-card-price {
  font-weight: 600;
}

.menu-card-price,
.menu-card-extras__price {
  text-align: right;
  justify-self: end;
  width: 100%;
}

.menu-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--section-text);
  opacity: 0.82;
  margin-top: 2px;
}

.menu-card-extras {
  margin-top: 0.75rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--section-border);
}

.menu-card-extras__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bordeaux);
  margin-bottom: 0.35rem;
}

.menu-card-extras__list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu-card-extras__name,
.menu-card-extras__price {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--section-text);
  opacity: 0.78;
}

.menu-card-extras__price {
  font-weight: 500;
  white-space: nowrap;
}

.menu-card--with-image {
  padding: 0;
}

.menu-card-media {
  overflow: hidden;
  isolation: isolate;
}

.menu-card-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.menu-card--with-image:hover .menu-card-media__img {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .menu-card--with-image {
    align-items: stretch;
  }

  .menu-card--with-image .menu-card-media {
    border-radius: 2rem 0 0 2rem;
    min-height: 100%;
    align-self: stretch;
  }

  .menu-card--uniform.menu-card--with-image .menu-card-media {
    min-height: 0;
  }

  .menu-card-media__img {
    border-radius: 2rem 0 0 2rem;
  }
}

@keyframes menu-tag-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.88;
  }
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  border: none;
  transform-origin: center center;
  animation: menu-tag-pulse 2.8s ease-in-out infinite;
}

.menu-tag__icon {
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  color: #fff;
}

.menu-tag--popular {
  background: var(--bordeaux);
}

.menu-tag--new {
  background: #14b8a6;
}

.menu-tag--vega {
  background: #16a34a;
}

.menu-card-tags--overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  pointer-events: none;
}

.menu-card-tags--overlay .menu-tag {
  animation: menu-tag-pulse 2.8s ease-in-out infinite;
}

.triple-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.triple-carousel__track {
  display: flex;
  will-change: transform;
}

.triple-carousel__page {
  width: 100%;
  flex-shrink: 0;
}

.triple-carousel__grid {
  display: grid;
  width: 100%;
}

.triple-carousel__grid--1 {
  grid-template-columns: 1fr;
}

.triple-carousel__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.triple-carousel--reviews .triple-carousel__grid--3 {
  gap: 2rem;
}

.triple-carousel--reviews .triple-carousel__grid--1 {
  gap: 0;
  padding-inline: 0.25rem;
}

.triple-carousel--reviews .triple-carousel__grid {
  align-items: stretch;
}

.triple-carousel--reviews .review-card {
  height: 22rem;
  min-height: 22rem;
}

.triple-carousel--reviews .review-card__quote {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

.triple-carousel--reviews .triple-carousel__layout {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.triple-carousel--reviews .triple-carousel__stage {
  flex: 1;
  min-width: 0;
  min-height: 22rem;
}

.triple-carousel--reviews .triple-carousel__viewport {
  min-height: 22rem;
}

.triple-carousel--reviews .triple-carousel__arrow {
  position: static;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .triple-carousel--reviews .triple-carousel__layout {
    gap: 1.5rem;
  }
}

.triple-carousel__dots {
  min-height: 1rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #9ca3af;
  border: none;
  cursor: pointer;
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
  padding: 0;
}

.carousel-dot.is-active {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--bordeaux);
}

.triple-carousel__arrow {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: none;
  background: rgb(0 0 0 / 0.45);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.triple-carousel__arrow:hover {
  background: var(--bordeaux);
}

.triple-carousel__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.weekly-favorites {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 180;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, visibility 0.45s ease;
}

.weekly-favorites--footer-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, visibility 0s linear 0.45s, pointer-events 0s linear 0.45s;
}

@media (min-width: 640px) {
  .weekly-favorites {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}

.weekly-favorites__fab {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 30, 54, 0.45);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.weekly-favorites__fab:hover {
  transform: translateY(-2px);
  background: rgba(15, 30, 54, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.weekly-favorites--open .weekly-favorites__fab {
  background: var(--bordeaux);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 30px rgba(204, 26, 36, 0.3);
}

.weekly-favorites__fab-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--bordeaux);
  fill: currentColor;
  flex-shrink: 0;
  transition: color 0.25s ease, fill 0.25s ease;
}

.weekly-favorites--open .weekly-favorites__fab-icon {
  color: #fff;
}

.weekly-favorites__panel {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.55s;
}

.weekly-favorites--open .weekly-favorites__panel {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.weekly-favorites__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 54, 0.32);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.weekly-favorites--open .weekly-favorites__backdrop {
  opacity: 1;
  transition-duration: 0.5s;
}

.weekly-favorites__dialog {
  position: absolute;
  left: 1rem;
  bottom: 4.75rem;
  width: min(19.36rem, calc((100vw - 2rem) * 0.88));
  max-height: min(70vh, 32rem);
  overflow: auto;
  padding: 1.25rem;
  border-radius: 2rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  color: var(--section-text);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transform-origin: left bottom;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

@media (min-width: 640px) {
  .weekly-favorites__dialog {
    left: 1.5rem;
    bottom: 5.25rem;
    width: min(22.88rem, calc((100vw - 3rem) * 0.88));
    padding: 1.5rem;
  }
}

.weekly-favorites--open .weekly-favorites__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.05s;
}

.weekly-favorites__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--section-border);
  border-radius: 9999px;
  background: var(--section-bg);
  color: var(--section-text-muted);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.weekly-favorites__close:hover {
  color: var(--bordeaux);
  border-color: rgba(204, 26, 36, 0.25);
  background: rgba(204, 26, 36, 0.06);
}

.weekly-favorites__close svg {
  width: 1.125rem;
  height: 1.125rem;
}

.weekly-favorites__title {
  margin: 0 2rem 1rem 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--section-text);
}

.weekly-favorites__title-accent {
  color: var(--bordeaux);
}

@media (min-width: 640px) {
  .weekly-favorites__title {
    font-size: 1.1875rem;
  }
}

.weekly-favorites__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.weekly-favorites__card {
  display: flex;
  gap: 0.85rem;
  padding: 0.65rem;
  border-radius: 1.25rem;
  border: 1px solid var(--card-border);
  background: var(--section-bg);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.weekly-favorites__card:hover {
  border-color: rgba(204, 26, 36, 0.25);
  transform: translateY(-1px);
  box-shadow: var(--card-shadow);
}

.weekly-favorites__card-media {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--section-border);
}

.weekly-favorites__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weekly-favorites__card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.weekly-favorites__card-name {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--section-text);
}

.weekly-favorites__card-price {
  margin: 0.2rem 0 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bordeaux);
}

.scroll-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 180;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 30, 54, 0.45);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  color: var(--bordeaux);
  cursor: pointer;
  transform: translateX(calc(-100% - 2rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, visibility 0.45s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.scroll-to-top--visible {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-to-top--visible:hover {
  transform: translateX(0) translateY(-2px);
  background: rgba(15, 30, 54, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.scroll-to-top__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: block;
  color: var(--bordeaux);
}

@media (min-width: 640px) {
  .scroll-to-top {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.footer-bottom__copyright,
.footer-bottom__credit {
  font-family: 'Inter', sans-serif;
}

@media (min-width: 1024px) {
  .footer-bottom__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }

  .footer-bottom__legal {
    justify-self: start;
    justify-content: flex-start;
  }

  .footer-bottom__copyright {
    justify-self: center;
  }

  .footer-bottom__credit {
    justify-self: end;
  }

  .footer-social-link {
    width: 2.75rem;
    height: 2.75rem;
  }

  .footer-social-link__icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.venue-picker {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  background: #05070d;
  opacity: 1;
  visibility: visible;
  outline: none;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
}

.venue-picker--dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.venue-picker__panel {
  position: relative;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.venue-picker__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  margin: 0;
  pointer-events: none;
}

.venue-picker__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.venue-picker__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.55) 0%, rgba(5, 7, 13, 0.72) 100%);
  transition: background 0.75s ease-in-out;
}

.venue-picker__panel:hover .venue-picker__media-img,
.venue-picker__panel:focus-visible .venue-picker__media-img {
  transform: scale(1.08);
}

.venue-picker__panel:hover .venue-picker__overlay,
.venue-picker__panel:focus-visible .venue-picker__overlay {
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.3) 0%, rgba(5, 7, 13, 0.5) 100%);
}

.venue-picker:has(.venue-picker__panel--arboc:hover) .venue-picker__panel--konyhakert .venue-picker__overlay,
.venue-picker:has(.venue-picker__panel--arboc:focus-visible) .venue-picker__panel--konyhakert .venue-picker__overlay,
.venue-picker:has(.venue-picker__panel--konyhakert:hover) .venue-picker__panel--arboc .venue-picker__overlay,
.venue-picker:has(.venue-picker__panel--konyhakert:focus-visible) .venue-picker__panel--arboc .venue-picker__overlay {
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.72) 0%, rgba(5, 7, 13, 0.88) 100%);
}

.venue-picker__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 1.5rem;
  text-align: center;
}

.venue-picker__logo {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.venue-picker__panel:hover .venue-picker__logo,
.venue-picker__panel:focus-visible .venue-picker__logo {
  transform: translateY(-3px) scale(1.05);
}

.venue-picker__name {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.venue-picker__name-break {
  display: none;
}

.venue-picker__tag {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  max-width: 22rem;
}

.venue-picker__cta {
  margin-top: 0.35rem;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.5s ease-in-out;
}

.venue-picker__panel:hover .venue-picker__cta,
.venue-picker__panel:focus-visible .venue-picker__cta {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

@media (min-width: 640px) {
  .venue-picker__content {
    gap: 1.1rem;
    padding: 2rem;
  }

  .venue-picker__tag {
    font-size: 0.9375rem;
  }
}

@media (min-width: 992px) {
  .venue-picker {
    flex-direction: row;
  }

  .venue-picker__logo {
    width: 6rem;
    height: 6rem;
  }

  .venue-picker__name {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .venue-picker,
  .venue-picker--dismissed,
  .venue-picker__media,
  .venue-picker__media-img,
  .venue-picker__overlay,
  .venue-picker__logo,
  .venue-picker__cta {
    transition: none !important;
  }
}


:root {
  --section-bg: #ffffff;
  --section-text: #171717;
  --section-text-muted: #737373;
  --section-border: rgba(0, 0, 0, 0.08);
  --card-bg: #fafafa;
  --card-border: rgba(0, 0, 0, 0.08);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --nav-link: rgba(255, 255, 255, 0.7);
  --nav-link-hover: var(--bordeaux);
}

*,
*::before,
*::after {
  font-style: normal !important;
}

.brand-title,
.brand-logo-text {
  text-transform: uppercase;
}

.section-surface {
  background-color: var(--section-bg);
  color: var(--section-text);
}

.section-surface .text-muted {
  color: var(--section-text-muted);
}

.section-surface .border-theme {
  border-color: var(--section-border);
}

.review-card__quote,
.review-card__source {
  font-family: 'Inter', sans-serif;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: none;
}

.nav-brand {
  font-size: 1rem; 
}

@media (min-width: 640px) {
  .nav-brand {
    font-size: 1.25rem; 
  }

  #navbar .nav-brand {
    font-size: calc(1.25rem - 2px);
  }
}

.nav-logo {
  width: calc((1em + 10px) * 1.1);
  height: calc((1em + 10px) * 1.1);
  flex-shrink: 0;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo {
  transform: scale(1.1) translateY(-1px);
}

#navbar .nav-brand .brand-logo-text {
  text-transform: none;
  color: #fff;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.footer-brand.nav-brand {
  font-size: 1rem;
}

@media (min-width: 640px) {
  .footer-brand.nav-brand {
    font-size: calc(1.25rem - 2px);
  }
}

.footer-brand .brand-logo-text {
  text-transform: none;
  color: #fff;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .footer-brand .nav-logo {
    width: calc((1em + 10px) * 1.1 + 6px);
    height: calc((1em + 10px) * 1.1 + 6px);
  }
}

#mobile-menu .nav-brand {
  font-size: 1.125rem;
}

#mobile-menu .brand-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: none;
  color: var(--logo-grey);
}

#mobile-menu .mobile-nav-link:not(.btn-pill) {
  font-family: 'Inter', sans-serif;
  color: var(--logo-grey);
}

#mobile-menu .mobile-nav-link:not(.btn-pill):hover {
  color: var(--bordeaux);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.125rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switcher__option {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.45rem 0.7rem;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.lang-switcher__option:hover:not(.is-active) {
  color: #fff;
}

.lang-switcher__option.is-active {
  background: #fff;
  color: var(--logo-grey);
}

.lang-switcher--navbar-mobile {
  gap: 0.375rem;
  padding: 0;
  border: none;
  background: transparent;
}

.lang-switcher--navbar-mobile .lang-switcher__option {
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.lang-switcher--navbar-mobile .lang-switcher__option:hover:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.lang-switcher--navbar-mobile .lang-switcher__option.is-active {
  background: #fff;
  border-color: #fff;
  color: var(--logo-grey);
}

.lang-switcher--navbar-mobile .lang-switcher__option[hidden] {
  display: none !important;
}

*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!container{width:100%!important}.container{width:100%}@media (min-width:640px){.\!container{max-width:640px!important}.container{max-width:640px}}@media (min-width:768px){.\!container{max-width:768px!important}.container{max-width:768px}}@media (min-width:1024px){.\!container{max-width:1024px!important}.container{max-width:1024px}}@media (min-width:1280px){.\!container{max-width:1280px!important}.container{max-width:1280px}}@media (min-width:1536px){.\!container{max-width:1536px!important}.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-10{left:2.5rem}.left-4{left:1rem}.right-4{right:1rem}.right-6{right:1.5rem}.top-1\/4{top:25%}.top-4{top:1rem}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.z-\[200\]{z-index:200}.z-\[300\]{z-index:300}.z-\[350\]{z-index:350}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-20{margin-bottom:5rem}.mb-24{margin-bottom:6rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mr-\[5\%\]{margin-right:5%}.mt-10{margin-top:2.5rem}.mt-12{margin-top:3rem}.mt-auto{margin-top:auto}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.\!grid{display:grid!important}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.h-10{height:2.5rem}.h-12{height:3rem}.h-5{height:1.25rem}.h-8{height:2rem}.h-96{height:24rem}.h-full{height:100%}.h-screen{height:100vh}.min-h-0{min-height:0}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.w-12{width:3rem}.w-5{width:1.25rem}.w-8{width:2rem}.w-96{width:24rem}.w-\[300px\]{width:300px}.w-\[80\%\]{width:80%}.w-full{width:100%}.min-w-0{min-width:0}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.list-disc{list-style-type:disc}.list-none{list-style-type:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0{gap:0}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-12{gap:3rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(2rem*var(--tw-space-x-reverse));margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem*var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))}.overflow-hidden{overflow:hidden}.whitespace-nowrap{white-space:nowrap}.rounded-3xl{border-radius:1.5rem}.rounded-\[2rem\]{border-radius:2rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-t{border-top-width:1px}.border-bordeaux{--tw-border-opacity:1;border-color:rgb(204 26 36/var(--tw-border-opacity,1))}.border-white\/10{border-color:hsla(0,0%,100%,.1)}.border-white\/5{border-color:hsla(0,0%,100%,.05)}.bg-\[\#0F1E36\]{--tw-bg-opacity:1;background-color:rgb(15 30 54/var(--tw-bg-opacity,1))}.bg-\[\#1a1a1b\]{--tw-bg-opacity:1;background-color:rgb(26 26 27/var(--tw-bg-opacity,1))}.bg-\[\#CC1A24\]{--tw-bg-opacity:1;background-color:rgb(204 26 36/var(--tw-bg-opacity,1))}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.bg-black\/25{background-color:rgba(0,0,0,.25)}.bg-black\/45{background-color:rgba(0,0,0,.45)}.bg-black\/50{background-color:rgba(0,0,0,.5)}.bg-black\/80{background-color:rgba(0,0,0,.8)}.bg-bordeaux\/5{background-color:rgba(204,26,36,.05)}.fill-current{fill:currentColor}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.p-2{padding:.5rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-24{padding-top:6rem;padding-bottom:6rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-32{padding-top:8rem;padding-bottom:8rem}.py-4{padding-top:1rem;padding-bottom:1rem}.pb-12{padding-bottom:3rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pl-6{padding-left:1.5rem}.pt-10{padding-top:2.5rem}.pt-24{padding-top:6rem}.pt-4{padding-top:1rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.font-Oswald{font-family:Oswald,sans-serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-5xl{font-size:3rem;line-height:1}.text-\[17px\]{font-size:17px}.text-\[18px\]{font-size:18px}.text-\[34px\]{font-size:34px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-\[0\.3em\]{letter-spacing:.3em}.tracking-tight{letter-spacing:-.025em}.tracking-tighter{letter-spacing:-.05em}.tracking-wide{letter-spacing:.025em}.text-bordeaux{--tw-text-opacity:1;color:rgb(204 26 36/var(--tw-text-opacity,1))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.text-navy{--tw-text-opacity:1;color:rgb(15 30 54/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.text-white\/70{color:hsla(0,0%,100%,.7)}.text-white\/85{color:hsla(0,0%,100%,.85)}.no-underline{text-decoration-line:none}.opacity-20{opacity:.2}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-lg,.shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.blur{--tw-blur:blur(8px)}.blur,.blur-\[120px\]{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-\[120px\]{--tw-blur:blur(120px)}.brightness-\[0\.68\]{--tw-brightness:brightness(0.68)}.brightness-\[0\.68\],.brightness-\[0\.85\]{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.brightness-\[0\.85\]{--tw-brightness:brightness(0.85)}.drop-shadow-2xl{--tw-drop-shadow:drop-shadow(0 25px 25px rgba(0,0,0,.15))}.drop-shadow-2xl,.drop-shadow-lg{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-lg{--tw-drop-shadow:drop-shadow(0 10px 8px rgba(0,0,0,.04)) drop-shadow(0 4px 3px rgba(0,0,0,.1))}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-1000{transition-duration:1s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.menu-card-tags--overlay .menu-tag{animation:menu-tag-pulse 2.8s ease-in-out infinite!important;transform-origin:center center}.selection\:bg-bordeaux ::-moz-selection{--tw-bg-opacity:1;background-color:rgb(204 26 36/var(--tw-bg-opacity,1))}.selection\:bg-bordeaux ::selection{--tw-bg-opacity:1;background-color:rgb(204 26 36/var(--tw-bg-opacity,1))}.selection\:text-white ::-moz-selection{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.selection\:text-white ::selection{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.selection\:bg-bordeaux::-moz-selection{--tw-bg-opacity:1;background-color:rgb(204 26 36/var(--tw-bg-opacity,1))}.selection\:bg-bordeaux::selection{--tw-bg-opacity:1;background-color:rgb(204 26 36/var(--tw-bg-opacity,1))}.selection\:text-white::-moz-selection{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.selection\:text-white::selection{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.hover\:bg-\[\#b5141d\]:hover{--tw-bg-opacity:1;background-color:rgb(181 20 29/var(--tw-bg-opacity,1))}.hover\:text-bordeaux:hover{--tw-text-opacity:1;color:rgb(204 26 36/var(--tw-text-opacity,1))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.group:hover .group-hover\:scale-110{--tw-scale-x:1.1;--tw-scale-y:1.1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:text-bordeaux{--tw-text-opacity:1;color:rgb(204 26 36/var(--tw-text-opacity,1))}@media (min-width:640px){.sm\:left-6{left:1.5rem}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:w-\[42\%\]{width:42%}.sm\:w-auto{width:auto}.sm\:max-w-none{max-width:none}.sm\:flex-initial{flex:0 1 auto}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:gap-10{gap:2.5rem}.sm\:gap-6{gap:1.5rem}.sm\:space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(2rem*var(--tw-space-y-reverse))}.sm\:rounded-2xl{border-radius:1rem}.sm\:border{border-width:1px}.sm\:bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.sm\:p-8{padding:2rem}.sm\:px-16{padding-left:4rem;padding-right:4rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-3{padding-top:.75rem;padding-bottom:.75rem}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}.sm\:py-40{padding-top:10rem;padding-bottom:10rem}.sm\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-5xl{font-size:3rem;line-height:1}.sm\:text-6xl{font-size:3.75rem;line-height:1}.sm\:text-\[20px\]{font-size:20px}.sm\:text-\[26px\]{font-size:26px}.sm\:text-lg{font-size:1.125rem;line-height:1.75rem}.sm\:shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}@media (min-width:768px){.md\:flex{display:flex}.md\:hidden{display:none}.md\:w-\[450px\]{width:450px}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:py-32{padding-top:8rem;padding-bottom:8rem}.md\:text-2xl{font-size:1.5rem;line-height:2rem}.md\:text-5xl{font-size:3rem;line-height:1}.md\:text-6xl{font-size:3.75rem;line-height:1}.md\:text-7xl{font-size:4.5rem;line-height:1}.md\:text-8xl{font-size:6rem;line-height:1}}@media (min-width:1024px){.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:gap-10{gap:2.5rem}.lg\:gap-20{gap:5rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:text-7xl{font-size:4.5rem;line-height:1}.lg\:text-8xl{font-size:6rem;line-height:1}}

@media (max-width: 767px) {
  main {
    overflow-x: clip;
  }

  .venue-picker__name-break {
    display: inline;
  }

  .navbar-mobile-controls {
    gap: 0.25rem !important;
  }

  .navbar-mobile-controls__menu-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  #navbar .nav-brand {
    font-size: 1rem;
  }

  #navbar .nav-logo {
    width: calc((1em + 10px) * 1.1 + 2px);
    height: calc((1em + 10px) * 1.1 + 2px);
  }

  .lang-switcher--navbar-mobile .lang-switcher__option:not([hidden]) {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    font-weight: 400;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-cta-row {
    max-width: none;
    width: auto;
  }

  main > section:first-of-type .hero-cta-row .btn-pill {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    font-size: 0.875rem !important;
    padding: 0.125rem 0.125rem 0.125rem 1.25rem !important;
  }

  main > section:first-of-type h1.brand-title {
    margin-bottom: 0.65rem !important;
  }

  main > section:first-of-type .hero-subtitle {
    font-size: 1.125rem !important;
    margin-top: -0.15rem !important;
    margin-bottom: 2rem !important;
  }

  .weekly-favorites--open .weekly-favorites__card-media {
    width: calc(4.5rem - 8px);
    height: calc(4.5rem - 8px);
  }

  .bistro-feature-card__title {
    font-size: calc(1rem + 4px);
  }

  .bistro-feature-card__icon {
    width: calc(3.5rem - 2px);
    height: calc(3.5rem - 2px);
  }

  #mobile-menu .nav-brand {
    font-size: 1rem;
  }

  #mobile-menu .nav-logo {
    width: calc((1em + 10px) * 1.1 + 6px);
    height: calc((1em + 10px) * 1.1 + 6px);
    border: 1px solid rgba(15, 30, 54, 0.18);
  }

  .mobile-menu__header {
    border-bottom-width: 1px;
  }

  .mobile-menu__body {
    padding-top: 1rem;
    padding-bottom: 5vh;
  }

  .mobile-menu__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .mobile-menu__footer {
    flex-shrink: 0;
    width: 100%;
  }

  #mobile-menu .brand-logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.05em;
    color: var(--logo-grey);
  }

  .mobile-menu__close {
    color: var(--logo-grey);
  }

  .mobile-menu__close:hover {
    color: var(--bordeaux);
  }

  .mobile-menu__lang-spacer {
    width: 2rem;
    flex-shrink: 0;
  }

  .mobile-menu__actions {
    gap: 0.75rem;
  }

  .mobile-menu__actions .btn-pill {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    font-size: 0.875rem !important;
    padding: 0.125rem 0.125rem 0.125rem 1.25rem !important;
  }

  .mobile-menu__copyright {
    color: #4b5563;
    font-weight: 500;
  }

  #bisztroink h2.font-Oswald {
    font-size: 42px !important;
  }

  #bisztroink h2.font-Oswald .text-navy,
  #bisztroink h2.font-Oswald .text-bordeaux {
    display: block;
    white-space: nowrap;
  }

  #bisztroink h2.font-Oswald br {
    display: none;
  }

  #etelek h2.font-Oswald,
  #rolunk h2.font-Oswald,
  #galeria h2.section-heading,
  #velemenyek h2.section-heading {
    font-size: 44px !important;
  }

  .cta-section h2.section-heading {
    font-size: 48px !important;
  }

  #rolunk .about-section__label {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  #rolunk .about-section__content > h2 {
    text-align: center;
  }

  #rolunk .about-section__copy {
    display: flex;
    flex-direction: column;
  }

  #rolunk .about-section__cta {
    display: none !important;
  }

  #rolunk .about-carousel__viewport {
    border: none;
  }

  #konyhakert .about-section__label {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  #konyhakert .about-section__content > h2 {
    text-align: center;
  }

  #konyhakert .about-section__copy {
    text-align: left;
  }

  #konyhakert .about-section__cta {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
  }

  #konyhakert .about-section__cta .btn-pill {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
  }

  #konyhakert .about-carousel__viewport {
    border: none;
  }

  #rolunk .about-section__body {
    grid-template-areas: "content" "media";
  }

  #konyhakert .about-section__body {
    grid-template-areas: "content" "media" "cta";
  }

  #konyhakert.section-surface {
    padding-bottom: 2.5rem;
  }

  #etelek .menu-card-title--nowrap {
    white-space: nowrap;
  }

  #etelek .menu-card {
    border-color: rgba(0, 0, 0, 0.22);
  }

  #etelek .menu-card-title-row {
    margin-bottom: calc(0.5rem * 1.1) !important;
  }

  #etelek .menu-card-desc {
    margin-top: calc(2px * 1.1);
  }

  #etelek .menu-card--uniform.menu-card--with-image.menu-card--no-extras {
    height: 350px;
    min-height: 350px;
    max-height: 350px;
  }

  #galeria.section-surface {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  #rolunk.section-surface {
    padding-bottom: 0;
    border-bottom: none;
    overflow: visible;
  }

  #velemenyek.section-surface {
    border-top: none;
    box-shadow: none;
    margin-top: 0;
    padding-top: 5.5rem !important;
  }

  #velemenyek .text-center.mb-20 {
    margin-bottom: 3rem !important;
  }

  #velemenyek .triple-carousel__dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
    flex-wrap: nowrap;
    min-height: 0;
  }

  #velemenyek .carousel-dot.is-active {
    background: #6b7280;
  }

  #velemenyek.section-surface::before,
  #velemenyek.section-surface::after {
    display: none !important;
    content: none !important;
  }

  .cta-section h2.section-heading {
    margin-bottom: 0.65rem !important;
  }

  .cta-section .cta-subtitle {
    font-size: 1.125rem !important;
    font-weight: 500;
    line-height: 1.625;
    margin-top: -0.15rem !important;
    margin-bottom: 2rem !important;
  }

  .cta-section .cta-actions-row {
    flex-direction: row !important;
    gap: 0.75rem !important;
    max-width: none;
    width: auto;
  }

  .cta-section .cta-actions-row .btn-pill {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    font-size: 0.875rem !important;
    padding: 0.125rem 0.125rem 0.125rem 1.25rem !important;
  }

  .footer-contact-col {
    display: none !important;
  }

  .footer-follow__title--desktop {
    display: none !important;
  }

  .footer-follow__title--mobile {
    display: inline !important;
  }

  .footer-map-link--mobile {
    display: flex !important;
  }

  .footer-brand.nav-brand {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .footer-brand .nav-logo {
    width: calc((1em + 10px) * 1.1 + 6px) !important;
    height: calc((1em + 10px) * 1.1 + 6px) !important;
    border: 1px solid rgba(15, 30, 54, 0.18);
  }

  .footer-brand .brand-logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.05em;
  }
}

@media (max-width: 639px) {
  main > section:first-of-type h1.brand-title {
    font-size: calc(3rem + 4px) !important;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  #navbar .nav-brand {
    font-size: 1.25rem;
  }

  #mobile-menu .nav-brand {
    font-size: 1.25rem;
  }

  .footer-brand.nav-brand {
    font-size: 1.25rem !important;
  }

  #etelek .menu-card--uniform.menu-card--with-image.menu-card--no-extras {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }

  main > section:first-of-type h1.brand-title {
    font-size: calc(3.75rem + 4px) !important;
  }
}
