:root {
  color-scheme: light dark;
  --page: #f8f8f4;
  --surface: #ffffff;
  --surface-soft: #efefe8;
  --ink: #1a1b18;
  --muted: #5d5f57;
  --line: #c8c9bf;
  --accent: #f0c94b;
  --accent-ink: #1b1c18;
  --dark: #171816;
  --dark-ink: #f7f7f0;
  --danger: #a73624;
  --header-bg: rgb(19 20 17 / 0.86);
  --radius: 0.25rem;
  --content: 75rem;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section-space: clamp(5rem, 11vw, 9rem);
  --shadow: 0 1.5rem 4rem rgb(22 24 18 / 0.16);
  --font-body: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
  --text-display: clamp(3.15rem, calc(6vw + 0.5rem), 6rem);
  --text-heading: clamp(2.25rem, calc(3.5vw + 0.5rem), 4.25rem);
  --text-subheading: clamp(1.5rem, calc(1.6vw + 0.5rem), 2rem);
  --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);
  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #151612;
    --surface: #1d1e1a;
    --surface-soft: #24261f;
    --ink: #f0f0e9;
    --muted: #b9bbae;
    --line: #42453b;
    --accent: #e9c64c;
    --accent-ink: #171816;
    --danger: #ff917a;
    --header-bg: rgb(17 18 15 / 0.9);
    --shadow: 0 1.5rem 4rem rgb(0 0 0 / 0.34);
  }
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

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

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-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

address {
  font-style: normal;
}

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

h1,
h2,
h3,
.wordmark,
.hero-name,
.footer-wordmark {
  font-family: var(--font-display);
}

h1,
h2,
h3 {
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: var(--text-display);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: var(--text-heading);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: var(--text-subheading);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent);
  will-change: transform;
}

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

.section-heading {
  display: grid;
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  gap: 0.9rem;
}

.section-heading h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.section-kicker,
.dialog-kicker {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 150ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 220ms var(--ease-out);
}

.button:active {
  transform: translateY(1px) scale(0.965);
}

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

.button-primary:hover {
  background: #f6d967;
}

.button-ghost {
  border-color: rgb(255 255 255 / 0.74);
  background: rgb(18 18 15 / 0.42);
  color: #ffffff;
  backdrop-filter: blur(0.5rem);
}

.button-ghost:hover {
  background: rgb(18 18 15 / 0.72);
}

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

.button-dark:hover {
  background: #2b2d27;
}

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

.button-outline:hover {
  background: var(--ink);
  color: var(--page);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--gutter);
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  background: var(--header-bg);
  color: #ffffff;
  backdrop-filter: blur(1rem) saturate(135%);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: rgb(255 255 255 / 0.22);
  background: rgb(19 20 17 / 0.95);
  box-shadow: 0 0.75rem 2.5rem rgb(0 0 0 / 0.2);
}

.wordmark {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

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

.header-book,
.menu-toggle {
  min-height: 2.75rem;
  border: 0;
  border-radius: var(--radius);
  font-weight: 720;
  cursor: pointer;
}

.header-book {
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: var(--accent-ink);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  background: transparent;
  color: #ffffff;
}

.menu-toggle-lines {
  display: grid;
  width: 1.3rem;
  gap: 0.33rem;
}

.menu-toggle-lines span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(5rem, 10vw, 8rem) var(--gutter) 2rem;
  translate: 100% 0;
  background: var(--dark);
  color: var(--dark-ink);
  visibility: hidden;
  transition:
    translate 480ms var(--ease-drawer),
    visibility 480ms;
}

.site-menu.is-open {
  translate: 0 0;
  visibility: visible;
}

.site-menu-inner {
  display: grid;
  align-content: center;
  gap: clamp(0.35rem, 1.5vh, 0.9rem);
}

.site-menu-inner a,
.site-menu-inner button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: inherit;
  font-family:
    var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-decoration: none;
  cursor: pointer;
  transform: translateX(2.25rem);
  opacity: 0;
  transition:
    transform 420ms var(--ease-out),
    opacity 300ms var(--ease-out),
    color 160ms ease;
}

