:root {
  color-scheme: light;
  --paper: #dcd0c7;
  --paper-deep: #dcd0c7;
  --ink: #282827;
  --muted: #282827;
  --line: rgb(40 40 39 / 0.28);
  --accent: #9f382c;
  --accent-dark: #9f382c;
  --accent-bright: #df0123;
  --on-bright: #ffffff;
  --white: #dcd0c7;
  --header: #282827;
  --radius: 3px;
  --max-width: 1320px;
  --header-height: 72px;
  --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;
  scroll-padding-top: var(--header-height);
}

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

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid #f0c946;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

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

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

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 5.8vw, 5.4rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.65rem;
  line-height: 1.1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 240ms var(--ease-out), border-color 240ms var(--ease-out), backdrop-filter 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.site-header.is-scrolled {
  background: var(--header);
  border-bottom-color: rgb(220 208 199 / 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgb(0 0 0 / 0.18);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

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

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  white-space: nowrap;
}

.brandmark img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.desktop-nav a,
.footer-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-out);
}

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

.desktop-nav a.is-active {
  color: #fff;
}

.nav-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

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

.social-link:hover {
  background: rgb(220 208 199 / 0.14);
}

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

.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 {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 6px;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
}

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

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

.hero-media {
  object-fit: cover;
  object-position: 50% 43%;
  transform-origin: center center;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.24), rgb(0 0 0 / 0.36) 48%, rgb(0 0 0 / 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.5rem), 640px);
  margin: 0 max(1.25rem, calc((100% - var(--max-width)) / 2));
  padding: calc(var(--header-height) + 1rem) clamp(1.25rem, 3vw, 2.25rem) clamp(2rem, 4vh, 3.25rem);
}

.hero-brand,
.section-kicker {
  margin-bottom: 1.2rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-brand {
  font-size: 0.86rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.9), 0 2px 12px rgb(0 0 0 / 0.66);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.6rem, 7.2vw, 7rem);
  line-height: 1.04;
  -webkit-text-stroke: 0.35px rgb(0 0 0 / 0.58);
  paint-order: stroke fill;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.92), 0 3px 18px rgb(0 0 0 / 0.7);
}

.hero-content > p:not(.hero-brand) {
  max-width: 38ch;
  margin-bottom: 1.8rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.9), 0 2px 14px rgb(0 0 0 / 0.68);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.motion-ready .hero-media {
  transform: scale(1.1);
  filter: brightness(0.84) saturate(0.92);
}

.motion-ready .hero-brand,
.motion-ready .hero h1,
.motion-ready .hero-content > p:not(.hero-brand),
.motion-ready .hero-actions {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
}

.motion-ready.is-ready .hero-media {
  transform: scale(1);
  filter: brightness(1) saturate(1);
  transition: transform 1500ms var(--ease-out), filter 1300ms var(--ease-out);
}

.motion-ready.is-ready .hero-brand,
.motion-ready.is-ready .hero h1,
.motion-ready.is-ready .hero-content > p:not(.hero-brand),
.motion-ready.is-ready .hero-actions {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 760ms var(--ease-out), transform 920ms var(--ease-out), filter 760ms var(--ease-out);
}

.motion-ready.is-ready .hero-brand { transition-delay: 160ms; }
.motion-ready.is-ready .hero h1 { transition-delay: 240ms; }
.motion-ready.is-ready .hero-content > p:not(.hero-brand) { transition-delay: 330ms; }
.motion-ready.is-ready .hero-actions { transition-delay: 420ms; }

.button {
  min-height: 50px;
  padding: 0.78rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 200ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), filter 200ms var(--ease-out);
}

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

.button-primary:hover {
  background: var(--accent-bright);
  filter: brightness(0.9);
}

.button-ghost {
  border-color: rgb(220 208 199 / 0.72);
  background: rgb(40 40 39 / 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgb(40 40 39 / 0.42);
}

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

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.story-copy {
  max-width: 660px;
}

.story-copy > p:not(.section-kicker) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-copy > p + p {
  margin-top: 1.15rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration-color: var(--accent-bright);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.24em;
}

.ratio-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
  border-radius: var(--radius);
}

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

.story-image img {
  object-position: 50% 44%;
}

.menu-section {
  background: var(--accent);
  color: var(--white);
}

.menu-section .section-heading p,
.menu-section .menu-card-copy > p {
  color: rgb(220 208 199 / 0.82);
}

.menu-section .menu-card ul {
  border-top-color: rgb(220 208 199 / 0.42);
}

.menu-section .menu-card li {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 1.5rem);
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 440ms var(--ease-out);
}

.menu-card:nth-child(2) {
  margin-top: 2.75rem;
}

.menu-card:nth-child(3) {
  margin-top: 5.5rem;
}

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

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

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

.menu-card-copy {
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--accent-bright);
}

.menu-card-copy > p {
  min-height: 3.2em;
  margin-bottom: 1rem;
  color: var(--muted);
}

