:root {
  color-scheme: dark;
  --bg: oklch(16% 0.06 315);
  --surface: oklch(21% 0.075 318);
  --surface-strong: oklch(28% 0.09 320);
  --text: oklch(96% 0.022 80);
  --muted: oklch(86% 0.035 74);
  --faint: oklch(76% 0.06 340);
  --line: oklch(96% 0.022 80 / 0.18);
  --accent: oklch(58% 0.22 28);
  --accent-hover: oklch(47% 0.2 27);
  --accent-text: oklch(98% 0.012 80);
  --paper: oklch(92% 0.045 78);
  --paper-muted: oklch(35% 0.04 42);
  --ink: oklch(18% 0.055 315);
  --focus: oklch(82% 0.15 78);
  --header-height: 72px;
  --page-gutter: clamp(1rem, 4vw, 3rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --display: "Arial Black", Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --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);
  --motion-fast: 160ms;
  --motion-ui: 220ms;
  --motion-showcase: 620ms;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--accent);
  color: var(--accent-text);
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--motion-ui) var(--ease-out);
}

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

.section-shell {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.6rem var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: oklch(20% 0.07 318 / 0.9);
  color: var(--text);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  transition:
    background-color var(--motion-ui) ease,
    border-color var(--motion-ui) ease,
    box-shadow var(--motion-ui) ease;
}

.site-header.is-scrolled {
  border-bottom-color: oklch(96% 0.022 80 / 0.28);
  background: oklch(18% 0.07 318 / 0.97);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  min-width: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-link img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  inset: auto 0 -0.35rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  content: "";
  transition: transform var(--motion-ui) var(--ease-out);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  color: inherit;
  transition:
    background-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-book {
  min-height: 44px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-text);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  transition:
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
  white-space: nowrap;
}

.header-book:active,
.button:active,
.social-link:active {
  transform: translateY(1px) scale(0.97);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform var(--motion-ui) var(--ease-drawer);
}

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

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  z-index: 25;
  padding: 1.5rem var(--page-gutter) 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scaleY(0.97);
  transform-origin: top;
  transition:
    opacity var(--motion-ui) ease,
    transform var(--motion-ui) var(--ease-drawer);
}

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

.mobile-menu nav {
  display: grid;
  margin-bottom: 1.25rem;
}

.mobile-menu nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity var(--motion-fast) ease,
    transform var(--motion-ui) 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: 40ms;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #171513;
  color: #f5f2ea;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/images/hero-storefront.webp");
  background-position: center center;
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.045);
  transform-origin: center;
  will-change: transform;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 15%, rgba(0, 0, 0, 0.46) 88%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.04) 72%);
}

.hero-content {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: calc(var(--header-height) + 2rem) var(--page-gutter) clamp(3rem, 9vh, 6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff9b88;
}

.hero h1 {
  max-width: 7ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 12vw, 9.5rem);
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 540px;
  margin: 1.5rem 0 0;
  color: #f5f2ea;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.42;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0.95rem 1.25rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
  white-space: nowrap;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-text);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(15, 14, 13, 0.33);
  color: #f5f2ea;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: flex;
  min-height: 120px;
  align-items: baseline;
  gap: 0.85rem;
  padding: 2rem var(--page-gutter);
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.85;
}

.proof-strip span {
  max-width: 10ch;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding-block: var(--section-space);
}

.about-copy h2,
.section-heading h2,
.gallery-heading h2,
.reviews-heading h2,
.visit-panel h2,
.booking-dialog h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 65ch;
  margin: 2rem 0 1.5rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.text-link {
  display: inline-block;
  border-bottom: 2px solid var(--accent);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  padding-bottom: 0.2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color var(--motion-fast) ease,
    letter-spacing var(--motion-ui) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.about-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.about-photo::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: -1;
  border: 2px solid var(--accent);
  content: "";
  transition: transform 420ms var(--ease-out);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 700ms var(--ease-out);
}

.menu-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--surface);
  isolation: isolate;
}

.menu-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("assets/images/street-print-texture.webp");
  background-position: center;
  background-size: cover;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.14;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading p,
