@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Hooskai Chamfered Square";
  src: url("../fonts/HooskaiChamferedSquare-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1c1917;
  --muted: #57534d;
  --line: #e7e5e4;
  --paper: #fafaf9;
  --cream: #fffbeb;
  --accent: #bb4d00;
  --amber: #f59e0b;
  --green: #009246;
  --red: #ce2b37;
  --dark: #1c1917;
  --font-body: "Jost", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --hero-title-font-family: var(--font-display);
  --hero-title-font-weight: 400;
  --hero-title-line-height: .9;
  --hero-title-line-height-mobile: .94;
  --hero-title-letter-spacing: 0;
  --hero-content-offset-y: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container-wide {
  width: min(1232px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-title,
.display-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.section-title {
  margin: 16px 0 12px;
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.btn-pill {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .8px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.btn-pill:hover {
  transform: translateY(-2px);
}

.btn-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-reserve-table {
  border-color: #FFB900;
  color: #FFB900;
}

.btn-reserve-table:hover,
.btn-reserve-table:focus-visible {
  background: #FFB900;
  border-color: #FFB900;
  color: var(--ink);
}

.hero .btn-reserve-table {
  border-color: #fff !important;
  color: #fff !important;
}

.hero .btn-reserve-table:hover,
.hero .btn-reserve-table:focus-visible {
  background: #fff;
  border-color: #fff !important;
  color: #BB4D00 !important;
}

.location-card .btn-reserve-table {
  border-color: #BB4D00;
  color: #FFB900;
}

.location-card .btn-reserve-table:hover,
.location-card .btn-reserve-table:focus-visible {
  background: #BB4D00;
  border-color: #BB4D00;
  color: #fff;
}

.icon-circle {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #fef3c6;
  border-radius: 50%;
  background: #fffbeb;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
  background: #fff;
  border-bottom: 1px solid #e7e5e4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.site-header__inner {
  width: min(1936px, calc(100% - 64px));
  min-height: 68px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  align-items: center;
  gap: 20px;
}

.site-logo {
  width: 140px;
  display: inline-flex;
  align-items: center;
}

.site-logo__image {
  display: block;
  width: 140px;
  height: auto;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 3.6vw, 58px);
}

.site-nav a {
  position: relative;
  color: #292524;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.site-phone {
  display: none;
  align-items: center;
  gap: 9px;
  color: #292524;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.site-phone span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-phone svg {
  display: block;
  width: 16px;
  height: 16px;
}

.header-reserve {
  min-width: 154px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #c75000;
  color: #fff;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}

.header-reserve:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero {
  min-height: 852px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, .20)
}

.hero::after {
  z-index: 1;
  inset: auto 0 0;
  height: 245px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .56), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #111;
  transform: translate3d(0, var(--hero-bg-y, 0px), 0) scale(var(--hero-bg-scale, 1));
  transition: transform .18s linear;
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero .container-wide {
  width: min(1232px, calc(100% - 208px));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(672px, 100%);
  margin-top: var(--hero-content-offset-y, 0px);
  transform: translate3d(0, var(--hero-content-y, 0px), 0);
  will-change: transform;
}

.hero-kicker {
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 20px 0 17px;
  color: #fff;
  font-family: var(--hero-title-font-family);
  font-size: 44px;
  font-weight: var(--hero-title-font-weight);
  line-height: var(--hero-title-line-height);
  letter-spacing: var(--hero-title-letter-spacing);
}

.hero-rule {
  width: 64px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--accent);
}

.hero p {
  width: min(508px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .btn-pill {
  min-width: 200px;
  min-height: 54px;
  padding: 14px 32px;
  border-width: 1px;
  font-size: 16px;
  letter-spacing: .8px;
}

.hero-arrows {
  position: absolute;
  inset: 50% 32px auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-arrows button,
.round-nav {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
  pointer-events: auto;
  transition: transform .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.round-nav:hover,
.round-nav:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(187, 77, 0, .22);
}

.round-nav:active {
  transform: translateY(0) scale(.96);
}

.hero-arrows button {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .86);
  color: #292524;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  box-shadow: none;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-dots span {
  width: 16px;
  height: 6px;
  border-radius: 999px;
  background: #d6d3d1;
}

.slider-dots span.active,
.slider-dots button.active {
  width: 40px;
  background: var(--accent);
}

.slider-dots button {
  width: 16px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #d6d3d1;
  transition: width .25s ease, background .25s ease;
}

.hero .slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.about-grid {
  display: grid;
  grid-template-columns: .76fr 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.image-card {
  min-height: 192px;
  overflow: hidden;
  border-radius: 16px;
}

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

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-copy {
  padding-top: 10px;
}

.about-copy h2 {
  max-width: 440px;
  margin: 18px 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(38px, 4.4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
}

.about-copy h2 em {
  font-style: italic;
}

.about-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.quote-row {
  margin: 40px 0 24px;
  border-block: 1px solid var(--line);
  padding: 32px 0;
  display: flex;
  gap: 24px;
}

.quote-mark {
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 80px;
  line-height: .7;
}

.quote-row blockquote {
  margin: 0;
  color: #44403b;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 3vw, 28px);
  font-style: italic;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin: 48px 0;
}

.feature {
  min-height: 190px;
}

.feature h3,
.event-card h3 {
  margin: 18px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.feature p,
.event-card p {
  color: #79716b;
  font-size: 14px;
  line-height: 1.75;
}

.food-strip {
  --food-carousel-gap: 20px;
  --food-carousel-gap-half: 10px;
  position: relative;
  overflow: clip;
  overflow-clip-margin: 36px;
  margin: -18px 0;
  padding: 18px 0;
}

.food-strip__track {
  display: flex;
  gap: var(--food-carousel-gap);
  width: max-content;
  animation: foodCarousel 56s linear infinite;
}

.food-strip:hover .food-strip__track {
  animation-play-state: paused;
}

.food-strip:has(.food-slide:focus-visible) .food-strip__track {
  animation-play-state: paused;
}

.food-slide {
  flex: 0 0 clamp(220px, 25vw, 323px);
  padding: 0;
  border: 0;
  cursor: zoom-in;
  transition: transform .28s ease, box-shadow .28s ease;
  transform-origin: center;
  will-change: transform;
}

.food-slide:hover,
.food-slide:focus-visible {
  z-index: 2;
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(28, 25, 23, .18);
}

.food-slide:focus-visible {
  outline: 3px solid rgba(146, 64, 14, .45);
  outline-offset: 4px;
}

.food-slide.image-card {
  aspect-ratio: 323 / 332;
}

.food-modal .modal-content {
  background: #16110d;
}

.food-modal .modal-header {
  border-color: rgba(255, 255, 255, .12);
}

.food-modal .modal-title {
  color: #fff;
}

.food-modal .btn-close {
  filter: invert(1);
}

.food-modal .modal-body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.food-modal__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  border-radius: 18px;
  object-fit: contain;
}

.gallery-modal .modal-content {
  background: #080706;
}

.gallery-modal .modal-header {
  border-color: rgba(255, 255, 255, .12);
}

.gallery-modal .modal-title {
  color: #fff;
}

.gallery-modal .btn-close {
  filter: invert(1);
}

.gallery-modal .modal-body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-modal__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  border-radius: 18px;
  object-fit: contain;
}

@keyframes foodCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--food-carousel-gap-half)));
  }
}

.flag-divider {
  display: flex;
  align-items: center;
  height: 15px;
  background: #fff;
  overflow: hidden;
}

.flag-divider::before,
.flag-divider::after {
  content: "";
  flex: 1;
  height: 5px;
}

.flag-divider::before {
  background: var(--green);
}

.flag-divider::after {
  background: var(--red);
}

.flag-divider span {
  height: 15px;
  padding: 0 28px;
  color: #292524;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 8px;
  white-space: nowrap;
}

.delivery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(157deg, #fffbeb 0%, #fafaf9 50%, #fef3c6 100%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.delivery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}

.delivery-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(27px, 5vw, 44px);
  line-height: 1.1;
}

.delivery-meta {
  display: flex;
  gap: 28px;
  margin: 24px 0 30px;
}

.btn-delivery-menu {
  border-color: #BB4D00;
  color: #BB4D00;
}

.btn-delivery-menu:hover,
.btn-delivery-menu:focus-visible {
  background: #BB4D00;
  border-color: #BB4D00;
  color: #fff;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.meta-item strong {
  display: block;
  font-size: 15px;
}

.meta-item span {
  color: var(--muted);
  font-size: 13px;
}

.delivery-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .08);
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-8px);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 22px 44px rgba(28, 25, 23, .16);
}