.menu-card ul {
  margin: 0;
  padding: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.menu-card li {
  font-weight: 650;
}

.feature {
  padding: clamp(2.75rem, 4.5vw, 4.5rem) 0;
  background: var(--ink);
  color: var(--white);
  border-block: 6px solid var(--accent-bright);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-items: stretch;
}

.feature-copy {
  align-self: center;
  padding: clamp(0.9rem, 2vw, 2rem) clamp(0.75rem, 2vw, 2rem) clamp(0.9rem, 2vw, 2rem) 0;
}

.feature-copy h2 {
  max-width: 560px;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
}

.feature-copy > p {
  max-width: 48ch;
  color: rgb(220 208 199 / 0.78);
}

.service-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-list span {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgb(220 208 199 / 0.34);
}

.feature-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 460ms var(--ease-out), box-shadow 460ms var(--ease-out);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.feature-image-large {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-height: 420px;
}

.feature-image-large img {
  object-position: 50% 52%;
}

.feature-image-wide {
  grid-column: 1;
  aspect-ratio: 16 / 9;
}

.feature-image-wide img {
  object-position: 50% 50%;
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 320ms var(--ease-out), opacity 220ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.gallery-item:nth-child(1) img { object-position: 52% 50%; }
.gallery-item:nth-child(2) img { object-position: 50% 42%; }
.gallery-item:nth-child(3) img { object-position: 50% 48%; }
.gallery-item:nth-child(4) img { object-position: 50% 52%; }
.gallery-item:nth-child(5) img { object-position: 50% 48%; }
.gallery-item:nth-child(6) img { object-position: 48% 48%; }

.reviews {
  background: var(--paper-deep);
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
}

.review {
  min-height: 250px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(220 208 199 / 0.36);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out), border-color 240ms var(--ease-out);
}

.review-featured {
  grid-row: 1 / span 2;
  min-height: 525px;
  background: var(--accent-bright);
  color: var(--on-bright);
  border-color: var(--accent-bright);
}

.review .stars {
  margin-bottom: 1.5rem;
  color: var(--accent-bright);
  letter-spacing: 0.12em;
}

.review-featured .stars {
  color: var(--paper);
}

.review blockquote {
  margin-bottom: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.1vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.review:not(.review-featured) blockquote {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.review footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

.review-author {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.review-author:hover strong,
.review-author:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.review-avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-deep);
  transition: transform 360ms var(--ease-out);
}

.review-featured .review-avatar {
  box-shadow: 0 0 0 2px rgb(220 208 199 / 0.7);
}

.review footer a {
  font-weight: 700;
  text-underline-offset: 0.22em;
}

.visit {
  background: var(--paper);
  border-top: 6px solid var(--accent-bright);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: stretch;
}

.visit-details {
  padding: clamp(1rem, 3vw, 2.5rem) 0;
}

.visit address {
  margin-bottom: 1.25rem;
  font-style: normal;
  font-size: 1.12rem;
}

.phone-link {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--accent-dark);
  font-size: 1.4rem;
  font-weight: 750;
  text-decoration-color: var(--accent-bright);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.18em;
}

.hours {
  max-width: 520px;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--line);
}

