:root {
  color-scheme: light;
  --page: oklch(97% 0.004 157.2);
  --surface: oklch(91.5% 0.035 199.5);
  --surface-strong: oklch(84% 0.052 199.5);
  --ink: oklch(21.5% 0.034 254.6);
  --muted: oklch(44.6% 0.033 216.2);
  --line: oklch(72% 0.045 199.5);
  --accent: oklch(48.4% 0.077 211.9);
  --accent-hover: oklch(39.5% 0.063 213.8);
  --accent-ink: oklch(98.4% 0.006 196.9);
  --facade: oklch(78.8% 0.048 199.5);
  --secondary: oklch(28% 0.105 259.2);
  --highlight: oklch(62.7% 0.169 40.2);
  --highlight-hover: oklch(56% 0.16 40.2);
  --highlight-ink: oklch(49% 0.15 40.2);
  --wood: oklch(78.6% 0.09 82.2);
  --overlay: oklch(15% 0.045 255 / 0.9);
  --shadow: 0 22px 60px oklch(21.5% 0.034 254.6 / 0.14);
  --radius: 14px;
  --header-height: 72px;
  --max-width: 1280px;
  --font-display: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  --font-body: "Trebuchet MS", "Avenir Next", 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);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: var(--page);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 253, 246, 0.24);
  background: oklch(15% 0.045 255 / 0.58);
  color: #fffdf6;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: color-mix(in srgb, var(--line) 68%, transparent);
  background: color-mix(in srgb, var(--page) 92%, transparent);
  color: var(--ink);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.wordmark-name {
  font: 700 clamp(15px, 1.2vw, 17px) / 0.95 var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav > a,
.footer-nav > a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.social-link)::after,
.footer-nav > a:not(.social-link)::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--highlight);
  content: "";
  transition: transform 180ms var(--ease-out);
}

.site-nav > a:focus-visible::after,
.footer-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  transition:
    background 180ms ease,
    transform 180ms var(--ease-out);
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 800;
  transition: transform 140ms var(--ease-out);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.hero {
  position: relative;
  display: block;
  min-height: 100dvh;
  padding-top: 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding:
    calc(var(--header-height) + clamp(48px, 8vw, 108px))
    clamp(20px, 6vw, 92px)
    clamp(58px, 9vw, 112px);
  background:
    linear-gradient(
      90deg,
      oklch(12% 0 0 / 0.44) 0%,
      oklch(16% 0 0 / 0.3) 38%,
      oklch(20% 0 0 / 0.04) 70%,
      transparent 100%
    ),
    linear-gradient(
      0deg,
      oklch(12% 0 0 / 0.32) 0%,
      transparent 54%
    );
  color: #fffdf6;
}

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

.hero-copy > * {
  animation: hero-copy-enter 820ms var(--ease-out) both;
}

.hero-copy > .eyebrow {
  animation-delay: 160ms;
}

.hero-copy > h1 {
  animation-delay: 240ms;
}

.hero-copy > .hero-lede {
  animation-delay: 320ms;
}

.hero-copy > .hero-actions {
  animation-delay: 400ms;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--highlight-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.4vw, 94px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
}

h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.hero-lede {
  max-width: 470px;
  margin-bottom: 34px;
  color: oklch(92% 0.02 200);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero .eyebrow {
  color: oklch(88% 0.04 199.5);
}

.hero .button-secondary {
  border-color: #fffdf6;
  color: #fffdf6;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 160ms var(--ease-out),
    box-shadow 180ms ease;
}

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

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

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

.hero-image {
  position: absolute;
  inset: 0;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  animation: hero-image-enter 1500ms var(--ease-out) both;
}

.section-pad {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(88px, 11vw, 148px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.intro-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
  text-underline-offset: 5px;
}

.intro-image,
.place-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-image {
  aspect-ratio: 3 / 4;
}

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

.menu-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading > p:not(.eyebrow),
.reviews-heading > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

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

.menu-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--page);
  box-shadow: 0 16px 40px oklch(21.5% 0.034 254.6 / 0.09);
}

.menu-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.menu-panel:first-child img {
  object-position: 52% 62%;
}

.menu-panel:nth-child(2) img {
  object-position: 50% 54%;
}

.menu-panel-copy {
  padding: 26px 24px 28px;
}

.menu-panel-copy h3 {
  margin-bottom: 12px;
}

.menu-panel-copy p {
  margin-bottom: 18px;
  color: var(--muted);
}

