:root {
  color-scheme: light;
  --bg: oklch(94.5% 0.035 137);
  --surface: oklch(97% 0.03 91);
  --surface-strong: oklch(86% 0.085 141);
  --text: oklch(22% 0.045 160);
  --muted: oklch(41% 0.045 155);
  --accent: oklch(67% 0.245 142);
  --accent-deep: oklch(43% 0.17 143);
  --accent-light: oklch(87% 0.18 143);
  --accent-ink: oklch(14% 0.03 160);
  --warm: oklch(64% 0.16 69);
  --dark: oklch(19% 0.035 226);
  --line: oklch(76% 0.07 141);
  --danger: #8e2f27;
  --shadow: 0 24px 70px oklch(19% 0.035 226 / 0.19);
  --header-height: 68px;
  --max-width: 1240px;
  --radius-media: 14px;
  --radius-field: 10px;
  --radius-button: 999px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

svg {
  display: block;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-field);
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  --scroll-progress: 0;
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px 18px;
  border-bottom: 1px solid rgb(246 241 232 / 0.13);
  background: oklch(19% 0.035 226 / 0.92);
  color: #f6f1e8;
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition:
    min-height 240ms var(--ease-out),
    background-color 240ms ease,
    border-color 240ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--accent);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  will-change: transform;
}

.site-header.is-scrolled {
  background: oklch(16% 0.035 226 / 0.97);
  border-bottom-color: oklch(67% 0.245 142 / 0.42);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wordmark-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav,
.header-book {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link,
.menu-toggle,
.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(246 241 232 / 0.22);
  border-radius: 50%;
  background: rgb(246 241 232 / 0.08);
  color: #f6f1e8;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.social-link:active,
.menu-toggle:active,
.icon-button:active,
.button:active {
  transform: translateY(1px) scale(0.98);
}

.social-link svg,
.footer-nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.menu-toggle {
  position: relative;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  grid-column: 1 / -1;
  min-height: calc(100dvh - var(--header-height));
  padding: 34px 0 22px;
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 180ms ease,
    transform 260ms var(--ease-drawer);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  margin-bottom: 30px;
}

.mobile-menu nav a {
  padding: 12px 0;
  font-size: clamp(2rem, 11vw, 3.7rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.055em;
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 180ms ease,
    color 180ms ease,
    transform 320ms var(--ease-out);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open nav a:nth-child(2) {
  transition-delay: 35ms;
}

.mobile-menu.is-open nav a:nth-child(3) {
  transition-delay: 70ms;
}

.mobile-menu.is-open nav a:nth-child(4) {
  transition-delay: 105ms;
}

.mobile-menu.is-open nav a:nth-child(5) {
  transition-delay: 140ms;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-button);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 160ms var(--ease-out),
    filter 180ms ease,
    background-color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 34%;
  background: rgb(255 255 255 / 0.34);
  pointer-events: none;
  transform: skewX(-18deg) translateX(-220%);
  transition: transform 460ms var(--ease-out);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-ghost {
  border-color: rgb(246 241 232 / 0.58);
  background: rgb(8 24 17 / 0.36);
  color: #f6f1e8;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  align-items: end;
  isolation: isolate;
  background: var(--dark);
}

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

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 48%;
  transform: translate3d(0, 0, 0) scale(1.045);
  transform-origin: center;
}

.js .hero-image {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.14);
}

.js.is-ready .hero-image {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.045);
  transition:
    opacity 1100ms ease,
    transform 2100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      oklch(16% 0.018 205 / 0.12) 12%,
      oklch(16% 0.018 205 / 0.38) 48%,
      oklch(16% 0.018 205 / 0.9) 100%
    );
}

.hero-content {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 46px) 18px 38px;
  color: #f6f1e8;
}

