:root {
  --ink: oklch(29% 0.012 85);
  --ink-soft: oklch(46% 0.012 85);
  --paper: oklch(96% 0.018 83);
  --surface: oklch(90% 0.035 105);
  --surface-strong: oklch(72% 0.1 72);
  --wood: oklch(66% 0.11 72);
  --wood-soft: oklch(91% 0.045 78);
  --wood-deep: oklch(42% 0.08 72);
  --accent: oklch(49% 0.14 35);
  --accent-deep: oklch(38% 0.11 35);
  --accent-soft: oklch(91% 0.04 50);
  --accent-light: oklch(82% 0.08 35);
  --sage: oklch(58% 0.09 120);
  --sage-deep: oklch(43% 0.07 120);
  --sage-soft: oklch(84% 0.065 120);
  --white: oklch(98% 0.008 85);
  --line: oklch(30% 0.012 85 / 0.18);
  --line-on-dark: oklch(95% 0.01 85 / 0.22);
  --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);
  --radius: 4px;
  --header-height: 68px;
  --shell: min(1180px, calc(100% - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: transparent;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 260ms var(--ease-out), color 220ms ease, border-color 260ms ease, box-shadow 260ms var(--ease-out);
}

.site-header.is-scrolled {
  background: var(--sage-soft);
  color: var(--ink);
  border-bottom-color: var(--line);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 24px oklch(30% 0.012 85 / 0.12);
}

.wordmark {
  display: inline-grid;
  gap: 0;
  text-decoration: none;
  line-height: 1.05;
  transform-origin: left center;
  transition: transform 180ms var(--ease-out);
}

.wordmark span {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.wordmark small {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.76;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 2px;
  background: currentColor;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 220ms var(--ease-out);
}

.desktop-nav .nav-cta {
  padding: 9px 14px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  transition: transform 150ms var(--ease-out), background-color 180ms ease;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms var(--ease-out), opacity 160ms ease;
}

.mobile-menu,
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
}

.mobile-menu::backdrop,
.lightbox::backdrop {
  background: rgba(10, 13, 11, 0.72);
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
}

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

.mobile-menu {
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  transform: translateY(-4%);
  transition: opacity 240ms var(--ease-out), transform 360ms var(--ease-drawer);
}

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

.mobile-menu-inner {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 20px;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.menu-close,
.lightbox-close {
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  padding: 9px 14px;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.mobile-menu nav {
  display: grid;
  align-content: center;
  gap: 10px;
}

.mobile-menu nav a {
  display: block;
  padding: 12px 0;
  color: inherit;
  font-size: clamp(2rem, 11vw, 4rem);
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 360ms var(--ease-out), transform 420ms var(--ease-drawer), color 180ms ease;
}

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

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--sage-soft);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.10) 0%, rgba(8, 8, 8, 0.14) 45%, rgba(8, 8, 8, 0.28) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
  animation: hero-settle 1200ms var(--ease-out) both;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding: calc(var(--header-height) + 32px) 0 clamp(44px, 8vh, 84px);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.36);
}

.hero-content > * {
  animation: hero-copy-in 900ms var(--ease-out) both;
}

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

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

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

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

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

.hero-kicker {
  color: var(--accent-light);
}

.section-kicker {
  color: var(--sage-deep);
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 560;
  line-height: 1.38;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transform: translateZ(0);
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 220ms var(--ease-out);
}

.button:active {
  transform: scale(0.96);
  transition-duration: 100ms;
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(16, 20, 17, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.intro {
  background: var(--paper);
}

.intro-copy {
  max-width: 690px;
}

h2 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

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

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--accent);
  font-size: 0.9rem;
  font-weight: 750;
}

.service-line span:nth-child(1) {
  color: var(--accent-deep);
}

.service-line span:nth-child(2) {
  color: var(--sage-deep);
}

.service-line span:nth-child(3) {
  color: var(--wood-deep);
}

.ratio-frame {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--wood-soft);
  transform: translateZ(0);
}

.ratio-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 700ms var(--ease-out), filter 260ms ease;
}

.intro-image img {
  object-position: 50% 48%;
}

.menu-section {
  background: var(--sage-soft);
  color: var(--ink);
  border-top: 6px solid var(--wood);
}

.menu-section .section-heading p,
.menu-section .menu-item p {
  color: var(--ink-soft);
}

