:root {
  --stone: #f3efe6;
  --stone-2: #e8e1d2;
  --ink: #141814;
  --ink-soft: #3c463e;
  --forest: #24382c;
  --forest-deep: #15241c;
  --brass: #8d7040;
  --brass-soft: #c4a574;
  --line: rgba(20, 24, 20, 0.12);
  --line-light: rgba(243, 239, 230, 0.16);
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 4.6rem;
  --measure: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --sbw: 0px;
  --edge: max(var(--gutter), calc((100vw - var(--sbw) - var(--measure)) / 2));
  --rule-dark: rgba(196, 165, 116, 0.28);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 1.5rem);
  scrollbar-gutter: stable;
}
html, body { margin: 0; min-height: 100%; }
html.is-loading,
html.is-loading body { overflow: hidden; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--stone);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.no-loader .loader { display: none; }
.loader-mark {
  width: min(118px, 34vw);
  overflow: visible;
  color: var(--forest);
}
.loader-mark path { fill: currentColor; }
.loader-wreath {
  -webkit-mask-image: radial-gradient(circle, #000 56%, transparent 72%);
  mask-image: radial-gradient(circle, #000 56%, transparent 72%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 94%;
  mask-position: 50% 94%;
  -webkit-mask-size: 0 0;
  mask-size: 0 0;
  animation: loader-wreath 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) 0.04s forwards;
}
.loader-g,
.loader-star {
  transform-box: fill-box;
  transform-origin: center;
}
.loader-g {
  opacity: 0;
  transform: translateY(7px);
  animation: loader-g 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.loader-star {
  opacity: 0;
  transform: scale(0.25);
  animation: loader-star 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}
.loader.is-done .loader-mark {
  transform: scale(0.97);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}
@keyframes loader-wreath {
  to {
    -webkit-mask-size: 260% 260%;
    mask-size: 260% 260%;
  }
}
@keyframes loader-g {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loader-star {
  0% { opacity: 0; transform: scale(0.25); }
  62% { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
::selection { background: #d8c9a3; color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
.section-dark :focus-visible,
.footer :focus-visible,
.hero-media :focus-visible { outline-color: var(--brass-soft); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.55rem 0.9rem;
  background: var(--forest);
  color: var(--stone);
  text-decoration: none;
}
.skip:focus { top: 1rem; }

.wrap {
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -0.03em; }
h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6.4vw + 0.5rem, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--forest);
}
h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.95rem, 2.6vw + 0.9rem, 3.3rem);
  line-height: 1.1;
  color: var(--forest);
}
h3 { margin: 0 0 0.4rem; font-size: clamp(1.18rem, 0.5vw + 1.02rem, 1.4rem); line-height: 1.28; }

.lead {
  margin: 1.1rem 0 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.08rem);
  line-height: 1.62;
}
.prose p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.72;
}
.prose p + p { margin-top: 1.15rem; }
.prose a {
  color: var(--brass);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
.phone-keep {
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.phone-keep:hover,
.phone-keep:focus-visible { color: var(--brass); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.btn-fill {
  background: var(--forest);
  color: var(--stone);
}
.btn-fill:hover,
.btn-fill:focus-visible { background: var(--brass); }
.section-dark .btn-fill {
  background: var(--stone);
  color: var(--forest);
}
.section-dark .btn-fill:hover,
.section-dark .btn-fill:focus-visible {
  background: var(--brass-soft);
  color: var(--forest-deep);
}
.btn-line {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn-line:hover,
.btn-line:focus-visible {
  background: var(--forest);
  color: var(--stone);
}
.btn-light {
  border-color: rgba(243, 239, 230, 0.45);
  color: var(--stone);
}
.btn-light:hover,
.btn-light:focus-visible {
  background: var(--stone);
  color: var(--forest);
  border-color: var(--stone);
}

.header {
  --header-now: var(--header);
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(243, 239, 230, 0.58);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.header.is-scrolled {
  --header-now: 3.35rem;
  height: 3.35rem;
  background: rgba(243, 239, 230, 0.42);
  backdrop-filter: blur(32px) saturate(1.7);
  -webkit-backdrop-filter: blur(32px) saturate(1.7);
  border-bottom-color: rgba(243, 239, 230, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
.header-inner {
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  display: block;
  width: 168px;
  text-decoration: none;
  transition: width 0.35s var(--ease);
}
.logo-swap {
  display: block;
  width: 100%;
  height: 32px;
  transition: height 0.35s var(--ease);
}
.logo-word {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.header.is-scrolled .logo { width: 138px; }
.header.is-scrolled .logo-swap { height: 32px; }
.logo-mark { display: none; }
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.1rem, 1.9vw, 1.85rem);
}
.nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color 0.25s var(--ease);
}
.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] { color: var(--brass); }
.nav > a[aria-current="page"]::after,
.nav-item > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.15rem;
  height: 1px;
  background: currentColor;
}
.nav > a {
  display: inline-flex;
  align-items: center;
  padding: 1.45rem 0;
  transition: color 0.25s var(--ease), padding 0.35s var(--ease);
}
.header.is-scrolled .nav > a:not(.nav-book):not(.nav-call):not(.nav-wa),
.header.is-scrolled .nav-item > a { padding: 0.85rem 0; }
.header.is-scrolled .nav > a[aria-current="page"]::after,
.header.is-scrolled .nav-item > a[aria-current="page"]::after { bottom: 0.55rem; }
.nav-item {
  position: relative;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 1.45rem 0;
  transition: color 0.25s var(--ease), padding 0.35s var(--ease);
}
.nav-caret {
  width: 0.72rem;
  height: 0.72rem;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 13rem;
  padding: 0.7rem 0 0.45rem;
  background: var(--stone);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(21, 36, 28, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.4rem);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 50;
}
.nav-sub::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.85rem;
}
.nav-sub a {
  display: block;
  padding: 0.55rem 1.05rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item.has-sub:hover .nav-caret,
.nav-item.has-sub:focus-within .nav-caret {
  transform: rotate(180deg);
}
.nav > .nav-book,
.nav > .nav-call,
.nav > .nav-wa { display: none; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.header-wa {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
  line-height: 0;
  color: var(--forest);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), color 0.3s var(--ease);
}
.wa-mark {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url("/assets/whatsapp.svg") center / contain no-repeat;
  mask: url("/assets/whatsapp.svg") center / contain no-repeat;
}
.header-wa:hover,
.header-wa:focus-visible {
  color: var(--brass);
}
.header-cta {
  min-height: 2.7rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  transition: min-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.header.is-scrolled .header-wa {
  width: 1.95rem;
  height: 1.95rem;
}
.header.is-scrolled .header-cta {
  min-height: 2.25rem;
  padding: 0.4rem 1rem;
}
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  padding-top: var(--header);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3.5vw, 3.5rem) clamp(2.75rem, 5.5vw, 4.5rem) var(--edge);
  background: var(--stone);
}
.hero-copy h1 { max-width: 13ch; }
.hero-copy .lead { max-width: 30rem; }
.hero-copy .actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: clamp(1.5rem, 3vw, 2rem); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 1.15rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-proof a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.hero-proof a:hover,
.hero-proof a:focus-visible { color: var(--brass); }
.hero-proof-score { color: var(--brass); }
.rating-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.45rem;
  min-height: 0;
  padding: 0.35rem 0.7rem 0.35rem 0.5rem;
  border: 1px solid var(--line);
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.rating-badge svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  color: var(--brass);
}
.rating-badge-score {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--forest);
}
.rating-badge-copy {
  display: inline;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.rating-badge-copy span::before { content: " · "; }
.rating-badge-copy span {
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.rating-badge:hover,
.rating-badge:focus-visible {
  border-color: var(--brass);
  color: var(--forest);
}
.rating-badge:hover .rating-badge-copy,
.rating-badge:focus-visible .rating-badge-copy { color: var(--brass); }
.hero-media {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}
.hero-media img,
.hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section { padding: clamp(4rem, 7.5vw, 7.5rem) 0; }
.section-flush { padding-top: 0; }
.section-dark {
  background: var(--forest-deep);
  color: var(--stone);
}
.section-dark h2,
.section-dark h3 { color: var(--stone); }
.section-dark .lead,
.section-dark p { color: rgba(243, 239, 230, 0.78); }
.section-head { max-width: 38rem; margin-bottom: clamp(2.2rem, 4vw, 3rem); }
.section-cta { margin: clamp(1.8rem, 3vw, 2.4rem) 0 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-media { overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media.is-portrait img { aspect-ratio: 4/5; }
.split.reverse .split-copy { order: 2; }
.split.align-start { align-items: start; }

.feature-bleed-inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}
.feature-copy { padding-inline: var(--gutter); }
.feature-media { margin: 0; overflow: hidden; }
.feature-media img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media (min-width: 900px) {
  .feature-bleed-inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .feature-copy {
    padding-left: var(--edge);
    padding-right: 0;
  }
  .feature-media img { aspect-ratio: 16/10; }
}

.acts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.8rem, 3vw, 2.6rem);
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.act {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.act-num {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--brass);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.act h3 { max-width: 15ch; }
.act p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.62;
}
.section-dark .act { border-top-color: var(--line-light); }
.section-dark .act p { color: rgba(243, 239, 230, 0.7); }

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}
.menu-feature {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
}
.menu-feature img,
.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-feature figcaption,
.plate figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(transparent, rgba(15, 20, 16, 0.72));
  color: #fff;
}
.menu-feature h3,
.plate h3 { color: #fff; margin: 0 0 0.15rem; }
.price { font-variant-numeric: tabular-nums; letter-spacing: 0.04em; opacity: 0.88; font-size: 0.88rem; }
.plates {
  display: grid;
  gap: 1.25rem;
}
.plate {
  position: relative;
  min-height: 13.4rem;
  overflow: hidden;
}

.event-list { display: grid; gap: 0; }
.event {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.event:last-child { border-bottom: 1px solid var(--line); }
.event time,
.event-meta {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.event h3 { margin: 0; font-size: clamp(1.12rem, 0.4vw + 1.02rem, 1.3rem); transition: color 0.25s var(--ease); }
.event p { margin: 0.24rem 0 0; color: var(--ink-soft); font-size: 0.9rem; font-weight: 300; line-height: 1.5; }
.event-go {
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.event-go::after {
  content: "→";
  display: inline-block;
  margin-left: 0.45em;
  transition: transform 0.3s var(--ease);
}
a.event:hover h3,
a.event:focus-visible h3 { color: var(--brass); }
a.event:hover .event-go::after,
a.event:focus-visible .event-go::after,
.event-go:hover::after,
.event-go:focus-visible::after { transform: translateX(0.28em); }
.note.event-note {
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 44rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 22rem;
}
.hours li {
  display: grid;
  grid-template-columns: 1fr 8.2em;
  gap: 1rem;
  line-height: 1.65;
}
.hours li span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hours .closed { color: #6b756d; }
.section-dark .hours .closed { color: rgba(243, 239, 230, 0.5); }
.section-dark .note { color: rgba(243, 239, 230, 0.6); }

.section.reserve {
  padding: 2.5rem 0 2.7rem;
}
.reserve-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.7rem;
}
.reserve-primary h2 {
  margin: 0;
  font-size: clamp(2.15rem, 8.4vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--stone);
}
.reserve-primary .kicker { margin-bottom: 0.55rem; }
.reserve-primary .lead {
  margin: 0.7rem 0 1.25rem;
  max-width: 28rem;
  color: rgba(243, 239, 230, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}
.reserve-cta .reserve-arrow {
  display: inline-block;
  margin-left: 0.15rem;
  transition: transform 0.35s var(--ease);
}
.reserve-cta:hover .reserve-arrow,
.reserve-cta:focus-visible .reserve-arrow {
  transform: translateX(0.28rem);
}
.reserve-hours {
  width: 100%;
  max-width: 18.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule-dark);
}
.reserve-hours-label {
  margin: 0 0 0.6rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.reserve-hours ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.reserve-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(243, 239, 230, 0.58);
}
.reserve-hours li span:last-child { font-variant-numeric: tabular-nums; }
.section-dark .reserve-address {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(243, 239, 230, 0.58);
}
.reserve-hours .note {
  margin-top: 0.75rem;
  color: rgba(243, 239, 230, 0.52);
  font-size: 0.72rem;
  line-height: 1.5;
}

@media (min-width: 720px) and (max-width: 1023px) {
  .section.reserve { padding: 3.1rem 0; }
  .reserve-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
    justify-content: space-between;
    align-items: start;
    gap: 1.5rem 2.5rem;
    width: 100%;
  }
  .reserve-primary h2 {
    font-size: clamp(2.45rem, 4.6vw, 3rem);
    line-height: 1.02;
  }
  .reserve-primary .lead {
    margin: 0.8rem 0 1.35rem;
    font-size: 1rem;
  }
  .reserve-hours {
    max-width: none;
    justify-self: stretch;
    padding: 0.15rem 0 0 1.4rem;
    border-top: 0;
    border-left: 1px solid var(--rule-dark);
  }
}

@media (min-width: 1024px) {
  .section.reserve { padding: 4.4rem 0; }
  .reserve-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
    justify-content: space-between;
    align-items: center;
    gap: 2rem 4rem;
    width: 100%;
  }
  .reserve-primary .kicker { margin-bottom: 0.75rem; }
  .reserve-primary h2 {
    font-size: clamp(3.15rem, 4.2vw, 4.15rem);
    line-height: 0.98;
  }
  .reserve-primary .lead {
    margin: 1rem 0 1.7rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .reserve-hours {
    max-width: none;
    justify-self: stretch;
    padding: 0 0 0 1.7rem;
    border-top: 0;
    border-left: 1px solid var(--rule-dark);
  }
}
.note { margin: 0.5rem 0 0; font-size: 0.78rem; line-height: 1.55; color: #5b655d; }
.note a {
  color: var(--brass);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.note a:hover,
.note a:focus-visible { color: var(--forest); }
.section-dark .note a { color: var(--brass-soft); }

.contacts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.contacts li { line-height: 1.5; }
.contacts a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
}
.contacts a:hover { color: var(--brass); }
.contacts svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
  color: var(--brass);
}
.contacts-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
}
address { margin: 0; font-style: normal; }

.map { margin-top: clamp(2.4rem, 5vw, 3.8rem); }
.map-frame {
  overflow: hidden;
  background: var(--stone-2);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: min(26rem, 62vh);
  border: 0;
}
.map-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-note a { text-decoration: none; color: var(--brass); }
.map-note a:hover { color: var(--forest); }

.form { display: grid; gap: 1.15rem; min-width: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.field { display: grid; gap: 0.4rem; min-width: 0; }
.field span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0.7rem 0;
  color: var(--ink);
  outline: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 7.5rem; line-height: 1.5; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 10px) 50%, calc(100% - 4px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 1.4rem;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--brass); }
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
.form .btn { justify-self: start; min-width: 10.5rem; }
.form-status { margin: 0; font-size: 0.92rem; }
.form-status.is-ok { color: var(--forest); }
.form-status.is-err { color: #8a3a2a; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.book-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 62rem;
}
.book-aside { min-width: 0; }
.book-aside .kicker { margin-bottom: 0.75rem; }
.book-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.book-facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.5;
}
.book-facts li span:last-child { font-variant-numeric: tabular-nums; }
.book-facts .closed { color: #6b756d; }
.book-contact {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.3rem;
}
.book-contact a {
  width: max-content;
  color: var(--forest);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
.book-contact a:hover,
.book-contact a:focus-visible { color: var(--brass); }
.book-panel {
  min-width: 0;
  background: transparent;
}
#tablego-booking {
  width: 100% !important;
  max-width: none;
  min-width: 0 !important;
  min-height: 460px;
  display: block;
  border: 0;
}

@media (min-width: 1024px) {
  .book-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
    align-items: start;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.voucher-panel { min-width: 0; }
#tablego-vouchers {
  width: 100% !important;
  max-width: 1200px;
  min-width: 0 !important;
  min-height: 320px;
  display: block;
  margin: 0 auto;
  border: 0;
}
.voucher-facts {
  display: grid;
  gap: 0;
  margin: clamp(2.2rem, 4vw, 3.2rem) 0 0;
  padding: 0;
  list-style: none;
}
.voucher-facts li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.voucher-facts li::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1px;
  margin-right: 0.85rem;
  vertical-align: 0.3em;
  background: var(--brass);
}
@media (min-width: 760px) {
  .voucher-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 2.5rem; }
}

