:root {
  --black: #060505;
  --ink: #17120f;
  --paper: #f4efe6;
  --muted: #b7aaa0;
  --cream: #fff8ed;
  --red: #d64a32;
  --red-dark: #8f271d;
  --gold: #c99b61;
  --line: rgba(255, 248, 237, 0.17);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 80;
  transform: translateY(-160%);
  background: var(--red);
  color: #fff;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.7rem clamp(1rem, 4vw, 3.2rem);
  color: #fff;
  transition: background 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.85rem;
  background: rgba(6, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-seal {
  width: 3.2rem;
  aspect-ratio: 1;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 248, 237, 0.9);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 0 4px rgba(201, 155, 97, 0.22);
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand-word {
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 0.85;
}

.brand-word small {
  margin-left: 0.15rem;
  color: var(--muted);
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3.2rem);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "›";
  margin-left: 0.45rem;
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.header-actions a:first-child {
  display: grid;
  place-items: center;
  width: 2.1rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-transform: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 2.8rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 50%;
  background: rgba(6, 5, 5, 0.36);
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: 0.26rem;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(0.52rem) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-0.52rem) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-slide,
.hero-poster,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-poster {
  z-index: -5;
  display: block;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  z-index: -4;
  inset: -4vw;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.14);
  transition: opacity 1100ms ease, transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 0.96;
  transform: scale(1.04);
}

.hero-video {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(1.02) contrast(1.06);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 74, 50, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(6, 5, 5, 0.88), rgba(6, 5, 5, 0.3) 50%, rgba(6, 5, 5, 0.82)),
    linear-gradient(0deg, rgba(6, 5, 5, 0.92), rgba(6, 5, 5, 0.08) 42%, rgba(6, 5, 5, 0.55));
}

.hero-content {
  width: min(100% - 2rem, 980px);
  padding-top: 6rem;
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(9rem, 14.5vw, 13rem);
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255, 248, 237, 0.72);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.36), 0 0 0 8px rgba(201, 155, 97, 0.13);
  animation: heroLogoFade 2200ms ease 180ms both;
}

@keyframes heroLogoFade {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content .brush {
  width: max-content;
  margin: 1.55rem auto;
  font-size: 0.95rem;
  text-shadow: 0 0.15rem 0.45rem rgba(0, 0, 0, 0.9), 0 0 1.1rem rgba(0, 0, 0, 0.72);
}

.brush,
.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.3rem;
  color: rgba(255, 248, 237, 0.82);
  font-size: clamp(3.8rem, 9.3vw, 8.8rem);
  line-height: 0.88;
  text-wrap: balance;
}

.hero-copy {
  max-width: 670px;
  margin-inline: auto;
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-buttons,
.booking-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 190ms ease, background 190ms ease, color 190ms ease;
}

.booking-row .button {
  gap: 0.55rem;
}

.button-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-3px);
}

.button.red {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.button.ghost {
  color: #fff;
}

.button.dark {
  color: var(--ink);
}

.hero-meta {
  position: absolute;
  right: clamp(1rem, 4vw, 3.2rem);
  bottom: clamp(1.2rem, 4vw, 3.2rem);
  display: grid;
  gap: 0.15rem;
  padding: 1.1rem 1.3rem;
  border-left: 1px solid var(--red);
  background: rgba(6, 5, 5, 0.48);
  backdrop-filter: blur(10px);
}

.hero-meta span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta strong {
  color: #fff;
  font-size: 1.2rem;
}

.category-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #1f1915;
}

.category-card {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: end;
  padding: 1.4rem;
  overflow: hidden;
  color: #fff;
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 650ms ease, opacity 650ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(6, 5, 5, 0.92), transparent 65%);
}

.category-card:hover img {
  opacity: 0.72;
  transform: scale(1.08);
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 2;
}

.category-card span {
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 0.15rem 0.45rem rgba(0, 0, 0, 0.9), 0 0 1.1rem rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
}

.category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.popular {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 5, 5, 0.58), rgba(6, 5, 5, 0.78)),
    url("assets/IMG_4248.jpg") center / cover fixed;
}

.popular-shade {
  position: absolute;
  inset: 0;
}

.popular-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 30%, rgba(214, 74, 50, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(6, 5, 5, 0.5), rgba(6, 5, 5, 0.18), rgba(6, 5, 5, 0.5));
}