.menu-section .section-kicker {
  color: var(--sage-deep);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading p {
  max-width: 56ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

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

.menu-item {
  min-width: 0;
  transition: transform 300ms var(--ease-out);
}

.menu-item:nth-child(2) {
  padding-top: 34px;
}

.menu-item:nth-child(3) {
  padding-top: 68px;
}

.menu-image img {
  object-position: center;
}

.menu-item:first-child .menu-image img {
  object-position: 56% center;
}

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

.menu-item h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
  transition: color 180ms ease;
}

.menu-item p {
  margin: 12px 0;
  color: var(--ink-soft);
}

.menu-item span {
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}

.beck-feature {
  position: relative;
  min-height: min(78svh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.beck-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.05), rgba(9, 9, 9, 0.52));
}

.beck-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.075);
  transition: transform 1400ms var(--ease-out), filter 800ms ease;
}

.beck-feature.is-in-view > img {
  transform: scale(1);
}

.beck-copy {
  position: relative;
  z-index: 1;
  width: var(--shell);
  margin: 0 auto;
  padding: 60px 0;
}

.beck-copy h2 {
  width: min(720px, 100%);
  margin-left: auto;
  text-align: right;
}

.beck-copy p {
  width: min(560px, 100%);
  margin: 18px 0 0 auto;
  text-align: right;
  font-size: 1.08rem;
}

.gallery-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

.gallery-button {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  transform: translateZ(0);
  transition: transform 160ms var(--ease-out);
}

.gallery-button .ratio-frame {
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.gallery-button:active {
  transform: scale(0.975);
  transition-duration: 100ms;
}

.gallery-button:nth-child(1) img,
.gallery-button:nth-child(2) img,
.gallery-button:nth-child(3) img,
.gallery-button:nth-child(4) img {
  object-position: center;
}

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

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

.review-section {
  background: var(--sage-soft);
  color: var(--ink);
  text-align: right;
}

.review-section .section-kicker {
  color: var(--sage-deep);
}

.review-section .section-shell {
  width: min(880px, calc(100% - 40px));
  margin-left: auto;
  margin-right: max(20px, calc((100vw - 1180px) / 2));
}

.review-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 44px;
}

.rating-summary {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.rating-summary strong {
  font-size: 2rem;
}

.rating-summary span,
.stars {
  color: #f2a88f;
  letter-spacing: 0.08em;
}

.rating-summary small {
  opacity: 0.72;
}

.text-link,
.review a {
  color: var(--accent-light);
  font-weight: 700;
  text-underline-offset: 4px;
}

.review-section .text-link {
  color: var(--accent-deep);
}

.review-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.review {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  transform: translateZ(0);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.review-featured {
  min-height: 540px;
  background: var(--accent);
  color: var(--white);
  border-color: transparent;
}

.review-featured .stars,
.review-featured a {
  color: var(--white);
}

.review blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 620;
  line-height: 1.24;
}

.review-featured blockquote {
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.review footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.9rem;
}

.review footer span {
  font-weight: 800;
}

.review-pair {
  display: grid;
  gap: 22px;
}

.review-pair .review {
  color: var(--ink);
  border-color: transparent;
}

.review-pair .review .stars {
  color: var(--accent);
}

.review-pair .review a {
  color: var(--accent-deep);
}

.review-pair .review:nth-child(1) {
  background: var(--paper);
}

.review-pair .review:nth-child(2) {
  background: var(--surface);
}

.visit-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.visit-details {
  width: var(--shell);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 130px);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0;
}

.visit-copy address {
  margin: 24px 0 28px;
  color: var(--ink-soft);
  font-size: 1.2rem;
  font-style: normal;
}

