.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: end;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/main.jpg') center / cover no-repeat;
  background-position: center 34%;
  transform: scale(1.08);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(8, 8, 8, 0.9) 100%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 52, 0.18), transparent 46%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.5px, transparent 1.3px);
  background-size: 3px 3px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, 860px);
  margin-left: clamp(56px, 14vw, 240px);
  padding-bottom: 112px;
}

.hero__kicker {
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(247, 242, 232, 0.72);
}

.hero__title {
  margin-top: 18px;
  margin-bottom: 10px;
}

.hero__title span:first-child {
  font-size: var(--hero-size);
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__title span:last-child {
  font-size: clamp(58px, 9vw, 116px);
  color: var(--cream);
  display: block;
}

.hero__rule {
  width: 60px;
  height: 1px;
  margin-block: 18px;
  background: var(--gold);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 42px);
  color: rgba(247, 242, 232, 0.92);
}

.hero__timings {
  margin-top: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(232, 201, 109, 0.86);
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  right: 36px;
  bottom: 28px;
  display: grid;
  justify-items: center;
  gap: 8px;
  z-index: 4;
}

.hero__scroll span {
  transform: rotate(90deg);
  transform-origin: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--text-muted);
}

.hero__scroll i {
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--gold), transparent);
}

.marquee {
  border-top: 1px solid rgba(201, 162, 52, 0.26);
  border-bottom: 1px solid rgba(201, 162, 52, 0.26);
  background: #0e0d0b;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  min-width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee__track span {
  display: block;
  white-space: nowrap;
  padding: 14px 32px;
  color: var(--gold-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
}

.about {
  background: linear-gradient(180deg, #11120d 0%, #090908 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__copy h2 {
  margin-top: 14px;
  margin-bottom: 24px;
}

.about__copy p {
  font-size: 18px;
  color: var(--text-muted);
}

.about__copy blockquote {
  margin-top: 30px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.3;
  color: var(--cream);
  font-style: italic;
  position: relative;
  padding-left: 46px;
}

.about__copy blockquote span {
  position: absolute;
  left: 0;
  top: -8px;
  font-size: clamp(82px, 7vw, 120px);
  color: rgba(201, 162, 52, 0.4);
  line-height: 1;
}

.about__visual {
  position: relative;
}

.about__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 46%;
  border: 1px solid rgba(201, 162, 52, 0.35);
  box-shadow: 8px 8px 0 0 rgba(201, 162, 52, 0.28);
}

.stats {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats div {
  border-top: 1px solid rgba(201, 162, 52, 0.25);
  padding-top: 16px;
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--gold-light);
}

.stats small {
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.section-head {
  margin-bottom: 44px;
}

.section-head--center {
  text-align: center;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  border-top: 2px solid var(--gold);
  background: #111;
  padding: 34px 28px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(201, 162, 52, 0.15);
}

.feature-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: var(--h3-size);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.feature-card a {
  margin-top: 20px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201, 162, 52, 0);
}

.feature-card a:hover {
  border-color: var(--gold-light);
}

.menu-preview {
  background: var(--green);
}

.dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dish-card {
  background: #0f1410;
  padding: 10px;
}

.dish-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 48%;
  filter: grayscale(1);
  transition: transform 600ms ease, filter 600ms ease;
}

.dishes .dish-card:nth-child(1) img {
  object-position: center 44%;
}

.dishes .dish-card:nth-child(2) img {
  object-position: center 50%;
}

.dishes .dish-card:nth-child(3) img {
  object-position: center 40%;
}

.dish-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.dish-card.is-visible img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.dish-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.dish-card h3 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 38px);
}

.dish-card i {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
}

.dish-card p {
  margin-top: 12px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 13px;
}

.center-link {
  text-align: center;
  margin-top: 30px;
}

.center-link a {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  border-bottom: 1px solid transparent;
}

