:root {
  --ink: #201916;
  --muted: #6d625a;
  --paper: #fbf7ef;
  --cream: #efe2ce;
  --terracotta: #bd4f32;
  --terracotta-dark: #873721;
  --olive: #626b3f;
  --teal: #0e746d;
  --warm-panel: #efe2cf;
  --line: rgba(32, 25, 22, 0.15);
  --shadow: 0 22px 70px rgba(35, 24, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .back-to-top {
  opacity: 0;
  pointer-events: none;
}

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

[id] {
  scroll-margin-top: 96px;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fffaf1;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.scrolled,
.site-header.nav-active {
  background:
    linear-gradient(135deg, rgba(244, 201, 119, 0.08), rgba(207, 74, 34, 0.14)),
    rgba(25, 13, 11, 0.94);
  color: #fff7e8;
  box-shadow: 0 14px 38px rgba(25, 13, 11, 0.28);
  backdrop-filter: blur(16px);
}

.site-header.scrolled .site-nav a::after,
.site-header.nav-active .site-nav a::after {
  color: #f1c977;
}

.site-header.scrolled .header-cta,
.site-header.nav-active .header-cta {
  border-color: rgba(244, 201, 119, 0.78);
  color: #fff7e8;
  background: rgba(244, 201, 119, 0.08);
}

.site-header.scrolled .header-cta:hover,
.site-header.scrolled .header-cta:focus-visible,
.site-header.nav-active .header-cta:hover,
.site-header.nav-active .header-cta:focus-visible {
  border-color: #fff7e8;
  outline: none;
  background: rgba(244, 201, 119, 0.16);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
  background: #1f1714;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

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

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  margin-top: -3px;
  font-size: 0.68rem;
  opacity: 0.76;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  display: inline-block;
  margin-left: 0.42rem;
  color: var(--terracotta);
  content: "\203A";
  transform: translateX(0);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: translateX(3px);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 18px;
  background: transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.header-cta {
  border-color: rgba(255, 250, 241, 0.86);
  background: rgba(255, 250, 241, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: #fffaf1;
  outline: none;
  background: #fffaf1;
}

.button.primary {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fffaf1;
}

.button.primary:hover {
  background: var(--terracotta-dark);
}

.button.secondary {
  background: rgba(255, 250, 241, 0.1);
  color: #fffaf1;
}

.nav-toggle {
  position: relative;
  z-index: 22;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 247, 232, 0.72);
  border-radius: 50%;
  background: rgba(25, 13, 11, 0.52);
  color: inherit;
  box-shadow: 0 10px 28px rgba(16, 8, 6, 0.24);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top 180ms ease, opacity 160ms ease, transform 180ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: #fff7e8;
  outline: none;
  background: rgba(189, 79, 50, 0.72);
}

.site-header.nav-active .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.nav-active .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.3);
}

.site-header.nav-active .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 140px clamp(18px, 6vw, 76px) 74px;
  color: #fffaf1;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: calc(100% + 90px);
  object-fit: cover;
  background: #241713;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 13, 9, 0.82), rgba(22, 13, 9, 0.38) 48%, rgba(22, 13, 9, 0.2)),
    linear-gradient(0deg, rgba(22, 13, 9, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd3b9;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 12vw, 10.2rem);
  font-weight: 500;
  line-height: 0.86;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1fr 1.1fr;
  gap: 14px;
  padding: 20px clamp(16px, 2vw, 28px);
  border-bottom: 1px solid var(--line);
  background: #f2e6d5;
}

.quick-card {
  display: flex;
  min-height: 170px;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 20px;
  border: 1px solid rgba(189, 79, 50, 0.24);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 8px 22px rgba(74, 44, 28, 0.08);
}

.quick-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: #f4e6d1;
  color: var(--terracotta);
}

.quick-card-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.quick-card-icon-solid svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.quick-card-copy {
  min-width: 0;
  padding-top: 4px;
}

.quick-info span,
.menu-image span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-image span {
  color: var(--terracotta);
}

.quick-card > .quick-card-icon {
  display: grid;
  margin-bottom: 0;
  color: var(--terracotta);
}

.quick-info .quick-card-copy > span,
.quick-info .bookings-card > span {
  color: var(--terracotta);
  letter-spacing: 0.045em;
}

.quick-info strong {
  display: block;
  overflow-wrap: anywhere;
}

.quick-info .service-time {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.15vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.quick-card-copy > strong:not(.service-time) {
  font-size: clamp(0.88rem, 1.05vw, 1rem);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.quick-action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 6px 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.quick-action svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.booking-actions {
  display: grid;
  width: 100%;
}

.bookings-card {
  display: block;
  border-color: rgba(122, 77, 53, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    #3c291f;
  color: #fff8ed;
  box-shadow: 0 10px 28px rgba(50, 30, 20, 0.2);
}

.quick-info .bookings-card > span {
  color: #f2d7bb;
}

.bookings-card .quick-actions {
  margin-top: 10px;
}

.bookings-card .quick-action {
  width: 100%;
  border-color: rgba(255, 248, 237, 0.78);
  background: #fff8ed;
  color: var(--ink);
  font-size: 0.82rem;
}

.bookings-card .whatsapp-action {
  border-color: #67a88b;
  color: #176c48;
}

.bookings-card .booking-action {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fffaf1;
}

.quick-action:hover,
.quick-action:focus-visible {
  background: var(--ink);
  color: #fffaf1;
}

.whatsapp-action {
  border-color: #1f8f5f;
  color: #176c48;
}

.whatsapp-action:hover,
.whatsapp-action:focus-visible {
  border-color: #1f8f5f;
  background: #1f8f5f;
}

.booking-action {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fffaf1;
}

.booking-action:hover,
.booking-action:focus-visible {
  border-color: var(--terracotta-dark);
  background: var(--terracotta-dark);
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 76px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--section-parallax, 0px), 0);
}

.parallax-card {
  transform: translate3d(0, var(--card-parallax, 0px), 0);
  will-change: transform;
}

.intro-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  background: var(--paper);
}

.intro-brush-art {
  position: absolute;
  z-index: 0;
  top: -43%;
  right: -17%;
  width: 75%;
  height: 185%;
  max-width: none;
  object-fit: fill;
  opacity: 0.78;
  pointer-events: none;
  user-select: none;
}

.intro-section > :not(.intro-brush-art) {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(560px, 52vw, 760px);
}

.intro-grid p,
.story-copy p,
.visit-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy {
  display: grid;
  align-content: center;
  max-width: 760px;
  padding: clamp(72px, 9vw, 126px) clamp(18px, 6vw, 76px);
}

.intro-copy p {
  max-width: 660px;
  margin-bottom: 0;
  color: #564a43;
}

.intro-media {
  position: relative;
  z-index: 1;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #241a16;
  box-shadow: none;
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
}

.intro-flame-divider {
  display: flex;
  width: min(220px, 72%);
  align-items: center;
  gap: 13px;
  margin: 28px 0 0;
  color: var(--terracotta);
}

.intro-flame-divider span {
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.72;
}

.intro-flame-divider svg,
.carousel-heading-icon,
.favourites-heading-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.carousel-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0 0 1px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.carousel-heading {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto auto auto minmax(24px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 22px clamp(18px, 4vw, 54px);
  color: var(--terracotta);
}

.carousel-heading-line {
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.carousel-heading h2 {
  max-width: none;
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.carousel-heading-icon {
  width: 17px;
  height: 17px;
}

.carousel-track {
  display: flex;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  cursor: grab;
  transform: translate3d(var(--carousel-parallax, 0px), 0, 0);
  will-change: transform;
}

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

.carousel-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.carousel-card {
  flex: 0 0 clamp(280px, 32vw, 430px);
  background: var(--warm-panel);
}

.carousel-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1f1714;
  pointer-events: none;
}

.carousel-card div {
  min-height: 128px;
  padding: 24px 26px 26px;
  text-align: center;
}

.carousel-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--terracotta);
}

.carousel-card h3 svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.carousel-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.favourites-section {
  position: relative;
  z-index: 2;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--warm-panel);
  overflow: hidden;
}

