@font-face {
  font-family: "Six Caps";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/six-caps-latin.woff2") format("woff2");
}

:root {
  --ink: #090a09;
  --ink-soft: #111311;
  --paper: #f2eee5;
  --paper-soft: #e5dfd3;
  --white: #fffdf8;
  --muted: #9c9d98;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(9, 10, 9, 0.18);
  --red: #a5132d;
  --red-dark: #760c20;
  --green: #a9c63f;
  --green-dark: #667d1f;
  --shell: 1240px;
  --header-height: 88px;
  --tear-depth: 30px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

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

.page-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section-band {
  position: relative;
  padding-block: 112px;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-red {
  background: var(--red-dark);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-red .eyebrow {
  color: var(--green);
}

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

h1,
h2,
h3,
.brand-copy,
.footer-brand {
  font-family: "Six Caps", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 4.8rem;
  line-height: 0.98;
}

h2 em {
  color: var(--red);
  font-weight: inherit;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  font-size: 0.7rem;
}

.button-accent {
  background: var(--red);
  color: var(--white);
}

.button-accent:hover {
  background: #be1836;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(9, 10, 9, 0.15);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(9, 10, 9, 0.5);
}

.button-ink {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 0 0.35rem;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.text-link span {
  color: var(--red);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.text-link-light span {
  color: var(--green);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: max(20px, calc((100vw - var(--shell)) / 2));
  left: max(20px, calc((100vw - var(--shell)) / 2));
  display: grid;
  min-height: 74px;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 8, 7, 0.72);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: top 220ms ease, min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  top: 10px;
  min-height: 66px;
  border-color: var(--line-dark);
  background: rgba(9, 10, 9, 0.96);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.brand-seal {
  width: 46px;
  height: 46px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--ink);
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 0.95;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 0.3rem;
  color: var(--green);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.main-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(9, 10, 9, 0.35);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) 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(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 112px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -1px;
  left: 0;
  height: var(--tear-depth);
  background: var(--green);
  clip-path: polygon(0 64%, 4% 35%, 8% 58%, 12% 29%, 16% 63%, 20% 38%, 24% 72%, 28% 33%, 32% 59%, 36% 26%, 40% 68%, 44% 40%, 48% 74%, 52% 31%, 56% 62%, 60% 36%, 64% 70%, 68% 28%, 72% 61%, 76% 37%, 80% 73%, 84% 31%, 88% 64%, 92% 39%, 96% 70%, 100% 35%, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  transform: translate3d(0, var(--hero-parallax-y, 0), 0) scale(1.08);
  will-change: transform;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 5, 4, 0.84) 0%, rgba(4, 5, 4, 0.35) 54%, rgba(4, 5, 4, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 5, 4, 0.78) 0%, transparent 56%, rgba(4, 5, 4, 0.45) 100%);
}

.hero-content {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  padding: 160px 210px 86px 0;
}

.hero-kicker {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 9rem;
  line-height: 0.78;
  text-shadow: 0 10px 45px rgba(0, 0, 0, 0.3);
}

.hero-deck {
  margin: 1.65rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-hours {
  position: absolute;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: 82px;
  display: grid;
  min-width: 180px;
  grid-template-columns: auto auto;
  gap: 0.3rem 1.5rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.hero-hours span {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-hours strong {
  font-weight: 500;
}

.hero-side-note {
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  gap: 1.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: var(--green);
  color: var(--ink);
}

.story::after,
.cuisines::after,
.signature::after,
.room::after {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: calc(var(--tear-depth) * -1 + 1px);
  left: 0;
  height: calc(var(--tear-depth) + 2px);
  background: var(--tear-color);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 97% 73%, 94% 48%, 91% 82%, 88% 55%, 84% 76%, 81% 43%, 77% 72%, 73% 51%, 69% 86%, 65% 58%, 61% 79%, 57% 47%, 53% 74%, 49% 54%, 45% 84%, 41% 51%, 37% 78%, 33% 46%, 29% 73%, 25% 56%, 21% 87%, 17% 52%, 13% 76%, 9% 47%, 5% 80%, 0 58%);
  content: "";
  pointer-events: none;
}

.ticker::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: var(--tear-depth);
  background: var(--paper);
  clip-path: polygon(0 58%, 5% 80%, 9% 47%, 13% 76%, 17% 52%, 21% 87%, 25% 56%, 29% 73%, 33% 46%, 37% 78%, 41% 51%, 45% 84%, 49% 54%, 53% 74%, 57% 47%, 61% 79%, 65% 58%, 69% 86%, 73% 51%, 77% 72%, 81% 43%, 84% 76%, 88% 55%, 91% 82%, 94% 48%, 97% 73%, 100% 45%, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.story { --tear-color: var(--paper); }
.cuisines { --tear-color: var(--ink); }
.signature { --tear-color: var(--paper); }
.room { --tear-color: var(--red-dark); }

.ticker-track {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-inline: auto;
  padding: 1.05rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.story {
  z-index: 3;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px 88px;
  align-items: start;
}

.story-copy {
  padding-top: 44px;
}

.story-copy h2 {
  margin-bottom: 2.1rem;
}

.story-copy p {
  max-width: 540px;
  color: #3f413e;
}

.story-copy .story-lead {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.55;
}

.story-copy .text-link {
  margin-top: 1.2rem;
}

.story-portrait {
  margin: 0;
}

.story-portrait img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.story-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-light);
  color: #555851;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.story-portrait figcaption span {
  color: var(--red);
}

.story-detail {
  width: 58%;
  margin: -128px 0 0 15%;
}

.story-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 24px 24px 0 var(--green);
}

.parallax-feature {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.parallax-feature-media,
.parallax-feature-shade {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
}

.parallax-feature-media {
  z-index: -3;
  object-fit: cover;
  object-position: center 58%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  will-change: transform;
}

.parallax-feature-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 5, 4, 0.92) 0%, rgba(5, 5, 4, 0.54) 49%, rgba(5, 5, 4, 0.22) 100%), linear-gradient(0deg, rgba(5, 5, 4, 0.7), transparent 52%, rgba(5, 5, 4, 0.4));
}

.parallax-feature-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  align-items: end;
  gap: 4rem;
  padding-block: 140px;
}

.parallax-feature-content .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2.5rem;
  color: var(--green);
}

.parallax-feature h2 {
  max-width: 850px;
  margin: 0;
  font-size: 6.9rem;
  line-height: 0.88;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.38);
}

.parallax-feature h2 em {
  color: var(--green);
  font-style: italic;
}

.parallax-feature-note {
  padding: 1.5rem 0 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.parallax-feature-note span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.parallax-feature-note p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading h2 {
  max-width: 700px;
  grid-column: 1 / -1;
  margin: 0;
}

.cuisine-list {
  border-bottom: 1px solid var(--line-dark);
}

.cuisine-row {
  display: grid;
  grid-template-columns: 54px minmax(230px, 0.8fr) minmax(280px, 1fr) 52px;
  align-items: center;
  gap: 2rem;
  min-height: 148px;
  border-top: 1px solid var(--line-dark);
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.cuisine-row:first-child {
  border-top: 0;
}

.cuisine-row:hover {
  padding-inline: 1.2rem;
  background: var(--green);
  color: var(--ink);
}

.cuisine-index {
  color: var(--green);
  font-size: 0.72rem;
}

.cuisine-row:hover .cuisine-index {
  color: var(--red-dark);
}

.cuisine-row h3 {
  margin: 0;
  font-size: 3.3rem;
  line-height: 1;
}

.cuisine-row p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
}

.cuisine-row:hover p {
  color: #22271b;
}

.cuisine-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.25rem;
}

