:root {
  color-scheme: light;
  --page: oklch(93.5% .008 25);
  --surface: oklch(84% .018 45);
  --surface-strong: oklch(69% .04 48);
  --ink: oklch(19% .018 215);
  --muted: oklch(36% .02 205);
  --line: oklch(54% .018 260);
  --accent: oklch(43% .075 34);
  --accent-deep: oklch(30% .055 35);
  --plant: oklch(39% .055 135);
  --plant-soft: oklch(83% .035 126);
  --accent-ink: oklch(96% .01 35);
  --photo-text: oklch(96% .01 35);
  --header-bg: rgb(17 26 27 / 0.93);
  --focus: oklch(64% .105 55);
  --max: 1240px;
  --header-h: 72px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
}

* {
  box-sizing: border-box;
}

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

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

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--photo-text);
  transition: background-color .24s var(--ease-out), border-color .24s var(--ease-out);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: var(--header-bg);
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  height: var(--header-h);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.wordmark {
  width: max-content;
  color: inherit;
  text-decoration: none;
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  line-height: .78;
  letter-spacing: .015em;
  text-transform: uppercase;
  transform-origin: left center;
  transition: transform .18s var(--ease-out);
}

.wordmark span,
.wordmark strong {
  display: block;
}

.wordmark span {
  font-size: .75rem;
  letter-spacing: .08em;
}

.wordmark strong {
  margin-top: 5px;
  font-size: 1.25rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.nav-links a,
.mobile-menu a,
.footer-links > a {
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  transition: color .18s ease, transform .18s var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.is-active {
  color: #ff9a82;
}

.nav-actions,
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: color .2s ease, background-color .2s ease, transform .2s var(--ease);
}

.social-link:active,
.button:active,
.gallery-item:active {
  transform: scale(.96);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, transform .16s var(--ease-out);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .25s var(--ease);
}

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

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

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 18px max(20px, calc((100% - var(--max)) / 2 + 20px)) 26px;
  background: var(--header-bg);
  border-bottom: 1px solid rgb(255 255 255 / .14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(0) scaleY(1);
  transform-origin: top;
  opacity: 1;
  visibility: visible;
  transition:
    transform .28s var(--ease-drawer),
    opacity .2s var(--ease-out),
    visibility 0s;
}

.mobile-menu[hidden] {
  display: block;
  transform: translateY(-14px) scaleY(.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .2s var(--ease-out),
    opacity .14s var(--ease-out),
    visibility 0s .2s;
}

.site-header.skip-motion *,
.site-header.skip-motion *::before,
.site-header.skip-motion *::after {
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgb(255 255 255 / .18);
  opacity: 1;
  transform: translateX(0);
  transition: opacity .18s ease, transform .24s var(--ease-out);
}

.mobile-menu a:nth-child(2) { transition-delay: .035s; }
.mobile-menu a:nth-child(3) { transition-delay: .07s; }
.mobile-menu a:nth-child(4) { transition-delay: .105s; }

.mobile-menu[hidden] a {
  opacity: 0;
  transform: translateX(-18px);
  transition-delay: 0s;
}

.hero {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--photo-text);
}

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

.hero-media {
  z-index: -3;
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% 54%;
  animation: hero-in 1.55s var(--ease-out) both;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(0 0 0 / .65) 0%, rgb(0 0 0 / .32) 46%, rgb(0 0 0 / .04) 78%),
    linear-gradient(0deg, rgb(0 0 0 / .48), transparent 48%);
}

.hero-content {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: calc(var(--header-h) + 44px) 0 clamp(52px, 8vh, 92px);
}

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

.hero-content > :nth-child(1) { animation-delay: .12s; }
.hero-content > :nth-child(2) { animation-delay: .2s; }
.hero-content > :nth-child(3) { animation-delay: .32s; }
.hero-content > :nth-child(4) { animation-delay: .42s; }

.hero h1 span {
  transform-origin: left center;
}

.hero-location,
.section-kicker {
  margin: 0 0 18px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-location {
  color: #ff8a70;
}

.hero h1,
h2,
h3 {
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  font-weight: 900;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.3rem, 6.4vw, 5.7rem);
  line-height: .89;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 470px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 650;
  line-height: 1.45;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 0 rgb(24 41 31 / 0);
  transition:
    transform .16s var(--ease-out),
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .2s ease;
}

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