.event-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.event-media {
  position: relative;
  height: 176px;
  overflow: hidden;
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.event-card:hover .event-media img,
.event-card:focus-within .event-media img {
  transform: scale(1.06);
}

.event-date {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #973c00;
  font-size: 13px;
  transition: transform .28s ease, background .28s ease;
}

.event-card:hover .event-date,
.event-card:focus-within .event-date {
  transform: translateY(-2px);
  background: #fff;
}

.event-body {
  padding: 28px;
}

.event-type {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 500;
  transition: color .2s ease, transform .2s ease;
}

.event-card:hover .text-link,
.event-card:focus-within .text-link {
  color: #973c00;
  transform: translateX(4px);
}

.event-detail-hero {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 72px 0 96px;
  color: #fff;
  background: #111;
}

.event-detail-hero.event-detail-hero--plain {
  display: block;
  min-height: 0;
  overflow: visible;
  padding: 44px 0 24px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf4 0%, #fff 100%);
}

.event-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .28) 55%, rgba(0, 0, 0, .52));
}

.event-detail-hero--plain::before {
  display: none;
}

.event-detail-hero--plain .event-detail-back {
  margin-bottom: 18px;
  color: var(--muted);
}

.event-detail-hero--plain .event-detail-back:hover {
  color: var(--accent);
}

