:root {
  --page: oklch(94% 0.025 67);
  --paper: oklch(98.5% 0.012 72);
  --ink: oklch(24% 0.025 43);
  --muted: oklch(43% 0.025 51);
  --line: oklch(78% 0.035 58);
  --accent: oklch(51% 0.17 32);
  --accent-dark: oklch(35% 0.125 31);
  --accent-soft: oklch(83% 0.065 39);
  --terracotta-wash: oklch(88% 0.055 48);
  --olive: oklch(43% 0.055 125);
  --olive-dark: oklch(31% 0.045 125);
  --olive-soft: oklch(87% 0.035 118);
  --gold: oklch(70% 0.105 76);
  --gold-soft: oklch(84% 0.065 77);
  --header-height: 72px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(77, 49, 34, 0.14);
  --display: Georgia, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Arial, 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);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  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 #215c8a;
  outline-offset: 4px;
}

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

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

.section {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  padding-block: clamp(80px, 10vw, 144px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 64px);
  color: #fffdf8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(31, 27, 23, 0.68);
  backdrop-filter: blur(16px) saturate(130%);
  transform: translateY(-100%);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 700ms var(--ease-out);
}

.page-ready .site-header {
  transform: translateY(0);
}

.site-header.is-solid {
  color: var(--ink);
  border-color: oklch(35% 0.04 45 / 0.16);
  background: oklch(98.5% 0.012 72 / 0.94);
}

.wordmark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wordmark > span,
.footer-brand > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
}

.wordmark strong,
.footer-brand strong {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 0.86rem;
  font-weight: 650;
}

.site-navigation > a:not(.social-link) {
  position: relative;
  text-decoration: none;
}

.site-navigation > a:not(.social-link)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  transition: transform 180ms var(--ease-out);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.nav-book {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out);
}

.nav-book:active,
.button:active,
.menu-toggle:active,
.social-link:active,
.dialog-close:active,
.lightbox-close:active,
.lightbox-nav:active,
.gallery-item:active {
  transform: scale(0.96);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  place-items: end start;
  overflow: hidden;
  background: #30251d;
  color: #fffdf8;
}

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

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.09);
  transition: transform 1600ms var(--ease-out);
  will-change: transform;
}

.page-ready .hero-image {
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.025);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(20, 17, 14, 0.74) 0%, rgba(20, 17, 14, 0.28) 55%, rgba(20, 17, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(20, 17, 14, 0.56), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: calc(var(--header-height) + 40px) 0 clamp(52px, 8vw, 96px);
}

.hero-kicker,
.hero h1,
.hero-copy,
.hero-actions {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 900ms var(--ease-out),
    transform 1100ms var(--ease-out);
}

.hero h1 {
  transition-delay: 90ms;
}

.hero-copy {
  transition-delay: 180ms;
}

.hero-actions {
  transition-delay: 270ms;
}

.page-ready .hero-kicker,
.page-ready .hero h1,
.page-ready .hero-copy,
.page-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.25rem, 10vw, 8.25rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.45;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out),
    box-shadow 220ms ease;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(22, 18, 15, 0.28);
  color: #fffdf8;
  backdrop-filter: blur(8px);
}

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

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 10vw, 130px);
}

.intro-copy h2,
.stacked-heading h2,
.visit-details h2,
.dialog-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.8vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro-copy h2,
.stacked-heading h2,
.visit-details h2 {
  color: var(--accent-dark);
}

.intro-copy > p:not(.section-kicker) {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--accent-dark);
  font-weight: 750;
  text-underline-offset: 6px;
}

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

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
}

.menu-section {
  border-top: 0;
  background: var(--terracotta-wash);
  box-shadow: 0 0 0 100vmax var(--terracotta-wash);
  clip-path: inset(0 -100vmax);
}

.stacked-heading {
  max-width: 740px;
  margin-bottom: clamp(46px, 7vw, 80px);
}

.stacked-heading > p,
.reviews-heading > p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

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

.menu-column > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.menu-column:nth-child(2) img {
  object-position: 49% 53%;
}

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

.menu-copy {
  padding: 28px 4px 0;
}

.menu-copy h3,
.review h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.menu-copy > p {
  min-height: 52px;
  margin: 12px 0 20px;
  color: var(--muted);
}

.menu-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-copy li {
  opacity: 0;
  transform: translateX(-16px);
  padding: 12px 0;
  border-bottom: 1px solid oklch(58% 0.055 47 / 0.42);
  transition:
    opacity 420ms var(--ease-out),
    transform 520ms var(--ease-out);
}

.menu-column.is-visible .menu-copy li {
  opacity: 1;
  transform: translateX(0);
}

.menu-column.is-visible .menu-copy li:nth-child(1) {
  transition-delay: 220ms;
}

.menu-column.is-visible .menu-copy li:nth-child(2) {
  transition-delay: 280ms;
}

.menu-column.is-visible .menu-copy li:nth-child(3) {
  transition-delay: 340ms;
}