.popular > :not(.popular-shade) {
  position: relative;
  z-index: 2;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.popular .eyebrow,
.menu-section .eyebrow,
.reservation .eyebrow {
  text-shadow: 0 0.15rem 0.45rem rgba(0, 0, 0, 0.9), 0 0 1.1rem rgba(0, 0, 0, 0.72);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.95;
}

.dish-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.dish-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #100d0b;
  border: 1px solid rgba(255, 248, 237, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dish-card-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #090807;
  color: #fff;
  cursor: zoom-in;
}

.dish-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  transition: transform 380ms ease, opacity 380ms ease;
}

.dish-card-image strong {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 999px;
  background: rgba(6, 5, 5, 0.78);
  color: #fff;
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(0.35rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.dish-card-image:hover img,
.dish-card-image:focus-visible img {
  opacity: 0.82;
  transform: scale(1.035);
}

.dish-card-image:hover strong,
.dish-card-image:focus-visible strong {
  opacity: 1;
  transform: translateY(0);
}

.dish-card-image:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.dish-card div {
  padding: 1.2rem;
}

.dish-card span {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-shadow: 0 0.15rem 0.45rem rgba(0, 0, 0, 0.9), 0 0 1.1rem rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
}

.dish-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
}

.dish-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dish-lightbox {
  width: min(92vw, 1200px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 0.35rem;
  background: #090807;
  color: #fff;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.72);
}

.dish-lightbox[open] {
  display: grid;
}

.dish-lightbox::backdrop {
  background: rgba(4, 3, 3, 0.9);
  backdrop-filter: blur(8px);
}

.dish-lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  max-height: 92vh;
}

.dish-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 7.25rem);
  object-fit: contain;
  background: #050404;
}

.dish-lightbox figcaption {
  min-height: 6.7rem;
  max-height: min(32vh, 8.5rem);
  overflow-y: auto;
  padding: 1rem 4.8rem 1.05rem 1.25rem;
  scrollbar-gutter: stable;
  color: #fff8ed;
}

.dish-lightbox figcaption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.dish-lightbox figcaption span {
  display: block;
  margin-top: 0.35rem;
  max-width: 48rem;
  color: rgba(255, 248, 237, 0.78);
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 0.98rem);
  line-height: 1.45;
}

.dish-lightbox-close {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  z-index: 2;
  min-height: 2.5rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

body.dish-lightbox-open {
  overflow: hidden;
}

.mission,
.delivery {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  min-height: 760px;
  background: var(--paper);
  color: var(--ink);
}

.mission,
.delivery {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.mission-image,
.delivery-image {
  overflow: hidden;
}

.mission-image img,
.mission-image video,
.delivery-image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
}

.mission-image video {
  display: block;
}

.mission-copy,
.delivery-copy {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 7vw, 5rem);
}

.mission-copy {
  align-content: center;
  padding: clamp(3rem, 6vw, 6rem);
}

.mission-copy h2 {
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.mission-text {
  display: grid;
  gap: 1rem;
  max-width: 680px;
}

.mission-copy p:not(.eyebrow),
.delivery-copy li,
.reservation-card p {
  color: rgba(23, 18, 15, 0.68);
  font-size: 1.08rem;
}

.mission-copy p:not(.eyebrow) {
  margin-bottom: 0;
  line-height: 1.8;
}

.chef-note {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid var(--red);
}

.chef-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.chef-note span {
  color: rgba(23, 18, 15, 0.58);
}

.menu-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 3rem);
  background: var(--black);
  text-align: center;
}

.menu-shade {
  position: absolute;
  inset: 0;
}

.menu-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 26%, rgba(214, 74, 50, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(6, 5, 5, 0.44), rgba(6, 5, 5, 0.76)),
    linear-gradient(90deg, rgba(6, 5, 5, 0.68), rgba(6, 5, 5, 0.28), rgba(6, 5, 5, 0.68));
}