.button-ghost {
  color: var(--photo-text);
  background: rgb(12 25 17 / .42);
  border-color: rgb(255 255 255 / .74);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

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

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--accent);
  color: var(--accent-ink);
}

.fact-strip p {
  min-height: 116px;
  margin: 0;
  padding: 26px clamp(22px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgb(255 255 255 / .32);
  transition: background-color .2s ease;
}

.fact-strip p:last-child {
  border-right: 0;
}

.fact-strip strong {
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  letter-spacing: .01em;
  line-height: 1.05;
  text-transform: uppercase;
  transform-origin: left center;
  transition: transform .24s var(--ease-out);
}

.fact-strip span {
  margin-top: 8px;
  font-size: .86rem;
  font-weight: 700;
}

.story {
  padding-block: clamp(78px, 11vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
}

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

.story h2,
.menu-heading h2,
.gallery-heading h2,
.reviews-section h2,
.visit-panel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 5.6rem);
  line-height: .94;
}

.story-copy > p:not(.section-kicker) {
  max-width: 63ch;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.text-link,
.review a,
.phone-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  transition: color .18s ease, text-underline-offset .18s var(--ease-out);
}

.story-image {
  margin: 0;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: 16px 16px 0 var(--plant);
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform .28s var(--ease-in-out);
}

.menu-section {
  padding-block: clamp(72px, 10vw, 132px);
  background: var(--surface);
}

.menu-heading {
  max-width: 840px;
  margin-bottom: clamp(42px, 7vw, 78px);
}

.menu-heading p,
.gallery-heading p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}

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

.menu-column {
  padding-inline: clamp(16px, 2.3vw, 30px);
  border-left: 1px solid var(--line);
  transition: transform .24s var(--ease-out);
}

.menu-column:first-child {
  border-left-color: transparent;
}

.menu-column img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .28s var(--ease-in-out), box-shadow .24s ease;
}

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

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

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

.menu-column h3 {
  margin: 28px 0 0;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.menu-column:nth-child(2) h3 {
  color: var(--accent-deep);
}

.menu-column:nth-child(3) h3 {
  color: var(--accent);
}

.menu-intro {
  min-height: 52px;
  margin: 13px 0 22px;
  color: var(--muted);
  font-size: .9rem;
}

.menu-column dl,
.hours dl {
  margin: 0;
}

.menu-column dl div,
.hours dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.menu-column dt,
.hours dt {
  font-weight: 800;
}

.menu-column dd,
.hours dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  white-space: nowrap;
}

.gallery-section {
  padding-block: clamp(82px, 11vw, 150px);
  background: var(--plant-soft);
}

.gallery-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 7vw, 74px);
}

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

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: inherit;
  background: var(--surface-strong);
  border: 0;
  border-radius: 2px;
  cursor: zoom-in;
  isolation: isolate;
  transition: transform .24s var(--ease-out), box-shadow .24s ease;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid rgb(255 255 255 / .55);
  border-radius: 50%;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px) rotate(-20deg) scale(.9);
  transition: opacity .18s ease, transform .24s var(--ease-out);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s var(--ease-in-out), filter .22s ease;
}

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

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

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

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

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

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

.reviews-section {
  padding-block: clamp(76px, 10vw, 128px);
  color: var(--photo-text);
  background: var(--plant);
}

.reviews-section .section-kicker,
.review-head span,
.review a {
  color: var(--surface);
}

.reviews-section h2 {
  max-width: 830px;
}

.reviews-grid {
  margin-top: clamp(42px, 7vw, 74px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--photo-text);
}

.review {
  padding: 28px 30px 10px;
  border-left: 1px solid oklch(72% .025 130);
  transition: transform .24s var(--ease-out), background-color .2s ease;
}

.review:first-child {
  padding-left: 0;
  border-left: 0;
}