.event-detail-hero--plain .event-detail-hero__content p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.event-detail-hero--plain .event-detail-meta span {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.event-detail-back,
.event-detail-hero__content {
  position: relative;
  z-index: 2;
}

.event-detail-back {
  display: inline-flex;
  margin-bottom: 72px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  transition: color .2s ease, transform .2s ease;
}

.event-detail-back:hover {
  color: #fff;
  transform: translateX(-4px);
}

.event-detail-hero__content {
  max-width: 820px;
}

.event-detail-hero--plain .event-detail-hero__content {
  max-width: 980px;
}

.event-detail-hero__content h1 {
  margin: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 94px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.event-detail-hero--plain .event-detail-hero__content h1 {
  margin: 14px 0 12px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.02;
}

.event-detail-hero__content p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.6;
}

.event-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-detail-hero--plain .event-detail-meta {
  margin-top: 16px;
}

.event-detail-meta span {
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px 36px;
  align-items: start;
}

.event-detail-section {
  padding: 28px 0 64px;
  background: var(--paper);
}

.event-detail-poster {
  grid-column: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(28, 25, 23, .07);
}

.event-detail-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.event-detail-content {
  grid-column: 1;
  min-width: 0;
  padding-top: 2px;
}

.event-detail-copy {
  margin-top: 18px;
  color: #44403b;
  font-size: 17px;
  line-height: 1.72;
}

.event-detail-copy > *:first-child {
  margin-top: 0;
}

.event-detail-copy h2,
.event-detail-copy h3 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.event-detail-copy p,
.event-detail-copy ul,
.event-detail-copy ol {
  margin-bottom: 14px;
}

.event-detail-copy img {
  width: 100%;
  margin: 32px 0;
  border-radius: 16px;
}

.event-detail-aside {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 84px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(28, 25, 23, .07);
}

.event-detail-aside__group {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.event-detail-aside__group span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-detail-aside__group strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.event-related-section {
  padding-top: 56px;
}

.menu-stage {
  position: relative;
  min-height: 780px;
  margin-top: 48px;
}

.menu-page {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(560px, 46vw);
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-50% + min(47vw, 560px))) scale(.92);
  transform-origin: center top;
  z-index: 0;
  transition:
    opacity .5s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1),
    box-shadow .5s ease;
  backface-visibility: hidden;
  contain: layout paint;
  will-change: transform, opacity;
}

.menu-page img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-page:focus-visible {
  outline: 3px solid rgba(146, 64, 14, .45);
  outline-offset: 5px;
}

.menu-page.is-main {
  transform: translateX(-50%) translateY(0) scale(1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.menu-page.is-left,
.menu-page.is-right {
  opacity: .5;
  border-radius: 14px;
  box-shadow: none;
  z-index: 1;
  pointer-events: auto;
}

.menu-page.is-left {
  transform: translateX(calc(-50% - min(37vw, 440px))) translateY(205px) scale(.45);
}

.menu-page.is-right {
  transform: translateX(calc(-50% + min(37vw, 440px))) translateY(205px) scale(.45);
}

.menu-page.is-hidden-left,
.menu-page.is-hidden-right {
  opacity: 0;
  border-radius: 14px;
  box-shadow: none;
  pointer-events: none;
  z-index: 0;
}

.menu-page.is-hidden-left {
  transform: translateX(calc(-50% - min(47vw, 560px))) translateY(205px) scale(.42);
}

.menu-page.is-hidden-right {
  transform: translateX(calc(-50% + min(47vw, 560px))) translateY(205px) scale(.42);
}

.menu-page.is-right:hover,
.menu-page.is-right:focus-visible {
  opacity: .78;
  transform: translateX(calc(-50% + min(37vw, 440px))) translateY(201px) scale(.45);
}

.menu-page.is-left:hover,
.menu-page.is-left:focus-visible {
  opacity: .78;
  transform: translateX(calc(-50% - min(37vw, 440px))) translateY(201px) scale(.45);
}

.menu-page.is-main:hover,
.menu-page.is-main:focus-visible {
  transform: translateX(-50%) translateY(-6px) scale(1);
  box-shadow: 0 34px 62px -16px rgba(0, 0, 0, .32);
}

.menu-nav {
  position: absolute;
  top: 350px;
  z-index: 3;
}

.menu-nav.prev {
  left: 0;
}

.menu-nav.next {
  right: 0;
}

.menu-caption {
  margin-top: 22px;
  text-align: center;
  color: #79716b;
  font-size: 14px;
}

.gallery-section {
  background: #080706;
  color: #fff;
}

.gallery-section .section-lead {
  color: rgba(255, 255, 255, .6);
}

.gallery-section .eyebrow {
  color: #fff;
}

.gallery-section .eyebrow::before {
  background: var(--green);
}

.gallery-section .eyebrow::after {
  background: var(--red);
}

.gallery-stage {
  --gallery-image-center-y: 260px;
  position: relative;
  min-height: 520px;
  margin-top: 0;
}

.gallery-photo {
  position: absolute;
  left: 50%;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  padding: 0;
  background: transparent;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .7);
  cursor: pointer;
  transition:
    top 1s cubic-bezier(.22, 1, .36, 1),
    width 1s cubic-bezier(.22, 1, .36, 1),
    height 1s cubic-bezier(.22, 1, .36, 1),
    opacity .85s ease,
    filter .85s ease,
    transform 1s cubic-bezier(.22, 1, .36, 1),
    box-shadow .7s ease;
  will-change: transform, opacity, filter;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-photo:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .5);
  outline-offset: 5px;
}

.gallery-photo.is-main {
  top: 60px;
  width: 300px;
  height: 400px;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 1;
  filter: none;
}