.menu-panel-copy span {
  color: var(--highlight-ink);
  font-size: 14px;
  font-weight: 800;
}

.menu-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.menu-callout p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.place-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.place-image {
  aspect-ratio: 1;
}

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

.place-copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
}

.service-list {
  display: grid;
  margin: 36px 0 0;
  gap: 20px;
}

.service-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.6fr) minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-list dt {
  color: var(--accent);
  font-weight: 800;
}

.service-list dd {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--secondary);
  color: var(--accent-ink);
}

.gallery-section .section-heading > p {
  color: oklch(86% 0.025 218);
}

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

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

.gallery-item::after {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 11px;
  transform: translateY(-8px) scale(0.96);
  border-radius: 999px;
  background: var(--highlight);
  color: var(--secondary);
  content: "Open";
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

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

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

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

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

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

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

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

.reviews-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
}

.reviews-heading {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.review-list {
  display: grid;
  gap: 20px;
}

.review {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface);
}

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

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

.review-meta h3 {
  margin: 0 0 2px;
  font: 800 16px/1.2 var(--font-body);
  letter-spacing: 0;
}

.review-meta p {
  margin: 0;
  color: var(--highlight);
  letter-spacing: 0.08em;
}

blockquote {
  margin: 24px 0 20px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
}

.review > a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.visit-section {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 86px);
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--surface);
}

.visit-details address {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
}

.visit-phone {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.hours h3 {
  margin-bottom: 16px;
  font-size: 21px;
}

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

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

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

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

.visit-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}

.visit-badges p {
  margin: 0;
  padding: 18px;
  border-radius: 12px;
  background: var(--page);
}

.visit-badges strong,
.visit-badges span {
  display: block;
}

.visit-badges span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  padding: 64px max(20px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid oklch(43% 0.07 249);
  background: var(--secondary);
  color: var(--accent-ink);
}

.footer-brand p,
.footer-contact p {
  max-width: 300px;
  margin: 18px 0 0;
  color: oklch(84% 0.025 218);
}

.footer-contact a {
  display: inline-block;
  margin-top: 8px;
  color: var(--facade);
  font-weight: 800;
}