.signature {
  z-index: 2;
  background: var(--paper);
}

.signature-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 3rem;
  margin-bottom: 56px;
}

.signature-heading h2 {
  margin-bottom: 0;
}

.signature-heading > p {
  margin: 0 0 0.7rem;
  color: #545750;
  font-size: 1.05rem;
}

.home-gallery {
  display: grid;
  min-height: 880px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 260px 220px;
  gap: 12px;
}

.home-gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 2px;
  background: var(--ink-soft);
  cursor: zoom-in;
}

.home-gallery-item:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.home-gallery-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.home-gallery-item:nth-child(3) {
  grid-column: 8 / 11;
  grid-row: 2;
}

.home-gallery-item:nth-child(4) {
  grid-column: 11 / 13;
  grid-row: 2;
}

.home-gallery-item:nth-child(5) {
  grid-column: 1 / 5;
  grid-row: 3;
}

.home-gallery-item:nth-child(6) {
  grid-column: 5 / 9;
  grid-row: 3;
}

.home-gallery-item:nth-child(7) {
  grid-column: 9 / 13;
  grid-row: 3;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.home-gallery-item:hover img {
  transform: scale(1.035);
}

.home-gallery-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 2.8rem 1rem 0.9rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.room {
  z-index: 1;
  padding-block: 116px;
}

.room-grid {
  display: grid;
  grid-template-columns: 0.85fr 0.75fr 0.95fr;
  grid-template-rows: auto 260px;
  gap: 18px;
  align-items: start;
}

.room-copy {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 46px 44px 0 0;
}

.room-copy h2 {
  font-size: 4.2rem;
}

.room-copy p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.75);
}

.room-copy .text-link {
  margin-top: 1.5rem;
}

.room-image {
  margin: 0;
  overflow: hidden;
}

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

.room-image-tall {
  height: 610px;
  grid-column: 2;
  grid-row: 1 / 3;
}

.room-image-wide {
  height: 390px;
  grid-column: 3;
  grid-row: 1;
  margin-top: 92px;
}

.visit {
  padding-bottom: 0;
  background: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 88px;
  margin-bottom: 84px;
}

.visit-intro h2 {
  max-width: 610px;
}

.visit-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: #555851;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.visit-block {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.visit-block:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line-light);
}

.visit-block > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visit-block strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.visit-block > a {
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 700;
}

.map-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #d7d5cd;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.88) contrast(1.08);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: 72px 0 12px;
}

.footer-brand {
  font-size: 5.2rem;
  line-height: 0.8;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-links a {
  position: relative;
  padding-block: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--white);
}

.footer-links a:hover::after,
.footer-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.footer-booking-button {
  flex: 0 0 auto;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 18px;
  border-top: 1px solid var(--line-dark);
  color: #73766f;
  font-size: 0.68rem;
  text-transform: uppercase;
}

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

.staff-login-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #c8a867;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.staff-login-link:hover,
.staff-login-link:focus-visible {
  color: var(--white);
  outline: none;
}

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

.staff-login-modal {
  position: fixed;
  z-index: 180;
  inset: 0;
  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, 5, 4, 0.88);
  backdrop-filter: blur(9px);
}

.staff-login-dialog {
  position: relative;
  width: min(100%, 440px);
  padding: clamp(2rem, 7vw, 3rem);
  border: 1px solid rgba(200, 168, 103, 0.38);
  border-radius: 4px;
  background: #121411;
  color: var(--white);
  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, 255, 255, 0.24);
  border-radius: 50%;
  object-fit: cover;
}

.staff-login-dialog h2 {
  margin: 0 0 1.75rem;
  font-size: clamp(3.2rem, 14vw, 5rem);
  line-height: 0.9;
}

.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, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.55rem;
  cursor: pointer;
}

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

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

.staff-login-dialog label span {
  color: #c8a867;
  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, 255, 255, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font: inherit;
}

.staff-login-dialog input:focus {
  border-color: #c8a867;
  outline: none;
}

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

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

.inner-body {
  --paper: #f3e8d5;
  --home-cream: #f3e8d5;
  --home-black: #090908;
  --rough-edge-height: clamp(28px, 3.64vw, 79px);
  padding-top: 0;
  background: var(--paper);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 64svh;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -1px;
  left: 0;
  height: var(--rough-edge-height);
  background: url("assets/rough-border.webp") center bottom / 100% 100% no-repeat;
  clip-path: none;
  content: "";
  pointer-events: none;
}

.page-hero > img,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  z-index: -3;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  will-change: transform;
}

.page-hero-menu > img {
  object-position: center 52%;
}

.page-hero-gallery > img {
  object-position: center 63%;
}

.page-hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.9), rgba(8, 9, 8, 0.2) 68%), linear-gradient(0deg, rgba(8, 9, 8, 0.72), transparent 65%);
}

.page-hero-copy {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
  padding-block: 96px 70px;
}

.page-hero-copy .eyebrow {
  color: var(--green);
}

.page-hero-menu .page-hero-copy .eyebrow,
.page-hero-gallery .page-hero-copy .eyebrow {
  color: var(--white);
  font-size: 0.95rem;
}

.page-hero h1 {
  margin: 0;
  font-size: 7.2rem;
  line-height: 1;
}

.page-hero-menu h1,
.page-hero-gallery h1 {
  font-size: 9rem;
}

.page-hero-gallery h1 {
  white-space: nowrap;
}

.page-hero-copy > p:last-child {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.menu-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 4rem;
}

.menu-intro-grid h2 {
  margin: 0;
}

.menu-intro-grid > p {
  margin: 0 0 0.7rem;
  color: #555851;
}

.menu-browser {
  padding-bottom: 32px;
}

.menu-tools-wrap {
  position: sticky;
  z-index: 40;
  top: 72px;
  border-bottom: 1px solid var(--line-light);
  background: rgba(243, 232, 213, 0.95);
  backdrop-filter: blur(15px);
}

.menu-tools {
  display: grid;
  min-height: 92px;
  grid-template-columns: minmax(260px, 460px);
  align-items: center;
  justify-content: center;
}

.menu-category-jump {
  position: relative;
  width: min(460px, 100%);
}

.menu-category-jump select {
  width: 100%;
  min-height: 54px;
  padding: 0 64px 0 20px;
  border: 1px solid rgba(165, 19, 45, 0.78);
  border-radius: 8px;
  outline: 0;
  appearance: none;
  background: rgba(26, 27, 25, 0.96);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(9, 10, 9, 0.16), 0 0 0 4px rgba(165, 19, 45, 0.06);
}

.menu-category-jump select:hover,
.menu-category-jump select:focus {
  border-color: var(--red);
}