.center-link a:hover {
  border-color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.g-large {
  grid-column: span 2;
  grid-row: span 2;
}

.g-medium {
  grid-column: span 2;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: brightness(0.55);
  transition: filter 400ms ease, transform 600ms ease;
}

.gallery-grid figure:nth-child(1) img {
  object-position: center 44%;
}

.gallery-grid figure:nth-child(2) img {
  object-position: center 52%;
}

.gallery-grid figure:nth-child(3) img {
  object-position: center 42%;
}

.gallery-grid figure:nth-child(4) img {
  object-position: center 46%;
}

.gallery-grid figure:nth-child(5) img {
  object-position: center 48%;
}

.gallery-grid figure:nth-child(6) img {
  object-position: center 44%;
}

.gallery-grid figure:nth-child(7) img {
  object-position: center 50%;
}

.gallery-grid figure:nth-child(8) img {
  object-position: center 42%;
}

.gallery-grid figure:hover img {
  filter: brightness(0.85);
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
}

.line-title {
  position: relative;
  display: inline-block;
  font-style: italic;
}

.line-title::after {
  content: '';
  position: absolute;
  left: -40px;
  right: -40px;
  top: 50%;
  height: 1px;
  background: rgba(201, 162, 52, 0.35);
}

.reviews {
  background: #0d0d0b;
}

.rating-badge {
  width: fit-content;
  margin-inline: auto;
  border: 1px solid rgba(201, 162, 52, 0.28);
  padding: 18px 22px;
  text-align: center;
}

.rating-badge strong {
  display: block;
  font-size: 54px;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.rating-badge p {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.reviews-rail {
  margin-top: 30px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.review {
  scroll-snap-align: start;
  background: #11110f;
  border: 1px solid rgba(201, 162, 52, 0.18);
  padding: 28px 24px;
  position: relative;
}

.review > span {
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 120px;
  color: rgba(201, 162, 52, 0.18);
  font-family: var(--font-serif);
  line-height: 1;
}

.review p {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.45;
  font-style: italic;
}

.stars {
  margin-top: 16px;
  display: flex;
  gap: 6px;
}

.stars i {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.review h4 {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.reserve {
  position: relative;
  overflow: hidden;
}

.reserve__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.85)),
    url('../assets/main.jpg') center / cover no-repeat;
  background-position: center 54%;
  opacity: 0.62;
}

.reserve__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.reserve__content h2 {
  font-style: italic;
  font-size: clamp(52px, 8vw, 120px);
}

.reserve__content p {
  margin-top: 12px;
  color: var(--text-muted);
}

.reserve__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reserve__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(201, 162, 52, 0.4) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.16;
}

.inner-hero {
  min-height: 54vh;
  padding-top: var(--nav-h);
  position: relative;
  display: grid;
  align-items: end;
}

.inner-hero--menu {
  background: url('../assets/experience-7.JPG') center / cover no-repeat;
  background-position: center 42%;
}

.inner-hero--reserve {
  background: url('../assets/experience-6.JPG') center / cover no-repeat;
  background-position: center 50%;
}
.inner-hero--experience {
  background-image: url('../assets/experience-1.JPG');
  background-position: center 40%;
}

.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.45), rgba(8, 8, 8, 0.9));
}

.inner-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}

.inner-hero h1 {
  margin-top: 14px;
  font-size: clamp(52px, 7vw, 110px);
}

.menu-layout {
  padding-top: 52px;
}

.menu-hero-rule {
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 52, 0.15));
}

.menu-hero-subtitle {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-page-shell {
  display: grid;
  gap: 18px;
}

.menu-sticky-nav {
  position: sticky;
  top: calc(var(--nav-h) + 8px);
  z-index: 1200;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  border: 1px solid rgba(201, 162, 52, 0.2);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  scrollbar-width: thin;
}

.menu-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(201, 162, 52, 0.56);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  padding: 8px 14px;
  min-height: 40px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.menu-pill:hover,
.menu-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.menu-search-bar {
  position: relative;
}

.menu-search-bar input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border, #2a2a2a);
  background: #111;
  color: var(--cream);
  padding: 0 44px 0 14px;
  outline: 0;
}

.menu-search-bar input:focus {
  border-color: var(--gold);
}

.menu-search-bar input::placeholder {
  color: var(--text-muted);
}

.menu-search-bar button {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  font-size: 21px;
}

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 12px;
}