.hero-eyebrow,
.dialog-kicker {
  margin: 0 0 12px;
  color: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 5.8rem);
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-line {
  display: block;
  overflow: clip;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-line > span {
  display: block;
  transform-origin: left bottom;
}

.hero-copy {
  max-width: 32rem;
  margin: 20px 0 0;
  color: rgb(246 241 232 / 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.js .hero-eyebrow {
  opacity: 0;
  transform: translateY(22px);
}

.js .hero-line > span {
  opacity: 0;
  transform: translateY(115%) rotate(1.2deg);
}

.js .hero-copy,
.js .hero-actions {
  opacity: 0;
  transform: translateY(48px);
}

.js.is-ready .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms var(--ease-out) 120ms,
    transform 760ms var(--ease-out) 120ms;
}

.js.is-ready .hero-line > span {
  opacity: 1;
  transform: translateY(0) rotate(0);
  transition:
    opacity 700ms var(--ease-out),
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js.is-ready .hero-line:first-child > span {
  transition-delay: 300ms;
}

.js.is-ready .hero-line:nth-child(2) > span {
  transition-delay: 520ms;
}

.js.is-ready .hero-copy {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms var(--ease-out) 780ms,
    transform 900ms var(--ease-out) 780ms;
}

.js.is-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms var(--ease-out) 1040ms,
    transform 900ms var(--ease-out) 1040ms;
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 80px 18px;
}

.section h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
}

.about {
  display: grid;
  gap: 34px;
  align-items: center;
}

.about-copy p {
  max-width: 65ch;
  margin: 24px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--text);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.about-image {
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.menu-section {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  background: oklch(92% 0.075 82);
}

.menu-section > * {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

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

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: oklch(97% 0.025 92);
  transform-origin: center bottom;
  transition:
    border-color 220ms ease,
    transform 520ms var(--ease-out);
}

.menu-card-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 680ms var(--ease-out);
}

.menu-card:first-child .menu-card-media img {
  object-position: center 44%;
}

.menu-card:nth-child(2) .menu-card-media img {
  object-position: center 52%;
}

.menu-card:nth-child(3) .menu-card-media img {
  object-position: center 45%;
}

.menu-card-body {
  padding: 24px 20px 22px;
}

.menu-card h3 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.menu-card-body > p {
  min-height: 3.2em;
  margin: 7px 0 20px;
  color: var(--muted);
}

.dish-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.dish-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
}

.dish-list dt,
.dish-list dd {
  margin: 0;
}

.dish-list dt {
  font-weight: 650;
}

.dish-list dd {
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}

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

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-item {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-media);
  background: var(--surface);
  cursor: zoom-in;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(246 241 232 / 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.gallery-item::before {
  content: "View";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%) scale(0.82);
  transition:
    opacity 180ms ease,
    transform 360ms var(--ease-out);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 320ms ease,
    transform 720ms var(--ease-out);
}

.gallery-landscape {
  aspect-ratio: 16 / 9;
}

.gallery-portrait {
  aspect-ratio: 3 / 4;
}

.gallery-item:nth-child(1) img {
  object-position: center 52%;
}

.gallery-item:nth-child(2) img {
  object-position: center 50%;
}

.gallery-item:nth-child(3) img {
  object-position: center 52%;
}

.gallery-item:nth-child(4) img {
  object-position: center 42%;
}

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

.gallery-item:nth-child(6) img {
  object-position: center 48%;
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  background: oklch(89% 0.09 143);
}

.reviews-section > * {
  width: min(calc(100% - 36px), var(--max-width));
  margin-inline: auto;
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: oklch(97% 0.03 137);
  transform-origin: center bottom;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 480ms var(--ease-out);
}

.review:nth-child(1) {
  --review-tilt: -1.2deg;
}

.review:nth-child(2) {
  --review-tilt: 0.6deg;
}

.review:nth-child(3) {
  --review-tilt: -0.7deg;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-strong);
  object-fit: cover;
}

.review-person h3,
.review-person p {
  margin: 0;
}

.review-person h3 {
  font-size: 1rem;
}

.stars {
  color: var(--warm);
  font-size: 0.86rem;
  letter-spacing: 0.07em;
}