.menu-layout {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.menu-main-cta {
  grid-column: 1;
  grid-row: 2;
  width: max-content;
  min-width: 10.5rem;
  min-height: 2.8rem;
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.menu-download-card {
  position: relative;
  z-index: 4;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  align-items: start;
  width: 100%;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(201, 155, 97, 0.48);
  border-radius: 0.7rem;
  color: var(--cream);
  background: rgba(6, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  text-align: left;
  text-decoration: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(42vw, 0, 0) rotate(20deg) scale(0.92);
  transform-origin: 50% 10%;
  transition:
    opacity 360ms ease,
    transform 920ms cubic-bezier(0.18, 0.88, 0.23, 1.12),
    border-color 180ms ease;
  will-change: transform, opacity;
}

.menu-download-card img {
  align-self: start;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 5px solid var(--cream);
  border-radius: 4px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
  transform: rotate(-4deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-download-card strong {
  margin-top: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.menu-download-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.menu-download-card:hover img,
.menu-download-card:focus-visible img {
  transform: translateY(-5px) rotate(-6deg) scale(1.025);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
}

.menu-download-card:hover,
.menu-download-card:focus-visible {
  border-color: rgba(201, 155, 97, 0.82);
  outline: none;
}

.menu-section.menu-download-visible .menu-download-card {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.menu-tabs {
  width: min(100%, var(--max));
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.menu-tabs button {
  min-width: 7rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-tabs button.is-active {
  border-color: var(--red);
  background: var(--red);
}

.menu-board {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  margin-inline: auto;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 248, 237, 0.14);
  background: rgba(6, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  text-align: left;
}

.menu-list {
  display: none;
}

.menu-list.is-active {
  display: grid;
}

.menu-list article {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.12);
}

.menu-list article:last-child {
  border-bottom: 0;
}

.menu-item-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: #df653f;
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-list h3 {
  margin-bottom: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.menu-list p {
  margin: 0;
  color: var(--muted);
}

.menu-list span {
  color: var(--gold);
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.menu-pdf {
  width: max-content;
  margin: 2rem auto 0;
  display: inline-flex;
}

.menu-page {
  background:
    linear-gradient(180deg, rgba(6, 5, 5, 0), rgba(6, 5, 5, 0.82) 560px),
    var(--black);
}

.menu-hero {
  position: relative;
  min-height: 66svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 8rem clamp(1rem, 4vw, 3rem) 5rem;
  text-align: center;
}

.menu-hero-bg {
  position: absolute;
  inset: -4vw;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 5, 5, 0.86), rgba(6, 5, 5, 0.3) 50%, rgba(6, 5, 5, 0.84)),
    linear-gradient(0deg, rgba(6, 5, 5, 0.88), rgba(6, 5, 5, 0.1) 44%, rgba(6, 5, 5, 0.54)),
    url("assets/IMG_4416.jpg") center / cover;
  transform: scale(1.04);
}

.menu-hero-copy {
  width: min(100%, 940px);
}

.menu-page .hero-copy {
  max-width: 760px;
}

.menu-jump {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.8rem clamp(0.8rem, 3vw, 2rem);
  background: rgba(6, 5, 5, 0.9);
  border-block: 1px solid rgba(255, 248, 237, 0.1);
  backdrop-filter: blur(14px);
}

.menu-jump-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.menu-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.58rem 0.8rem;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-jump a:hover,
.menu-jump a:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.menu-jump-select {
  display: none;
}

.menu-jump-select span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-jump-select select {
  width: 100%;
  min-height: 3rem;
  padding: 0 3rem 0 1rem;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(45deg, transparent 50%, var(--cream) 50%) calc(100% - 1.35rem) 50% / 0.45rem 0.45rem no-repeat,
    linear-gradient(135deg, var(--cream) 50%, transparent 50%) calc(100% - 1.05rem) 50% / 0.45rem 0.45rem no-repeat,
    rgba(255, 248, 237, 0.08);
  color: var(--cream);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  appearance: none;
}

.menu-jump-select select:focus {
  border-color: var(--red);
  outline: 2px solid rgba(214, 74, 50, 0.28);
  outline-offset: 3px;
}

.menu-jump-select option {
  background: #fff8ed;
  color: #19100c;
}

.menu-shell {
  scroll-margin-top: 6rem;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 20% 8%, rgba(214, 74, 50, 0.14), transparent 24%),
    #0b0908;
}

.menu-shell.menu-food {
  background: var(--paper);
  color: var(--ink);
}

.menu-shell.menu-alt {
  background:
    linear-gradient(180deg, rgba(6, 5, 5, 0.84), rgba(6, 5, 5, 0.9)),
    url("assets/fish.jpg") center / cover fixed;
}

.menu-heading {
  width: min(100%, var(--max));
  margin: 0 auto clamp(2rem, 5vw, 3.2rem);
  text-align: center;
}

.menu-heading h2 {
  color: inherit;
}

.menu-category {
  scroll-margin-top: 8rem;
  width: min(100%, var(--max));
  margin: 0 auto 1.1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 248, 237, 0.12);
  background: rgba(16, 13, 11, 0.84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.menu-food .menu-category {
  border-color: rgba(23, 18, 15, 0.12);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 18px 48px rgba(23, 18, 15, 0.08);
}

.menu-category h3 {
  margin: 0 0 1rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.menu-food .menu-category h3 {
  color: var(--red-dark);
}

.menu-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

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

.wine-grid {
  align-items: start;
}

.menu-grid .menu-category {
  width: 100%;
  margin: 0;
}

.menu-items {
  display: grid;
  gap: 0;
}

.menu-items.menu-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.4rem;
}

.menu-items article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.1);
}

.menu-food .menu-items article {
  border-bottom-color: rgba(23, 18, 15, 0.1);
}

.menu-items article:last-child {
  border-bottom: 0;
}

.menu-items span {
  min-width: 0;
  color: rgba(255, 248, 237, 0.92);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.menu-food .menu-items span,
.menu-food .dish-descriptions h4,
.menu-food .pasta-builder h4 {
  color: rgba(23, 18, 15, 0.94);
}

.menu-items em {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.menu-food .menu-items em,
.menu-food .menu-note,
.menu-food .dish-descriptions p,
.menu-food .pasta-builder p {
  color: rgba(23, 18, 15, 0.66);
}

.menu-items strong {
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.menu-food .menu-items strong,
.menu-food .price-strip strong {
  color: var(--red-dark);
}

.menu-note {
  margin: -0.25rem 0 1rem;
  color: rgba(255, 248, 237, 0.68);
}

.price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.price-strip span {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: rgba(214, 74, 50, 0.11);
  color: inherit;
  font-weight: 900;
}

.price-strip strong {
  color: var(--gold);
}

.dish-descriptions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dish-descriptions article,
.pasta-builder > div {
  padding: 1rem;
  background: rgba(255, 248, 237, 0.05);
  border: 1px solid rgba(255, 248, 237, 0.1);
}

.menu-food .dish-descriptions article,
.menu-food .pasta-builder > div {
  background: rgba(214, 74, 50, 0.06);
  border-color: rgba(23, 18, 15, 0.08);
}

.dish-descriptions h4,
.pasta-builder h4 {
  margin: 0 0 0.35rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.dish-descriptions p,
.pasta-builder p {
  margin: 0;
  color: var(--muted);
}

.pasta-builder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-contact {
  width: min(100%, var(--max));
  margin: 1.6rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1rem;
  text-align: center;
}

.menu-contact p {
  flex-basis: 100%;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.menu-contact p a {
  color: var(--gold);
  font-weight: 900;
}

.delivery {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.delivery-copy ul {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.delivery-copy li {
  position: relative;
  padding-left: 1.7rem;
}

.delivery-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
}

.gallery-section {
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 2.5rem;
  background: var(--black);
}

.gallery-section-head {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.gallery-section-head h2 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
}

.gallery-marquee {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.gallery-marquee.is-dragging {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 1px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.gallery-card {
  width: clamp(270px, 29vw, 370px);
  flex: 0 0 auto;
  background: #100d0b;
  border: 1px solid rgba(255, 248, 237, 0.1);
}

.gallery-card img {
  width: 100%;
  height: clamp(210px, 23vw, 310px);
  object-fit: cover;
  opacity: 0.82;
  pointer-events: none;
}

.gallery-card div {
  padding: 1.05rem 1.15rem 1.2rem;
}

.gallery-card h3 {
  margin: 0 0 0.35rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-section-cta {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem 0;
}

.gallery-page-hero {
  position: relative;
  display: grid;
  min-height: min(76svh, 780px);
  padding: clamp(8rem, 18vw, 13rem) 1rem clamp(5rem, 11vw, 8rem);
  place-items: center;
  overflow: hidden;
  background: url("assets/gallery/gills-gallery-48-full.webp") center / cover no-repeat;
  text-align: center;
}

.gallery-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 5, 5, 0.42), rgba(6, 5, 5, 0.78)),
    radial-gradient(circle at 50% 40%, rgba(214, 74, 50, 0.16), transparent 42%);
}

.gallery-page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
}

.gallery-page-hero h1 {
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  line-height: 0.92;
}

.gallery-page-hero-copy > p:last-child {
  width: min(100%, 680px);
  margin: 0 auto;
  color: rgba(255, 248, 237, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.gallery-page-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 15% 5%, rgba(214, 74, 50, 0.1), transparent 26%),
    var(--black);
}

.gallery-page-intro {
  width: min(100%, 760px);
  margin: 0 auto clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}

.gallery-page-intro h2 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.gallery-page-intro p:last-child {
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-page-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-page-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(255, 248, 237, 0.12);
  border-radius: 0.3rem;
  background: #100d0b;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
}

.gallery-page-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #090807;
  color: var(--cream);
  cursor: zoom-in;
}

.gallery-page-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 300ms ease, transform 420ms ease;
}

.gallery-page-image strong {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 999px;
  background: rgba(6, 5, 5, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(0.3rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-page-image:hover img,
.gallery-page-image:focus-visible img {
  opacity: 0.78;
  transform: scale(1.025);
}

.gallery-page-image:hover strong,
.gallery-page-image:focus-visible strong {
  opacity: 1;
  transform: translateY(0);
}

.gallery-page-image:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.gallery-page-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--muted);
}

.gallery-page-card figcaption strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.virtual-tour {
  display: grid;
  width: min(100%, var(--max));
  margin: clamp(3rem, 7vw, 5.5rem) auto 0;
  gap: clamp(1.4rem, 4vw, 2.25rem);
}

.virtual-tour-home {
  width: min(100%, calc(var(--max) + 6rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem) 0;
}

.virtual-tour-copy {
  width: min(100%, 760px);
}

.virtual-tour-copy h2 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.virtual-tour-copy p:last-child {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.virtual-tour-frame {
  position: relative;
  min-height: clamp(320px, 58vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 0.3rem;
  background: #100d0b;
  box-shadow: 0 1.4rem 3.4rem rgba(0, 0, 0, 0.34);
}

.virtual-tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.virtual-tour-frame.is-active iframe {
  pointer-events: auto;
}

.virtual-tour-activate {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 0;
  background: linear-gradient(180deg, rgba(6, 5, 5, 0.18), rgba(6, 5, 5, 0.48));
  color: var(--cream);
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
  text-align: center;
  cursor: pointer;
}

.virtual-tour-activate span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 248, 237, 0.34);
  border-radius: 999px;
  background: rgba(6, 5, 5, 0.74);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.virtual-tour-frame.is-active .virtual-tour-activate {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.reservation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  min-height: clamp(720px, 86vh, 900px);
  padding: 0;
  background:
    radial-gradient(circle at 24% 24%, rgba(214, 74, 50, 0.22), transparent 28%),
    #100d0b;
  overflow: hidden;
}

.reservation-card {
  position: relative;
  display: grid;
  align-content: center;
  min-height: inherit;
  padding: clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 5, 5, 0.84), rgba(6, 5, 5, 0.48)),
    url("assets/curries.jpg") center / cover;
  color: var(--cream);
  isolation: isolate;
}

.reservation-card::before,
.reservation-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.reservation-card::before {
  inset: 1.2rem;
  border: 1px solid rgba(255, 248, 237, 0.18);
}

.reservation-card::after {
  width: 22rem;
  aspect-ratio: 1;
  right: -7rem;
  bottom: -7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 28%, rgba(255, 248, 237, 0.08) 29% 31%, transparent 32% 42%, rgba(214, 74, 50, 0.2) 43% 45%, transparent 46%),
    repeating-conic-gradient(from 18deg, rgba(201, 155, 97, 0.28) 0 9deg, transparent 9deg 18deg);
  opacity: 0.75;
}

.reservation-card h2 {
  max-width: 9ch;
  font-size: clamp(3rem, 6.3vw, 6.6rem);
  line-height: 0.88;
}

.reservation-card p,
.reservation-card .reservation-intro {
  max-width: 560px;
  color: rgba(255, 248, 237, 0.76);
  font-size: 1.08rem;
}

.booking-row {
  justify-content: start;
  margin: 1.35rem 0 1.8rem;
}

.reservation-card .button.dark {
  color: var(--cream);
  background: rgba(6, 5, 5, 0.24);
  border-color: rgba(255, 248, 237, 0.58);
}

.visit-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.75fr);
  gap: 1.2rem;
  max-width: 640px;
  margin-top: 0.4rem;
}

.reservation-card dl {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.reservation-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 248, 237, 0.18);
  padding-bottom: 0.6rem;
}

.reservation-card dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reservation-card dd {
  margin: 0;
  font-weight: 900;
}

.reservation-card address {
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid var(--red);
  color: rgba(255, 248, 237, 0.76);
  font-style: normal;
}

.map-panel {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: #0c0c0b;
}

.map-eyebrow {
  position: absolute;
  top: clamp(1.4rem, 4vw, 3rem);
  left: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.75rem;
  background: rgba(6, 5, 5, 0.74);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 5, 5, 0.34), transparent 36%),
    linear-gradient(0deg, rgba(6, 5, 5, 0.42), transparent 44%);
}

.map-image-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  opacity: 0.9;
  transform: scale(1.03);
}

.map-ribbon {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  max-width: 520px;
  padding: 1.2rem 1.35rem;
  background: rgba(6, 5, 5, 0.82);
  border: 1px solid rgba(255, 248, 237, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.map-ribbon span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-ribbon strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.map-ribbon a {
  width: max-content;
  margin-top: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--black);
  border-top: 1px solid rgba(255, 248, 237, 0.1);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-separator {
  margin: 0 0.5rem;
  color: rgba(255, 248, 237, 0.28);
}

.staff-login-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.staff-login-link:hover,
.staff-login-link:focus-visible {
  color: #fff8ed;
  outline: none;
}

body.staff-login-open {
  overflow: hidden;
}

.staff-login-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.staff-login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.staff-login-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(4, 3, 3, 0.86);
  backdrop-filter: blur(9px);
  cursor: default;
}

.staff-login-dialog {
  position: relative;
  width: min(100%, 440px);
  padding: clamp(2rem, 7vw, 3rem);
  border: 1px solid rgba(201, 155, 97, 0.38);
  border-radius: 6px;
  background: #17110e;
  color: #fff8ed;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.62);
  transform: translateY(18px);
  transition: transform 220ms ease;
}

.staff-login-modal.is-open .staff-login-dialog {
  transform: translateY(0);
}

.staff-login-dialog > img {
  width: 64px;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 50%;
  object-fit: cover;
}

.staff-login-dialog .eyebrow {
  margin-bottom: 0.35rem;
}

.staff-login-dialog h2 {
  margin: 0 0 1.75rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 10vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.staff-login-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 50%;
  background: transparent;
  color: #fff8ed;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.staff-login-dialog form {
  display: grid;
  gap: 1rem;
}

.staff-login-dialog label {
  display: grid;
  gap: 0.45rem;
}

.staff-login-dialog label span {
  color: #d8bd8d;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.staff-login-dialog input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 3px;
  background: rgba(255, 248, 237, 0.07);
  color: #fff8ed;
  font: inherit;
}

.staff-login-dialog input:focus {
  border-color: var(--gold);
  outline: none;
}

.staff-login-message {
  min-height: 1.25rem;
  margin: 0;
  color: #ff9b84;
  font-size: 0.86rem;
}

.staff-login-dialog .button {
  width: 100%;
  justify-content: center;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 4vw, 1.75rem);
  bottom: clamp(1rem, 4vw, 1.75rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0 1rem;
  border: 1px solid rgba(201, 155, 97, 0.74);
  border-radius: 999px;
  color: #fff8ed;
  background:
    linear-gradient(135deg, rgba(201, 155, 97, 0.16), rgba(190, 49, 44, 0.22)),
    rgba(6, 5, 5, 0.9);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 2.2rem));
  transition: opacity 220ms ease, transform 220ms ease, border-color 180ms ease;
}

.back-to-top::before {
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  content: "";
  transform: translateY(0.18rem) rotate(45deg);
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(255, 248, 237, 0.9);
  outline: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 5, 0.78);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255, 248, 237, 0.2);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.55);
  transform: translateY(24px) scale(0.98);
  transition: transform 260ms ease;
}