.favourites-section::before {
  content: none;
}

.favourites-heading {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  color: var(--ink);
  text-align: center;
}

.favourites-heading .section-kicker {
  margin-bottom: 12px;
}

.favourites-heading h2 {
  max-width: none;
  margin: 0;
  margin-inline: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  white-space: nowrap;
}

.favourites-heading-line,
.favourites-heading-icon {
  display: none;
}

.favourites-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
}

.favourite-dish-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(32, 25, 22, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.88);
  color: inherit;
  box-shadow: 0 18px 42px rgba(35, 24, 18, 0.1);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.favourite-dish-card:hover {
  border-color: rgba(189, 79, 50, 0.34);
  box-shadow: 0 22px 46px rgba(35, 24, 18, 0.14);
  transform: translateY(-2px);
}

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

.favourite-dish-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: inherit;
}

.favourite-dish-card img {
  width: 100%;
  height: clamp(180px, 17vw, 250px);
  object-fit: cover;
  background: #241a16;
  pointer-events: none;
  transition: opacity 260ms ease, transform 360ms ease;
}

.favourite-dish-card:hover img,
.favourite-dish-card:focus-visible img {
  opacity: 0.9;
  transform: scale(1.018);
}

.favourite-dish-card div {
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(239, 226, 206, 0.78));
}