.menu-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-legend-special {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-featured {
  margin-top: 14px;
}

.chef-showcase {
  position: relative;
  border: 0;
  background: transparent;
  padding: clamp(8px, 1.2vw, 16px) 0;
  overflow: hidden;
}

.chef-showcase::before {
  content: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 18%, rgba(201, 162, 52, 0.2), transparent 45%);
  pointer-events: none;
}

.chef-showcase__head {
  position: relative;
  z-index: 1;
}

.chef-showcase__head h2 {
  margin-top: 6px;
  font-size: clamp(34px, 4.4vw, 58px);
}

.chef-showcase__sub {
  margin-top: 8px;
  max-width: 620px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.chef-showcase__cards {
  margin-top: 22px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.chef-card {
  position: relative;
  min-height: clamp(260px, 34vw, 370px);
  border: 1px solid rgba(201, 162, 52, 0.24);
  border-radius: 18px;
  padding: 18px;
  background-color: #0d0c10;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  transform-origin: center center;
  transition: transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 760ms ease, border-color 520ms ease, box-shadow 520ms ease;
}

.chef-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dish-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 760ms ease, filter 760ms ease;
}

.chef-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 4%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.26) 100%);
  transition: background 520ms ease;
}

.chef-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  transform: translateY(10px);
  transition: transform 760ms ease;
}

.chef-card__label {
  width: fit-content;
  border: 1px solid rgba(201, 162, 52, 0.6);
  border-radius: 999px;
  padding: 4px 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.38);
}

.chef-card__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
}

.chef-card__desc {
  max-width: 34ch;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(247, 242, 232, 0.84);
  letter-spacing: 0.02em;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity 420ms ease, transform 420ms ease, max-height 420ms ease;
}

.chef-showcase__cards .chef-card.is-active .chef-card__desc,
.chef-showcase__cards .chef-card:hover .chef-card__desc,
.chef-showcase__cards .chef-card:focus-visible .chef-card__desc {
  opacity: 1;
  max-height: 80px;
  transform: translateY(0);
}

.chef-showcase__cards .chef-card {
  filter: brightness(0.68) saturate(0.85);
  transform: scale(0.96);
}

.chef-showcase__cards .chef-card.is-active,
.chef-showcase__cards .chef-card:hover,
.chef-showcase__cards .chef-card:focus-visible {
  border-color: rgba(201, 162, 52, 0.96);
  box-shadow: 0 0 0 1px rgba(201, 162, 52, 0.3) inset, 0 18px 34px rgba(201, 162, 52, 0.2);
  filter: brightness(1) saturate(1.08);
  transform: scale(1.035);
}

.chef-showcase__cards .chef-card.is-active::before,
.chef-showcase__cards .chef-card:hover::before,
.chef-showcase__cards .chef-card:focus-visible::before {
  transform: scale(1.09);
}

.chef-showcase__cards:hover .chef-card:not(.is-active) {
  transform: scale(0.93);
  filter: brightness(0.52) saturate(0.78);
}

.chef-showcase__cards .chef-card.is-active .chef-card__overlay,
.chef-showcase__cards .chef-card:hover .chef-card__overlay,
.chef-showcase__cards .chef-card:focus-visible .chef-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84) 4%, rgba(0, 0, 0, 0.46) 52%, rgba(0, 0, 0, 0.08) 100%);
}

.chef-showcase__cards .chef-card.is-active .chef-card__content,
.chef-showcase__cards .chef-card:hover .chef-card__content,
.chef-showcase__cards .chef-card:focus-visible .chef-card__content {
  transform: translateY(0);
}

.chef-showcase__cards .chef-card.is-active::after,
.chef-showcase__cards .chef-card:hover::after,
.chef-showcase__cards .chef-card:focus-visible::after {
  content: '';
  position: absolute;
  inset: -24% 12% 36%;
  background: radial-gradient(circle, rgba(201, 162, 52, 0.34), transparent 65%);
  pointer-events: none;
}

.chef-card__overlay,
.chef-card__content {
  z-index: 1;
}

.chef-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.chef-showcase__cta-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.chef-showcase__cta {
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid rgba(201, 162, 52, 0.76);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 320ms ease, color 320ms ease, transform 220ms ease, box-shadow 320ms ease;
}

