:root {
  --page: oklch(94% 0.012 85);
  --surface: oklch(89% 0.024 92);
  --surface-strong: oklch(84% 0.040 88);
  --ink: oklch(20% 0.012 85);
  --muted: oklch(43% 0.022 88);
  --accent: oklch(55% 0.11 62);
  --accent-dark: oklch(38% 0.08 62);
  --line: oklch(82% 0.018 88);
  --deep: oklch(16% 0.012 85);
  --sage: oklch(63% 0.055 145);
  --gold: oklch(72% 0.13 78);
  --white: oklch(99% 0.004 85);
  --radius: 6px;
  --header-height: 70px;
  --shadow: 0 18px 50px rgba(48, 34, 24, 0.14);
  --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: var(--header-height);
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Segoe UI Variable", Aptos, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

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;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms var(--ease-out), color 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  pointer-events: none;
}

.site-header.is-scrolled,
.nav-open .site-header {
  border-bottom-color: var(--line);
  background: rgba(240, 237, 228, 0.95);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(48, 34, 24, 0.10);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100% - 32px, 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.89rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: transform 240ms var(--ease-out);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  display: grid;
  gap: 4px;
  padding: 22px 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--page);
  color: var(--ink);
  transform: translateY(-130%);
  visibility: hidden;
  transform-origin: top center;
  transition: transform 240ms var(--ease-drawer), visibility 240ms;
}

.nav-open .site-nav {
  transform: translateY(0);
  visibility: visible;
}

.site-nav > a {
  position: relative;
  padding: 12px 4px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  inset: auto 4px 7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 200ms var(--ease-out);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 160ms ease, transform 140ms var(--ease-out);
}

.nav-toggle:active {
  transform: scale(0.92);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.social-links {
  display: flex;
  gap: 10px;
  padding-top: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}

.site-header.is-scrolled .social-links a,
.nav-open .site-header .social-links a {
  border-color: var(--line);
}

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

.section-shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100dvh;
  padding-top: var(--header-height);
  display: flex;
  align-items: flex-end;
  background: var(--deep);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.10) 72%, rgba(0, 0, 0, 0.02) 100%);
}

.hero-copy {
  width: min(100% - 32px, 1180px);
  min-height: calc(100dvh - var(--header-height));
  margin-inline: auto;
  padding: clamp(120px, 18vh, 180px) 0 clamp(54px, 9vh, 88px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

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

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

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

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3rem, 13vw, 5.8rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 5vw, 2.25rem);
}

.hero-intro {
  max-width: 31ch;
  margin-bottom: 26px;
  color: rgba(250, 251, 248, 0.88);
  font-size: clamp(1rem, 4vw, 1.2rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero .eyebrow {
  color: rgba(250, 251, 248, 0.82);
}

.hero .button-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

.hero .button-primary:hover {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--deep);
}

.hero .button-secondary {
  border-color: rgba(250, 251, 248, 0.82);
  background: rgba(16, 26, 20, 0.22);
  color: var(--white);
}

.hero .button-secondary:hover {
  border-color: var(--white);
  background: rgba(16, 26, 20, 0.52);
}

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

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

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

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

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

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.hero-media,
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  --hero-x: 0px;
  --hero-scale: 1.06;
  --hero-entry-scale: 1.16;
  object-fit: cover;
  object-position: 50% 48%;
  transform: translate3d(var(--hero-x), var(--hero-shift, 0px), 0) scale(var(--hero-scale));
  animation: hero-image-in 1400ms var(--ease-in-out) both;
  will-change: transform;
}

.intro-strip {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 750;
  animation: intro-item-in 640ms var(--ease-out) both;
  animation-delay: calc(480ms + (var(--intro-index, 0) * 70ms));
}

.intro-strip p:nth-child(1) {
  --intro-index: 0;
}

.intro-strip p:nth-child(2) {
  --intro-index: 1;
}

.intro-strip p:nth-child(3) {
  --intro-index: 2;
}

.story {
  padding-block: 82px;
  display: grid;
  gap: 40px;
}

.story-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.07);
  transition: transform 900ms var(--ease-in-out);
}