.menu-category-jump select:focus {
  box-shadow: 0 0 0 3px rgba(165, 19, 45, 0.16);
}

.menu-category-jump select option {
  background: #1a1b19;
  color: var(--paper);
  font-weight: 700;
}

.menu-category-jump::before {
  position: absolute;
  z-index: 1;
  top: 7px;
  right: 7px;
  bottom: 7px;
  width: 46px;
  border-left: 1px solid rgba(243, 232, 213, 0.22);
  border-radius: 0 6px 6px 0;
  background: rgba(165, 19, 45, 0.48);
  content: "";
  pointer-events: none;
}

.menu-category-jump::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 23px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  content: "";
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

.menu-filters {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-filters::-webkit-scrollbar {
  display: none;
}

.menu-filters button,
.gallery-filters button {
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: #575a54;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-filters button:hover,
.gallery-filters button:hover {
  color: var(--ink);
}

.menu-filters button.is-active,
.gallery-filters button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.menu-search {
  position: relative;
  width: min(100%, 480px);
}

.menu-search input {
  width: 100%;
  height: 42px;
  padding: 0 2.2rem 0 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.menu-search span[aria-hidden="true"] {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  font-size: 1.35rem;
  transform: translateY(-50%);
}

.menu-sections {
  padding-top: 40px;
}

.menu-section {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 64px;
  padding-block: 72px;
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
  scroll-margin-top: 180px;
}

.menu-section-visual::before {
  position: absolute;
  top: -72px;
  right: min(-180px, -10vw);
  z-index: 0;
  width: min(860px, 72vw);
  aspect-ratio: 4 / 3;
  background: var(--menu-visual) center right / contain no-repeat;
  content: "";
  opacity: 0.11;
  pointer-events: none;
}

.menu-section-visual > * {
  position: relative;
  z-index: 1;
}

.menu-visual-starters {
  --menu-visual: url("assets/menu-cutouts/starters.webp");
}

.menu-visual-tandoori {
  --menu-visual: url("assets/menu-cutouts/tandoori-cutout.webp");
}

.menu-visual-breads {
  --menu-visual: url("assets/menu-cutouts/nan-breads-cutout.webp");
}

.menu-visual-burgers {
  --menu-visual: url("assets/menu-cutouts/burger-cutout.webp");
}

.menu-visual-noodles {
  --menu-visual: url("assets/menu-cutouts/noodles-cutout.webp");
}

.menu-visual-grill {
  --menu-visual: url("assets/menu-cutouts/gills-grill-cutout.webp");
}

.menu-section:last-child {
  padding-bottom: 24px;
  border-bottom: 0;
}

.menu-section-head {
  position: sticky;
  top: 174px;
  align-self: start;
}

.menu-section-head .eyebrow {
  margin-bottom: 0.8rem;
}

.menu-section-head h2 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1;
}

.menu-section-note {
  margin: 1rem 0 0;
  color: #62655f;
  font-size: 0.82rem;
}

.menu-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  align-content: start;
}

.menu-item {
  padding: 18px 0 20px;
  border-top: 1px solid var(--line-light);
}

.menu-item-head,
.menu-variant {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.menu-item-head::after,
.menu-variant::after {
  min-width: 14px;
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(9, 10, 9, 0.35);
  content: "";
}

.menu-item h3 {
  order: 0;
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-price {
  order: 2;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-description {
  margin: 0.45rem 0 0;
  color: #62655f;
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-variants {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.menu-variant {
  color: #464943;
  font-size: 0.86rem;
}

.menu-variant span:last-child {
  order: 2;
  font-weight: 700;
  white-space: nowrap;
}

.menu-empty {
  padding-block: 100px;
  color: #62655f;
  text-align: center;
}

.menu-notes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 70px;
  padding: 28px 0;
  border-block: 1px solid var(--line-light);
}

.menu-notes > div {
  max-width: 760px;
}

.menu-notes p:last-child {
  margin-bottom: 0;
  color: #5c5f59;
  font-size: 0.82rem;
}

.menu-booking-band {
  padding-block: 86px;
}

.menu-booking-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.menu-booking-inner h2 {
  margin: 0;
}

.gallery-page {
  background: var(--paper);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  margin-bottom: 58px;
}

.gallery-head h2 {
  margin: 0;
}

.gallery-filters {
  display: flex;
  gap: 0.35rem;
  padding-bottom: 0.5rem;
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 12px;
}

.gallery-item {
  position: relative;
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
}

.gallery-item button {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border-radius: 2px;
  background: var(--ink-soft);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: filter 250ms ease, transform 500ms ease;
}

.gallery-item button:hover img {
  filter: brightness(0.72);
  transform: scale(1.025);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3rem 1rem 0.9rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item button:hover figcaption,
.gallery-item button:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  padding-block: 104px;
}

.gallery-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
}

.gallery-cta-inner .eyebrow {
  grid-column: 1;
}

.gallery-cta-inner h2 {
  grid-column: 1;
  margin: 0;
}

.gallery-cta-inner .button {
  grid-column: 2;
  grid-row: 1 / 3;
}

.lightbox {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 5, 4, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  display: grid;
  width: min(1200px, 92vw);
  max-height: 92vh;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #090807;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.72);
}

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

.lightbox-figure figcaption {
  min-height: 64px;
  padding: 18px 22px;
  color: var(--paper-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-align: left;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.booking-modal {
  position: fixed;
  z-index: 170;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.is-open {
  display: flex;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 4, 0.86);
  backdrop-filter: blur(9px);
}

.booking-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.booking-head {
  padding: 34px 42px 26px;
  border-bottom: 1px solid var(--line-light);
}

.booking-head h2 {
  margin: 0;
  font-size: 3.1rem;
}

.booking-head p:last-child {
  margin: 0.8rem 0 0;
  color: #5f625c;
}

.booking-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
}

.booking-form {
  padding: 30px 42px 38px;
}

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

.booking-field {
  display: grid;
  gap: 0.45rem;
  color: #4a4d47;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(9, 10, 9, 0.28);
  border-radius: 2px;
  outline: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  text-transform: none;
}

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

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(165, 19, 45, 0.12);
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 24px;
}

.booking-message {
  margin: 0;
  color: #5a5d57;
  font-size: 0.78rem;
}

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

/* Flame booking flow, adapted to La Nueva's visual system. */
.booking-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

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

.booking-backdrop {
  background: rgba(8, 8, 7, 0.82);
  backdrop-filter: blur(9px);
}

.booking-dialog {
  width: min(100%, 860px);
  max-height: min(92svh, 900px);
  overflow: auto;
  border: 1px solid rgba(243, 232, 213, 0.22);
  border-radius: 2px;
  background: #f3e8d5;
  color: var(--ink);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.58);
  transform: translateY(24px) scale(0.98);
  transition: transform 260ms ease;
}

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

.booking-close {
  top: 16px;
  right: 16px;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid var(--line-light);
  background: rgba(243, 232, 213, 0.94);
  font-size: 1.5rem;
}

.booking-form {
  display: grid;
  padding: 0;
}

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

.booking-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(20px, 4vw, 34px);
  border-bottom: 1px solid var(--line-light);
  background: #fffaf2;
  text-align: left;
}

.booking-head img {
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
  border: 2px solid var(--line-light);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(180, 15, 43, 0.12);
}

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

.booking-kicker,
.booking-head span,
.booking-message,
.booking-disclaimer {
  color: rgba(9, 10, 9, 0.62);
}

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

.booking-disclaimer {
  margin: 0;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-light);
}

.booking-progress span {
  padding: 14px 16px;
  color: rgba(9, 10, 9, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.booking-progress span.is-active {
  background: rgba(180, 15, 43, 0.08);
  color: var(--red);
}

.booking-step {
  display: none;
  padding: clamp(16px, 3vw, 30px);
}

.booking-step.is-active {
  display: grid;
  gap: 16px;
}

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

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

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

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

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

.booking-fields input,
.booking-fields select,
.booking-textarea textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(9, 10, 9, 0.2);
  border-radius: 2px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-textarea textarea:focus,
.booking-time-select select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(165, 19, 45, 0.13);
}

.booking-textarea textarea {
  resize: vertical;
}

.booking-date-shell {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(9, 10, 9, 0.2);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

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

.booking-date-shell strong {
  padding: 14px 48px 14px 16px;
  font-weight: 400;
}

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

.booking-calendar {
  position: absolute;
  z-index: 12;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(9, 10, 9, 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: 5px;
}

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

.booking-calendar-head strong {
  font-family: "Six Caps", Impact, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

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

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

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

.booking-calendar-days button {
  min-height: 38px;
  font-weight: 900;
}

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

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

.booking-panel,
.time-grid {
  display: block;
}

.no-times {
  margin: 0;
  padding: 16px;
  background: rgba(180, 15, 43, 0.08);
  color: var(--red-dark);
  font-weight: 900;
  text-align: center;
}

.booking-time-select {
  display: grid;
  gap: 7px;
}

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

.booking-time-select select {
  width: 100%;
  min-height: 54px;
  padding: 12px 48px 12px 16px;
  border: 1px solid rgba(9, 10, 9, 0.2);
  border-radius: 2px;
  outline: 0;
  appearance: none;
  background-color: var(--white);
  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='%23090a09' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.booking-fields select {
  appearance: none;
  padding-right: 48px;
  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='%23090a09' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.seating-options {
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

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

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

.seating-options label span {
  display: grid;
  min-height: 48px;
  align-items: center;
  justify-content: start;
  padding: 10px 13px;
  border: 1px solid rgba(9, 10, 9, 0.18);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

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

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

.booking-summary {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(180, 15, 43, 0.08);
  font-weight: 900;
}

.booking-summary span {
  display: block;
}

.booking-message {
  min-height: 22px;
  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%;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

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

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  h2 {
    font-size: 4rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
  }

  .main-nav {
    gap: 1.2rem;
  }

  .header-phone {
    display: none;
  }

  .hero h1 {
    font-size: 7rem;
  }

  .parallax-feature h2 {
    font-size: 5.8rem;
  }

  .story-grid {
    gap: 48px;
  }

  .story-detail {
    margin-top: -80px;
  }

  .cuisine-row {
    grid-template-columns: 42px minmax(190px, 0.7fr) 1fr 44px;
    gap: 1.3rem;
  }

  .room-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .room-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0 0 40px;
  }

  .room-copy h2 {
    max-width: 700px;
  }

  .room-image-tall {
    height: 520px;
    grid-column: 1;
    grid-row: 2;
  }

  .room-image-wide {
    height: 520px;
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }

  .menu-section {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
  }

  .menu-item-grid {
    gap: 0 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --tear-depth: 24px;
  }

  .page-shell,
  .hero-content,
  .page-hero-copy {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-band {
    padding-block: 84px;
  }

  h2 {
    font-size: 3.5rem;
  }

  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .site-header.is-scrolled,
  .site-header-solid {
    top: 8px;
  }

  .brand-seal {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 16px 22px;
    border-top: 1px solid var(--line-dark);
    background: rgba(9, 10, 9, 0.98);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::before {
    inset: 94px 8px 8px;
  }

  .hero-content {
    padding: 140px 0 150px;
  }

  .hero h1 {
    font-size: 5.7rem;
  }

  .hero-hours {
    right: 16px;
    bottom: 38px;
    left: 16px;
    min-width: 0;
  }

  .hero-side-note {
    display: none;
  }

  .ticker {
    overflow: hidden;
  }

  .ticker-track {
    justify-content: flex-start;
  }

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

  .story-copy {
    padding-top: 0;
  }

  .story-portrait {
    width: 88%;
    margin-left: auto;
  }

  .story-detail {
    width: 46%;
    margin: -110px 0 0 0;
  }

  .parallax-feature {
    min-height: 650px;
  }

  .parallax-feature-content {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-block: 110px;
  }

  .parallax-feature-content .eyebrow {
    grid-column: 1;
    margin-bottom: -0.8rem;
  }

  .parallax-feature h2 {
    font-size: 5rem;
  }

  .parallax-feature-note {
    max-width: 420px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .cuisine-row {
    grid-template-columns: 42px 1fr 44px;
    padding-block: 28px;
  }

  .cuisine-row h3 {
    font-size: 2.8rem;
  }

  .cuisine-row p {
    grid-column: 2 / 4;
  }

  .home-gallery {
    min-height: 950px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 340px 260px 260px 230px;
  }

  .home-gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .home-gallery-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .home-gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .home-gallery-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .home-gallery-item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .home-gallery-item:nth-child(6) {
    grid-column: 1;
    grid-row: 4;
  }

  .home-gallery-item:nth-child(7) {
    grid-column: 2;
    grid-row: 4;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .page-hero {
    min-height: 58svh;
  }

  .page-hero h1 {
    font-size: 5.4rem;
  }

  .page-hero-menu h1,
  .page-hero-gallery h1 {
    font-size: 6.3rem;
  }

  .menu-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-tools {
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding-block: 12px;
  }

  .menu-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-section-visual::before {
    top: -36px;
    right: -20vw;
    width: min(720px, 100vw);
    opacity: 0.07;
  }

  .menu-section-head {
    position: static;
  }

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

  .menu-notes {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    columns: 2 260px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .section-band {
    padding-block: 68px;
  }

  h2 {
    font-size: 2.85rem;
  }

  .brand-copy {
    font-size: 1.3rem;
  }

  .brand-copy small {
    font-size: 0.52rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding: 132px 0 168px;
  }

  .hero h1 {
    font-size: 4.1rem;
    line-height: 0.88;
  }

  .parallax-feature {
    min-height: 580px;
  }

  .parallax-feature-media {
    object-position: 58% center;
  }

  .parallax-feature-content {
    padding-block: 92px;
  }

  .parallax-feature h2 {
    font-size: 3.75rem;
  }

  .parallax-feature-note {
    padding: 1.1rem 0 0 1rem;
  }

  .hero-deck {
    max-width: 300px;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 310px);
    grid-template-columns: 1fr;
  }

  .hero-hours {
    grid-template-columns: 1fr 1fr;
    font-size: 0.7rem;
  }

  .story-portrait {
    width: 100%;
  }

  .story-detail {
    width: 52%;
    margin-top: -80px;
  }

  .story-detail img {
    box-shadow: 14px 14px 0 var(--green);
  }

  .cuisine-row {
    grid-template-columns: 32px 1fr 40px;
    gap: 0.8rem;
  }

  .cuisine-row h3 {
    font-size: 2.3rem;
  }

  .cuisine-row p {
    font-size: 0.85rem;
  }

  .signature-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-gallery {
    min-height: 1240px;
    grid-template-columns: 1fr;
    grid-template-rows: 300px repeat(6, 145px);
  }

  .home-gallery-item:nth-child(n) {
    grid-column: 1;
  }

  .home-gallery-item:nth-child(1) { grid-row: 1; }
  .home-gallery-item:nth-child(2) { grid-row: 2; }
  .home-gallery-item:nth-child(3) { grid-row: 3; }
  .home-gallery-item:nth-child(4) { grid-row: 4; }
  .home-gallery-item:nth-child(5) { grid-row: 5; }
  .home-gallery-item:nth-child(6) { grid-row: 6; }
  .home-gallery-item:nth-child(7) { grid-row: 7; }

  .section-action {
    justify-content: stretch;
  }

  .section-action .button {
    width: 100%;
  }

  .room {
    padding-block: 72px;
  }

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

  .room-copy h2 {
    font-size: 3rem;
  }

  .room-image-tall,
  .room-image-wide {
    height: 360px;
    grid-column: 1;
  }

  .room-image-tall { grid-row: 2; }
  .room-image-wide { grid-row: 3; }

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

  .visit-block:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .map-wrap {
    height: 390px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 52px 0 14px;
  }

  .footer-brand {
    font-size: 4rem;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 52svh;
  }

  .page-hero-copy {
    padding-block: 100px 48px;
  }

  .page-hero h1 {
    font-size: 3.9rem;
  }

  .page-hero-menu h1,
  .page-hero-gallery h1 {
    font-size: 4.6rem;
  }

  .menu-tools-wrap {
    top: 72px;
  }

  .menu-section {
    padding-block: 54px;
  }

  .menu-sections {
    padding-top: 0;
  }

  .menu-section:first-child {
    padding-top: 28px;
  }

  .menu-section-visual::before {
    opacity: 0.15;
  }

  .menu-section-head h2 {
    font-size: 2.5rem;
  }

  .menu-item-head,
  .menu-variant {
    gap: 0.4rem;
  }

  .menu-item h3 {
    font-size: 0.88rem;
  }

  .menu-price {
    font-size: 0.8rem;
  }

  .menu-notes .button {
    width: 100%;
  }

  .menu-booking-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-page {
    padding-top: 42px;
  }

  .gallery-head {
    margin-bottom: 24px;
  }

  .gallery-item figcaption {
    opacity: 1;
    transform: none;
  }

  .gallery-cta-inner {
    grid-template-columns: 1fr;
  }

  .gallery-cta-inner .button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .booking-modal {
    align-items: start;
    padding: calc(64px + env(safe-area-inset-top)) 10px 10px;
  }

  .booking-dialog {
    width: 100%;
    max-height: calc(100dvh - 74px - env(safe-area-inset-top));
    min-height: 0;
    border-radius: 0;
  }

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

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

  .booking-head h2 {
    padding-right: 0;
    font-size: 2.7rem;
  }

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

  .lightbox {
    padding: 16px;
  }
}

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

  *,
  *::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;
  }

  .hero-media,
  .parallax-feature-media,
  .page-hero > img {
    transform: scale(1.04);
    will-change: auto;
  }
}

/* Video-led home experience */

.home-body {
  --home-cream: #f3e8d5;
  --home-black: #090908;
  --home-red: #b40f2b;
  --home-sage: #abc4ad;
  --home-rose: #dba5aa;
  --rough-edge-height: clamp(28px, 3.64vw, 79px);
  --rough-edge-offset: clamp(14px, 1.82vw, 39.5px);
  --sticky-header-height: 79px;
  --stack-tail: 100svh;
  --stack-handoff-gap: 56px;
  overflow-x: clip;
  background: var(--home-black);
}

.home-body .site-header,
.inner-body .site-header {
  top: 0;
  right: 0;
  left: 0;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  padding: 16px max(24px, calc((100vw - var(--shell)) / 2));
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.66), transparent);
  box-shadow: none;
  backdrop-filter: none;
}

.home-body .site-header.is-scrolled,
.inner-body .site-header.is-scrolled {
  top: 0;
  min-height: 68px;
  border-bottom: 0;
  background: rgba(56, 58, 54, 0.97);
  backdrop-filter: blur(14px);
}

.home-body .brand-seal,
.inner-body .brand-seal {
  border-color: rgba(255, 255, 255, 0.45);
}

.home-body .brand-copy,
.inner-body .brand-copy {
  font-size: 1.8rem;
  line-height: 0.78;
  text-transform: uppercase;
}

.home-body .brand-copy small,
.inner-body .brand-copy small {
  margin-top: 0.45rem;
  color: var(--home-cream);
}

.home-body .main-nav a,
.inner-body .main-nav a {
  color: var(--home-cream);
  font-size: 0.8rem;
}

.home-body .footer-links a,
.inner-body .footer-links a {
  color: var(--home-cream);
  font-size: 0.8rem;
}

.home-body .main-nav,
.inner-body .main-nav {
  justify-content: flex-end;
  gap: 1.7rem;
}

.home-body .main-nav a::after,
.inner-body .main-nav a::after {
  background: var(--home-cream);
}

.home-body .main-nav a:hover,
.home-body .main-nav a[aria-current="page"],
.inner-body .main-nav a:hover,
.inner-body .main-nav a[aria-current="page"] {
  color: var(--home-cream);
}

.home-body .site-header .button-light,
.inner-body .site-header .button-light {
  min-height: 40px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(243, 232, 213, 0.7);
  border-radius: 999px;
  background: transparent;
  color: var(--home-cream);
}

.home-body .site-header .button-light:hover,
.inner-body .site-header .button-light:hover {
  background: var(--home-cream);
  color: var(--home-black);
}

.home-hero {
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
}

.home-hero::before {
  display: none;
}

.home-hero::after {
  display: block;
  height: var(--rough-edge-height);
  background: url("assets/rough-border.webp") center bottom / 100% 100% no-repeat;
  clip-path: none;
}

.home-hero .hero-media {
  transform: translate3d(0, var(--hero-parallax-y, 0), 0) scale(var(--hero-media-scale, 1.08));
}

.home-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(3, 3, 2, 0.45), rgba(3, 3, 2, 0.12) 36%, rgba(3, 3, 2, 0.72)),
    rgba(8, 6, 4, 0.2);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), 1080px);
  justify-items: center;
  color: var(--white);
  text-align: center;
  transform: scale(var(--hero-content-scale, 1));
  opacity: var(--hero-content-opacity, 1);
  will-change: transform, opacity;
}

.home-hero-content > p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.3rem;
  color: var(--home-cream);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-hero-content > p span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-red);
}

.home-hero-content h1 {
  margin: 0;
  color: var(--home-cream);
  font-size: 17.5rem;
  line-height: 0.72;
  text-transform: uppercase;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.34);
}

.home-hero-content > strong {
  margin: 2.1rem 0 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.home-label {
  margin: 0 0 1rem;
  color: currentColor;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-intro {
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
  background: var(--home-cream);
  color: var(--home-black);
}

.kinetic-heading-wrap {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto 58px;
  text-align: center;
}

.kinetic-heading-wrap .home-label,
.home-intro-copy > .home-label,
.stack-heading .home-label {
  margin-bottom: 0.3rem;
  color: var(--home-red);
  font-size: 1rem;
}

.kinetic-heading {
  margin: 0;
  font-size: 10.5rem;
  line-height: 1;
  text-transform: uppercase;
  transform: scale(var(--kinetic-scale, 0.4));
  transform-origin: center;
  will-change: transform;
}

.food-ribbon {
  width: 100%;
  overflow: hidden;
  border-block: 6px solid var(--home-black);
  background: var(--home-black);
}

.food-ribbon-track {
  display: flex;
  width: max-content;
  animation: food-ribbon 34s linear infinite;
}

.food-ribbon img {
  width: 418px;
  height: 302px;
  flex: 0 0 auto;
  border-right: 6px solid var(--home-black);
  object-fit: cover;
}

@keyframes food-ribbon {
  to { transform: translateX(-50%); }
}

.home-intro-story {
  position: relative;
  display: grid;
  min-height: calc(44svh + var(--rough-edge-height));
  place-items: center;
  overflow: hidden;
  padding-bottom: var(--rough-edge-height);
  isolation: isolate;
  background: var(--home-black);
  color: var(--home-cream);
}

.home-intro-story::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: var(--rough-edge-height);
  background: url("assets/rough-border-black.webp") center bottom / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.home-intro-story::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8, 7, 5, 0.72);
  content: "";
}

.home-intro-story-media {
  position: absolute;
  z-index: -2;
  inset: -50% 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  object-position: center 55%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  will-change: transform;
}

.home-intro-copy {
  position: relative;
  top: calc(0px - var(--rough-edge-offset));
  display: flex;
  max-width: 1100px;
  align-items: center;
  flex-direction: column;
  padding-block: 16px;
  text-align: center;
}

.home-intro-copy > .home-label {
  margin-bottom: 0.8rem;
}

.home-intro-copy p {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(243, 232, 213, 0.82);
  font-size: 1.08rem;
}

.home-intro-copy .home-intro-lead {
  max-width: 1080px !important;
  margin-bottom: 1.25rem;
  color: var(--home-cream) !important;
  font-size: clamp(2.2rem, 4.3vw, 3rem);
  line-height: 1.15;
}

.pill-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  padding: 0.65rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pill-link:hover {
  background: var(--home-black);
  color: var(--home-cream);
  transform: translateY(-2px);
}

.pill-link-light {
  color: var(--home-cream);
}

.pill-link-light:hover {
  background: var(--home-cream);
  color: var(--home-black);
}

.cuisine-card .pill-link {
  border-color: var(--home-red);
  background: var(--home-red);
  color: var(--white);
}

.cuisine-card .pill-link:hover {
  border-color: #c81333;
  background: #c81333;
  color: var(--white);
}

.cuisine-stack {
  position: relative;
  padding: 120px 0 1px;
  background: var(--home-black);
  color: var(--home-cream);
}

.stack-heading {
  position: sticky;
  z-index: 0;
  top: clamp(96px, 14svh, 185px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  text-align: center;
}

.stack-heading-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translate3d(0, var(--stack-release-y, 0), 0);
  will-change: transform;
}

.stack-heading h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 10.5rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: scale(var(--stack-heading-scale, 0.4));
  transform-origin: center;
  white-space: nowrap;
  will-change: transform;
}