.menu-notice {
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  padding: 1.05rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(36, 56, 44, 0.05);
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
}
.menu-notice strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.menu-columns { max-width: 46rem; }
.menu-note {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  max-width: 44rem;
}
.menu-block {
  margin-bottom: clamp(2.4rem, 4vw, 3.2rem);
  break-inside: avoid;
}
.menu-block:last-child { margin-bottom: 0; }
.menu-block h3 {
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--forest);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.25rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.dish:last-child { border-bottom: 0; }
.dish h4 { margin: 0; font-family: var(--sans); font-size: 0.98rem; font-weight: 500; letter-spacing: 0; line-height: 1.35; }
.dish h4 a { color: inherit; text-decoration: none; }
.dish h4 a:hover,
.dish h4 a:focus-visible { color: var(--brass); }
.dish p { margin: 0.25rem 0 0; color: var(--ink-soft); font-size: 0.86rem; font-weight: 300; line-height: 1.5; }
.dish .price { color: var(--forest); white-space: nowrap; }

@media (min-width: 1000px) {
  .menu-columns {
    max-width: none;
    columns: 2;
    column-gap: clamp(3rem, 5vw, 5rem);
  }
}

.page-hero {
  padding: calc(var(--header) + clamp(2.75rem, 6vw, 4.5rem)) 0 clamp(1.9rem, 4vw, 3rem);
}
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw + 0.55rem, 4.6rem);
  max-width: 17ch;
}
.page-hero .lead { max-width: 38rem; }
.page-hero-btn { margin-top: clamp(1.4rem, 2.6vw, 1.9rem); }
.wrap.wrap-narrow { width: min(54rem, calc(100% - var(--gutter) * 2)); }