.review:last-child {
  padding-right: 0;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-avatar,
.avatar-fallback {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.review-avatar {
  object-fit: cover;
  background: var(--plant-soft);
}

.avatar-fallback {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--page);
  font-size: .75rem;
  font-weight: 900;
}

.avatar-fallback[hidden] {
  display: none;
}

.review-head strong,
.review-head span {
  display: block;
}

.review-head span {
  margin-top: 2px;
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .08em;
}

.review blockquote {
  min-height: 132px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 700;
  line-height: 1.5;
}

.review a {
  margin-top: 18px;
  font-size: .82rem;
}

.visit-section {
  padding-block: clamp(76px, 10vw, 132px);
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: stretch;
}

.visit-panel h2 {
  color: var(--accent-deep);
}

.visit-panel {
  padding-top: 10px;
}

.visit-panel h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.visit-panel address {
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.phone-link {
  font-size: 1.2rem;
}

.hours {
  margin-top: 38px;
}

.hours h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.hours dl div {
  font-size: .9rem;
}

.map-wrap {
  min-height: 620px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: box-shadow .24s ease, transform .24s var(--ease-out);
}

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

.site-footer {
  padding: 68px 0 26px;
  color: var(--photo-text);
  background: #15261b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .7fr;
  gap: 42px;
  align-items: start;
}

.footer-wordmark {
  font-size: 1.2rem;
}

.footer-grid p {
  margin: 22px 0 0;
  color: #c8cfb6;
  font-size: .9rem;
}

.footer-contact a,
.footer-links > a {
  display: block;
  margin-top: 12px;
}

.footer-links > a:first-child {
  margin-top: 0;
}

.footer-social {
  margin-top: 22px;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 22px;
  color: #aeb6a0;
  border-top: 1px solid rgb(255 255 255 / .17);
  font-size: .75rem;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: #fffbe8;
  background: rgb(7 13 9 / .96);
  border: 0;
  opacity: 0;
  transform: scale(.97);
  transition:
    opacity .22s var(--ease-out),
    transform .26s var(--ease-out),
    display .26s allow-discrete,
    overlay .26s allow-discrete;
}

.lightbox::backdrop {
  background: rgb(7 13 9 / .88);
  opacity: 0;
  transition: opacity .22s var(--ease-out), display .22s allow-discrete, overlay .22s allow-discrete;
}

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

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

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

  .lightbox[open]::backdrop {
    opacity: 0;
  }
}

.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 20px;
  padding: 82px 26px 28px;
}

.lightbox figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.lightbox figcaption {
  margin-top: 14px;
  font-size: .86rem;
  text-align: center;
}

.lightbox button {
  color: #fffbe8;
  background: transparent;
  border: 1px solid rgb(255 255 255 / .58);
  border-radius: 2px;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, transform .16s var(--ease-out);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 22px;
  min-width: 74px;
  min-height: 44px;
}