.favourite-dish-card div > span,
.experience-gallery-card div > span,
.gallery-page-card figcaption > span {
  display: inline-block;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 5px 9px;
  border: 1px solid rgba(189, 79, 50, 0.22);
  border-radius: 999px;
  background: rgba(189, 79, 50, 0.08);
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.favourite-dish-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.favourite-dish-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.virtual-tour-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(239, 226, 206, 0.78)),
    var(--paper);
}

.virtual-tour-copy {
  max-width: 460px;
}

.virtual-tour-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.9rem, 5.6vw, 5.4rem);
  line-height: 0.9;
}

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

.virtual-tour-frame {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d8d3c7;
  box-shadow: var(--shadow);
}

.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: 24px;
  border: 0;
  background: linear-gradient(180deg, rgba(32, 25, 22, 0.12), rgba(32, 25, 22, 0.42));
  color: #fffaf1;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.virtual-tour-activate span {
  padding: 12px 18px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 999px;
  background: rgba(32, 19, 14, 0.84);
  color: #f0aa84;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(25, 13, 11, 0.24);
}

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

.experience-gallery-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(60px, 8vw, 104px) 0 clamp(38px, 6vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--warm-panel);
  color: var(--ink);
}

.experience-gallery-head {
  width: min(100% - 36px, 980px);
  margin: 0 auto clamp(30px, 5vw, 54px);
  text-align: center;
}

.experience-gallery-head .section-kicker {
  color: var(--terracotta);
}

.experience-gallery-head h2 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.6rem, 6vw, 6rem);
}

.experience-gallery-head p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.experience-gallery-marquee {
  overflow: hidden;
  padding: 22px 0;
  background: rgba(239, 226, 206, 0.58);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

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

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

.experience-gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 clamp(280px, 30vw, 390px);
  overflow: visible;
  padding: 12px;
  border: 1px solid rgba(32, 25, 22, 0.14);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.46);
  box-shadow: 0 18px 42px rgba(35, 24, 18, 0.1);
}

.experience-gallery-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: inherit;
}

.experience-gallery-card img {
  width: 100%;
  height: clamp(220px, 23vw, 320px);
  border-radius: 8px;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  transition: opacity 260ms ease, transform 360ms ease;
}

.experience-gallery-image:hover img {
  opacity: 0.9;
  transform: scale(1.018);
}

.experience-gallery-card div {
  display: grid;
  align-content: start;
  margin-top: 10px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(189, 79, 50, 0.16);
  border-radius: 8px;
  background: #fff7ea;
  box-shadow: 0 10px 24px rgba(35, 24, 18, 0.07);
}

.experience-gallery-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.experience-gallery-card p {
  margin: 0;
  color: var(--muted);
}

.experience-gallery-cta {
  display: flex;
  justify-content: center;
  padding: clamp(30px, 5vw, 54px) 18px 0;
}

.gallery-page-hero {
  position: relative;
  display: grid;
  min-height: min(76svh, 780px);
  place-items: center;
  overflow: hidden;
  padding: clamp(130px, 18vw, 210px) 18px clamp(70px, 10vw, 120px);
  background: url("assets/Flame-Grill-and-Indian-Tex-Mex-3.jpg") center / cover no-repeat;
  color: #fffaf1;
  text-align: center;
}