.review blockquote {
  margin: 26px 0 0;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.review .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.visit-section {
  display: grid;
  gap: 34px;
  align-items: stretch;
}

.visit-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visit-details address {
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.visit-phone {
  margin-top: 10px;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 720;
  letter-spacing: -0.04em;
}

.hours {
  width: 100%;
  max-width: 520px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hours h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.hours dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.hours dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dd {
  font-variant-numeric: tabular-nums;
}

.visit-note {
  margin: 24px 0;
  color: var(--muted);
}

.map-wrap {
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.site-footer {
  display: grid;
  gap: 38px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 50px max(18px, calc((100% - var(--max-width)) / 2 + 18px)) 36px;
  border-top: 3px solid var(--accent);
  background: var(--dark);
  color: oklch(96% 0.018 110);
}

.footer-brand p {
  max-width: 28rem;
  margin: 18px 0 2px;
  color: oklch(79% 0.035 142);
}

.footer-brand > a:last-child {
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: oklch(96% 0.018 110);
}

dialog {
  color: var(--text);
}

dialog::backdrop {
  background: rgb(4 14 9 / 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-dialog,
.image-dialog,
.lightbox {
  width: min(calc(100% - 24px), 760px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-dialog[open],
.image-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 180ms ease,
    transform 280ms var(--ease-out);
}

.lightbox[open] {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 180ms ease,
    transform 260ms var(--ease-out);
}

dialog[open]::backdrop {
  opacity: 1;
  transition: opacity 220ms ease;
}

@starting-style {
  .booking-dialog[open],
  .image-dialog[open] {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  .lightbox[open] {
    opacity: 0;
    transform: scale(0.97);
  }

  dialog[open]::backdrop {
    opacity: 0;
  }
}

.dialog-shell {
  padding: 24px 18px;
}

.dialog-heading,
.image-dialog-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.dialog-heading h2,
.image-dialog-bar h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.dialog-kicker {
  margin-bottom: 8px;
}

.icon-button {
  flex: 0 0 auto;
  border-color: var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-field);
  background: var(--bg);
  color: var(--text);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px oklch(62.39% 0.208 142.57 / 0.2);
  transform: translateY(-1px);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.9;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 1.2em;
  margin: 0;
  color: var(--danger);
  font-size: 0.82rem;
}

.form-note {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-result {
  padding: 24px 0 10px;
  text-align: center;
}

.booking-result p {
  max-width: 36rem;
  margin: 0 auto 24px;
}

.booking-result .result-title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.text-button {
  margin-top: 18px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  cursor: pointer;
}

.image-dialog {
  width: min(calc(100% - 24px), 1200px);
  background: var(--bg);
}

.image-dialog-shell {
  padding: 16px;
}

.image-dialog-bar {
  align-items: center;
  margin-bottom: 14px;
}

.image-dialog-bar h2 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.image-dialog-shell > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-field);
}

.lightbox {
  width: calc(100% - 20px);
  max-width: 1500px;
  height: calc(100dvh - 20px);
  max-height: none;
  overflow: hidden;
  border: 0;
  background: rgb(6 18 12 / 0.96);
  color: #f6f1e8;
}

.lightbox-shell {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 58px 14px 26px;
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100dvh - 120px);
  object-fit: contain;
  will-change: filter, opacity, transform;
}

.lightbox figcaption {
  align-self: end;
  margin-top: 10px;
  color: rgb(246 241 232 / 0.78);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border-color: rgb(246 241 232 / 0.3);
  background: rgb(246 241 232 / 0.1);
  color: #f6f1e8;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 54px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(246 241 232 / 0.28);
  border-radius: var(--radius-button);
  background: rgb(6 18 12 / 0.72);
  color: #f6f1e8;
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 160ms var(--ease-out);
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

.js .reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 700ms var(--ease-out),
    filter 700ms var(--ease-out),
    transform 840ms var(--ease-out);
}

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

.js .menu-card.reveal,
.js .gallery-item.reveal,
.js .review.reveal,
.js .map-wrap.reveal {
  clip-path: inset(0 0 14% 0 round var(--radius-media));
  filter: none;
  transform: translateY(48px) scale(0.955);
}

.js .menu-card.reveal {
  transition:
    opacity 700ms var(--ease-out),
    clip-path 900ms var(--ease-out),
    border-color 220ms ease,
    transform 900ms var(--ease-out);
}

.js .gallery-item.reveal,
.js .map-wrap.reveal {
  transition:
    opacity 700ms var(--ease-out),
    clip-path 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.js .review.reveal {
  transition:
    opacity 700ms var(--ease-out),
    clip-path 900ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease,
    transform 900ms var(--ease-out);
}

.js .menu-card.reveal.is-visible,
.js .gallery-item.reveal.is-visible,
.js .review.reveal.is-visible,
.js .map-wrap.reveal.is-visible {
  clip-path: inset(0 0 0 0 round var(--radius-media));
  transform: translateY(0) scale(1);
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 10px 28px;
  }

  .desktop-nav {
    display: flex;
    justify-self: center;
    gap: 28px;
    font-size: 0.92rem;
    font-weight: 650;
  }

  .desktop-nav a {
    position: relative;
    padding: 10px 0;
    color: rgb(246 241 232 / 0.82);
    transition: color 180ms ease;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--ease-out);
  }

  .desktop-nav a[aria-current="location"] {
    color: var(--accent-light);
  }

  .desktop-nav a[aria-current="location"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-book {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-content,
  .section,
  .site-footer {
    padding-inline: 32px;
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .about {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(48px, 8vw, 110px);
  }

  .about-image {
    transform: translateY(36px);
  }

  .menu-section > *,
  .reviews-section > * {
    width: min(calc(100% - 64px), var(--max-width));
  }

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

  .menu-card-body {
    padding: 22px 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }

  .visit-section {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(38px, 7vw, 96px);
  }

  .dialog-shell {
    padding: 34px;
  }
}

@media (min-width: 1080px) {
  .header-actions {
    gap: 12px;
  }

  .hero-image {
    object-position: center 46%;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .menu-grid {
    gap: 22px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover,
  .menu-toggle:hover,
  .icon-button:hover {
    border-color: var(--accent);
    background: oklch(62.39% 0.208 142.57 / 0.16);
    transform: translateY(-2px) scale(1.04);
  }

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

  .button:hover::before {
    transform: skewX(-18deg) translateX(520%);
  }

  .button:active,
  .social-link:active,
  .menu-toggle:active,
  .icon-button:active {
    transform: translateY(1px) scale(0.965);
  }

  .text-link:hover,
  .footer-nav a:hover {
    color: var(--accent-deep);
  }

  .desktop-nav a:hover {
    color: var(--accent-light);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .menu-card:hover,
  .js .menu-card.reveal.is-visible:hover {
    border-color: oklch(62.39% 0.208 142.57 / 0.72);
    transform: translateY(-12px) rotateX(2deg) scale(1.012);
  }

  .menu-card:hover .menu-card-media img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.075);
  }

  .gallery-item:hover,
  .js .gallery-item.reveal.is-visible:hover {
    transform: translateY(-6px) scale(1.018);
  }

  .gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .gallery-item:hover img {
    filter: brightness(0.72) saturate(1.08);
    transform: scale(1.085) rotate(0.4deg);
  }

  .review:hover,
  .js .review.reveal.is-visible:hover {
    border-color: oklch(62.39% 0.208 142.57 / 0.68);
    background: var(--surface);
    transform: translateY(-10px) rotate(var(--review-tilt)) scale(1.012);
  }

  .lightbox-arrow:hover {
    border-color: var(--accent);
    background: oklch(62.39% 0.208 142.57 / 0.2);
    transform: translateY(-50%) scale(1.08);
  }

  .lightbox-arrow:active {
    transform: translateY(-50%) scale(0.94);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }

  .js .hero-eyebrow,
  .js .hero-line > span,
  .js .hero-copy,
  .js .hero-actions {
    opacity: 1;
    filter: none;
    transform: none;
    transition-delay: 0ms !important;
  }

  .hero-image {
    transform: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .button-ghost,
  dialog::backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header {
    background: var(--dark);
  }
}