.lightbox-nav {
  min-height: 48px;
  padding: 8px 12px;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(54px) rotate(.45deg);
  filter: blur(5px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
  transition:
    opacity .72s var(--ease-out) var(--reveal-delay, 0s),
    transform .9s var(--ease-out) var(--reveal-delay, 0s),
    filter .62s var(--ease-out) var(--reveal-delay, 0s);
}

.story-image.reveal img,
.map-wrap.reveal iframe,
.gallery-item.reveal img {
  clip-path: inset(0 0 100% 0);
}

.story-image.reveal img {
  transition:
    clip-path .95s var(--ease-in-out) var(--reveal-delay, 0s),
    transform .28s var(--ease-in-out);
}

.map-wrap.reveal iframe {
  transition: clip-path .95s var(--ease-in-out) var(--reveal-delay, 0s);
}

.gallery-item.reveal img {
  transition:
    clip-path .95s var(--ease-in-out) var(--reveal-delay, 0s),
    transform .28s var(--ease-in-out),
    filter .22s ease;
}

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

.menu-column:nth-child(2),
.gallery-item:nth-child(2),
.review:nth-child(2) {
  --reveal-delay: .07s;
}

.menu-column:nth-child(3),
.gallery-item:nth-child(3),
.review:nth-child(3) {
  --reveal-delay: .14s;
}

.gallery-item:nth-child(4) { --reveal-delay: .04s; }
.gallery-item:nth-child(5) { --reveal-delay: .11s; }
.gallery-item:nth-child(6) { --reveal-delay: .18s; }
.fact-strip p:nth-child(2) { --reveal-delay: .07s; }
.fact-strip p:nth-child(3) { --reveal-delay: .14s; }

@media (hover: hover) and (pointer: fine) {
  .wordmark:hover {
    transform: rotate(-2deg) scale(1.04);
  }

  .nav-links a:hover {
    transform: translateY(-2px);
  }

  .social-link:hover {
    color: var(--accent-ink);
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px) rotate(3deg);
  }

  .menu-toggle:hover,
  .lightbox button:hover {
    color: var(--ink);
    background: var(--photo-text);
  }

  .button-primary:hover {
    filter: brightness(1.06);
    box-shadow: 0 10px 0 rgb(24 41 31 / .22);
    transform: translateY(-5px) rotate(-.7deg);
  }

  .button-ghost:hover {
    color: var(--ink);
    background: var(--photo-text);
    border-color: var(--photo-text);
    transform: translateY(-4px) rotate(.7deg);
  }

  .button-outline:hover {
    color: var(--page);
    background: var(--ink);
    box-shadow: 0 8px 0 rgb(24 41 31 / .16);
    transform: translateY(-4px);
  }

  .fact-strip p:hover {
    background: rgb(116 23 11 / .18);
  }

  .fact-strip p:hover strong {
    transform: translateX(8px) skewX(-5deg);
  }

  .text-link:hover,
  .review a:hover,
  .phone-link:hover {
    color: var(--accent);
    text-underline-offset: 8px;
  }

  .story-image:hover img {
    transform: scale(1.045) rotate(.4deg);
  }

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

  .menu-column:hover img {
    box-shadow: 0 18px 0 rgb(24 41 31 / .12);
    transform: rotate(var(--menu-tilt, -.7deg)) scale(1.015);
  }

  .menu-column:nth-child(2) { --menu-tilt: .7deg; }

  .gallery-item:hover {
    z-index: 2;
    box-shadow: 0 22px 0 rgb(24 41 31 / .14);
    transform: translateY(-12px) rotate(var(--gallery-tilt, -.8deg));
  }

  .gallery-item:nth-child(even) { --gallery-tilt: .8deg; }

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

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

  .review:hover {
    background: rgb(240 241 216 / .42);
    transform: translateY(-8px);
  }

  .map-wrap:hover {
    box-shadow: 14px 14px 0 var(--surface-strong);
    transform: translate(-7px, -7px);
  }
}

@keyframes hero-in {
  from { opacity: .38; transform: scale(1.11); filter: saturate(.72) blur(3px); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(68px) rotate(-1.2deg); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .story {
    grid-template-columns: 1fr 320px;
    gap: 38px;
  }

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

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

  .review,
  .review:first-child,
  .review:last-child {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .review blockquote {
    min-height: auto;
  }

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

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

@media (max-width: 699px) {
  :root {
    --header-h: 66px;
  }

  .section-shell,
  .hero-content {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-shell,
  .mobile-menu {
    width: calc(100% - 28px);
  }

  .nav-actions .social-link {
    display: none;
  }

  .hero-media img {
    object-position: 52% 55%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgb(0 0 0 / .72) 0%, rgb(0 0 0 / .18) 64%, rgb(0 0 0 / .22) 100%);
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 42px;
  }

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

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

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

  .hero-actions .button {
    flex: 1 1 0;
    padding-inline: 14px;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip p {
    min-height: 94px;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / .32);
  }

  .fact-strip p:last-child {
    border-bottom: 0;
  }

  .story {
    grid-template-columns: 1fr;
    padding-block: 78px;
  }

  .story-copy {
    order: 1;
  }

  .story-image {
    order: 2;
  }

  .story h2,
  .menu-heading h2,
  .gallery-heading h2,
  .reviews-section h2,
  .visit-panel h2 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
  }

  .menu-section,
  .gallery-section,
  .reviews-section,
  .visit-section {
    padding-block: 76px;
  }

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

  .menu-column,
  .menu-column:first-child,
  .menu-column:last-child {
    padding: 0;
    border-left: 0;
  }

  .menu-intro {
    min-height: 0;
  }

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

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

  .reviews-grid {
    margin-top: 36px;
  }

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

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

  .footer-links {
    margin-top: 12px;
  }

  .lightbox-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 10px;
    padding: 74px 14px 16px;
  }

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

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

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

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

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

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

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

  .mobile-menu,
  .mobile-menu a {
    transition: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  .site-header.menu-active,
  .button-ghost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