.chef-showcase__cta:hover,
.chef-showcase__cta:focus-visible {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 162, 52, 0.24);
}

.chef-showcase__cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.menu-featured__head h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 8px;
}

.menu-featured__swipe-prompt {
  margin-top: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0;
  transition: opacity 280ms ease;
}

.menu-featured__swipe-prompt.is-visible {
  display: inline-flex;
  opacity: 0.92;
}

.menu-featured__swipe-prompt.is-fading {
  opacity: 0;
}

.menu-featured__swipe-prompt .chevrons {
  display: inline-flex;
  gap: 4px;
}

.menu-featured__swipe-prompt .chevrons i {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.22;
  animation: swipeChevronPulse 1300ms ease-in-out infinite;
}

.menu-featured__swipe-prompt .chevrons i:nth-child(2) {
  animation-delay: 130ms;
}

.menu-featured__swipe-prompt .chevrons i:nth-child(3) {
  animation-delay: 260ms;
}

@keyframes swipeChevronPulse {
  0% {
    opacity: 0.2;
    transform: translateX(0) rotate(45deg);
  }
  40% {
    opacity: 1;
    transform: translateX(3px) rotate(45deg);
  }
  100% {
    opacity: 0.2;
    transform: translateX(0) rotate(45deg);
  }
}

.menu-featured__viewport {
  margin-top: 20px;
  overflow: hidden;
}

.menu-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.menu-featured__controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.featured-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 52, 0.5);
  color: var(--gold-light);
  background: rgba(6, 6, 6, 0.6);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.featured-nav:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 52, 0.14);
  color: var(--gold);
}

.featured-nav:disabled {
  opacity: 0.32;
  cursor: default;
}

.menu-featured__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.menu-featured__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(201, 162, 52, 0.32);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.menu-featured__dot.is-active {
  background: var(--gold);
  transform: scale(1.18);
}

.menu-item--featured .menu-item__meta {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.menu-item--special {
  border-color: rgba(201, 162, 52, 0.45);
  background: linear-gradient(135deg, rgba(201, 162, 52, 0.12), rgba(8, 8, 8, 0.96) 45%);
  box-shadow: 0 0 0 1px rgba(201, 162, 52, 0.14) inset;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.menu-item--special:hover,
.menu-item--special.is-highlighted {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 52, 0.34) inset, 0 10px 20px rgba(201, 162, 52, 0.16);
  transform: translateY(-2px);
}

.menu-special-btn {
  margin-top: 10px;
  border: 1px solid rgba(201, 162, 52, 0.56);
  border-radius: 999px;
  background: rgba(201, 162, 52, 0.08);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  min-height: 30px;
  padding: 0 12px;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.menu-special-btn:hover,
.menu-special-btn[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.menu-teaser-more {
  margin-top: 16px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
}

.menu-book-teaser {
  text-align: center;
  padding: 72px 20px;
  border: 1px solid rgba(201, 162, 52, 0.18);
  background: #080808;
  position: relative;
}

.menu-book-teaser h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-top: 10px;
}

.menu-book-teaser .sub {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--text-muted);
}

.book-preview {
  position: relative;
  display: inline-block;
  margin: 32px auto 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.book-preview:hover {
  transform: perspective(800px) rotateY(-8deg) scale(1.03);
}

.book-cover-thumb {
  width: 200px;
  height: 280px;
  object-fit: cover;
  border-radius: 2px 8px 8px 2px;
  box-shadow: -6px 0 12px rgba(0, 0, 0, 0.5), 6px 6px 20px rgba(201, 162, 52, 0.2);
}

.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(to right, #6b4c1a, #c9a234, #8a6f3a);
  border-radius: 2px 0 0 2px;
  transform: perspective(400px) rotateY(30deg);
  transform-origin: right center;
}

#open-flipbook {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  line-height: 1;
}

.flipbook-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  animation: overlayIn 0.4s ease forwards;
}

body.cursor-enabled .flipbook-overlay,
body.cursor-enabled .flipbook-overlay * {
  cursor: auto !important;
}

body.cursor-enabled .flipbook-overlay button,
body.cursor-enabled .flipbook-overlay a {
  cursor: pointer !important;
}