.hours div {
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

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

.button-dark {
  background: var(--accent-bright);
  color: var(--on-bright);
}

.button-dark:hover {
  background: var(--accent-bright);
  filter: brightness(0.9);
}

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

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.map-wrap {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

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

.site-footer {
  padding: 4rem 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto auto;
  align-items: start;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.footer-brand p,
.footer-address p {
  margin-bottom: 0.25rem;
  color: rgb(220 208 199 / 0.78);
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.footer-socials .social-link {
  border: 1px solid rgb(220 208 199 / 0.3);
}

dialog {
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgb(8 10 9 / 0.76);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete;
}

dialog[open]::backdrop {
  opacity: 1;
}

.menu-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  transform: translateY(-3%) scale(0.985);
  transition: opacity 220ms var(--ease-out), transform 360ms var(--ease-drawer), display 360ms allow-discrete, overlay 360ms allow-discrete;
}

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

.menu-dialog-inner {
  min-height: 100%;
  padding: 1.25rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
}

.menu-dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.dialog-close,
.lightbox-close,
.lightbox-nav {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.menu-dialog nav {
  align-self: center;
  display: grid;
  gap: 0.4rem;
}

.menu-dialog nav a {
  width: fit-content;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 12vw, 5rem);
  line-height: 1.05;
  opacity: 1;
  transform: translateY(0);
  transition: color 180ms var(--ease-out), opacity 360ms var(--ease-out), transform 520ms var(--ease-drawer);
}

.menu-dialog[open] nav a:nth-child(2) { transition-delay: 45ms; }
.menu-dialog[open] nav a:nth-child(3) { transition-delay: 90ms; }
.menu-dialog[open] nav a:nth-child(4) { transition-delay: 135ms; }
.menu-dialog[open] nav a:nth-child(5) { transition-delay: 180ms; }

.menu-dialog-contact a {
  font-weight: 750;
}

.menu-dialog-contact p {
  margin: 0.5rem 0 0;
  color: rgb(220 208 199 / 0.82);
}

.lightbox {
  width: min(94vw, 1400px);
  height: min(92svh, 960px);
  max-width: none;
  max-height: none;
  color: var(--white);
  background: transparent;
  overflow: visible;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 220ms var(--ease-out), transform 360ms var(--ease-drawer), display 360ms allow-discrete, overlay 360ms allow-discrete;
}

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

.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.lightbox figure {
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  overflow: hidden;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(92svh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox figcaption {
  padding-top: 0.75rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 0;
  transform: translateX(-50%);
  font-size: 0.85rem;
}

.lightbox-state {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(7px);
  transition: opacity 620ms var(--ease-out), transform 840ms var(--ease-out), filter 620ms var(--ease-out), clip-path 900ms var(--ease-out);
}

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

.ratio-portrait[data-reveal],
.feature-image[data-reveal],
.gallery-item[data-reveal],
.map-wrap[data-reveal] {
  clip-path: inset(0 0 12% 0);
}

.ratio-portrait[data-reveal].is-visible,
.feature-image[data-reveal].is-visible,
.gallery-item[data-reveal].is-visible,
.map-wrap[data-reveal].is-visible {
  clip-path: inset(0 0 0 0);
}

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

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

.gallery-grid > :nth-child(4)[data-reveal] { transition-delay: 60ms; }
.gallery-grid > :nth-child(5)[data-reveal] { transition-delay: 130ms; }
.gallery-grid > :nth-child(6)[data-reveal] { transition-delay: 200ms; }

@starting-style {
  dialog[open]::backdrop {
    opacity: 0;
  }

  .menu-dialog[open] {
    opacity: 0;
    transform: translateY(-3%) scale(0.985);
  }

  .menu-dialog[open] nav a {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgb(0 0 0 / 0.2);
  }

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

  .footer-socials .social-link:nth-child(even):hover {
    transform: translateY(-3px) rotate(6deg);
  }

  .menu-card:hover {
    transform: translateY(-10px);
  }

  .menu-card:hover .ratio-portrait img,
  .story-image:hover img {
    transform: scale(1.055);
  }

  .feature-image:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgb(0 0 0 / 0.28);
  }

  .feature-image:hover img {
    transform: scale(1.055);
  }

  .gallery-item:hover {
    transform: perspective(900px) translateY(-10px) scale(1.015);
    box-shadow: 0 22px 48px rgb(40 40 39 / 0.22);
  }

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

  .review:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgb(40 40 39 / 0.16);
    border-color: rgb(40 40 39 / 0.46);
  }

  .review:hover .review-avatar {
    transform: scale(1.1) rotate(-3deg);
  }

  .dialog-close:hover,
  .lightbox-close:hover,
  .lightbox-nav:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateY(-2px);
  }

  .menu-dialog nav a:hover {
    color: var(--accent-bright);
  }

  .button:active,
  .social-link:active,
  .dialog-close:active,
  .lightbox-close:active,
  .lightbox-nav:active {
    transform: scale(0.97);
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-actions > .social-link {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
  }

  .story-grid,
  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  .footer-socials {
    grid-column: 3;
  }
}

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

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

  .brandmark img {
    width: 40px;
    height: 40px;
  }

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

  .hero-content {
    padding-bottom: 3.25rem;
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(3.4rem, 16vw, 5.6rem);
  }

  .hero-content > p:not(.hero-brand) {
    max-width: 32ch;
    font-size: 1rem;
  }

  .story-grid,
  .visit-grid,
  .feature-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 2.5rem;
  }

  .story-image {
    max-width: 520px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .feature-grid {
    grid-template-rows: auto;
  }

  .feature {
    padding: 2.75rem 0;
  }

  .feature-copy {
    grid-column: 1;
    padding: 0 0 1rem;
  }

  .feature-image-large {
    grid-row: auto;
    grid-column: 1;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .feature-image-wide {
    grid-column: 1;
  }

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

  .review-featured {
    grid-row: auto;
    min-height: 360px;
  }

  .review {
    min-height: 270px;
  }

  .review footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .visit-grid {
    gap: 2rem;
  }

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

  .footer-socials {
    grid-column: 1;
  }

  .lightbox-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

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

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }

  .lightbox-count {
    bottom: -1.75rem;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .visit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding-inline: 0.9rem;
  }

  .hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .hours time {
    text-align: left;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .motion-ready .hero-media,
  .motion-ready .hero-brand,
  .motion-ready .hero h1,
  .motion-ready .hero-content > p:not(.hero-brand),
  .motion-ready .hero-actions {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .visit-actions,
  .footer-socials,
  .gallery-item {
    break-inside: avoid;
  }
}