.site-footer .footer-nav > a:not(.social-link)::after {
  background: var(--facade);
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 18px;
  border: 0;
  background: var(--overlay);
  color: #fffdf6;
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.lightbox::backdrop {
  background: oklch(10% 0.03 255 / 0.94);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.lightbox[open],
.lightbox[open]::backdrop {
  opacity: 1;
}

.lightbox[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
}

.lightbox.is-closing,
.lightbox.is-closing::backdrop {
  opacity: 0;
}

.lightbox-toolbar {
  display: flex;
  max-width: 1440px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.lightbox-toolbar p {
  margin: 0;
  font-weight: 800;
}

.lightbox button {
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf6;
  cursor: pointer;
  font-weight: 800;
  transition:
    background 160ms ease,
    transform 140ms var(--ease-out);
}

.lightbox button:active {
  transform: scale(0.95);
}

.lightbox-stage {
  display: grid;
  max-width: 1440px;
  width: 100%;
  min-height: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition:
    opacity 280ms ease,
    transform 320ms var(--ease-drawer);
}

.lightbox[open] .lightbox-stage {
  opacity: 1;
  transform: none;
}

.lightbox.is-closing .lightbox-stage {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition-duration: 160ms;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  justify-self: center;
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(36px) scale(0.985);
  transition:
    opacity 620ms ease,
    filter 520ms ease,
    transform 720ms var(--ease-out);
}

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

.menu-panel.reveal:not(.is-visible):nth-child(2),
.gallery-item.reveal:not(.is-visible):nth-child(2),
.review.reveal:not(.is-visible):nth-child(2) {
  transition-delay: 60ms;
}

.menu-panel.reveal:not(.is-visible):nth-child(3),
.gallery-item.reveal:not(.is-visible):nth-child(3),
.review.reveal:not(.is-visible):nth-child(3) {
  transition-delay: 120ms;
}

.gallery-item.reveal:not(.is-visible):nth-child(4) {
  transition-delay: 30ms;
}

.gallery-item.reveal:not(.is-visible):nth-child(5) {
  transition-delay: 90ms;
}

.gallery-item.reveal:not(.is-visible):nth-child(6) {
  transition-delay: 150ms;
}

.gallery-item.reveal {
  transition:
    box-shadow 220ms ease,
    opacity 620ms ease,
    filter 520ms ease,
    transform 720ms var(--ease-out);
}

.intro-image,
.place-image {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.045);
  transition:
    clip-path 900ms var(--ease-in-out),
    transform 1200ms var(--ease-out);
}

.intro.is-visible .intro-image,
.place-section.is-visible .place-image {
  clip-path: inset(0);
  transform: none;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-copy-enter {
  from {
    filter: blur(4px);
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-image-enter {
  from {
    filter: brightness(0.78) saturate(0.82) blur(5px);
    transform: scale(1.09);
  }

  to {
    filter: none;
    transform: none;
  }
}

@starting-style {
  .lightbox[open],
  .lightbox[open]::backdrop {
    opacity: 0;
  }

  .lightbox[open] .lightbox-stage {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
}

@media (max-width: 980px) {
  .intro,
  .place-section {
    gap: 48px;
  }

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

  .menu-panel-copy {
    padding: 22px 18px 24px;
  }

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

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

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

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

  .site-header {
    padding-inline: 16px;
  }

  .menu-toggle {
    display: block;
    min-width: 48px;
    min-height: 44px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    border-bottom: 1px solid var(--line);
    background: var(--page);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 220ms var(--ease-drawer),
      visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition:
      opacity 180ms ease,
      transform 220ms var(--ease-drawer),
      visibility 0s;
  }

  .site-nav.is-instant {
    transition: none;
  }

  .site-nav > a {
    min-height: 48px;
    padding: 12px 0;
  }

  .site-nav .social-link {
    width: 48px;
    padding: 0;
  }

  .hero {
    position: relative;
    display: block;
    min-height: 100dvh;
    padding-top: 0;
    overflow: visible;
  }

  .hero-copy {
    padding: calc(var(--header-height) + 42px) 20px 42px;
    background: linear-gradient(
      to bottom,
      oklch(14% 0 0 / 0.02) 20%,
      oklch(14% 0 0 / 0.4) 62%,
      oklch(12% 0 0 / 0.62) 100%
    );
    color: #fffdf6;
  }

  .hero-copy .eyebrow,
  .hero-lede {
    color: oklch(92% 0.02 200);
  }

  h1 {
    max-width: 580px;
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-lede {
    max-width: 390px;
    font-size: 18px;
  }

  .hero .button-primary {
    border-color: var(--highlight);
    background: var(--highlight);
    color: var(--ink);
  }

  .hero .button-secondary {
    border-color: #fffdf6;
    color: #fffdf6;
  }

  .hero-image {
    min-height: 100dvh;
  }

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

  .section-pad {
    width: min(100% - 32px, var(--max-width));
    padding-block: 82px;
  }

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

  .intro {
    gap: 42px;
  }

  .intro-image {
    aspect-ratio: 4 / 3;
  }

  .menu-section,
  .gallery-section,
  .visit-section {
    width: 100%;
    padding-inline: 16px;
  }

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

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

  .place-section {
    gap: 42px;
  }

  .place-image {
    order: 2;
  }

  .service-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .reviews-section {
    gap: 38px;
  }

  .reviews-heading {
    position: static;
  }

  .visit-section {
    gap: 48px;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 20px;
  }

  .footer-nav {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-stage {
    position: relative;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

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

  .lightbox-stage [data-lightbox-prev] {
    grid-column: 1;
    grid-row: 2;
  }

  .lightbox-stage [data-lightbox-next] {
    grid-column: 2;
    grid-row: 2;
  }
}

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

  .social-link:hover {
    transform: translateY(-2px) rotate(-6deg) scale(1.06);
    background: color-mix(in srgb, currentColor 10%, transparent);
  }

  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 oklch(28% 0.105 259.2 / 0.18);
  }

  .button-primary:hover {
    border-color: var(--highlight-hover);
    background: var(--highlight-hover);
  }

  .button-secondary:hover {
    background: var(--surface-strong);
  }

  .hero .button-secondary:hover {
    background: rgba(255, 253, 246, 0.16);
  }

  .gallery-item:hover {
    box-shadow: 0 18px 36px oklch(14% 0.04 255 / 0.28);
  }

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

  .gallery-item:nth-child(odd):hover img {
    transform: scale(1.085) rotate(0.8deg);
  }

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

  .lightbox button:hover {
    background: rgba(255, 255, 255, 0.22);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

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

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

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

  .intro-image,
  .place-image {
    clip-path: inset(0);
    transform: none;
  }
}