.gallery-page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 13, 9, 0.56), rgba(24, 13, 9, 0.78)),
    radial-gradient(circle at 50% 18%, rgba(189, 79, 50, 0.28), transparent 34%);
  content: "";
}

.gallery-page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.gallery-page-hero .section-kicker {
  color: #ffd3b9;
}

.gallery-page-hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(4rem, 11vw, 9rem);
}

.gallery-page-hero p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.gallery-page-section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 76px);
  background:
    radial-gradient(circle at 14% 4%, rgba(189, 79, 50, 0.09), transparent 28%),
    linear-gradient(180deg, #fffaf1, var(--paper) 48%, #fffaf1);
}

.gallery-page-intro {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.gallery-page-intro h2 {
  max-width: none;
}

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

.gallery-page-grid {
  width: min(100%, 1180px);
  margin-inline: auto;
  column-count: 4;
  column-gap: clamp(14px, 1.7vw, 20px);
}

.gallery-page-card {
  display: inline-block;
  width: 100%;
  overflow: visible;
  margin: 0 0 clamp(14px, 1.7vw, 20px);
  padding: 12px;
  break-inside: avoid;
  border: 1px solid rgba(32, 25, 22, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(35, 24, 18, 0.1);
}

.gallery-page-image {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: rgba(32, 25, 22, 0.12);
  color: var(--ink);
  cursor: zoom-in;
}

.gallery-page-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(239, 226, 207, 0.58);
  transition: opacity 260ms ease, transform 360ms ease;
}

.gallery-page-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 241, 0.36);
  border-radius: 999px;
  background: rgba(32, 19, 14, 0.82);
  color: #f0aa84;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

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

.gallery-page-card figcaption {
  display: grid;
  align-content: start;
  margin-top: 10px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(189, 79, 50, 0.16);
  border-radius: 8px;
  color: var(--muted);
  background: #fff7ea;
  box-shadow: 0 10px 24px rgba(35, 24, 18, 0.07);
}

.gallery-page-card figcaption h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.gallery-page-card figcaption p {
  margin: 0;
  color: var(--muted);
}

.gallery-lightbox {
  width: min(92vw, 1200px);
  max-width: none;
  max-height: min(92vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: #120b08;
  color: #fffaf1;
  box-shadow: 0 32px 96px rgba(23, 13, 10, 0.72);
}

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

.gallery-lightbox::backdrop {
  background: rgba(18, 10, 7, 0.88);
  backdrop-filter: blur(8px);
}

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

.gallery-lightbox img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: min(calc(92vh - 112px), 788px);
  object-fit: contain;
  background: #080504;
}

.gallery-lightbox figcaption {
  display: grid;
  gap: 4px;
  max-height: 28vh;
  min-height: 92px;
  overflow: auto;
  padding: 18px 22px 20px;
  background: var(--warm-panel);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.48rem);
}

.gallery-lightbox figcaption strong {
  font-weight: 500;
}

.gallery-lightbox figcaption span {
  color: var(--muted);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(32, 25, 22, 0.18);
  border-radius: 999px;
  background: var(--terracotta);
  color: #fffaf1;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.section-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.menu-preview-copy {
  max-width: 620px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.menu-section-heading {
  display: contents;
}

.menu-heading-copy {
  grid-area: menu-heading;
  min-width: 0;
}

.menu-promo {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: center;
  padding-left: 0;
}

.menu-promo-copy {
  display: flex;
  width: 100%;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 28px 26px 28px clamp(195px, 15vw, 225px);
  background: rgba(255, 250, 241, 0.84);
  box-shadow: 0 16px 42px rgba(35, 24, 18, 0.08);
}

.menu-promo-copy h3 {
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 500;
}

.menu-promo-copy p {
  max-width: 28ch;
  margin-bottom: 18px;
  color: var(--muted);
}

.menu-download-card {
  position: absolute;
  z-index: 20;
  top: calc(50% - 34px);
  left: clamp(30px, 3.5vw, 50px);
  display: grid;
  width: clamp(185px, 16vw, 225px);
  justify-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(78vw, -55%, 0) rotate(42deg) scale(0.94);
  transform-origin: 50% 10%;
  transition:
    opacity 380ms ease,
    transform 880ms cubic-bezier(0.2, 0.86, 0.24, 1.12);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  will-change: transform, opacity;
}

.menu-download-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 5px solid #fffaf1;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(35, 24, 18, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.menu-download-card:hover img,
.menu-download-card:focus-visible img {
  transform: translateY(-4px) rotate(-2deg) scale(1.02);
  box-shadow: 0 24px 56px rgba(35, 24, 18, 0.28);
}

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

.menu-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.menu-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffaf1;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 16px;
}