.gallery-heading p {
  max-width: 40ch;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.menu-column {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 5px solid var(--accent);
  background: var(--paper);
  color: var(--ink);
  transform-origin: center bottom;
  transition:
    transform 360ms var(--ease-out),
    box-shadow 360ms ease;
}

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

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.menu-column:nth-child(1) .menu-image img {
  object-position: 50% 54%;
}

.menu-column:nth-child(2) .menu-image img {
  object-position: 50% 48%;
}

.menu-column:nth-child(3) .menu-image img {
  object-position: 50% 45%;
}

.menu-column-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.menu-column h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  min-height: 1.9em;
}

.menu-column-body > p {
  min-height: 3.2em;
  margin: 0.85rem 0 1.35rem;
  color: var(--paper-muted);
  font-size: 0.94rem;
}

.dish-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dish-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(21, 20, 18, 0.2);
  font-size: 0.88rem;
  font-weight: 700;
}

.dish-list strong {
  color: var(--accent-hover);
  white-space: nowrap;
}

.dish-list .price-pending {
  color: var(--paper-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: right;
}

.menu-cta {
  width: min(100%, 1280px);
  margin: 4.5rem auto 0;
  padding-inline: var(--page-gutter);
  text-align: right;
}

.gallery-section {
  padding-block: var(--section-space);
}

.gallery-heading {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 0;
  background: var(--surface);
  cursor: zoom-in;
  padding: 0;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 0 solid var(--accent);
  content: "";
  pointer-events: none;
  transition: border-width var(--motion-ui) var(--ease-out);
}

.gallery-item:focus-visible::after {
  border-width: 6px;
}

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

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

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

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

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

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

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

.reviews-section {
  padding-block: var(--section-space);
  background: var(--surface);
}

.reviews-heading {
  margin-bottom: 3rem;
}

.reviews-heading .eyebrow {
  color: var(--accent);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1.25rem;
}

.review {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--bg);
  transition:
    border-color var(--motion-ui) ease,
    transform 360ms var(--ease-out);
}

.review-featured {
  min-height: 520px;
  background:
    linear-gradient(rgba(20, 19, 17, 0.88), rgba(20, 19, 17, 0.92)),
    url("assets/images/street-print-texture.webp") center / cover;
  color: #f5f2ea;
}

.review-stack {
  display: grid;
  gap: 1.25rem;
}

.review-rating {
  color: #f05a3d;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 2rem 0;
  font-size: clamp(1.25rem, 2.5vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.review-stack blockquote {
  font-size: 1.08rem;
  line-height: 1.45;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-author img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.review-author div {
  display: grid;
}

.review-author strong {
  line-height: 1.2;
}

.review-author a {
  color: var(--muted);
  font-size: 0.76rem;
}

.review-featured .review-author a {
  color: #d8d1c6;
}

.review-note {
  max-width: 70ch;
  margin: 1.5rem 0 0;
  color: var(--faint);
  font-size: 0.78rem;
}

.hygiene-section {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4.75rem);
  align-items: center;
  padding-block: clamp(3.75rem, 6vw, 5.5rem);
}

.hygiene-mark {
  display: grid;
  place-items: center;
  padding: 0;
}

.hygiene-mark img {
  width: min(100%, 420px);
  height: auto;
  transition: transform 520ms var(--ease-out);
}

.hygiene-content {
  max-width: 40rem;
}

.hygiene-section h2 {
  max-width: none;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 9vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hygiene-section h2 span {
  display: block;
  white-space: nowrap;
}

.hygiene-section p {
  max-width: 52ch;
  margin: 1.1rem 0 1.25rem;
  color: var(--muted);
}

.visit-section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  isolation: isolate;
}

.visit-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(16, 15, 14, 0.78), rgba(16, 15, 14, 0.9)),
    url("assets/images/storefront-night.webp");
  background-position: center;
  background-size: cover;
}

.visit-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: stretch;
}

.visit-panel,
.map-wrap {
  background: rgba(20, 19, 17, 0.93);
  color: #f5f2ea;
}

.visit-panel {
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.visit-panel h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.visit-panel address {
  margin: 1.8rem 0;
  color: #d8d1c6;
  font-size: 1rem;
  font-style: normal;
}

.hours {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.hours div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

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

.hours dt {
  color: #d8d1c6;
}

.hours dd {
  font-weight: 800;
  text-align: right;
}

.visit-panel .button-secondary {
  border-color: #f5f2ea;
  color: #f5f2ea;
}

.map-wrap {
  min-height: 620px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: saturate(0.86) contrast(1.03);
}

.site-footer {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  gap: 1.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.78rem;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-ui) ease;
}

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

.modal[hidden],
.lightbox[hidden] {
  display: none;
}

.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 7, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--motion-ui) ease;
}