.story.is-visible .story-media img {
  transform: scale(1);
}

.story-copy {
  align-self: center;
}

.story-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.32);
  transform-origin: left center;
  transition: transform 220ms var(--ease-out);
}

.menu-section {
  padding-block: 82px;
  background: var(--surface);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  gap: 28px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  transform-origin: center bottom;
  transition: border-color 220ms ease, box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.menu-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1.025);
  transition: filter 320ms ease, transform 700ms var(--ease-out);
}

.menu-card:first-child img {
  object-position: 50% 44%;
}

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

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

.menu-card-body {
  padding: 24px 20px 26px;
}

.menu-card-body > p {
  min-height: 3.2em;
  color: var(--muted);
}

.menu-card dl {
  margin: 22px 0 0;
}

.menu-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}

.menu-card dl div:last-child {
  border-bottom: 0;
}

.menu-card dt {
  font-weight: 720;
}

.menu-card dd {
  margin: 0;
  color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.signature {
  padding-block: 84px;
  display: grid;
  gap: 20px;
}

.signature h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.signature > p {
  max-width: 38ch;
  margin: 0;
  align-self: end;
  color: var(--muted);
  font-size: 1.12rem;
}

.gallery-section {
  padding-bottom: 92px;
}

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

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  cursor: zoom-in;
  transform-origin: center bottom;
  transition: box-shadow 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.gallery-item::before {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
  pointer-events: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  pointer-events: none;
}

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

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

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

.reviews-section {
  padding-block: 84px;
  background: var(--deep);
  color: var(--white);
}

.reviews-section .section-heading p {
  color: oklch(82% 0.018 88);
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review {
  padding: 26px 0;
  border-bottom: 1px solid rgba(250, 251, 248, 0.23);
  transition: background 220ms ease, transform 260ms var(--ease-out);
}

.review:first-child {
  border-top: 1px solid rgba(250, 251, 248, 0.23);
}

.review > p:not(.stars) {
  max-width: 36ch;
  min-height: 4.8em;
  margin-bottom: 24px;
  font-size: 1.08rem;
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.review a {
  color: oklch(91% 0.014 88);
}

.review-note {
  margin: 24px 0 0;
  color: #b9c9bd;
  font-size: 0.8rem;
}

.visit-section {
  display: grid;
  background: var(--surface);
}

.visit-details {
  padding: 76px 20px;
}

.visit-content {
  max-width: 540px;
  margin-inline: auto;
}

.visit-content address {
  display: grid;
  margin-bottom: 22px;
  font-style: normal;
}

.visit-content address strong {
  margin-bottom: 4px;
}

.phone-link {
  color: var(--accent-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.hours {
  max-width: 420px;
  margin-block: 30px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
}

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

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

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

.site-footer {
  padding: 54px 20px;
  display: grid;
  gap: 36px;
  background: var(--deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.footer-main p {
  margin: 8px 0 0;
  color: oklch(79% 0.016 88);
}

.footer-main > a:not(.footer-brand) {
  color: oklch(92% 0.012 88);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  align-self: end;
}

.footer-links a {
  color: oklch(86% 0.014 88);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 68px 12px 20px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 6px;
  background: rgba(16, 20, 17, 0.96);
  color: var(--white);
  opacity: 1;
  transition: opacity 220ms var(--ease-out);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 12px;
  transform: translateY(0) scale(1);
  transition: transform 280ms var(--ease-out);
}

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

.lightbox figcaption {
  max-width: 60ch;
  color: #d7ded9;
  font-size: 0.86rem;
  text-align: center;
}

.lightbox button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: #202721;
  color: var(--white);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
}

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

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  padding-inline: 14px;
}

.lightbox-nav {
  overflow: hidden;
  color: transparent !important;
}

.lightbox-nav::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  margin: auto;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.lightbox-prev::before {
  transform: rotate(-135deg);
}

.lightbox-next::before {
  transform: rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.menu-card:nth-child(1),
.gallery-item:nth-child(1),
.review:nth-child(1) {
  --reveal-delay: 0ms;
}

.menu-card:nth-child(2),
.gallery-item:nth-child(2),
.review:nth-child(2) {
  --reveal-delay: 70ms;
}

.menu-card:nth-child(3),
.gallery-item:nth-child(3),
.review:nth-child(3) {
  --reveal-delay: 140ms;
}

.gallery-item:nth-child(4) {
  --reveal-delay: 0ms;
}

.gallery-item:nth-child(5) {
  --reveal-delay: 70ms;
}

.gallery-item:nth-child(6) {
  --reveal-delay: 140ms;
}

@starting-style {
  .lightbox {
    opacity: 0;
  }

  .lightbox figure {
    transform: translateY(18px) scale(0.96);
  }
}

@keyframes hero-image-in {
  from {
    filter: saturate(0.7) brightness(0.76);
    transform: translate3d(var(--hero-x), 0, 0) scale(var(--hero-entry-scale));
  }

  to {
    filter: saturate(1) brightness(1);
    transform: translate3d(var(--hero-x), var(--hero-shift, 0px), 0) scale(var(--hero-scale));
  }
}

@media (max-width: 919px) {
  .hero-media img {
    --hero-x: 0px;
    --hero-scale: 1;
    --hero-entry-scale: 1.08;
    object-position: 100% 48%;
  }
}

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

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

@keyframes intro-item-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (hover: hover) and (pointer: fine) {
  .brand:hover img {
    transform: rotate(-7deg) scale(1.08);
  }

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

  .social-links a:hover {
    background: rgba(250, 251, 248, 0.12);
    transform: translateY(-3px) rotate(-3deg);
  }

  .site-header.is-scrolled .social-links a:hover {
    background: var(--surface);
  }

  .button:hover {
    box-shadow: 0 9px 20px rgba(48, 34, 24, 0.18);
    transform: translateY(-4px) scale(1.015);
  }

  .text-link:hover::after {
    transform: scaleX(1);
  }

  .menu-card:hover {
    border-color: rgba(145, 92, 48, 0.52);
    box-shadow: 0 22px 42px rgba(48, 34, 24, 0.16);
    transform: translateY(-10px) rotate(-0.45deg);
  }

  .menu-card:nth-child(even):hover {
    transform: translateY(-10px) rotate(0.45deg);
  }

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

  .gallery-item:hover {
    box-shadow: 0 20px 42px rgba(48, 34, 24, 0.20);
    transform: translateY(-8px) scale(1.01);
  }

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

  .gallery-item:hover img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.075);
  }

  .review:hover {
    background: rgba(250, 251, 248, 0.055);
    transform: translateY(-6px);
  }

  .lightbox button:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: #2d392f;
    transform: scale(1.06);
  }
}

@media (min-width: 640px) {
  .intro-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-strip p:nth-child(2) {
    text-align: center;
  }

  .intro-strip p:last-child {
    text-align: right;
  }

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

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

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    transform: none;
    visibility: visible;
  }

  .site-nav > a {
    padding: 10px 0;
    font-size: 0.88rem;
  }

  .social-links {
    padding: 0;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .story {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
  }

  .signature {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 60px;
  }

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

  .review,
  .review:first-child {
    padding: 26px 22px;
    border-top: 1px solid rgba(250, 251, 248, 0.23);
    border-bottom: 1px solid rgba(250, 251, 248, 0.23);
  }

  .review + .review {
    border-left: 1px solid rgba(250, 251, 248, 0.23);
  }
}

@media (min-width: 920px) {
  .hero {
    align-items: flex-end;
  }

  .hero-copy {
    min-height: calc(100dvh - var(--header-height));
    padding: clamp(130px, 20vh, 210px) 0 clamp(64px, 10vh, 104px);
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-media img {
    object-position: 50% 54%;
  }

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

  .menu-card:nth-child(2) {
    margin-top: 46px;
  }

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

  .visit-section {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .visit-details,
  .map-wrap,
  .map-wrap iframe {
    min-height: 640px;
  }

  .visit-details {
    padding: 88px clamp(48px, 7vw, 100px);
    display: flex;
    align-items: center;
  }
}

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

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

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