.flipbook-overlay.hidden {
  display: none;
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: 1px solid #c9a234;
  color: #c9a234;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.close-btn:hover {
  background: #c9a234;
  color: #000;
}

.download-btn {
  position: absolute;
  top: 20px;
  right: 80px;
  background: transparent;
  border: 1px solid #c9a234;
  color: #c9a234;
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.download-btn:hover {
  background: #c9a234;
  color: #000;
}

.page-counter {
  color: #8a6f3a;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

#current-page {
  color: #c9a234;
  font-weight: 600;
}

#flipbook-wrapper {
  width: min(92vw, 980px);
  height: min(78vh, 700px);
  display: grid;
  place-items: center;
}

#flipbook {
  max-width: 100%;
}

.flip-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #c9a234;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.flip-nav:hover {
  border-color: #c9a234;
  background: rgba(201, 162, 52, 0.1);
}

.flip-nav.prev {
  left: 20px;
}

.flip-nav.next {
  right: 20px;
}

.swipe-hint {
  position: absolute;
  bottom: 20px;
  color: #444;
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
}

.menu-sections {
  display: grid;
  gap: 46px;
}

.menu-section {
  position: relative;
  border-top: 1px solid rgba(201, 162, 52, 0.22);
  padding-top: 28px;
}

.menu-section::after {
  content: attr(data-number);
  position: absolute;
  right: 2%;
  top: 0;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: rgba(201, 162, 52, 0.07);
  pointer-events: none;
}

.menu-section__head {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.menu-section__head h2 {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--cream);
}

.menu-section__head p {
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.menu-item {
  position: relative;
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 14px;
  min-height: 52px;
  transition: border-color 220ms ease;
}

.menu-item:hover {
  border-color: var(--gold);
}

.menu-item__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.menu-item h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
}