.modal.is-open .modal-backdrop,
.lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  padding: clamp(1.5rem, 5vw, 3.2rem);
  border: 1px solid rgba(245, 242, 234, 0.22);
  background:
    linear-gradient(rgba(29, 27, 24, 0.96), rgba(29, 27, 24, 0.96)),
    url("assets/images/street-print-texture.webp") center / cover;
  color: #f5f2ea;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transform-origin: center;
  transition:
    opacity var(--motion-ui) ease,
    transform 320ms var(--ease-out);
}

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

.booking-dialog .eyebrow {
  color: #ff9b88;
}

.booking-dialog h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.booking-intro {
  max-width: 50ch;
  margin: 1rem 0 2rem;
  color: #d8d1c6;
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition:
    background-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
}

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

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label {
  color: #f5f2ea;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(245, 242, 234, 0.45);
  border-radius: 0;
  background: #131210;
  color: #f5f2ea;
  padding: 0.75rem;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #aaa399;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #ff9b88;
  outline: 2px solid transparent;
  box-shadow: 0 0 0 2px #ff9b88;
}

.field [aria-invalid="true"] {
  border-color: #ff8a78;
}

.field-error {
  min-height: 1.25em;
  color: #ffac9f;
  font-size: 0.77rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.booking-status {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-left: 5px solid var(--accent);
  background: #131210;
}

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

.booking-status h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.booking-status p {
  color: #d8d1c6;
}

.text-button {
  margin-left: 1rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #f5f2ea;
  cursor: pointer;
  padding: 0.4rem 0;
}

.lightbox {
  padding: 0;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100dvh;
  place-items: center;
  color: #f5f2ea;
  opacity: 0;
  transform: scale(0.975);
  transform-origin: center;
  transition:
    opacity var(--motion-ui) ease,
    transform 320ms var(--ease-out);
}

.lightbox.is-open .lightbox-dialog {
  opacity: 1;
  transform: scale(1);
}

.lightbox-dialog figure {
  display: grid;
  max-width: min(88vw, 1180px);
  max-height: 88dvh;
  justify-items: center;
  margin: 0;
}

.lightbox-dialog figure img {
  max-width: 100%;
  max-height: calc(88dvh - 3rem);
  object-fit: contain;
}

.lightbox-dialog figcaption {
  max-width: 70ch;
  margin-top: 0.7rem;
  color: #d8d1c6;
  font-size: 0.82rem;
  text-align: center;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 64px;
  transform: translateY(-50%);
  border: 1px solid rgba(245, 242, 234, 0.7);
  background: rgba(20, 19, 17, 0.72);
  color: #f5f2ea;
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 1;
  transition:
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-out);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.menu-toggle:active,
.modal-close:active,
.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.94);
}