.menu-tab.active {
  border-color: var(--olive);
  background: var(--olive);
  color: #fffaf1;
}

.menu-layout {
  display: contents;
}

.menu-section-heading > .menu-image {
  grid-area: menu-image;
  position: relative;
  top: auto;
  align-self: stretch;
  min-height: 360px;
}

.menu-layout > .menu-promo {
  grid-area: menu-promo;
  position: relative;
  top: auto;
  align-self: center;
}

.menu-samples {
  grid-area: menu-samples;
  min-width: 0;
}

.menu-section {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-areas:
    "menu-heading menu-promo"
    "menu-samples menu-image"
    "menu-action menu-action";
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.56fr);
  column-gap: clamp(24px, 5vw, 64px);
  row-gap: clamp(38px, 5vw, 66px);
  align-items: start;
  overflow-x: clip;
}

.menu-section-action {
  grid-area: menu-action;
  display: flex;
  justify-content: center;
}

.menu-section-button {
  min-height: 54px;
  gap: 10px;
  padding: 0 26px;
  font-size: 0.92rem;
}

.menu-section-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: grid;
  gap: 14px;
}

.menu-item {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:first-child {
  border-top: 1px solid var(--line);
}

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

.menu-item strong {
  flex: 0 0 auto;
  color: var(--terracotta-dark);
}

.menu-image {
  position: sticky;
  top: 104px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.menu-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 0;
  object-fit: cover;
  transition: opacity 300ms ease, transform 300ms ease, filter 300ms ease;
}

.menu-image img.is-fading {
  opacity: 0;
  transform: scale(1.018);
  filter: blur(2px);
}

.menu-image div {
  padding: 22px;
}

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

.menu-full-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 60px);
}

.menu-full-button {
  min-height: 58px;
  gap: 12px;
  border-radius: 5px;
  padding: 0 clamp(24px, 4vw, 38px);
  font-size: 1rem;
  box-shadow: 0 14px 32px rgba(135, 55, 33, 0.2);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.menu-full-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-promo-button {
  min-height: 44px;
  gap: 9px;
  padding: 0 18px;
  font-size: 0.82rem;
}

.menu-promo-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-full-button:hover,
.menu-full-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(135, 55, 33, 0.26);
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 76px);
  overflow: hidden;
  background-color: #261713;
  background-image: url("assets/dishes.jpg");
  background-position: center var(--story-bg-y, 50%);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fffaf1;
}

.story-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(189, 79, 50, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(31, 19, 16, 0.58), rgba(31, 19, 16, 0.72));
  content: "";
  pointer-events: none;
}

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

.story-image img,
.story-image video {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: translate3d(0, var(--image-parallax, 0px), 0) scale(1.04);
  will-change: transform;
}

.story-copy p {
  color: rgba(255, 250, 241, 0.78);
}

.reservation-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: clamp(700px, 84vh, 880px);
  padding: 0;
  overflow: hidden;
  background: #261810;
}

.booking-anchor {
  position: absolute;
  top: -92px;
}

.reservation-card {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  align-content: center;
  overflow: hidden;
  padding: clamp(38px, 6vw, 82px);
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(29, 17, 13, 0.92), rgba(43, 24, 17, 0.7)),
    url("assets/IMG_7165b.jpg") center / cover;
  color: #fffaf1;
}

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

.reservation-card::before {
  inset: 20px;
  border: 1px solid rgba(255, 250, 241, 0.18);
}

.reservation-card::after {
  right: -120px;
  bottom: -130px;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 28%, rgba(255, 250, 241, 0.08) 29% 31%, transparent 32% 42%, rgba(189, 79, 50, 0.3) 43% 45%, transparent 46%),
    repeating-conic-gradient(from 18deg, rgba(239, 188, 126, 0.22) 0 9deg, transparent 9deg 18deg);
}

.reservation-card .section-kicker {
  color: #f0aa84;
}

.reservation-card h2 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.9;
}