.hours h3 {
  margin: 0 0 22px;
  font-size: 1.4rem;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.hours > p {
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.map-wrap {
  height: min(66svh, 680px);
  min-height: 460px;
  background: var(--wood);
  border: 2px solid var(--wood-deep);
  border-radius: var(--radius);
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 54px max(20px, calc((100vw - 1180px) / 2));
  background: var(--sage-soft);
  color: var(--ink);
  border-top: 6px solid var(--wood);
}

.footer-brand {
  display: grid;
  align-content: start;
  line-height: 1.15;
}

.footer-brand strong {
  font-size: 1.35rem;
}

.footer-brand span {
  opacity: 0.78;
}

.site-footer address {
  max-width: 30ch;
  font-style: normal;
  opacity: 0.82;
}

.site-footer nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.site-footer nav a {
  text-underline-offset: 4px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  opacity: 0.72;
}

.lightbox {
  overflow: hidden;
  background: #0f1511;
  color: var(--white);
  opacity: 0;
  transform: scale(0.965);
  transition: opacity 220ms var(--ease-out), transform 300ms var(--ease-out);
}

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

.lightbox-toolbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 10px 18px;
  background: rgba(15, 21, 17, 0.78);
}

.lightbox-stage {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 76px 18px 22px;
}

.lightbox-stage figure {
  min-width: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: grid;
  justify-self: center;
  align-content: center;
  gap: 10px;
  margin: 0;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100svh - 140px);
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-stage figcaption {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.lightbox-nav {
  min-width: 92px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lightbox-nav:active,
.menu-close:active,
.lightbox-close:active,
.menu-toggle:active {
  transform: scale(0.94);
  transition-duration: 90ms;
}

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

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

.menu-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.review-pair .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.menu-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.gallery-grid .reveal:nth-child(4) {
  transition-delay: 50ms;
}

.gallery-grid .reveal:nth-child(5) {
  transition-delay: 120ms;
}

.gallery-grid .reveal:nth-child(6) {
  transition-delay: 190ms;
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.08); filter: blur(3px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(34px) scale(0.97);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@starting-style {
  .mobile-menu[open] {
    opacity: 0;
    transform: translateY(-4%);
  }

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

  .mobile-menu[open]::backdrop,
  .lightbox[open]::backdrop {
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .wordmark:hover {
    transform: scale(1.025);
  }

  .desktop-nav a:not(.nav-cta):hover::after {
    clip-path: inset(0 0 0 0);
  }

  .nav-cta:hover,
  .button:hover {
    transform: translateY(-4px) scale(1.015);
  }

  .nav-cta:hover,
  .button-primary:hover {
    background: var(--accent-deep);
    box-shadow: 0 8px 0 oklch(38% 0.11 35 / 0.2);
  }

  .button-ghost:hover {
    background: var(--white);
    color: var(--ink);
    text-shadow: none;
    box-shadow: 0 8px 0 oklch(29% 0.012 85 / 0.18);
  }

  .menu-toggle:hover {
    background: oklch(98% 0.008 85 / 0.16);
  }

  .site-header.is-scrolled .menu-toggle:hover {
    background: oklch(29% 0.012 85 / 0.1);
  }

  .menu-close:hover,
  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.14);
  }

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

  .menu-item:hover {
    transform: translateY(-8px);
  }

  .menu-item:hover .ratio-frame img,
  .gallery-button:hover .ratio-frame img {
    transform: scale(1.065);
  }

  .menu-item:hover h3 {
    color: var(--accent-deep);
  }

  .gallery-button:hover .ratio-frame {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 14px 26px oklch(29% 0.012 85 / 0.16);
  }

  .review-featured:hover {
    transform: translateY(-9px) rotate(-0.35deg);
    box-shadow: 0 16px 30px oklch(29% 0.012 85 / 0.16);
  }

  .review-pair .review:hover {
    transform: translateX(-7px);
  }

  .button:active,
  .nav-cta:active,
  .menu-toggle:active,
  .menu-close:active,
  .lightbox-close:active,
  .lightbox-nav:active {
    transform: scale(0.94);
    box-shadow: none;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
    --header-height: 64px;
  }

  .hero-media {
    object-position: 64% center;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .intro-grid,
  .review-layout,
  .visit-details {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    order: 1;
  }

  .intro-image {
    order: 2;
  }

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

  .menu-item:nth-child(2),
  .menu-item:nth-child(3) {
    padding-top: 0;
  }

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

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

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

@media (min-width: 821px) {
  .hero-media {
    object-position: 52% top;
  }
}

@media (max-width: 560px) {
  .review-section .section-shell {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

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

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

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 0;
  }

  .section {
    padding: 76px 0;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .review-featured blockquote {
    font-size: 1.72rem;
  }

  .review footer {
    flex-direction: column;
    align-items: flex-end;
  }

  .visit-details {
    gap: 54px;
  }

  .map-wrap {
    min-height: 420px;
    height: 58svh;
  }

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

  .copyright {
    grid-column: 1;
  }

  .lightbox-stage {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding-inline: 14px;
  }

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

  .lightbox-prev,
  .lightbox-next {
    min-width: 0;
  }
}

@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;
    filter: none;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--sage-soft);
    color: var(--ink);
    backdrop-filter: none;
  }
}