.menu-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
}
.menu-pages {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  justify-items: start;
}
.menu-pages img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}
@media (min-width: 900px) {
  .menu-pages.is-spread { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.footer {
  margin-top: auto;
  width: 100%;
  padding: 3.6rem 0 2rem;
  background: var(--forest-deep);
  color: rgba(243, 239, 230, 0.58);
  border-top: 1px solid var(--line-light);
}
.footer-inner { text-align: left; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 34fr) minmax(0, 18fr) minmax(0, 30fr) minmax(0, 18fr);
  column-gap: 1.45rem;
  row-gap: 1.6rem;
  align-items: start;
}
.footer-col,
.footer-brand,
.footer-follow {
  min-width: 0;
}
.footer-ident {
  display: inline-block;
  text-decoration: none;
  filter: invert(1);
}
.footer-logo {
  display: block;
  width: 148px;
  height: auto;
}
.footer-caption {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.58);
}
.footer-caption span { display: block; margin-top: 0.22rem; }
.footer-label {
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.footer-list,
.footer-visit {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list a,
.footer-visit a,
.footer-visit span {
  color: var(--stone);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  transition: color 0.25s var(--ease);
}
.footer-list a:hover,
.footer-list a:focus-visible,
.footer-visit a:hover,
.footer-visit a:focus-visible { color: var(--brass-soft); }
.footer-visit li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  column-gap: 0.85rem;
  align-items: start;
  line-height: 1.5;
  font-size: 1.02rem;
}
.footer-visit svg {
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: 0.32em;
  color: var(--brass-soft);
}
.footer-visit .footer-dir { color: var(--brass-soft); }
.footer-follow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
}
.footer-socials a { color: var(--stone); transition: color 0.25s var(--ease); }
.footer-socials a:hover,
.footer-socials a:focus-visible { color: var(--brass-soft); }
.footer-socials svg { display: block; width: 18px; height: 18px; }
.footer-reviews {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}
.footer-reviews .rating-badge {
  width: 100%;
  border-color: var(--line-light);
  color: var(--stone);
}
.footer-reviews .rating-badge-score { color: var(--stone); font-size: 1.15rem; }
.footer-reviews .rating-badge-copy { color: rgba(243, 239, 230, 0.7); font-size: 0.72rem; }
.footer-reviews .rating-badge-copy span { color: rgba(243, 239, 230, 0.48); }
.footer-reviews .rating-badge:hover,
.footer-reviews .rating-badge:focus-visible { border-color: var(--brass-soft); }
.footer-reviews .rating-badge svg { color: var(--brass-soft); }
.footer-rating {
  margin-top: 0.85rem;
  margin-left: 0;
  width: 182px;
  max-width: 182px;
  line-height: 0;
  overflow: hidden;
  align-self: flex-start;
}
.footer-rating > div {
  width: 100% !important;
  max-width: 100% !important;
}
.footer-rating a,
.footer-rating img {
  display: block;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  opacity: 0.88;
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.7rem 0 0.8rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(243, 239, 230, 0.55);
}
.footer-bar p {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.footer-dot {
  display: inline-block;
  margin: 0 0.7em;
}
.footer-bar a {
  color: inherit;
  text-decoration: none;
}
.footer-bar a:hover,
.footer-bar a:focus-visible { color: var(--brass-soft); }
.footer-made a { font-weight: 500; }
.footer-legal { flex-shrink: 0; }
.heart {
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin: 0 0.16em;
  vertical-align: -0.1em;
  color: var(--brass-soft);
  transform-origin: 50% 55%;
  animation: pulse 2.4s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.08); }
  20% { transform: scale(1); }
  30% { transform: scale(1.05); }
  42%, 100% { transform: scale(1); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .acts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero,
  .split,
  .menu-grid,
  .event { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding: clamp(2.25rem, 6vw, 3rem) var(--gutter) clamp(2.5rem, 6vw, 3.25rem); }
  .page-hero {
    padding: calc(var(--header) + 1.7rem) 0 1.15rem;
  }
  .page-hero h1 { font-size: clamp(2.15rem, 9vw, 2.7rem); }
  .menu-ctas { margin: 1.15rem 0 0; }
  .hero-copy h1 { max-width: 16ch; }
  .hero-media { min-height: 52vh; }
  .split-media img,
  .split-media.is-portrait img { aspect-ratio: 3/2; }
  .event {
    gap: 0.4rem;
    padding: 1.1rem 0;
  }
  .event-go { margin-top: 0.25rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open .header {
    overflow: visible;
    background: var(--stone);
    border-bottom-color: var(--line);
  }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-now));
    height: calc(100dvh - var(--header-now));
    min-height: calc(100svh - var(--header-now));
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.6rem 1.4rem calc(1.6rem + env(safe-area-inset-bottom, 0px));
    background: var(--stone);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav { display: flex; }
  .nav a {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }
  .nav-item.has-sub {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-item.has-sub > a {
    display: flex;
    padding: 0.95rem 0;
    border-bottom: 0;
  }
  .nav-sub,
  .nav-item.has-sub:hover .nav-sub,
  .nav-item.has-sub:focus-within .nav-sub {
    position: static;
    left: auto;
    min-width: 0;
    width: 100%;
    padding: 0 0 0.7rem 0.95rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-sub::before { display: none; }
  .nav-sub a {
    padding: 0.55rem 0;
    border-bottom: 0;
    font-size: 0.8rem;
  }
  .nav-item.has-sub:hover .nav-caret,
  .nav-item.has-sub:focus-within .nav-caret {
    transform: none;
  }
  .nav > a[aria-current="page"]::after,
  .nav-item > a[aria-current="page"]::after { display: none; }
  .nav > .nav-book,
  .nav > .nav-book:hover,
  .nav > .nav-book:focus-visible,
  .header.is-scrolled .nav > .nav-book,
  .header.is-scrolled .nav > .nav-book:hover,
  .header.is-scrolled .nav > .nav-book:focus-visible {
    display: inline-flex;
    align-self: flex-start;
    width: auto;
    max-width: max-content;
    margin-top: 1.6rem;
    padding: 0.85rem 1.45rem;
    border-bottom: 0;
    background: var(--forest);
    color: var(--stone);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }
  .nav > .nav-call {
    display: block;
    margin-top: 1.1rem;
    border-bottom: 0;
    padding: 0;
    color: var(--brass);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .nav > .nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    align-self: flex-start;
    margin-top: 1rem;
    padding: 0;
    border-bottom: 0;
    color: var(--forest);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    transition: color 0.3s var(--ease);
  }
  .nav > .nav-wa:hover,
  .nav > .nav-wa:focus-visible {
    color: var(--brass);
  }
  .nav > .nav-wa .wa-mark {
    width: 1.55rem;
    height: 1.55rem;
    flex-shrink: 0;
  }
  .header-actions { gap: 0.35rem; }
  .header-wa { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }
  body.nav-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .header-cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: calc(var(--header) + 1.5rem) 0 1.6rem; overflow-x: clip; }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem 2.1rem;
  }
  .footer-reviews .rating-badge { white-space: normal; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo { width: 128px; }
  .footer-follow { grid-column: 1 / -1; }
  .footer-rating { width: 156px; max-width: 156px; }
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
    text-align: left;
    margin-top: 1.05rem;
    padding: 0.65rem 0 0.8rem;
  }
}

@media (min-width: 560px) and (max-width: 900px) {
  .plates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .acts { grid-template-columns: 1fr; gap: 1.5rem; }
  .act { padding-top: 1rem; }
  .act h3 { max-width: none; }
  .menu-ctas .btn,
  .hero-copy .actions .btn { flex: 1 1 auto; }
  .section-cta .btn { width: 100%; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .heart { animation: none; }
  .loader-wreath,
  .loader-g,
  .loader-star {
    animation: none;
    opacity: 1;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .loader,
  .loader.is-done .loader-mark { transition-duration: 0.35s; }
  .nav-caret,
  .nav-sub,
  .reserve-arrow,
  .event-go::after,
  .header-wa { transition: none; transform: none; }
}