.reservation-card .reservation-intro {
  max-width: 570px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.04rem;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.reservation-actions .button {
  gap: 9px;
}

.reservation-actions svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.reservation-secondary {
  border-color: rgba(255, 250, 241, 0.64);
  background: rgba(28, 16, 12, 0.34);
  color: #fffaf1;
}

.reservation-secondary:hover,
.reservation-secondary:focus-visible {
  border-color: #fffaf1;
  background: rgba(255, 250, 241, 0.1);
}

.reservation-facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.75fr);
  gap: 20px;
  max-width: 640px;
}

.reservation-facts dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.reservation-facts dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

.reservation-facts dt {
  color: #f0aa84;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.reservation-facts address {
  margin: 0;
  padding-left: 18px;
  border-left: 1px solid var(--terracotta);
  color: rgba(255, 250, 241, 0.76);
  font-style: normal;
}

.reservation-map {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: #d8d3c7;
}

.map-eyebrow {
  position: absolute;
  z-index: 2;
  top: clamp(22px, 4vw, 48px);
  left: clamp(16px, 4vw, 48px);
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  background: rgba(39, 23, 17, 0.88);
  color: #f0aa84;
  backdrop-filter: blur(12px);
}

.reservation-map::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 19, 14, 0.24), transparent 38%),
    linear-gradient(0deg, rgba(32, 19, 14, 0.38), transparent 48%);
  content: "";
  pointer-events: none;
}

.reservation-map iframe {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  border: 0;
  filter: saturate(0.76) contrast(1.02) sepia(0.08);
  pointer-events: none;
}

.map-ribbon {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 4vw, 48px);
  left: clamp(16px, 4vw, 48px);
  display: grid;
  gap: 6px;
  max-width: 520px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  background: rgba(39, 23, 17, 0.88);
  color: #fffaf1;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.map-ribbon span {
  color: #f0aa84;
  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.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.map-ribbon a {
  width: max-content;
  margin-top: 7px;
  color: #f0aa84;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  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(25, 15, 12, 0.8);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(92vh, 900px);
  overflow: auto;
  border: 1px solid rgba(255, 250, 241, 0.2);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 96px rgba(23, 13, 10, 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 {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251, 247, 239, 0.92);
  color: var(--ink);
  font: inherit;
  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: 16px;
  padding: 18px clamp(20px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
  text-align: left;
}

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

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

.booking-kicker,
.booking-head span,
.booking-message,
.booking-disclaimer {
  color: rgba(32, 25, 22, 0.62);
}

.booking-disclaimer {
  margin: 0;
}

.booking-kicker {
  margin: 0;
  color: var(--terracotta);
  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 var(--line);
}

.booking-progress span {
  padding: 14px 16px;
  color: rgba(32, 25, 22, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.booking-progress span.is-active {
  background: rgba(189, 79, 50, 0.08);
  color: var(--terracotta);
}

.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(32, 25, 22, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-fields input,
.booking-fields select,
.booking-textarea textarea {
  width: 100%;
  border: 1px solid rgba(32, 25, 22, 0.18);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
}

.booking-textarea textarea {
  resize: vertical;
}

.booking-date-shell {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(32, 25, 22, 0.18);
  border-radius: 3px;
  background: #fff;
  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);
  background: #fff;
  box-shadow: var(--shadow);
}

.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: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

.booking-calendar-head button,
.booking-calendar-days button {
  border: 1px solid var(--line);
  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(32, 25, 22, 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(--terracotta);
  background: var(--terracotta);
  color: #fff;
}

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

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

.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: 16px;
  background: rgba(189, 79, 50, 0.08);
  color: var(--terracotta-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;
  min-height: 43px;
  place-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(32, 25, 22, 0.16);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

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

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

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

.booking-time-select select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(32, 25, 22, 0.18);
  border-radius: 3px;
  padding: 12px 16px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.booking-fields select,
.booking-time-select 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='%23201916' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 10px;
}

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

.seating-options label span {
  min-height: 48px;
  justify-content: start;
}

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

.booking-summary {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-left: 3px solid var(--terracotta);
  background: rgba(189, 79, 50, 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(--terracotta-dark);
}

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

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

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

body.booking-open {
  overflow: hidden;
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.site-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 26px max(clamp(18px, 6vw, 76px), 18px);
  padding-right: max(clamp(18px, 6vw, 76px), 180px);
  background: var(--ink);
  color: #fffaf1;
}

.site-footer p {
  margin: 0;
}

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

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

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

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

.staff-login-modal {
  position: fixed;
  z-index: 140;
  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(16, 8, 6, 0.88);
  backdrop-filter: blur(9px);
}

.staff-login-dialog {
  position: relative;
  width: min(100%, 440px);
  padding: clamp(2rem, 7vw, 3rem);
  border: 1px solid rgba(228, 175, 97, 0.38);
  border-radius: 6px;
  background: #21120e;
  color: #fffaf1;
  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, 250, 241, 0.24);
  border-radius: 50%;
  object-fit: cover;
}

.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, 250, 241, 0.24);
  border-radius: 50%;
  background: transparent;
  color: #fffaf1;
  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: #e4af61;
  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, 250, 241, 0.2);
  border-radius: 3px;
  background: rgba(255, 250, 241, 0.07);
  color: #fffaf1;
  font: inherit;
}

.staff-login-dialog input:focus {
  border-color: #e4af61;
  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;
}

.site-footer-logo {
  display: block;
  width: 52px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255, 250, 241, 0.72);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.site-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(244, 201, 119, 0.74);
  border-radius: 999px;
  color: #fff7e8;
  background:
    linear-gradient(135deg, rgba(244, 201, 119, 0.16), rgba(207, 74, 34, 0.22)),
    rgba(25, 13, 11, 0.88);
  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% + 34px));
  transition: opacity 220ms ease, transform 220ms ease, border-color 180ms ease;
}