.menu-price {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.menu-price--seasonal {
  color: var(--text-muted);
  font-style: italic;
}

.menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.menu-dot--veg {
  background: #22c55e;
}

.menu-dot--nonveg {
  background: #ef4444;
}

.menu-dot--egg {
  background: #f59e0b;
}

.menu-special {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 1px solid rgba(201, 162, 52, 0.55);
  border-radius: 999px;
  padding: 2px 7px;
  color: var(--gold-light);
  background: rgba(201, 162, 52, 0.1);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-empty {
  border: 1px dashed rgba(201, 162, 52, 0.28);
  padding: 12px;
  text-align: center;
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reserve-layout {
  padding-top: 92px;
}

.reserve-layout__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
}

.reserve-form-wrap {
  background: #0e0e0d;
  padding: 32px;
  border: 1px solid rgba(201, 162, 52, 0.18);
}

.reserve-form {
  display: grid;
  gap: 22px;
}

.field,
.field-row {
  position: relative;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(201, 162, 52, 0.45);
  background: transparent;
  padding: 10px 0;
  outline: 0;
}

.field label {
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--text-muted);
  pointer-events: none;
  transition: 180ms ease;
  font-size: 14px;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: -10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.reserve-message {
  min-height: 22px;
  color: var(--gold-light);
  font-size: 13px;
}

.reserve-card {
  border: 1px solid rgba(201, 162, 52, 0.2);
  padding: 28px;
  background: #0f0f0d;
  align-self: start;
}

.reserve-card h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 20px;
}

.reserve-card p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.reserve-card p strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.reserve-card__buttons {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.reserve-card iframe {
  margin-top: 20px;
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(0.35) invert(0.88) hue-rotate(185deg) saturate(0.8) contrast(1.05) brightness(0.85);
}

.wa-cta-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3500;
}

.wa-cta {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #23cb63 0%, #178b45 100%);
  box-shadow: 0 14px 34px rgba(19, 95, 49, 0.45);
  color: #ffffff;
  transform: translate3d(0, 0, 0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.wa-cta:hover,
.wa-cta:focus-visible,
.wa-cta-wrap.is-peek .wa-cta {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(19, 95, 49, 0.55);
}

.wa-cta__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #ffffff;
  flex-shrink: 0;
}

.wa-cta__icon svg {
  width: 30px;
  height: 30px;
}

.wa-chat-pop {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(82vw, 320px);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(35, 203, 99, 0.5);
  background: rgba(9, 12, 10, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.wa-chat-pop::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 100%;
  width: 10px;
  height: 10px;
  background: rgba(9, 12, 10, 0.96);
  border-right: 1px solid rgba(35, 203, 99, 0.5);
  border-bottom: 1px solid rgba(35, 203, 99, 0.5);
  transform: rotate(45deg) translateY(-6px);
}

.wa-chat-pop__title {
  margin-bottom: 8px;
  color: #dff7ea;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wa-chat-pop__bubble {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.wa-chat-pop__bubble + .wa-chat-pop__bubble {
  margin-top: 8px;
}

.wa-chat-pop__bubble--user {
  margin-left: 30px;
  background: #eafaf1;
  color: #16271d;
}

.wa-chat-pop__bubble--brand {
  margin-right: 30px;
  border: 1px solid rgba(35, 203, 99, 0.3);
  background: rgba(13, 20, 16, 0.95);
  color: #dff7ea;
}

.wa-cta-wrap:hover .wa-chat-pop,
.wa-cta-wrap:focus-within .wa-chat-pop,
.wa-cta-wrap.is-peek .wa-chat-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .about__grid,
  .reserve-layout__grid {
    grid-template-columns: 1fr;
  }

  .feature-cards,
  .dishes {
    grid-template-columns: 1fr;
  }

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

  .reviews-rail {
    grid-auto-columns: minmax(280px, 85%);
  }
}

@media (max-width: 768px) {
  .menu-layout {
    padding-top: 40px;
  }

  .menu-hero-subtitle {
    font-size: 11px;
    line-height: 1.6;
  }

  .menu-sticky-nav {
    gap: 8px;
    padding: 10px;
  }

  .menu-pill {
    font-size: 10px;
    padding-inline: 12px;
    min-height: 38px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-featured__viewport {
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
  }

  .menu-featured__viewport.is-dragging {
    cursor: grabbing;
  }

  .menu-featured__swipe-prompt {
    display: inline-flex;
    width: 100%;
  }

  .menu-featured__grid {
    display: flex;
    gap: 12px;
    will-change: transform;
    transition: transform 320ms cubic-bezier(0.18, 0.7, 0.2, 1);
  }

  .menu-item--featured {
    flex: 0 0 78vw;
    max-width: 78vw;
  }

  .menu-featured__controls {
    margin-top: 12px;
  }

  .featured-nav {
    display: none;
  }

  .menu-section::after {
    font-size: 78px;
    right: 0;
  }

  .menu-section__head h2 {
    font-size: 28px;
  }

  .menu-item {
    min-height: 44px;
  }

  .chef-showcase__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chef-card {
    min-height: 280px;
  }

  .menu-item h3 {
    font-size: 14px;
  }

  .menu-special {
    right: 8px;
    top: 7px;
  }

  .flip-nav {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .flip-nav.prev {
    left: 10px;
  }

  .flip-nav.next {
    right: 10px;
  }

  .download-btn {
    right: 66px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .swipe-hint {
    bottom: 12px;
    font-size: 11px;
  }

  .hero__content {
    width: 100%;
    margin-left: 0;
    margin-inline: auto;
    max-width: 640px;
    text-align: center;
  }

  .hero__rule {
    margin-inline: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__content {
    padding-bottom: 84px;
  }

  .hero__tagline {
    font-size: 30px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__bg {
    background-position: center 38%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .dishes .dish-card img {
    aspect-ratio: 4 / 5;
  }

  .dishes .dish-card:nth-child(1) img {
    object-position: center 42%;
  }

  .dishes .dish-card:nth-child(2) img {
    aspect-ratio: 16 / 9;
    object-position: center 54%;
  }

  .dishes .dish-card:nth-child(3) img {
    object-position: center 36%;
  }

  .gallery-grid figure:nth-child(1) img {
    object-position: center 42%;
  }

  .gallery-grid figure:nth-child(2) img {
    object-position: center 56%;
  }

  .gallery-grid figure:nth-child(3) img {
    object-position: center 36%;
  }

  .gallery-grid figure:nth-child(4) img {
    object-position: center 44%;
  }

  .gallery-grid figure:nth-child(5) img {
    object-position: center 52%;
  }

  .gallery-grid figure:nth-child(6) img {
    object-position: center 46%;
  }

  .gallery-grid figure:nth-child(7) img {
    object-position: center 56%;
  }

  .gallery-grid figure:nth-child(8) img {
    object-position: center 40%;
  }

  .inner-hero--menu {
    background-position: center 36%;
  }

  .inner-hero--reserve {
    background-position: center 48%;
  }

  .inner-hero--experience {
    background-position: center 34%;
  }

  .reserve__bg {
    background-position: center 58%;
  }

  .g-large,
  .g-medium {
    grid-column: span 2;
    grid-row: auto;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .reserve-form-wrap,
  .reserve-card {
    padding: 22px;
  }

  .wa-cta-wrap {
    right: 14px;
    bottom: 14px;
  }

  .wa-cta {
    width: 52px;
    height: 52px;
  }

  .wa-chat-pop {
    width: min(86vw, 280px);
  }

  .wa-chat-pop__bubble {
    font-size: 11px;
  }
}

@media (max-width: 700px) {
  .chef-showcase {
    overflow: visible;
  }

  .chef-showcase__head h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .chef-showcase__sub {
    font-size: 13px;
    line-height: 1.55;
  }

  .chef-showcase__cards {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
    gap: 14px;
    padding-inline: 0;
    mask-image: none;
  }

  .chef-showcase__cards::-webkit-scrollbar {
    height: 0;
  }

  .chef-card {
    width: 100%;
    min-height: clamp(340px, 54vh, 430px);
    transform: none;
    filter: brightness(0.5) saturate(0.76);
  }

  .chef-showcase__cards:hover .chef-card:not(.is-active) {
    transform: none;
    filter: brightness(0.5) saturate(0.76);
  }

  .chef-showcase__cards .chef-card:hover,
  .chef-showcase__cards .chef-card:focus-visible {
    transform: none;
    filter: brightness(0.5) saturate(0.76);
    border-color: rgba(201, 162, 52, 0.24);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  }

  .chef-showcase__cards .chef-card:hover::before,
  .chef-showcase__cards .chef-card:focus-visible::before {
    transform: scale(1.02);
  }

  .chef-showcase__cards .chef-card:hover .chef-card__overlay,
  .chef-showcase__cards .chef-card:focus-visible .chef-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 4%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.26) 100%);
  }

  .chef-showcase__cards .chef-card:hover .chef-card__content,
  .chef-showcase__cards .chef-card:focus-visible .chef-card__content {
    transform: translateY(10px);
  }

  .chef-showcase__cards .chef-card:hover .chef-card__desc,
  .chef-showcase__cards .chef-card:focus-visible .chef-card__desc {
    opacity: 0;
    max-height: 0;
    transform: translateY(6px);
  }

  .chef-showcase__cards .chef-card.is-active {
    transform: none;
    filter: brightness(1) saturate(1.08);
    border-color: rgba(201, 162, 52, 0.96);
    box-shadow: 0 0 0 1px rgba(201, 162, 52, 0.3) inset, 0 16px 30px rgba(201, 162, 52, 0.2);
  }

  .chef-showcase__cards .chef-card.is-active::before {
    transform: scale(1.08);
  }

  .chef-showcase__cards .chef-card.is-active .chef-card__content {
    transform: translateY(0);
  }

  .chef-showcase__cards .chef-card.is-active .chef-card__desc {
    opacity: 1;
    max-height: 88px;
    transform: translateY(0);
  }

  .chef-showcase__cards .chef-card.is-active::after {
    content: '';
    position: absolute;
    inset: -24% 12% 38%;
    background: radial-gradient(circle, rgba(201, 162, 52, 0.34), transparent 65%);
    pointer-events: none;
  }

  .chef-showcase__cta-wrap {
    margin-top: 16px;
  }

  .chef-showcase__cta {
    width: 100%;
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chef-card,
  .chef-card__overlay,
  .chef-card__content,
  .chef-showcase__cta {
    transition-duration: 0ms !important;
    animation: none !important;
  }
}

@media (max-width: 700px) {
  .menu-item--featured {
    flex-basis: 78vw;
    max-width: 78vw;
  }
}