.menu-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding: 34px 0 0;
  border-top: 1px solid oklch(58% 0.055 47 / 0.42);
}

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

.gallery-section {
  padding-top: 40px;
}

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

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #dfd9d1;
  cursor: zoom-in;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 260ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, 0.42);
  background: linear-gradient(180deg, transparent 58%, rgba(24, 18, 13, 0.28));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

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

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

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

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

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

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

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

.reviews-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 10vw, 120px);
  border-top: 0;
  background: var(--olive-dark);
  box-shadow: 0 0 0 100vmax var(--olive-dark);
  clip-path: inset(0 -100vmax);
  color: var(--paper);
}

.reviews-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.reviews-heading > p:not(.section-kicker) {
  color: oklch(86% 0.025 112);
}

.review-list {
  display: grid;
  gap: 0;
}

.review {
  padding: 34px 0;
  border-bottom: 1px solid oklch(69% 0.045 122 / 0.42);
  transition:
    transform 260ms var(--ease-out),
    border-color 220ms ease;
}

.review:first-child {
  padding-top: 0;
}

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

.review-meta img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive-soft);
  object-fit: cover;
  transition: transform 260ms var(--ease-out);
}

.review-meta h3 {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 750;
}

.review-meta p {
  margin: 3px 0 0;
  color: oklch(85% 0.1 79);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}

.review blockquote {
  max-width: 620px;
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.review > a {
  color: oklch(86% 0.025 112);
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 5px;
  transition: color 180ms ease;
}

.visit-section {
  background: var(--gold-soft);
}

.visit-content {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: stretch;
}

.visit-details address {
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.05rem;
}

.visit-phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
}

.opening-hours {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.opening-hours dt {
  color: var(--muted);
}

.opening-hours dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.visit-cta-stack {
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
}

.visit-cta-stack .visit-actions {
  margin-top: 0;
}

.fsa-rating {
  display: block;
  width: 100%;
  margin-top: 44px;
  text-decoration: none;
}

.fsa-rating img {
  width: 100%;
  height: auto;
}

.map-frame {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d2cbc2;
  box-shadow: var(--shadow);
  transition:
    transform 500ms var(--ease-out),
    box-shadow 500ms ease;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
  padding: 46px clamp(20px, 4vw, 64px);
  background: oklch(21% 0.045 31);
  color: var(--paper);
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: oklch(84% 0.07 75);
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer nav > a:not(.social-link) {
  font-weight: 650;
  text-decoration: none;
}

dialog {
  border: 0;
}

dialog::backdrop {
  background: rgba(22, 18, 15, 0.74);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  width: min(100% - 28px, 760px);
  max-height: calc(100dvh - 28px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 100px rgba(22, 18, 15, 0.36);
}

.dialog-shell {
  position: relative;
  padding: clamp(28px, 6vw, 58px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.7rem;
  transition:
    transform 140ms var(--ease-out),
    background-color 180ms ease,
    color 180ms ease;
}

.dialog-heading {
  padding-right: 48px;
}

.dialog-heading h2 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.dialog-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

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

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

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #9f968c;
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(166, 54, 40, 0.2);
}

.field small {
  color: var(--muted);
  font-size: 0.75rem;
}

.field .field-error {
  min-height: 18px;
  color: #8d1f16;
  font-weight: 700;
}

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

.form-submit {
  justify-self: start;
}

.form-status {
  min-height: 27px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 68px 80px 36px;
  overflow: hidden;
  background: rgba(22, 18, 15, 0.96);
  color: #fffdf8;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 320ms var(--ease-out),
    transform 420ms var(--ease-out);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  opacity: 1;
  transform: scale(1);
}

.lightbox figure {
  display: grid;
  height: 100%;
  min-height: 0;
  place-items: center;
  margin: 0;
  touch-action: pan-y;
  user-select: none;
}

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

.lightbox figcaption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  max-width: calc(100% - 140px);
  transform: translateX(-50%);
  color: #d8d1c8;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(20, 17, 14, 0.5);
  color: #fffdf8;
  cursor: pointer;
  transition:
    transform 140ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 2rem;
}

.booking-dialog {
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition:
    opacity 260ms var(--ease-out),
    transform 380ms var(--ease-drawer);
}

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

.booking-dialog.is-closing,
.lightbox.is-closing {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition-duration: 180ms;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  background: var(--accent);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 750ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 900ms var(--ease-out) var(--reveal-delay, 0ms);
}

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

.intro-visual.reveal,
.gallery-item.reveal,
.map-frame.reveal {
  transform: translateY(36px) scale(0.985);
}

.intro-visual.reveal.is-visible,
.gallery-item.reveal.is-visible,
.map-frame.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.intro-visual.reveal img,
.gallery-item.reveal img,
.map-frame.reveal iframe {
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 1100ms var(--ease-in-out) var(--reveal-delay, 0ms),
    transform 700ms var(--ease-out);
}

.intro-visual.reveal.is-visible img,
.gallery-item.reveal.is-visible img,
.map-frame.reveal.is-visible iframe {
  clip-path: inset(0 0 0 0);
}

@media (hover: hover) and (pointer: fine) {
  .site-navigation > a:not(.social-link):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-book:hover {
    background: #fffdf8;
    color: var(--ink);
    transform: translateY(-2px);
  }

  .site-header.is-solid .nav-book:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .social-link:hover {
    transform: translateY(-2px) rotate(-6deg);
  }

  .button-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 12px 30px rgba(118, 35, 25, 0.28);
    transform: translateY(-3px);
  }

  .button-secondary:hover {
    background: #fffdf8;
    color: var(--ink);
    transform: translateY(-3px);
  }

  .button-dark:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
  }

  .button-outline:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-3px);
  }

  .gallery-item:hover {
    z-index: 1;
    box-shadow: 0 28px 60px rgba(52, 35, 24, 0.2);
    transform: translateY(-8px) rotate(0.35deg);
  }

  .gallery-item:nth-child(even):hover {
    transform: translateY(-8px) rotate(-0.35deg);
  }

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

  .gallery-item:hover img {
    transform: scale(1.075);
  }

  .review:hover {
    border-color: var(--accent);
    transform: translateX(12px);
  }

  .review:hover .review-meta img {
    transform: rotate(-5deg) scale(1.08);
  }

  .review > a:hover {
    color: var(--accent-dark);
  }

  .map-frame:hover {
    box-shadow: 0 34px 90px rgba(77, 49, 34, 0.2);
    transform: translateY(-6px);
  }

  .dialog-close:hover,
  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fffdf8;
  }
}