.back-to-top::before {
  width: 9px;
  height: 9px;
  border-top: 2px solid #f1c977;
  border-left: 2px solid #f1c977;
  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 {
  border-color: rgba(255, 247, 232, 0.9);
  outline: none;
}

@keyframes mobile-nav-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }

  #favourites,
  #story,
  #visit {
    scroll-margin-top: 0;
  }

  #find-us {
    min-height: max(620px, calc(100svh - 158px));
    scroll-margin-top: 0;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header.nav-active {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header .brand {
    position: relative;
    z-index: 22;
  }

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

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-active .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 112px clamp(28px, 9vw, 68px) 56px;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(160deg, rgba(189, 79, 50, 0.16), transparent 42%),
      #24130f;
    color: #fff7e8;
    box-shadow: none;
    animation: mobile-nav-reveal 180ms ease both;
  }

  .site-header.nav-active .site-nav a {
    display: flex;
    width: min(100%, 520px);
    align-items: center;
    justify-content: space-between;
    padding: 19px 4px;
    border-bottom: 1px solid rgba(255, 247, 232, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 7vw, 2.05rem);
    font-weight: 500;
    line-height: 1.05;
  }

  .site-header.nav-active .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.nav-active .site-nav a::after {
    color: #f1c977;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 1.35rem;
  }

  .quick-info,
  .intro-grid,
  .virtual-tour-section,
  .menu-layout,
  .story-section,
  .reservation-section,
  .visit-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .reservation-section {
    min-height: auto;
  }

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

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

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

  .quick-card {
    min-height: 164px;
  }

  .intro-brush-art {
    top: 28%;
    right: -35%;
    width: 140%;
    height: 92%;
    opacity: 0.7;
  }

  .intro-copy {
    max-width: none;
    padding: 68px clamp(18px, 6vw, 54px) 44px;
  }

  .intro-media {
    min-height: 480px;
  }

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

  .virtual-tour-section {
    gap: 30px;
  }

  .virtual-tour-copy {
    max-width: 620px;
  }

  .virtual-tour-frame {
    min-height: 440px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .menu-section-heading {
    display: contents;
  }

  .menu-section {
    grid-template-areas:
      "menu-heading"
      "menu-image"
      "menu-samples"
      "menu-promo"
      "menu-action";
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .gallery-page-grid {
    column-count: 2;
  }

  .menu-promo {
    min-height: 250px;
    padding-left: 0;
  }

  .menu-layout > .menu-promo {
    position: relative;
    top: auto;
  }

  .menu-promo-copy {
    padding-left: clamp(235px, 32vw, 300px);
  }

  .menu-download-card {
    left: clamp(88px, 18vw, 132px);
    width: 180px;
    min-width: 0;
    justify-self: start;
  }

  .menu-image {
    position: static;
    display: block;
    height: auto;
  }

  .menu-section-heading > .menu-image {
    position: static;
    min-height: 0;
  }

  .menu-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .story-section {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 18px 48px;
  }

  h1 {
    font-size: clamp(4.15rem, 21vw, 6.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 13vw, 3.35rem);
  }

  .quick-info {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .quick-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .intro-brush-art {
    top: 31%;
    right: -70%;
    width: 200%;
    height: 88%;
    opacity: 0.62;
  }

  .intro-copy {
    padding: 48px 18px 32px;
  }

  .intro-media {
    min-height: 320px;
  }

  .carousel-heading {
    grid-template-columns: minmax(14px, 1fr) auto auto auto minmax(14px, 1fr);
    gap: 7px;
    padding: 18px 14px;
  }

  .carousel-heading h2 {
    font-size: clamp(1rem, 5.2vw, 1.35rem);
    letter-spacing: 0.06em;
  }

  .carousel-heading-icon {
    width: 14px;
    height: 14px;
  }

  .carousel-card {
    flex-basis: min(82vw, 360px);
  }

  .carousel-card div,
  .menu-image div {
    padding: 20px;
  }

  .favourites-section {
    padding: 46px 18px 54px;
  }

  .favourites-section.reveal-on-scroll,
  .favourites-section.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .favourites-heading {
    margin-bottom: 24px;
    padding-inline: 12px;
    text-align: left;
  }

  .favourites-heading .section-kicker {
    font-size: 0.72rem;
  }

  .favourites-heading h2 {
    max-width: 280px;
    margin-inline: 0;
    font-size: 1.85rem;
    white-space: normal;
  }

  .favourites-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .favourite-dish-card img {
    height: 230px;
  }

  .favourite-dish-card div {
    padding: 20px;
  }

  .virtual-tour-section {
    padding: 46px 18px 54px;
  }

  .virtual-tour-copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  .virtual-tour-frame {
    min-height: 360px;
  }

  .experience-gallery-section {
    padding-top: 50px;
  }

  .experience-gallery-head {
    text-align: left;
  }

  .experience-gallery-head h2 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .experience-gallery-head p {
    margin-left: 0;
  }

  .experience-gallery-card {
    flex-basis: min(82vw, 350px);
  }

  .experience-gallery-card img {
    height: 230px;
  }

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

  .gallery-page-hero {
    min-height: 68svh;
    padding-top: 122px;
  }

  .gallery-page-grid {
    column-count: 1;
  }

  .menu-item {
    display: grid;
    gap: 8px;
  }

  .menu-section-heading {
    display: contents;
  }

  .menu-section {
    padding-top: 86px;
    row-gap: 30px;
  }

  .menu-tabs {
    margin-top: 22px;
  }

  .menu-promo {
    display: block;
    min-height: 460px;
    padding-left: 0;
  }

  .menu-download-card {
    top: 14px;
    left: 50%;
    width: 155px;
  }

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

  .menu-promo-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 325px;
    align-items: center;
    padding: 170px 22px 26px;
    text-align: center;
  }

  .menu-promo-copy p {
    max-width: 30ch;
  }

  .story-image img,
  .story-image video {
    min-height: 320px;
  }

  .reservation-card {
    min-height: 600px;
    padding: 60px 24px 48px;
  }

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

  .reservation-actions,
  .booking-fields {
    display: grid;
  }

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

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

  .reservation-map {
    min-height: max(520px, calc(100svh - 174px));
    scroll-margin-top: 0;
  }

  .map-eyebrow {
    top: 16px;
    left: 16px;
  }

  .map-ribbon {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .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));
  }

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

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

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

  .site-footer {
    display: grid;
  }

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

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

  .hero-video,
  .carousel-track,
  .story-image img,
  .story-image video,
  .parallax-card,
  .menu-download-card,
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    transform: none !important;
  }

  .menu-download-card {
    opacity: 1;
    animation: none !important;
  }

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

  .reveal-on-scroll {
    opacity: 1;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .menu-section.menu-download-visible .menu-download-card {
    transform: translate3d(-50%, 0, 0) rotate(-8deg) scale(1) !important;
  }
}