.site-menu.is-open .site-menu-inner a,
.site-menu.is-open .site-menu-inner button {
  transform: translateX(0);
  opacity: 1;
}

.site-menu.is-open .site-menu-inner > :nth-child(1) {
  transition-delay: 90ms;
}

.site-menu.is-open .site-menu-inner > :nth-child(2) {
  transition-delay: 135ms;
}

.site-menu.is-open .site-menu-inner > :nth-child(3) {
  transition-delay: 180ms;
}

.site-menu.is-open .site-menu-inner > :nth-child(4) {
  transition-delay: 225ms;
}

.site-menu.is-open .site-menu-inner > :nth-child(5) {
  transition-delay: 270ms;
}

.site-menu.is-open .site-menu-inner > :nth-child(6) {
  transition-delay: 315ms;
}

.site-menu-inner a:hover,
.site-menu-inner button:hover {
  color: var(--accent);
}

.site-menu > p {
  margin: 0;
  color: #b8baaf;
}

.menu-close,
.dialog-header > button,
.lightbox-close {
  position: absolute;
  top: 1.15rem;
  right: var(--gutter);
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-close span,
.dialog-header > button span,
.lightbox-close span {
  position: absolute;
  width: 1.35rem;
  height: 1px;
  background: currentColor;
}

.menu-close span:first-child,
.dialog-header > button span:first-child,
.lightbox-close span:first-child {
  rotate: 45deg;
}

.menu-close span:last-child,
.dialog-header > button span:last-child,
.lightbox-close span:last-child {
  rotate: -45deg;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
  margin: 0;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(180deg, rgb(8 9 7 / 0.22) 0%, rgb(8 9 7 / 0.16) 32%, rgb(8 9 7 / 0.84) 100%),
    linear-gradient(90deg, rgb(8 9 7 / 0.56), transparent 70%);
}

.hero-content {
  display: grid;
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: 7rem var(--gutter) clamp(2.2rem, 7vw, 5rem);
  gap: 1.5rem;
}

.hero-title-block h1 {
  margin-bottom: 0;
}

.hero-name {
  margin-bottom: 1.15rem;
  color: var(--accent);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-copy {
  max-width: 32rem;
  margin-bottom: 1.4rem;
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

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

.hero-fact {
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.motion-ready .site-header {
  animation: header-drop 700ms var(--ease-out) both;
}

.motion-ready .hero-media img {
  animation: hero-settle 1800ms var(--ease-out) both;
}

.motion-ready .hero-title-block {
  animation: hero-copy-in 900ms 120ms var(--ease-out) both;
}

.motion-ready .hero-aside {
  animation: hero-copy-in 900ms 260ms var(--ease-out) both;
}

@keyframes header-drop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hero-settle {
  from {
    transform: scale(1.1);
    filter: saturate(0.72) blur(3px);
  }

  to {
    transform: scale(1);
    filter: saturate(1) blur(0);
  }
}

@keyframes hero-copy-in {
  from {
    transform: translateY(2.5rem);
    opacity: 0;
    filter: blur(5px);
  }

  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

.story {
  display: grid;
  width: min(100%, calc(var(--content) + 2 * var(--gutter)));
  align-items: center;
  padding-block: clamp(5.5rem, 12vw, 10rem);
  gap: clamp(2rem, 7vw, 6rem);
}

.story-copy {
  display: grid;
  max-width: 42rem;
}

.story-copy h2 {
  max-width: 15ch;
}

.story-body {
  display: grid;
  gap: 1rem;
}

.story-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
}

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

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  transition: transform 900ms var(--ease-out);
}

.menu-preview {
  width: 100%;
  max-width: none;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--surface-soft);
}

.menu-preview > * {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.menu-layout {
  display: grid;
  gap: 3rem;
}

.menu-intro {
  align-self: start;
}

.menu-intro h2 {
  max-width: 10ch;
}

.menu-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin: 2rem 0 0.5rem;
  font-size: 1.05rem;
}

.menu-price strong {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.menu-price span,
.menu-note,
.allergy-note {
  color: var(--muted);
}

.menu-note {
  max-width: 27rem;
  margin-bottom: 1.5rem;
}

.allergy-note {
  max-width: 27rem;
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.5;
}

.menu-editorial {
  display: grid;
  gap: 1.25rem;
}

.menu-card {
  min-width: 0;
}

.menu-card figure {
  aspect-ratio: 4 / 3;
  margin: 0 0 1.4rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

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

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

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

.menu-card:nth-child(3) img {
  object-position: 50% 51%;
}

.menu-card h3 {
  font-size: var(--text-subheading);
}

.menu-card p {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
}

.text-link span {
  transition: transform 180ms ease;
}

.gallery {
  display: grid;
  width: min(100%, calc(var(--content) + 2 * var(--gutter)));
  padding-block: clamp(5rem, 11vw, 9rem);
  gap: 2.5rem;
}

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

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

.gallery-item::after {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: var(--radius);
  background: rgb(17 18 15 / 0.54);
  color: #ffffff;
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.gallery-item:focus-visible::after {
  transform: translateY(-0.15rem);
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

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

.reviews {
  width: 100%;
  max-width: none;
  padding-block: clamp(5rem, 11vw, 9rem);
  background: var(--dark);
  color: var(--dark-ink);
}

.reviews-layout {
  width: min(100%, var(--content));
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}

.reviews-intro h2 {
  max-width: 11ch;
}

.reviews-intro > p:not(.section-kicker) {
  max-width: 25rem;
  color: #bdbfb4;
}

.reviews .section-heading p,
.reviews-intro p {
  color: #bdbfb4;
}

.review-grid {
  display: grid;
  gap: 2rem;
}

.review {
  display: grid;
  align-content: start;
  padding-top: 1.5rem;
  border-top: 1px solid #4b4d45;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-top img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  background: #32342e;
  transition: transform 240ms var(--ease-out);
}

.review-author,
.review-stars {
  margin: 0;
}

.review-author {
  font-weight: 800;
}

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

.review blockquote {
  margin: 1.5rem 0 1.4rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
  transition: transform 300ms var(--ease-out);
}

.review > a,
.google-attribution {
  width: fit-content;
  color: #d7d8d0;
  font-size: 0.9rem;
}

.google-attribution {
  display: inline-block;
  margin-top: 1.5rem;
}

.visit {
  width: 100%;
  max-width: none;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.visit-layout {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.visit-layout {
  display: grid;
  gap: 3rem;
}

.visit-copy h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 3vw, 2.9rem);
  line-height: 1.04;
}

.visit-copy address {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.5;
}

.visit-copy {
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.visit-copy .section-kicker {
  margin: 0;
}

.hours {
  display: grid;
  max-width: 31rem;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hours h3 {
  grid-column: 1 / -1;
  margin-bottom: 0.15rem;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0;
}

.hours p {
  margin: 0;
  color: var(--muted);
}

.visit-actions {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

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

.visit-directions {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 1px;
  transition: color 160ms ease;
}

.visit-directions span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 180ms ease;
}

.hygiene {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  border-radius: var(--radius);
}

.hygiene img {
  width: min(36%, 8rem);
}

.hygiene p {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 800;
}

.hygiene span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.hygiene a {
  font-size: 0.9rem;
}

.map-wrap {
  width: 100%;
  height: clamp(24rem, 55vw, 39rem);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 1.25rem;
  background: var(--dark);
  color: var(--dark-ink);
}

.footer-layout {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.footer-top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #3c3e37;
}

.footer-brand {
  display: grid;
  gap: 1.25rem;
}

.footer-wordmark {
  margin: 0;
  color: var(--accent);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.footer-address {
  margin: 0;
  color: #c3c5bb;
}

.footer-actions {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-book {
  width: 100%;
}

.footer-map {
  width: fit-content;
  color: #d7d8d0;
  font-weight: 760;
}

.footer-map span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 180ms ease;
}

.footer-layout nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  padding-top: 1.5rem;
}

.footer-layout nav a {
  width: fit-content;
  color: inherit;
  font-weight: 760;
  transition:
    transform 180ms var(--ease-out),
    color 160ms ease;
}

.copyright {
  width: min(100%, var(--content));
  margin: 1.5rem auto 0;
  color: #9fa197;
  font-size: 0.85rem;
}

dialog {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

dialog::backdrop {
  background: rgb(9 10 8 / 0.78);
  backdrop-filter: blur(0.3rem);
}

.reservation-dialog {
  width: min(100% - 1rem, 54rem);
  margin: auto;
}

.dialog-shell {
  position: relative;
  max-height: min(92dvh, 60rem);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.reservation-dialog[open] .dialog-shell {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition:
    transform 420ms var(--ease-drawer),
    opacity 240ms var(--ease-out);
}

@starting-style {
  .reservation-dialog[open] .dialog-shell {
    transform: translateY(1.75rem) scale(0.97);
    opacity: 0;
  }
}

.dialog-header {
  margin-bottom: 2rem;
  padding-right: 3.5rem;
}

.dialog-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.dialog-header > button {
  top: 1.25rem;
  right: 1.25rem;
}

.dialog-kicker {
  margin-bottom: 0.5rem;
}

.reservation-form {
  display: grid;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  color: var(--ink);
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 88%, transparent);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 3px solid color-mix(in srgb, var(--accent) 72%, transparent);
  outline-offset: 1px;
}

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

.field-hint,
.field-error {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.form-submit {
  width: 100%;
}

.reservation-status {
  padding: 1.25rem 0 0;
}

.reservation-status .status-title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
}

.reservation-status > p:not(.status-title) {
  max-width: 38rem;
  color: var(--muted);
}

.reservation-status .button {
  margin: 1rem 0;
}

.reservation-status .text-link {
  display: flex;
}

.lightbox {
  width: 100%;
  height: 100%;
}

.lightbox-shell {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 4.8rem 0.75rem 1rem;
  background: rgb(10 11 9 / 0.96);
  color: #ffffff;
}

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

@starting-style {
  .lightbox[open] .lightbox-shell {
    transform: scale(0.975);
    opacity: 0;
  }
}

.lightbox figure {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: center;
  margin: 0;
  overflow: hidden;
}

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

.lightbox figcaption {
  max-width: 50rem;
  margin-top: 0.8rem;
  color: #d3d5cb;
  font-size: 0.88rem;
  text-align: center;
}

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

.lightbox-arrow {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid #767970;
  border-radius: var(--radius);
  background: #20211d;
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    border-color 160ms ease,
    background-color 160ms ease;
}

.lightbox-arrow:active,
.menu-close:active,
.dialog-header > button:active,
.lightbox-close:active,
.menu-toggle:active,
.header-book:active {
  transform: scale(0.94);
}

.lightbox-arrow[hidden] {
  display: none;
}

.reveal-ready .reveal {
  transform: translateY(2.25rem) scale(0.985);
  opacity: 0;
  filter: blur(4px);
  transition:
    transform 780ms var(--ease-out) var(--reveal-delay, 0ms),
    opacity 520ms var(--ease-out) var(--reveal-delay, 0ms),
    filter 620ms var(--ease-out) var(--reveal-delay, 0ms);
}

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

.reveal-ready .story-image.reveal,
.reveal-ready .gallery-item.reveal,
.reveal-ready .map-wrap.reveal {
  clip-path: inset(0 0 18% 0);
  transition:
    transform 900ms var(--ease-out) var(--reveal-delay, 0ms),
    opacity 520ms var(--ease-out) var(--reveal-delay, 0ms),
    filter 620ms var(--ease-out) var(--reveal-delay, 0ms),
    clip-path 1050ms var(--ease-in-out) var(--reveal-delay, 0ms);
}

.reveal-ready .story-image.reveal.is-visible,
.reveal-ready .gallery-item.reveal.is-visible,
.reveal-ready .map-wrap.reveal.is-visible {
  clip-path: inset(0);
}

@media (min-width: 40rem) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .footer-actions {
    justify-items: end;
  }

  .footer-book {
    width: auto;
  }

  .footer-layout nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  .hero-media img {
    object-position: 50% 51%;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.72fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
  }

  .hero-aside {
    padding-bottom: 0.35rem;
  }

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

  .story-copy {
    grid-column: 1 / span 4;
  }

  .story-image {
    grid-column: 6 / -1;
  }

  .menu-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 2rem;
  }

  .menu-intro {
    position: sticky;
    top: 7rem;
    grid-column: 1 / span 4;
  }

  .menu-editorial {
    grid-column: 6 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }

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

  .gallery .section-heading {
    position: sticky;
    top: 7rem;
    grid-column: 1 / span 4;
    margin: 0;
  }

  .gallery-grid {
    grid-column: 6 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .reviews-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 2rem;
  }

  .reviews-intro {
    position: sticky;
    top: 7rem;
    grid-column: 1 / span 4;
  }

  .review-grid {
    grid-column: 6 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .visit-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 1.5rem 2rem;
  }

  .map-wrap {
    grid-column: 6 / -1;
    grid-row: 1 / span 2;
    height: 100%;
    min-height: 40rem;
  }

  .visit-copy {
    grid-column: 1 / span 4;
  }

  .hygiene {
    grid-column: auto;
  }
}

@media (max-width: 39.99rem) {
  .site-header {
    min-height: 4rem;
  }

  .header-book {
    display: none;
  }

  .menu-toggle {
    min-width: 3.5rem;
  }

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

  h1 {
    max-width: 13ch;
  }

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

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

  .hero-actions .button-ghost {
    width: fit-content;
    min-height: auto;
    justify-content: start;
    padding: 0.45rem 0;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.72);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .section {
    padding-inline: 1rem;
  }

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

  .menu-preview,
  .reviews,
  .visit {
    padding-inline: 1rem;
  }

  .story-image {
    width: 100%;
  }

  .menu-layout {
    gap: 2.5rem;
  }

  .menu-editorial {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }

  .menu-card figure {
    margin-bottom: 1rem;
  }

  .gallery {
    width: 100%;
    padding-inline: 0;
  }

  .gallery .section-heading {
    padding-inline: 1rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    padding-inline: 1rem;
  }

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

  .gallery-item::after {
    opacity: 1;
  }

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

  .review {
    min-height: 0;
  }

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

  .hours h3 {
    grid-column: auto;
  }

  .map-wrap {
    width: 100%;
    height: 26rem;
  }

  .hygiene {
    align-items: flex-start;
  }

  .lightbox-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: end;
    padding: 4.8rem 1rem 1rem;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .lightbox-next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 0.9rem 2rem rgb(0 0 0 / 0.16);
  }

  .button:hover:active {
    transform: translateY(1px) scale(0.965);
    box-shadow: none;
  }

  .menu-toggle:hover .menu-toggle-lines span:first-child {
    transform: translateX(0.2rem);
  }

  .menu-toggle:hover .menu-toggle-lines span:last-child {
    transform: translateX(-0.2rem);
  }

  .site-menu.is-open .site-menu-inner a:hover,
  .site-menu.is-open .site-menu-inner button:hover {
    color: var(--accent);
    transform: translateX(0.65rem);
  }

  .text-link:hover span,
  .visit-directions:hover span,
  .footer-map:hover span {
    transform: translate(0.3rem, -0.18rem);
  }

  .story-image:hover img {
    transform: scale(1.035);
  }

  .menu-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.02);
  }

  .gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
  }

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

  .gallery-item:nth-child(even):hover img {
    transform: scale(1.065) rotate(0.25deg);
  }

  .review:hover .review-top img {
    transform: scale(1.08);
  }

  .review:hover blockquote {
    transform: translateX(0.5rem);
  }

  .footer-layout nav a:hover {
    color: var(--accent);
    transform: translateX(0.3rem);
  }

  .lightbox-arrow:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
  }
}

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

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

  .site-menu.is-open .site-menu-inner a,
  .site-menu.is-open .site-menu-inner button {
    transform: none;
    opacity: 1;
  }

  .reveal-ready .reveal {
    transform: none;
    opacity: 1;
    filter: none;
  }

  .reveal-ready .story-image.reveal,
  .reveal-ready .gallery-item.reveal,
  .reveal-ready .map-wrap.reveal {
    clip-path: none;
  }

  .motion-ready .site-header,
  .motion-ready .hero-media img,
  .motion-ready .hero-title-block,
  .motion-ready .hero-aside {
    animation: none;
  }

  .scroll-progress span {
    will-change: auto;
  }
}