@media (max-width: 900px) {
  .site-navigation {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    align-items: stretch;
    padding: 22px 20px 28px;
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: var(--page);
    color: var(--ink);
    box-shadow: 0 20px 50px rgba(37, 33, 29, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top right;
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 260ms var(--ease-drawer),
      visibility 0s linear 260ms;
  }

  .site-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-navigation > * {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 220ms var(--ease-out);
  }

  .site-navigation.is-open > * {
    opacity: 1;
    transform: translateY(0);
  }

  .site-navigation.is-open > *:nth-child(2) {
    transition-delay: 35ms;
  }

  .site-navigation.is-open > *:nth-child(3) {
    transition-delay: 70ms;
  }

  .site-navigation.is-open > *:nth-child(4) {
    transition-delay: 105ms;
  }

  .site-navigation.is-open > *:nth-child(5) {
    transition-delay: 140ms;
  }

  .site-navigation.is-open > *:nth-child(6) {
    transition-delay: 175ms;
  }

  .site-navigation > a:not(.social-link) {
    min-height: 44px;
    padding: 8px 0;
    font-size: 1.1rem;
  }

  .site-navigation .social-link {
    justify-self: start;
  }

  .site-navigation .nav-book {
    justify-self: start;
    border-color: var(--ink);
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 220ms var(--ease-out);
  }

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

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

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

  .intro-visual {
    width: min(100%, 560px);
    justify-self: end;
  }

  .reviews-heading {
    position: static;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 540px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding-block: 80px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 10px 16px;
  }

  .wordmark > span {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(20, 17, 14, 0.8) 0%, rgba(20, 17, 14, 0.26) 68%),
      linear-gradient(90deg, rgba(20, 17, 14, 0.3), transparent);
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.25rem);
    line-height: 0.9;
  }

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

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    padding-inline: 20px;
  }

  .intro {
    gap: 46px;
  }

  .intro-copy h2,
  .stacked-heading h2,
  .reviews-heading h2,
  .visit-details h2 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .intro-visual {
    width: 100%;
  }

  .menu-editorial,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    gap: 14px;
  }

  .menu-column > img {
    aspect-ratio: 3 / 4;
  }

  .menu-copy > p {
    min-height: 0;
  }

  .menu-callout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .review blockquote {
    font-size: 1.65rem;
  }

  .opening-hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .opening-hours dd {
    text-align: left;
  }

  .visit-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .visit-cta-stack {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 430px;
  }

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

  .lightbox {
    padding: 76px 16px 68px;
  }

  .lightbox[open] {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .lightbox figure img {
    max-height: calc(100dvh - 164px);
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox figcaption {
    max-width: calc(100% - 32px);
  }
}

@media (max-width: 420px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .lightbox[open] {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}

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

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

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

  .site-header,
  .hero-kicker,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-image,
  .booking-dialog,
  .lightbox,
  .site-navigation,
  .site-navigation > *,
  .menu-copy li {
    opacity: 1;
    transform: none;
  }

  .intro-visual.reveal,
  .gallery-item.reveal,
  .map-frame.reveal {
    transform: none;
  }

  .intro-visual.reveal img,
  .gallery-item.reveal img,
  .map-frame.reveal iframe {
    clip-path: none;
  }

  .scroll-progress {
    display: none;
  }

  .page-ready .hero-image {
    transform: none;
  }
}

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

  .site-header {
    background: #25211d;
  }

  .site-header.is-solid {
    background: var(--page);
  }
}