.cuisine-card-wrap {
  width: min(calc(100% - 88px), 1040px);
}

.cuisine-stack-spacer {
  height: var(--stack-tail);
}

.cuisine-card {
  --card-shift: 12px;
  --card-tilt: 1.65deg;
  position: sticky;
  z-index: calc(var(--stack-index) + 1);
  top: calc(clamp(96px, 14svh, 185px) + 242px + (var(--stack-index) * 8px));
  display: grid;
  height: clamp(390px, 56svh, 430px);
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  margin-bottom: 8svh;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 3px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32);
  transform: translate3d(var(--card-shift), var(--stack-card-release-y, 0), 0) rotate(var(--card-tilt));
  transform-origin: 50% 50%;
}

.cuisine-card:nth-child(even) {
  --card-shift: -12px;
  --card-tilt: -1.65deg;
}

.cuisine-card:last-of-type {
  margin-bottom: 0;
}

.cuisine-card-marquee {
  position: absolute;
  z-index: 0;
  top: -0.12em;
  right: 0;
  left: 0;
  overflow: hidden;
  color: currentColor;
  opacity: 0.065;
  pointer-events: none;
}

.cuisine-card-marquee-track {
  display: flex;
  width: max-content;
  animation: cuisine-title-marquee 24s linear infinite;
  font-family: "Six Caps", Impact, sans-serif;
  font-size: clamp(6.5rem, 11vw, 9.5rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.cuisine-card-marquee-track span {
  flex: none;
  padding-right: 0.28em;
}

.cuisine-card:nth-child(even) .cuisine-card-marquee-track {
  animation-direction: reverse;
}

@keyframes cuisine-title-marquee {
  to { transform: translateX(-50%); }
}

.cuisine-card-dark {
  background: #242421;
  color: var(--home-cream);
}

.cuisine-card-dark .cuisine-card-marquee {
  color: var(--home-cream);
  opacity: 0.1;
}

.cuisine-card-cream {
  background: var(--home-cream);
  color: var(--home-black);
}

.cuisine-card-sage {
  background: var(--home-sage);
  color: var(--home-black);
}

.cuisine-card-rose {
  background: var(--home-rose);
  color: var(--home-black);
}

.cuisine-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 60px;
}

.cuisine-card-copy > span {
  color: var(--home-red);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cuisine-card h3 {
  margin: 1.2rem 0 1.6rem;
  max-width: 100%;
  font-size: clamp(3.35rem, 4.6vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.cuisine-card p {
  max-width: 430px;
  color: inherit;
}

.cuisine-card > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-reveal {
  --curtain-travel: 52;
  --curtain-content-start: 0.2;
  --curtain-content-duration: 0.42;
  --split-left: 0%;
  --split-right: 0%;
  --split-opacity: 0;
  --split-offset: 40px;
  position: relative;
  height: 260svh;
  margin-top: calc((var(--stack-tail) * -1) + var(--stack-handoff-gap));
}

.menu-reveal-stage {
  position: sticky;
  top: var(--sticky-header-height);
  display: grid;
  width: 100%;
  height: calc(100svh - var(--sticky-header-height));
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--home-black);
  color: var(--home-cream);
}

.menu-reveal-stage::before,
.menu-reveal-stage::after {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: var(--rough-edge-height);
  background-position: center bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.menu-reveal-stage::before {
  top: -1px;
  background-image: url("assets/rough-border-black.webp");
  transform: rotate(180deg);
}

.menu-reveal-stage::after {
  bottom: -1px;
  background-image: url("assets/rough-border.webp");
}

.menu-reveal-panel {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: calc(50% + 1px);
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

.menu-reveal-panel::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 4, 0.32);
  content: "";
}

.menu-reveal-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-reveal-left {
  left: 0;
  transform: translate3d(var(--split-left), 0, 0);
}

.menu-reveal-left img {
  object-position: right center;
}

.menu-reveal-right {
  right: 0;
  transform: translate3d(var(--split-right), 0, 0);
}

.menu-reveal-right img {
  object-position: left center;
}

.menu-reveal-centre {
  position: relative;
  z-index: 1;
  width: min(90%, 660px);
  padding: 56px 46px;
  border-inline: 2px solid var(--home-red);
  background: rgba(8, 8, 7, 0.9);
  text-align: center;
  opacity: var(--split-opacity);
  transform: translateY(var(--split-offset));
  will-change: transform, opacity;
}

.menu-reveal-centre .home-label {
  margin-bottom: 0.3rem;
  color: var(--home-red);
  font-size: 1rem;
}

.menu-reveal-centre h2 {
  margin: 0;
  font-size: 10.5rem;
  line-height: 1;
  text-transform: uppercase;
  transform: scale(var(--menu-heading-scale, 0.4));
  transform-origin: center;
  will-change: transform;
}

.menu-reveal-centre > p:not(.home-label) {
  max-width: 480px;
  margin: 1.7rem auto 2rem;
  color: rgba(255, 255, 255, 0.74);
}

.featured-dishes {
  overflow: hidden;
  padding: 120px 0 110px;
  background: var(--home-cream);
  color: var(--home-black);
}

.featured-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  text-align: center;
}

.featured-heading-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.featured-heading .home-label {
  margin-bottom: 0.3rem;
  color: var(--home-red);
  font-size: 1rem;
}

.featured-heading h2 {
  width: 100%;
  margin: 0;
  font-size: 10.5rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: scale(var(--featured-heading-scale, 0.4));
  transform-origin: center;
  white-space: nowrap;
  will-change: transform;
}

.featured-track {
  --featured-edge: max(24px, calc((100vw - var(--shell)) / 2));
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-inline: var(--featured-edge);
  cursor: grab;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.featured-track::-webkit-scrollbar {
  display: none;
}

.featured-track.is-dragging {
  cursor: grabbing;
}

.featured-set {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.featured-card {
  position: relative;
  width: 390px;
  height: 520px;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #151513;
  color: var(--white);
  cursor: zoom-in;
}

.featured-track.is-dragging .featured-card {
  cursor: grabbing;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.featured-card:hover img {
  transform: scale(1.035);
}

.featured-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent);
  content: "";
}

.featured-card span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  font-family: "Six Caps", Impact, sans-serif;
  font-size: 2.3rem;
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 46px;
}

.featured-gallery-link {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border: 1px solid var(--home-red);
  border-radius: 2px;
  background: var(--home-red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.featured-gallery-link span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.featured-gallery-link:hover {
  border-color: #c81333;
  background: #c81333;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(180, 15, 43, 0.24);
  transform: translateY(-3px);
}

.featured-gallery-link:hover span {
  transform: translateX(4px);
}

.booking-scene {
  position: relative;
  display: grid;
  min-height: 88svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.booking-scene::before,
.booking-scene::after {
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: var(--rough-edge-height);
  background-position: center bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.booking-scene::before {
  top: -1px;
  background-image: url("assets/rough-border.webp");
  transform: rotate(180deg);
}

.booking-scene::after {
  bottom: -1px;
  background-image: url("assets/rough-border-black.webp");
}

.booking-scene-media,
.booking-scene-shade {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
}

.booking-scene-media {
  z-index: -3;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
  will-change: transform;
}

.booking-scene-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
}

.booking-scene-slide:first-child {
  opacity: 1;
}

.booking-scene-media.is-ready .booking-scene-slide {
  animation: booking-scene-fade 15s linear infinite;
}

.booking-scene-media.is-ready .booking-scene-slide:nth-child(1) { animation-delay: -0.5s; }
.booking-scene-media.is-ready .booking-scene-slide:nth-child(2) { animation-delay: 2s; }
.booking-scene-media.is-ready .booking-scene-slide:nth-child(3) { animation-delay: 4.5s; }
.booking-scene-media.is-ready .booking-scene-slide:nth-child(4) { animation-delay: 7s; }
.booking-scene-media.is-ready .booking-scene-slide:nth-child(5) { animation-delay: 9.5s; }
.booking-scene-media.is-ready .booking-scene-slide:nth-child(6) { animation-delay: 12s; }

@keyframes booking-scene-fade {
  0% { opacity: 0; }
  3.333% { opacity: 1; }
  20% { opacity: 1; }
  23.333%,
  100% { opacity: 0; }
}

.booking-scene-shade {
  z-index: -2;
  background: rgba(4, 4, 3, 0.66);
}

.booking-scene-copy {
  width: min(calc(100% - 48px), 900px);
  text-align: center;
}

.booking-scene-copy .home-label {
  margin-bottom: 0.3rem;
  color: var(--white);
  font-size: 1rem;
}

.booking-scene-copy h2 {
  width: 100%;
  margin: 0;
  font-size: 10.5rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: scale(var(--booking-heading-scale, 0.4));
  transform-origin: center;
  white-space: nowrap;
  will-change: transform;
}

.booking-scene-copy > p:not(.home-label) {
  margin: 0.3rem auto 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.home-contact {
  padding-top: 120px;
  background: var(--home-black);
  color: var(--home-cream);
}

.home-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  gap: 6rem;
  padding-bottom: 90px;
}

.home-contact-heading h2 {
  width: 100%;
  margin: 0;
  font-size: 10.5rem;
  line-height: 1;
  text-transform: uppercase;
  transform: scale(var(--contact-heading-scale, 0.4));
  transform-origin: left center;
  white-space: nowrap;
  will-change: transform;
}

.home-contact-heading .home-label {
  margin-bottom: 0.3rem;
  color: var(--home-red);
  font-size: 1rem;
}

.home-contact-heading > p:last-child {
  max-width: 520px;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.62);
}

.home-contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-contact-details > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-contact-details > div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.home-contact-details span {
  margin-bottom: 0.6rem;
  color: var(--home-red);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-contact-details p,
.home-contact-details a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.home-contact-details a:hover {
  color: var(--white);
}

.home-contact-details .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  max-width: 100%;
}

.home-contact-details .contact-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.home-map {
  height: 460px;
  overflow: hidden;
}

.home-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.18) invert(0.88);
}

.home-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--home-red, #b40f2b);
  border-radius: 999px;
  outline: 0;
  background: rgba(56, 58, 54, 0.97);
  color: var(--home-cream, #f3e8d5);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 34px));
  transition: opacity 220ms ease, transform 220ms ease, background 180ms ease, color 180ms ease;
}

.back-to-top::before {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: translateY(3px) rotate(45deg);
}

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

.back-to-top:hover,
.back-to-top:focus-visible,
.back-to-top:active {
  background: var(--home-cream, #f3e8d5);
  color: var(--home-black, #090908);
}

.site-header.nav-open ~ .back-to-top,
body.modal-open .back-to-top {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .home-hero-content h1 { font-size: 13.5rem; }
  .kinetic-heading { font-size: 8.25rem; }
  .stack-heading h2 { font-size: 8.25rem; }
  .cuisine-card h3 { font-size: 5rem; }
  .menu-reveal-centre h2 { font-size: 8.25rem; }
  .featured-heading h2 { font-size: 8.25rem; }
  .booking-scene-copy h2 { font-size: 8.25rem; }
  .home-contact-heading h2 { font-size: 8.25rem; }
  .home-contact-inner { gap: 4rem; }
}

@media (max-height: 800px) {
  .home-body {
    --stack-tail: 100svh;
    --stack-handoff-gap: 40px;
  }
}

@media (max-width: 860px) {
  .home-body { --sticky-header-height: 70px; }

  .home-body .site-header,
  .home-body .site-header.is-scrolled,
  .inner-body .site-header,
  .inner-body .site-header.is-scrolled {
    top: 0;
    right: 0;
    left: 0;
    min-height: 70px;
    padding: 10px 16px;
  }

  .home-body .main-nav,
  .inner-body .main-nav {
    background: rgba(8, 8, 7, 0.98);
  }

  .home-hero-content h1 { font-size: 10rem; }

  .home-intro {
    padding-block: 76px;
  }

  .kinetic-heading { font-size: 6.15rem; }

  .food-ribbon img {
    width: 346px;
    height: 251px;
  }

  .home-intro-copy {
    padding: 16px 24px;
  }

  .stack-heading {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .stack-heading h2 { font-size: 6.15rem; }

  .cuisine-card {
    --card-shift: 7px;
    --card-tilt: 1.25deg;
    top: calc(clamp(96px, 14svh, 185px) + 172px + (var(--stack-index) * 8px));
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(270px, 38svh);
  }

  .cuisine-card:nth-child(even) {
    --card-shift: -7px;
    --card-tilt: -1.25deg;
  }

  .cuisine-card-copy {
    padding: 38px;
  }

  .cuisine-card h3 { font-size: clamp(3.2rem, 8.5vw, 4.15rem); }

  .cuisine-card > img {
    min-height: 270px;
  }

  .menu-reveal {
    --curtain-travel: 68;
    --curtain-content-start: 0.32;
    --curtain-content-duration: 0.42;
  }
  .menu-reveal-centre h2 { font-size: 6.15rem; }

  .featured-dishes { padding-block: 92px; }
  .featured-heading h2 { font-size: 6.15rem; }
  .featured-card { width: 330px; height: 450px; }

  .booking-scene-copy h2 { font-size: 6.15rem; }

  .home-contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-contact-heading h2 { font-size: 6.15rem; }
}

@media (max-width: 560px) {
  .home-body .site-header,
  .inner-body .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .home-body .nav-toggle,
  .inner-body .nav-toggle {
    grid-column: 3;
    justify-self: end;
    margin-left: auto;
  }

  .home-body .site-header.nav-open .main-nav,
  .inner-body .site-header.nav-open .main-nav {
    height: calc(100svh - 70px);
    height: calc(100dvh - 70px);
    justify-content: flex-start;
    overflow-y: auto;
    background: #080807;
  }

  .home-body .brand-copy { font-size: 1.45rem; }
  .home-hero-content { width: calc(100% - 28px); }
  .home-hero-content h1 { font-size: 7.2rem; }

  .home-intro {
    padding-top: 38px;
    padding-bottom: 0;
  }

  .home-intro-copy { top: 12px; }

  .home-hero-content > p {
    gap: 0.45rem;
    font-size: 0.72rem;
  }

  .home-hero-content > strong {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }

  .home-hero-content .hero-actions {
    width: min(100%, 250px);
  }

  .kinetic-heading-wrap {
    width: calc(100% - 28px);
    margin-bottom: 38px;
  }

  .kinetic-heading { font-size: 4.575rem; }
  .home-intro-copy .home-intro-lead { font-size: 2.2rem; }

  .cuisine-stack { padding-top: 42px; }
  .stack-heading {
    position: relative;
    top: auto;
    padding-bottom: 38px;
  }
  .stack-heading h2 { font-size: min(4.575rem, 18.2vw); }
  .cuisine-card-wrap { width: calc(100% - 28px); }

  .cuisine-card {
    --card-shift: 2px;
    --card-tilt: 0.9deg;
    top: calc(max(74px, 50svh - 305px) + (var(--stack-index) * 8px));
    min-height: 0;
    grid-template-rows: auto 220px;
    margin-bottom: 7svh;
  }

  .cuisine-card:nth-child(even) {
    --card-shift: -2px;
    --card-tilt: -0.9deg;
  }

  .cuisine-card-copy { padding: 20px; }
  .cuisine-card h3 {
    margin: 0.55rem 0 0.7rem;
    font-size: clamp(2.75rem, 12vw, 3.35rem);
  }
  .cuisine-card p {
    margin-bottom: 0;
    font-size: 0.88rem;
  }
  .cuisine-card .pill-link {
    min-height: 38px;
    gap: 0.8rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.85rem;
  }
  .cuisine-card > img {
    min-height: 0;
  }

  .menu-reveal {
    --curtain-travel: 88;
    --curtain-content-start: 0.68;
    --curtain-content-duration: 0.2;
    height: 240svh;
  }
  .menu-reveal-centre { padding: 42px 20px; }
  .menu-reveal-centre h2 { font-size: min(4.575rem, 18.2vw); }

  .featured-heading {
    margin-bottom: 34px;
  }

  .featured-dishes {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .featured-heading h2 { font-size: min(4.575rem, 18.2vw); }
  .featured-track { --featured-edge: 14px; }
  .featured-card { width: 78vw; height: 340px; }
  .featured-footer { padding-inline: 14px; }

  .booking-scene { min-height: 76svh; }
  .booking-scene-copy h2 { font-size: min(4.575rem, 18.2vw); }

  .home-contact { padding-top: 42px; }
  .home-contact-inner {
    gap: 24px;
    padding-bottom: 24px;
  }
  .home-contact-heading h2 { font-size: min(4.575rem, 18.2vw); }
  .home-contact-details { grid-template-columns: 1fr; }

  .home-contact-details > div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .home-map { height: 380px; }

  .home-footer .footer-main {
    gap: 24px;
    padding: 24px 0;
  }

  .home-footer .footer-links {
    column-gap: 1.5rem;
    row-gap: 10px;
  }

  .home-footer .footer-base {
    padding-block: 24px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 13px;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .food-ribbon-track { animation: none; }

  .booking-scene-slide { animation: none !important; }
  .booking-scene-slide:not(:first-child) { opacity: 0; }

  .menu-reveal { height: 100svh; }

  .menu-reveal-stage {
    position: relative;
    top: 0;
    height: 100svh;
  }

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

  .home-hero-content,
  .kinetic-heading,
  .menu-reveal-panel,
  .menu-reveal-centre {
    opacity: 1;
    transform: none;
  }
}