.booking-modal.is-open .booking-dialog {
  transform: translateY(0) scale(1);
}

.booking-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 18, 15, 0.16);
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.88);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.booking-form {
  display: grid;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.booking-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem clamp(1.2rem, 4vw, 2.1rem);
  border-bottom: 1px solid rgba(23, 18, 15, 0.12);
  background: #fffaf2;
  text-align: left;
}

.booking-head img {
  width: 3.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(23, 18, 15, 0.14);
  box-shadow: 0 0 0 4px rgba(201, 155, 97, 0.16);
}

.booking-head h2 {
  margin: 0.05rem 0 0.1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.92;
}

.booking-kicker,
.booking-head span,
.booking-message,
.booking-disclaimer {
  color: rgba(23, 18, 15, 0.62);
}

.booking-disclaimer {
  margin: 0;
}

.booking-kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
}

.booking-progress span {
  padding: 0.85rem 1rem;
  color: rgba(23, 18, 15, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.booking-progress span.is-active {
  color: var(--red);
  background: rgba(214, 74, 50, 0.08);
}

.booking-step {
  display: none;
  padding: clamp(1rem, 3vw, 1.8rem);
}

.booking-step.is-active {
  display: grid;
  gap: 1rem;
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-fields-top {
  align-items: end;
}

.booking-fields label,
.booking-textarea,
.seating-options {
  display: grid;
  gap: 0.38rem;
}

.booking-date-label {
  position: relative;
}

.booking-fields span,
.booking-textarea span,
.seating-options legend {
  color: rgba(23, 18, 15, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-fields input,
.booking-fields select,
.booking-textarea textarea {
  width: 100%;
  border: 1px solid rgba(23, 18, 15, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.9rem 1rem;
}

.booking-textarea textarea {
  resize: vertical;
}

.booking-date-shell {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 3.6rem;
  border: 1px solid rgba(23, 18, 15, 0.18);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.booking-date-shell input {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.booking-date-shell strong {
  padding: 0.9rem 3rem 0.9rem 1rem;
  font-weight: 400;
}

.booking-date-shell em {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  font-style: normal;
  pointer-events: none;
}

.booking-calendar {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(23, 18, 15, 0.16);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.2);
}

.booking-calendar[hidden] {
  display: none;
}

.booking-calendar-head,
.booking-calendar-weekdays,
.booking-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.booking-calendar-head {
  grid-template-columns: 2.4rem 1fr 2.4rem;
  align-items: center;
}

.booking-calendar-head strong {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.booking-calendar-head button,
.booking-calendar-days button {
  border: 1px solid rgba(23, 18, 15, 0.12);
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.booking-calendar-head button {
  display: grid;
  place-items: center;
  min-height: 2.3rem;
  font-size: 1.4rem;
}

.booking-calendar-weekdays span {
  color: rgba(23, 18, 15, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.booking-calendar-days button {
  min-height: 2.35rem;
  font-weight: 900;
}

.booking-calendar-days button.is-selected {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.booking-calendar-days button:disabled {
  cursor: not-allowed;
  opacity: 0.28;
}

.booking-panel {
  display: grid;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.booking-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  text-align: center;
}

.time-grid {
  display: block;
}

.no-times {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  background: rgba(214, 74, 50, 0.08);
  color: var(--red-dark);
  font-weight: 900;
  text-align: center;
}

.seating-options label {
  display: grid;
  cursor: pointer;
}

.seating-options input {
  position: absolute;
  opacity: 0;
}

.seating-options label span {
  display: grid;
  place-items: center;
  min-height: 2.7rem;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(23, 18, 15, 0.16);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.seating-options input:checked + span {
  border-color: var(--red);
  color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}

.booking-time-select {
  display: grid;
  gap: 0.45rem;
}

.booking-time-select span {
  color: rgba(23, 18, 15, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-time-select select {
  width: 100%;
  min-height: 3.4rem;
  border: 1px solid rgba(23, 18, 15, 0.18);
  border-radius: 0;
  padding: 0.75rem 1rem;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.booking-fields select,
.booking-time-select select {
  appearance: none;
  padding-right: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='m2 2 6 6 6-6' fill='none' stroke='%2317120f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 10px;
}

.seating-options {
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.seating-options legend {
  margin-bottom: 0.2rem;
}

.seating-options label span {
  justify-content: start;
  min-height: 3rem;
}

.booking-back {
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.booking-summary {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  background: rgba(214, 74, 50, 0.08);
  border-left: 3px solid var(--red);
  font-weight: 900;
}

.booking-summary span {
  display: block;
}

.booking-message {
  min-height: 1.4rem;
  margin: 0;
  font-weight: 900;
}

.booking-step[data-booking-step="2"] .booking-message:empty {
  display: none;
}

.booking-message.is-error {
  color: var(--red-dark);
}

.booking-message.is-success {
  color: #177245;
}

.booking-submit {
  width: 100%;
  justify-content: center;
}

body.booking-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 1rem;
  }

  .site-header.nav-open {
    inset: 0;
    z-index: 90;
    align-content: start;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 100svh;
    overflow-y: auto;
    background:
      radial-gradient(circle at 80% 16%, rgba(214, 74, 50, 0.18), transparent 30%),
      rgba(6, 5, 5, 0.97);
    backdrop-filter: blur(18px);
  }

  .main-nav {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    align-content: center;
    justify-items: stretch;
    gap: 0.45rem;
    min-height: calc(100svh - 6.2rem);
    width: min(100%, 28rem);
    margin: 0 auto;
    padding: clamp(2rem, 8vw, 4rem) 0;
    font-size: clamp(1.05rem, 5vw, 1.6rem);
    text-align: center;
  }

  .site-header.nav-open .main-nav a {
    padding: 1rem;
    border: 1px solid rgba(255, 248, 237, 0.12);
    border-radius: 0.3rem;
    background: rgba(255, 248, 237, 0.04);
  }

  .site-header.nav-open .main-nav a:hover,
  .site-header.nav-open .main-nav a:focus-visible {
    background: rgba(255, 248, 237, 0.08);
    outline: none;
  }

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

  .menu-download-card {
    grid-column: 1;
    grid-row: 3;
    width: min(100%, 680px);
    margin-inline: auto;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    align-items: center;
  }

  .menu-download-card img {
    grid-row: 1 / 4;
  }

  .header-actions {
    justify-self: end;
  }

  .site-header.nav-open .header-actions {
    position: fixed;
    top: clamp(1rem, 4vw, 1.7rem);
    right: clamp(1rem, 4vw, 3.2rem);
    z-index: 3;
  }

  .header-actions > a,
  .header-actions a:first-child {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .category-band,
  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid,
  .menu-grid.wide,
  .dish-descriptions,
  .pasta-builder {
    grid-template-columns: 1fr;
  }

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

  .mission,
  .delivery,
  .reservation {
    grid-template-columns: 1fr;
  }

  .reservation {
    min-height: auto;
  }

  .reservation-card,
  .map-panel {
    min-height: 620px;
  }

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

  .delivery-image {
    order: -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .reveal.reveal-early {
    transform: translateY(26px);
    transition-duration: 520ms;
  }

  .site-header {
    padding: 1rem;
  }

  .hero-video {
    opacity: 1;
    filter: brightness(1.16) saturate(1.08) contrast(1.02);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 46%, rgba(214, 74, 50, 0.08), transparent 32%),
      linear-gradient(90deg, rgba(6, 5, 5, 0.58), rgba(6, 5, 5, 0.16) 52%, rgba(6, 5, 5, 0.52)),
      linear-gradient(0deg, rgba(6, 5, 5, 0.66), rgba(6, 5, 5, 0.04) 46%, rgba(6, 5, 5, 0.34));
  }

  .brand-seal {
    width: 2.75rem;
  }

  .brand-word {
    font-size: 1.55rem;
  }

  .back-to-top {
    right: 0.75rem;
    bottom: 0.75rem;
    min-height: 2.75rem;
    padding: 0 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .hero-content {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

  .hero-buttons,
  .booking-row,
  .booking-fields {
    display: grid;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
    width: min(100% - 2rem, 340px);
  }

  .category-band,
  .dish-grid {
    grid-template-columns: 1fr;
  }

  .dish-card-image {
    aspect-ratio: 16 / 9;
  }

  .dish-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .dish-card div {
    padding: 0.95rem 1rem 1rem;
  }

  .dish-card span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .dish-card h3 {
    margin: 0.22rem 0 0.35rem;
    font-size: 1.35rem;
  }

  .dish-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .category-card {
    min-height: 210px;
  }

  .mission,
  .delivery {
    min-height: auto;
  }

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

  .menu-list article,
  .reservation-card dl div {
    display: grid;
  }

  .menu-list span {
    justify-self: end;
  }

  .menu-hero {
    min-height: 54svh;
    padding: 5.8rem 1rem 3rem;
  }

  .menu-jump {
    display: none;
  }

  .menu-jump-select {
    display: grid;
    width: min(100%, 24rem);
    margin: 1.4rem auto 0;
    gap: 0.45rem;
  }

  .menu-shell {
    scroll-margin-top: 1.25rem;
  }

  .menu-category {
    padding: 1rem;
  }

  .menu-items article {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }

  .menu-items strong {
    text-align: left;
    white-space: normal;
  }

  .price-strip {
    display: grid;
  }

  .reservation-card {
    padding: 5rem 1.4rem 3rem;
  }

  .reservation-card::before {
    display: none;
  }

  .reservation-card h2 {
    line-height: 1.02;
  }

  .visit-facts {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 520px;
  }

  .map-ribbon {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .booking-modal {
    align-items: start;
    padding: calc(4rem + env(safe-area-inset-top)) 0.6rem 0.6rem;
  }

  .booking-dialog {
    width: 100%;
    max-height: calc(100dvh - 4.6rem - env(safe-area-inset-top));
  }

  .booking-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-head img {
    margin-inline: auto;
  }

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

  .menu-download-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    width: 100%;
    transform: translate3d(120vw, 0, 0) rotate(0deg) scale(0.92);
  }

  .menu-download-card img {
    grid-row: auto;
    border-width: 4px;
  }

  .menu-section.menu-download-visible .menu-download-card {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  .gallery-card {
    width: 280px;
  }

  .gallery-card img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .menu-download-card,
  .menu-section.menu-download-visible .menu-download-card {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