.gallery-photo.is-left,
.gallery-photo.is-right {
  top: 96px;
  width: 246px;
  height: 328px;
  opacity: .45;
  filter: blur(1.5px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
  z-index: 1;
}

.gallery-photo.is-left {
  transform: translateX(calc(-50% - min(31vw, 390px)));
}

.gallery-photo.is-right {
  transform: translateX(calc(-50% + min(31vw, 390px)));
}

.gallery-photo.is-hidden-left,
.gallery-photo.is-hidden-right {
  top: 126px;
  width: 210px;
  height: 280px;
  opacity: 0;
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

.gallery-photo.is-hidden-left {
  transform: translateX(calc(-50% - min(46vw, 560px))) scale(.92);
}

.gallery-photo.is-hidden-right {
  transform: translateX(calc(-50% + min(46vw, 560px))) scale(.92);
}

.gallery-photo.is-left:hover,
.gallery-photo.is-left:focus-visible {
  opacity: .7;
  transform: translateX(calc(-50% - min(31vw, 390px))) translateY(-5px);
}

.gallery-photo.is-right:hover,
.gallery-photo.is-right:focus-visible {
  opacity: .7;
  transform: translateX(calc(-50% + min(31vw, 390px))) translateY(-5px);
}

.gallery-photo.is-main:hover,
.gallery-photo.is-main:focus-visible {
  transform: translateX(-50%) translateY(-7px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .75);
}

.gallery-nav {
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  top: calc(var(--gallery-image-center-y) - 24px);
  border: 1px solid #fff;
  background: #fff;
  color: #1c1917;
  font-size: 0;
  line-height: 1;
  outline: 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible,
.gallery-nav:active {
  border-color: #fff;
  background: #fff;
  color: #1c1917;
  outline: 0;
  transform: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
}

.gallery-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M6.75 3.6L12.15 9L6.75 14.4' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M6.75 3.6L12.15 9L6.75 14.4' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  transform: translate(-50%, -50%);
}

.gallery-nav.prev {
  left: 0;
}

.gallery-nav.prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.gallery-nav.next {
  right: 0;
}

.gallery-nav.next::before {
  transform: translate(-50%, -50%);
}

.gallery-count {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, .8);
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
}

.gallery-count small {
  color: rgba(255, 255, 255, .3);
}

.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "\"";
  position: absolute;
  top: -34px;
  left: 32px;
  color: #e7e5e4;
  font-family: "Fraunces", Georgia, serif;
  font-size: 316px;
  line-height: .8;
}

.review-card {
  position: relative;
  width: min(848px, 100%);
  min-height: 326px;
  margin: 48px auto 32px;
  border: 1px solid #f5f5f4;
  border-radius: 24px;
  padding: 56px 64px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .09);
}

.review-slide {
  position: absolute;
  inset: 56px 64px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(var(--review-enter-x, 36px));
  transition: opacity .56s ease, transform .56s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity;
}

.review-slide.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.review-slide.is-exiting {
  opacity: 0;
  transform: translateX(var(--review-exit-x, -36px));
}

.review-card blockquote {
  margin: 0;
  color: #292524;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(22px, 3vw, 25px);
  font-style: italic;
  line-height: 1.6;
}