.gallery-item:active {
  transform: scale(0.985);
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.975);
  transition:
    opacity var(--motion-showcase) var(--ease-out),
    transform var(--motion-showcase) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after,
  .site-footer nav a:hover::after {
    transform: scaleX(1);
  }

  .social-link:hover {
    background: var(--accent);
    color: var(--accent-text);
    transform: translateY(-3px) rotate(-2deg);
  }

  .header-book:hover,
  .button-primary:hover {
    border-color: var(--accent-hover);
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
  }

  .menu-toggle:hover,
  .modal-close:hover,
  .lightbox-close:hover {
    background: var(--accent);
    color: var(--accent-text);
    transform: rotate(3deg);
  }

  .button-ghost:hover {
    background: #f5f2ea;
    color: #171513;
    transform: translateY(-3px) scale(1.02);
  }

  .button-secondary:hover {
    background: var(--text);
    color: var(--bg);
    transform: translateY(-3px) scale(1.02);
  }

  .text-link:hover {
    color: var(--accent);
    letter-spacing: 0.1em;
    transform: translateX(4px);
  }

  .about-photo:hover::before {
    transform: translate(0.4rem, 0.4rem) rotate(1deg);
  }

  .about-photo:hover img {
    transform: scale(1.045);
  }

  .menu-column:hover {
    transform: translateY(-12px) rotate(var(--card-tilt, -0.4deg));
    box-shadow: 0 14px 0 rgba(0, 0, 0, 0.22);
  }

  .menu-column:nth-child(even) {
    --card-tilt: 0.4deg;
  }

  .menu-column:hover .menu-image img {
    transform: scale(1.075);
  }

  .gallery-item:hover::after,
  .gallery-item:focus-visible::after {
    border-width: 6px;
  }

  .gallery-item:hover img {
    transform: scale(1.08) rotate(0.65deg);
  }

  .review:hover {
    border-color: oklch(58% 0.22 28 / 0.72);
    transform: translateY(-7px);
  }

  .hygiene-mark:hover img {
    transform: scale(1.055) rotate(-1deg);
  }

  .visit-panel .button-secondary:hover {
    background: #f5f2ea;
    color: #171513;
  }

  .lightbox-nav:hover {
    background: var(--accent);
  }
}

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

  .site-header {
    background: #171513;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    animation: hero-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-content > :nth-child(2) {
    animation-delay: 80ms;
  }

  .hero-content > :nth-child(3) {
    animation-delay: 150ms;
  }

  .hero-content > :nth-child(4) {
    animation-delay: 220ms;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-book {
    display: none;
  }

  .about {
    grid-template-columns: 1fr minmax(280px, 0.75fr);
    gap: 3rem;
  }

  .menu-column-body {
    padding: 1.15rem;
  }

  .menu-column h3 {
    font-size: 2rem;
  }

  .menu-column-body > p {
    min-height: 4.6em;
  }

  .reviews-layout,
  .visit-content {
    grid-template-columns: 1fr;
  }

  .review-featured {
    min-height: 420px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --page-gutter: 1rem;
    --section-space: 4.5rem;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 0.45rem;
  }

  .brand-link {
    gap: 0.55rem;
    font-size: 1rem;
  }

  .brand-link img {
    width: 44px;
    height: 44px;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-actions .social-link {
    display: none;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-media {
    background-position: 50% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 12%, rgba(0, 0, 0, 0.56) 86%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.04));
  }

  .hero-content {
    padding-bottom: 2rem;
  }

  .hero h1 {
    max-width: 6ch;
    font-size: clamp(4.2rem, 18vw, 5.9rem);
    line-height: 0.8;
  }

  .hero-copy {
    max-width: 22rem;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 0.75rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding-inline: var(--page-gutter);
  }

  .proof-strip div {
    min-height: 0;
    padding: 1.25rem 0;
  }

  .proof-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-strip strong {
    min-width: 2ch;
    font-size: 2.7rem;
  }

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

  .about-copy h2,
  .section-heading h2,
  .gallery-heading h2,
  .reviews-heading h2,
  .visit-panel h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .about-copy p {
    font-size: 0.98rem;
  }

  .about-photo {
    width: calc(100% - 1rem);
    justify-self: start;
  }

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

  .menu-column h3 {
    min-height: auto;
  }

  .menu-column-body > p {
    min-height: auto;
  }

  .menu-cta {
    margin-top: 2rem;
    text-align: left;
  }

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

  .gallery-item {
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .reviews-layout {
    gap: 0.85rem;
  }

  .review-featured {
    min-height: 460px;
  }

  .review-stack {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .review {
    padding: 1.35rem;
  }

  .review blockquote,
  .review-stack blockquote {
    font-size: 1.16rem;
  }

  .hygiene-section {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    justify-items: start;
    padding-block: 3.75rem;
  }

  .hygiene-mark {
    width: min(100%, 24rem);
  }

  .hygiene-mark img {
    width: min(100%, 380px);
  }

  .hygiene-section h2 {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .visit-panel {
    padding: 1.35rem;
  }

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

  .visit-actions .button {
    width: 100%;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .modal {
    padding: 0;
  }

  .booking-dialog {
    width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    padding: 4.5rem 1rem 2rem;
  }

  .booking-dialog h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-status .button {
    width: 100%;
  }

  .text-button {
    display: block;
    margin: 0.8rem auto 0;
  }

  .lightbox-dialog figure {
    max-width: 94vw;
    max-height: 82dvh;
  }

  .lightbox-dialog figure img {
    max-height: calc(82dvh - 3rem);
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 4.2rem;
  }

  .button {
    font-size: 0.76rem;
  }

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

  .footer-main .social-link {
    justify-self: start;
  }
}

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

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

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

  .hero-media {
    transform: scale(1.025) !important;
  }
}