.review-card .text-link {
  align-self: flex-start;
  text-align: left;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-top: 36px;
  border-top: 1px solid #f5f5f4;
  padding-top: 32px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.review-author::before {
  content: "";
  flex: 0 0 32px;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.review-controls {
  width: min(848px, 100%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts-section {
  background: var(--dark);
  color: #fafaf9;
}

.contacts-section .eyebrow {
  color: #FE9A00;
}

.contacts-top {
  display: grid;
  grid-template-columns: 1fr .45fr .45fr;
  gap: 64px;
  border-bottom: 1px solid #44403b;
  padding-bottom: 60px;
}

.contacts-top h2 {
  margin: 18px 0;
  font-size: clamp(54px, 6vw, 67px);
  line-height: 1.1;
}

.contacts-top h2 em {
  color: var(--amber);
  font-style: italic;
}

.contacts-top .section-lead,
.contact-time span,
.location-card small {
  color: #a6a09b;
}

.contact-time h3 {
  color: #fe9a00;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.time-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 10px;
  font-size: 15px;
}

.time-row i {
  flex: 1;
  border-bottom: 1px dashed #44403b;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.location-card {
  position: relative;
  display: grid;
  grid-template-rows: 56px 56px 220px auto;
  align-content: start;
  row-gap: 22px;
  min-height: 554px;
  padding: 56px 48px 56px 0;
  overflow: hidden;
}

.location-card + .location-card {
  border-left: 1px solid #44403b;
  padding-left: 48px;
}

.location-card::after {
  content: attr(data-number);
  position: absolute;
  top: 16px;
  right: 16px;
  color: #292524;
  font-family: "Fraunces", Georgia, serif;
  font-size: 172.835px;
  font-style: normal;
  font-weight: 700;
  line-height: 172.835px;
}

.contact-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 500;
}

.location-card .contact-line {
  min-height: 56px;
  margin-bottom: 0;
}

.location-card .btn-pill {
  justify-self: start;
}

.contact-badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(187, 77, 0, .6);
  border-radius: 50%;
  color: #ffb900;
}

.map-frame {
  position: relative;
  z-index: 1;
  height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.site-footer {
  background: #1c1917;
  color: #57534d;
}

.footer-main {
  min-height: 333px;
  padding-top: 27px;
  background: #1c1917;
}

.footer-logo {
  width: 129px;
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.footer-logo img {
  width: 89px;
  height: 79px;
  display: block;
  object-fit: contain;
  filter: brightness(0);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 39px;
  margin-top: 50px;
}

.footer-nav a {
  color: #79716B;
  font-family: "Jost", Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-divider {
  width: min(1232px, calc(100% - 208px));
  height: 1px;
  margin: 40px auto 0;
  background: #393632;
}

.footer-bottom {
  width: min(1232px, calc(100% - 208px));
  min-height: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  margin: 30px auto 0;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .36px;
}

.footer-legals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.footer-licenses span {
  color: #57534d;
  transition: color .2s ease;
}

.footer-licenses a {
  color: inherit;
  transition: color .2s ease;
}

.footer-licenses a:hover {
  color: var(--accent);
}

.footer-bottom > a {
  justify-self: end;
  color: #57534d;
  white-space: nowrap;
  transition: color .2s ease;
}

.footer-bottom > a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: block;
  transition: opacity .2s ease, transform .2s ease;
}

.socials a:hover {
  opacity: .82;
  transform: translateY(-1px);
}

.socials img {
  width: 100%;
  height: 100%;
  display: block;
}

.developer-credit {
  height: 81px;
  display: grid;
  place-items: center;
  background: #1c1917;
}

.developer-credit__inner {
  width: 116px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.developer-credit__inner span {
  color: #FE9A00;
  font-family: "Hooskai Chamfered Square", "Jost", Arial, sans-serif;
  font-size: 9.179px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.424px;
  letter-spacing: .328px;
  white-space: nowrap;
}

.developer-credit__brand {
  width: 116px;
  height: 24px;
  margin-top: 2px;
  display: block;
  text-decoration: none;
}

.developer-credit__brand svg {
  width: 116px;
  height: 24px;
  display: block;
}

.developer-credit__brand:focus-visible {
  outline: 2px solid #FE9A00;
  outline-offset: 4px;
}

.modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
}

.modal-header {
  border: 0;
  padding: 28px 32px 0;
}

.modal-body {
  padding: 24px 32px 32px;
}

.form-control,
.form-select {
  border-radius: 999px;
  min-height: 50px;
  border-color: #e7e5e4;
  padding-inline: 18px;
}

textarea.form-control {
  border-radius: 18px;
}

.reserve-dialog {
  --bs-modal-width: 620px;
}

.reserve-modal {
  max-height: calc(100vh - 48px);
  border: 1px solid rgba(199, 80, 0, .14);
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 154, 0, .15), transparent 34%),
    linear-gradient(145deg, #fffaf1 0%, #fff 50%, #fafaf9 100%);
  box-shadow: 0 28px 70px rgba(28, 25, 23, .18);
}

.reserve-modal__header {
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 38px 0;
}

.reserve-modal__header .section-title {
  margin-top: 8px;
  margin-bottom: 0;
}

.reserve-modal__eyebrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.reserve-modal__body {
  overflow-y: auto;
  padding: 22px 38px 38px;
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reserve-field,
.reserve-picker {
  display: grid;
  gap: 8px;
}

.reserve-field--wide {
  grid-column: 1 / -1;
}

.reserve-field > span,
.reserve-picker__head > span {
  color: #44403b;
  font-size: 13px;
  font-weight: 500;
}

.reserve-field .form-control,
.reserve-field .form-select,
.reserve-picker .form-control {
  border: 1px solid #eadfd2;
  background-color: rgba(255, 255, 255, .88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
}

.reserve-field .form-control:focus,
.reserve-field .form-select:focus,
.reserve-picker .form-control:focus {
  border-color: rgba(187, 77, 0, .55);
  box-shadow: 0 0 0 4px rgba(187, 77, 0, .12);
}

.reserve-picker {
  border: 1px solid #f1e7da;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, .62);
}

.reserve-picker__head {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 220px);
  gap: 12px;
  align-items: center;
}

.reserve-date-input,
.reserve-time-input {
  min-height: 44px;
  font-size: 14px;
}

.reserve-date-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.reserve-date-option,
.reserve-calendar-day,
.reserve-time-slot {
  border: 1px solid #eadfd2;
  background: #fff;
  color: #292524;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.reserve-date-option {
  min-height: 68px;
  border-radius: 16px;
  padding: 9px 10px;
  text-align: left;
}

.reserve-date-option strong,
.reserve-date-option span {
  display: block;
}

.reserve-date-option strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.reserve-date-option span {
  margin-top: 4px;
  color: #78716c;
  font-size: 12px;
}

.reserve-calendar {
  display: grid;
  gap: 10px;
  border-top: 1px solid #f1e7da;
  padding-top: 12px;
}

.reserve-calendar__bar {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 10px;
  align-items: center;
}

.reserve-calendar__bar strong {
  color: #292524;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.reserve-calendar__nav {
  width: 36px;
  height: 36px;
  border: 1px solid #eadfd2;
  border-radius: 50%;
  background: #fff;
  color: #292524;
  font-size: 22px;
  line-height: 1;
  transition: border-color .18s ease, background .18s ease, color .18s ease, opacity .18s ease;
}

.reserve-calendar__nav:hover,
.reserve-calendar__nav:focus-visible {
  border-color: rgba(187, 77, 0, .42);
}

.reserve-calendar__nav:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.reserve-calendar__weekdays,
.reserve-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.reserve-calendar__weekdays span {
  color: #a8a29e;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.reserve-calendar-day {
  min-width: 0;
  min-height: 38px;
  border-radius: 12px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.reserve-calendar-day.is-empty {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}

.reserve-calendar-day:disabled:not(.is-empty) {
  cursor: not-allowed;
  background: rgba(250, 250, 249, .72);
  color: #c7c2bd;
}

.reserve-calendar-day:not(:disabled):hover,
.reserve-calendar-day:not(:disabled):focus-visible {
  border-color: rgba(187, 77, 0, .42);
  transform: translateY(-1px);
}

.reserve-calendar-day.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.reserve-time-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.reserve-time-slot {
  min-height: 42px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.reserve-date-option:hover,
.reserve-time-slot:hover,
.reserve-date-option:focus-visible,
.reserve-time-slot:focus-visible {
  border-color: rgba(187, 77, 0, .42);
  transform: translateY(-1px);
}

.reserve-date-option.is-active,
.reserve-calendar-day.is-active,
.reserve-time-slot.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.reserve-date-option.is-active span {
  color: rgba(255, 255, 255, .82);
}

.reserve-time-slots__empty {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 14px;
}

.reserve-modal__footer {
  margin-top: 2px;
}

.review-modal {
  border: 1px solid rgba(199, 80, 0, .14);
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 154, 0, .16), transparent 34%),
    linear-gradient(145deg, #fffaf1 0%, #fff 46%, #fafaf9 100%);
  box-shadow: 0 28px 70px rgba(28, 25, 23, .18);
}

.review-modal__header {
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 38px 0;
}

.review-modal__header .section-title {
  margin-top: 8px;
  margin-bottom: 0;
}

.review-modal__eyebrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.review-modal__body {
  padding: 8px 38px 38px;
}

.review-modal__lead {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-field {
  display: grid;
  gap: 8px;
}

.review-field--wide {
  grid-column: 1 / -1;
}

.review-field > span {
  color: #44403b;
  font-size: 13px;
  font-weight: 500;
}

.review-field .form-control {
  border: 1px solid #eadfd2;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
}

.review-field .form-control:focus {
  border-color: rgba(187, 77, 0, .55);
  box-shadow: 0 0 0 4px rgba(187, 77, 0, .12);
}

.review-field textarea.form-control {
  min-height: 138px;
  resize: vertical;
  padding: 16px 18px;
}

.reserve-consent,
.review-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #f1e7da;
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .62);
  color: #57534e;
  font-size: 13px;
  line-height: 1.45;
}

.reserve-consent .form-check-input,
.review-consent .form-check-input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border-color: rgba(187, 77, 0, .55);
}

.reserve-consent .form-check-input:checked,
.review-consent .form-check-input:checked {
  border-color: var(--accent);
  background-color: var(--accent);
}

.reserve-consent a,
.review-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-modal__footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.review-modal__footer .btn-pill {
  min-width: 210px;
}

.review-thanks {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(254, 154, 0, .18), transparent 36%),
    #fff;
}

.review-thanks .modal-body {
  padding: 42px 38px 38px;
}

.review-thanks__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 0 0 8px rgba(187, 77, 0, .08);
}

.review-thanks .section-lead {
  margin: 0 auto 26px;
  max-width: 420px;
}

@media (max-width: 991px) {
  :root {
    --hero-content-offset-y: 0px;
  }

  section[id],
  header[id] {
    scroll-margin-top: 72px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .container-wide {
    width: min(100% - 32px, 720px);
  }
}

/* Header switches to the hamburger menu for tablets / iPad landscape too,
   because the full desktop nav does not fit below ~1200px. */
@media (max-width: 1199px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero,
  .hero-media,
  .food-strip {
    max-width: 100vw;
    overflow: hidden;
  }

  .site-header__inner {
    width: min(1232px, calc(100% - 48px));
    grid-template-columns: 70px 1fr;
    gap: 14px;
    min-height: 66px;
    padding: 8px 0;
  }

  .site-header__actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 16px;
  }

  .site-nav a {
    font-size: 15px;
  }

  .site-phone {
    font-size: 14px;
  }

  .header-reserve {
    min-width: 136px;
    min-height: 40px;
    font-size: 14px;
  }

  body {
    padding-top: 72px;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    min-height: 72px;
  }

  .site-header__inner {
    position: relative;
    z-index: 82;
    display: flex;
    min-height: 72px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
  }

  .site-logo {
    position: relative;
    z-index: 83;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 83;
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #e7e5e4;
    border-radius: 50%;
    background: #fff;
    padding: 0;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #1c1917;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-menu-toggle.is-open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 81;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    padding: 116px 48px 44px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(255, 251, 235, .98), rgba(255, 255, 255, .98)),
      #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-menu__nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60px;
    border-bottom: 1px solid rgba(28, 25, 23, .08);
    color: #1c1917;
    font-family: "Fraunces", Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.05;
  }

  .mobile-menu__nav a.active {
    color: var(--accent);
  }

  .mobile-menu__actions {
    display: grid;
    gap: 16px;
    margin-top: auto;
  }

  .mobile-menu__contacts {
    display: grid;
    gap: 10px;
  }

  .mobile-menu__contact {
    display: grid;
    gap: 5px;
    border: 1px solid #e7e5e4;
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    padding: 14px 16px;
    color: #1c1917;
  }

  .mobile-menu__contact span {
    color: #79716B;
    font-size: 13px;
    line-height: 1.35;
  }

  .mobile-menu__contact strong {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
  }

  .mobile-menu__socials {
    display: flex;
    justify-content: center;
    gap: 18px;
  }

  .mobile-menu__socials a {
    width: 36px;
    height: 36px;
    display: block;
  }

  .mobile-menu__socials img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .mobile-menu__reserve {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .hero,
  .hero-media,
  .food-strip {
    max-width: 100vw;
    overflow: hidden;
  }

  .food-strip {
    overflow-clip-margin: 0;
  }

  .footer-main {
    min-height: auto;
    padding: 0 16px 30px;
  }

  .footer-nav {
    gap: 20px 28px;
    margin-top: 36px;
  }

  .footer-divider,
  .footer-bottom {
    width: min(100%, 720px);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    margin-top: 28px;
    text-align: center;
  }

  .footer-bottom > a {
    justify-self: center;
  }

  .hero .container-wide {
    width: min(100% - 48px, 720px);
  }

  .section-pad {
    padding: 32px 0;
  }

  .contacts-section {
    padding-bottom: 40px;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    margin: 42px 0 44px;
    font-size: 22px;
  }

  .hero-rule {
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 34px;
  }

  .hero-actions .btn-pill {
    min-width: 190px;
    min-height: 54px;
    padding: 14px 28px;
    font-size: 16px;
  }

  .hero-arrows {
    inset-inline: 24px;
  }

  .hero-arrows button {
    width: 48px;
    height: 48px;
    font-size: 32px;
  }

  .about-grid,
  .delivery-card,
  .contacts-top,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    order: -1;
  }

  .about-text .image-card {
    margin-top: 24px;
  }

  .about-grid .image-card {
    min-height: 360px;
  }

  .feature-grid,
  .food-strip,
  .events-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-detail-hero {
    min-height: 560px;
    padding: 56px 0 72px;
  }

  .event-detail-hero.event-detail-hero--plain {
    min-height: 0;
    padding: 36px 0 22px;
  }

  .event-detail-hero--plain .event-detail-back {
    margin-bottom: 16px;
  }

  .event-detail-back {
    margin-bottom: 48px;
  }

  .event-detail-hero__content p {
    font-size: 18px;
  }

  .event-detail-section {
    padding: 22px 0 48px;
  }

  .event-detail-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-detail-poster,
  .event-detail-content {
    grid-column: 1;
    grid-row: auto;
  }

  .event-detail-poster {
    order: 1;
  }

  .event-detail-aside {
    grid-column: 1;
    grid-row: auto;
    position: static;
    order: 2;
  }

  .event-detail-content {
    order: 3;
  }

  .event-related-section {
    padding-top: 44px;
  }

  .delivery-copy {
    padding: 44px;
  }

  .delivery-image img {
    min-height: 360px;
  }

  .menu-page.is-main,
  .menu-page.is-left,
  .menu-page.is-right,
  .menu-page.is-hidden-left,
  .menu-page.is-hidden-right {
    width: min(560px, 78vw);
    aspect-ratio: 1118 / 1492;
    top: 0;
  }

  .menu-page img {
    height: 100%;
    object-fit: cover;
  }

  .menu-page.is-left,
  .menu-page.is-right {
    display: block;
    opacity: .48;
    border-radius: 16px;
  }

  .menu-page.is-hidden-left,
  .menu-page.is-hidden-right {
    opacity: 0;
    border-radius: 16px;
    pointer-events: none;
  }

  .menu-page.is-left {
    transform: translateX(calc(-50% - min(70vw, 520px)));
  }

  .menu-page.is-right {
    transform: translateX(calc(-50% + min(70vw, 520px)));
  }

  .menu-page.is-hidden-left {
    transform: translateX(calc(-50% - min(108vw, 720px))) scale(.92);
  }

  .menu-page.is-hidden-right {
    transform: translateX(calc(-50% + min(108vw, 720px))) scale(.92);
  }

  .menu-page.is-left:hover,
  .menu-page.is-left:focus-visible {
    opacity: .72;
    transform: translateX(calc(-50% - min(70vw, 520px))) translateY(-4px);
  }

  .menu-page.is-right:hover,
  .menu-page.is-right:focus-visible {
    opacity: .72;
    transform: translateX(calc(-50% + min(70vw, 520px))) translateY(-4px);
  }

  .menu-stage {
    min-height: 770px;
  }

  .menu-nav {
    top: 350px;
  }

  .gallery-photo.is-main {
    top: 32px;
    width: min(300px, 78vw);
  }

  .gallery-photo.is-left,
  .gallery-photo.is-right,
  .gallery-photo.is-hidden-left,
  .gallery-photo.is-hidden-right {
    top: 32px;
    width: min(300px, 78vw);
    height: 400px;
    pointer-events: none;
    filter: blur(2px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .48);
  }

  .gallery-photo.is-left {
    opacity: 0;
    transform: translateX(calc(-50% - min(78vw, 360px))) scale(.95);
  }

  .gallery-photo.is-right {
    opacity: 0;
    transform: translateX(calc(-50% + min(78vw, 360px))) scale(.95);
  }

  .gallery-photo.is-hidden-left {
    opacity: 0;
    transform: translateX(calc(-50% - min(108vw, 520px))) scale(.9);
  }

  .gallery-photo.is-hidden-right {
    opacity: 0;
    transform: translateX(calc(-50% + min(108vw, 520px))) scale(.9);
  }

  .gallery-photo.is-left:hover,
  .gallery-photo.is-left:focus-visible,
  .gallery-photo.is-right:hover,
  .gallery-photo.is-right:focus-visible {
    opacity: 0;
  }

  .gallery-stage {
    --gallery-image-center-y: 232px;
    min-height: 464px;
  }

  .location-card,
  .location-card + .location-card {
    border-left: 0;
    border-top: 1px solid #44403b;
    min-height: 0;
    padding: 48px 0 36px;
  }

  .location-card:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-top: 72px;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    min-height: 72px;
  }

  .site-header__inner {
    position: relative;
    z-index: 82;
    width: min(100% - 32px, 420px);
    display: flex;
    min-height: 72px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
  }

  .site-logo {
    width: 140px;
    position: relative;
    z-index: 83;
  }

  .site-logo__image {
    width: 140px;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 83;
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #e7e5e4;
    border-radius: 50%;
    background: #fff;
    padding: 0;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #1c1917;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-menu-toggle.is-open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 81;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 22px;
    padding: 116px 32px 38px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(255, 251, 235, .98), rgba(255, 255, 255, .98)),
      #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-menu__nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 56px;
    border-bottom: 1px solid rgba(28, 25, 23, .08);
    color: #1c1917;
    font-family: "Fraunces", Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
  }

  .mobile-menu__nav a.active {
    color: var(--accent);
  }

  .mobile-menu__actions {
    display: grid;
    gap: 14px;
    margin-top: auto;
  }

  .mobile-menu__contacts {
    display: grid;
    gap: 10px;
  }

  .mobile-menu__contact {
    display: grid;
    gap: 5px;
    border: 1px solid #e7e5e4;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    padding: 13px 14px;
    color: #1c1917;
  }

  .mobile-menu__contact span {
    color: #79716B;
    font-size: 12px;
    line-height: 1.35;
  }

  .mobile-menu__contact strong {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
  }

  .mobile-menu__socials {
    display: flex;
    justify-content: center;
    gap: 18px;
  }

  .mobile-menu__socials a {
    width: 36px;
    height: 36px;
    display: block;
  }

  .mobile-menu__socials img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .mobile-menu__reserve {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
  }

  .footer-logo {
    width: 112px;
    height: 86px;
  }

  .footer-logo img {
    width: 78px;
    height: 69px;
  }

  .footer-nav {
    margin-top: 28px;
    gap: 16px 22px;
  }

  .footer-divider {
    margin-top: 30px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    white-space: normal;
  }

  .footer-bottom > a {
    white-space: normal;
  }

  .site-header__actions {
    width: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .site-phone {
    font-size: 12px;
  }

  .site-phone span {
    font-size: 17px;
  }

  .header-reserve {
    min-width: 118px;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .event-detail-hero {
    min-height: 520px;
    padding: 40px 0 56px;
  }

  .event-detail-hero.event-detail-hero--plain {
    min-height: 0;
    padding: 24px 0 18px;
  }

  .event-detail-hero--plain .event-detail-back {
    margin-bottom: 14px;
  }

  .event-detail-back {
    margin-bottom: 34px;
    font-size: 14px;
  }

  .event-detail-hero__content h1 {
    margin: 12px 0 10px;
    font-size: 32px;
    line-height: 1.08;
  }

  .event-detail-hero__content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .event-detail-meta {
    gap: 8px;
    margin-top: 16px;
  }

  .event-detail-meta span {
    padding: 7px 11px;
    font-size: 12px;
  }

  .event-detail-section {
    padding: 16px 0 36px;
  }

  .event-detail-layout {
    gap: 14px;
  }

  .event-detail-copy {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.68;
  }

  .event-detail-aside {
    padding: 20px;
  }

  .event-related-section {
    padding-top: 36px;
  }

  .hero {
    min-height: 690px;
  }

  .hero .container-wide {
    width: min(100% - 32px, 420px);
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 2.75px;
  }

  .hero h1 {
    margin: 20px 0 20px;
    font-size: 28px;
    line-height: var(--hero-title-line-height-mobile);
  }

  .hero-rule {
    width: 64px;
    margin-bottom: 22px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-actions .btn-pill {
    min-width: 0;
    min-height: 52px;
    font-size: 15px;
  }

  .hero-arrows {
    display: none;
  }

  .hero-actions,
  .delivery-meta,
  .review-controls {
    flex-direction: column;
  }

  .hero-actions,
  .delivery-meta {
    align-items: stretch;
  }

  .review-controls {
    align-items: center;
    gap: 36px;
  }

  .review-controls .d-flex {
    justify-content: center;
  }

  .btn-pill {
    width: 100%;
  }

  .quote-row,
  .delivery-meta {
    gap: 14px;
  }

  .review-modal__header {
    padding: 30px 24px 0;
  }

  .reserve-modal__header {
    padding: 30px 24px 0;
  }

  .reserve-modal__body {
    padding: 18px 24px 30px;
  }

  .review-modal__body {
    padding: 18px 24px 30px;
  }

  .review-form {
    grid-template-columns: 1fr;
  }

  .reserve-form {
    grid-template-columns: 1fr;
  }

  .reserve-picker__head {
    grid-template-columns: 1fr;
  }

  .reserve-date-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve-time-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-modal__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .review-modal__footer .btn-pill {
    width: 100%;
  }

  .delivery-copy,
  .review-card {
    padding: 32px 24px;
  }

  .review-card {
    min-height: 0;
    overflow: hidden;
  }

  .review-slide {
    position: static;
    inset: 32px 24px;
    display: flex;
    flex-direction: column;
  }

  .review-slide:not(.is-active) {
    position: absolute;
  }

  .review-card blockquote {
    font-size: 20px;
    line-height: 1.45;
  }

  .review-author {
    min-width: 0;
    margin-top: 28px;
    padding-top: 24px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .review-author::before {
    flex: 0 0 28px;
  }

  .event-media {
    height: 220px;
  }

  .menu-stage {
    min-height: calc(104vw + 18px);
  }

  .menu-nav {
    top: calc(52vw - 24px);
  }

  .flag-divider span {
    display: none;
  }
}
