:root {
  --ink: #080808;
  --ink-soft: #d3bba7;
  --paper: #141414;
  --paper-deep: #1c1c1c;
  --white: #fffaf2;
  --orange: #ff6000;
  --line: oklch(31% 0 0);
  --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: 0.75rem;
  --header-height: 4.5rem;
  --shell: min(100% - 2rem, 78rem);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  background-image: linear-gradient(rgba(20, 20, 20, 0.86), rgba(20, 20, 20, 0.86)), url("assets/black-wood-seamless.webp");
  background-position: center top;
  background-repeat: repeat;
  background-size: 2000px 1126px;
  color: var(--white);
  font-family: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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 var(--orange);
  outline-offset: 4px;
}

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

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

.nav-sentinel {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.6rem max(1rem, calc((100vw - 78rem) / 2));
  color: var(--white);
  transition: background-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out), backdrop-filter 240ms var(--ease-out);
}

.site-header.is-solid,
.site-header.menu-open {
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: currentColor;
  line-height: 1;
  text-decoration: none;
  transition: transform 220ms var(--ease-out), color 180ms ease;
}

.brand-script {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-sub {
  margin-top: 0.25rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  white-space: nowrap;
}

.desktop-nav a,
.footer-links a,
.mobile-nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.32em;
}

.desktop-nav a {
  position: relative;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.social-link {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.social-link svg {
  width: 1.28rem;
  height: 1.28rem;
  fill: currentColor;
  stroke: none;
}

.social-link svg rect,
.social-link svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms var(--ease-drawer);
}

.nav-toggle span + span {
  margin-top: 0.42rem;
}

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

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

.mobile-nav {
  position: absolute;
  inset: var(--header-height) 0 auto;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(17, 17, 17, 0.98);
  color: var(--white);
  overflow: hidden;
  transform-origin: top right;
}

.mobile-nav:not([hidden]) {
  animation: mobile-nav-enter 280ms var(--ease-drawer) both;
}

.mobile-nav:not([hidden]) > a,
.mobile-nav:not([hidden]) .mobile-socials {
  animation: mobile-nav-item-enter 320ms var(--ease-out) both;
}

.mobile-nav:not([hidden]) > a:nth-child(2) { animation-delay: 45ms; }
.mobile-nav:not([hidden]) > a:nth-child(3) { animation-delay: 90ms; }
.mobile-nav:not([hidden]) > a:nth-child(4) { animation-delay: 135ms; }
.mobile-nav:not([hidden]) .mobile-socials { animation-delay: 180ms; }

html[data-input="keyboard"] .mobile-nav:not([hidden]) *,
html[data-input="keyboard"] .mobile-nav:not([hidden]) {
  animation: none;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-socials a {
  padding: 0;
}

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

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

.hero-media {
  will-change: transform;
}

.hero-media img {
  display: block;
  object-fit: cover;
  object-position: 58% 43%;
  animation: hero-image-enter 1400ms var(--ease-out) both;
  transform: scale(1.03);
}

.hero-scrim {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.52));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
  padding: clamp(7rem, 15vh, 10rem) 0 clamp(3rem, 8vh, 5rem);
}

.hero h1,
.section-heading h2,
.story h2,
.feature-intro h2,
.reviews-heading h2,
.visit h2 {
  margin: 0;
  font-family: "Arial Black", Aptos, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  text-wrap: balance;
  animation: hero-title-enter 860ms 120ms var(--ease-out) both;
}

.hero-content > p {
  max-width: 31rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  animation: hero-copy-enter 700ms 270ms var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
  animation: hero-copy-enter 700ms 390ms var(--ease-out) both;
}

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

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

.text-button:active {
  transform: translateY(1px) scale(0.97);
}

.gallery-item:active {
  scale: 0.985;
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.16);
  color: var(--white);
}

.button-dark {
  margin-top: 1.75rem;
  border-color: var(--orange);
  background: var(--ink);
  color: var(--white);
}

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

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.72fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(5rem, 11vw, 9rem);
}

.story-copy {
  max-width: 42rem;
}

.story h2,
.section-heading h2,
.feature-intro h2,
.reviews-heading h2,
.visit h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.25rem);
}

.menu h2,
.reviews h2 {
  color: var(--orange);
}

.story-copy p {
  max-width: 62ch;
  margin: 1.65rem 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.text-link,
.text-button,
.review-meta a,
.phone-link {
  color: var(--orange);
  font-weight: 800;
  text-underline-offset: 0.32em;
  transition: color 180ms ease, transform 180ms var(--ease-out), text-decoration-color 180ms ease;
}

.text-link,
.phone-link,
.review-meta a {
  display: inline-block;
}

.text-button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
}

.ratio-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ratio-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image,
.menu-image,
.gallery-item {
  border-radius: var(--radius);
}

.story-image {
  margin: 0;
}

.story-image img {
  object-position: 50% 50%;
  transition: transform 560ms var(--ease-out), filter 260ms ease;
}

.menu {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 49rem;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading p {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

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

.menu-image img {
  transition: transform 560ms var(--ease-out), filter 260ms ease;
}

.menu-card-copy {
  padding: 1.35rem 0 0;
}

.menu-card h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1.05;
  transition: color 180ms ease, transform 220ms var(--ease-out);
}

.menu-card dd {
  color: var(--orange);
}

.menu-note {
  min-height: 1.6em;
  margin: 0.45rem 0 1.15rem;
  color: var(--ink-soft);
}

.menu-card dl,
.menu-card dd {
  margin: 0;
}

.menu-card dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-card dt {
  min-width: 0;
  font-weight: 680;
}

.menu-card dd {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  white-space: nowrap;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.menu-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.features {
  background-color: var(--ink);
  background-image: linear-gradient(rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.88)), url("assets/black-wood-seamless.webp");
  background-position: center;
  background-size: 2000px 1126px;
  background-repeat: repeat;
  color: var(--white);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.feature-intro p {
  max-width: 23rem;
  margin: 1.2rem 0 0;
  color: rgba(251, 252, 250, 0.72);
  font-size: 1.1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  column-gap: 2rem;
}

.feature-list span {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 700;
}

.feature-list span {
  border-bottom-color: color-mix(in oklab, var(--orange) 34%, var(--line));
}

.gallery {
  padding-block: clamp(5rem, 10vw, 9rem);
}

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

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--paper-deep);
  cursor: zoom-in;
  transition: transform 240ms var(--ease-out), scale 140ms var(--ease-out), box-shadow 240ms ease;
}

.gallery-item img {
  transition: transform 560ms var(--ease-out), filter 260ms ease;
}

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

.reviews {
  padding-block: clamp(5rem, 10vw, 8rem);
  background-color: var(--paper-deep);
  background-image: linear-gradient(rgba(28, 28, 28, 0.88), rgba(28, 28, 28, 0.88)), url("assets/black-wood-seamless.webp");
  background-position: center;
  background-size: 2000px 1126px;
  background-repeat: repeat;
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.reviews-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.reviews-heading strong {
  color: var(--white);
  font-size: 1.55rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: 1rem;
}

.review {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--white);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.review-featured {
  grid-row: span 2;
  min-height: 31rem;
  background: var(--orange);
  color: var(--ink);
}

.reviews-grid > .review:nth-child(2) {
  background: var(--paper-deep);
}

.reviews-grid > .review:nth-child(3) {
  background: var(--ink);
}

.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 1.5rem 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 720;
  line-height: 1.35;
}

.review-featured blockquote {
  max-width: 25ch;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.13;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review cite {
  font-style: normal;
  font-weight: 800;
}

.review-meta a {
  font-size: 0.9rem;
}

.review-author {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
}

.review-meta .review-author {
  color: var(--white);
}

.review-avatar {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--paper-deep);
  object-fit: cover;
  transition: transform 220ms var(--ease-out), border-color 180ms ease;
}

.review-featured .review-meta a {
  color: var(--ink);
}

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

.review-featured .review-meta .review-author {
  color: var(--ink);
}

.review-featured .review-avatar {
  border-color: var(--ink);
  background: var(--white);
}

.visit {
  display: grid;
  grid-template-columns: minmax(18rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.visit-info {
  padding-block: 1rem;
}

.visit address {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-style: normal;
}

.phone-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 1.2rem;
}

.hours {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

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

.hours strong {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

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

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 34rem;
}

.site-footer {
  background-color: var(--ink);
  background-image: linear-gradient(rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.9)), url("assets/black-wood-seamless.webp");
  background-position: center;
  background-size: 2000px 1126px;
  background-repeat: repeat;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-block: 4.5rem 3rem;
}

.footer-brand {
  margin-bottom: 1.3rem;
}

.footer-main > div:first-child > p {
  max-width: 25rem;
  color: rgba(251, 252, 250, 0.68);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links h2 {
  margin: 0 0 1rem;
  color: rgba(251, 252, 250, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links > div:first-child h2 {
  color: var(--orange);
}

.footer-links > div:last-child h2 {
  color: var(--ink-soft);
}

.footer-links p,
.footer-links a {
  display: block;
  margin: 0 0 0.55rem;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom > span {
  color: rgba(251, 252, 250, 0.62);
  font-size: 0.88rem;
}

.footer-socials {
  display: flex;
}

dialog {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(6px);
}

.menu-dialog {
  width: min(94vw, 76rem);
  height: min(92dvh, 64rem);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--white);
}

.menu-dialog[open] {
  animation: dialog-enter 280ms var(--ease-drawer) both;
}

.menu-dialog[open]::backdrop,
.lightbox[open]::backdrop {
  animation: backdrop-enter 220ms var(--ease-out) both;
}

.dialog-bar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(22, 22, 22, 0.96);
  border-bottom: 1px solid var(--line);
}

.dialog-bar h2 {
  margin: 0;
  font-size: 1.35rem;
}

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

.full-menu-pages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.full-menu-pages img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 0.75);
}

.menu-dialog[open] .full-menu-pages img {
  animation: menu-page-enter 420ms 80ms var(--ease-out) both;
}

.menu-dialog[open] .full-menu-pages img:nth-child(2) {
  animation-delay: 140ms;
}

.lightbox {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  background: rgba(8, 8, 8, 0.98);
  color: var(--white);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 4.5rem 1rem 1rem;
  animation: lightbox-enter 240ms var(--ease-out) both;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: calc(100dvh - 6rem);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin: 0;
}

.lightbox figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.lightbox figcaption {
  min-height: 1.5em;
  text-align: center;
}

html[data-input="keyboard"] .menu-dialog[open],
html[data-input="keyboard"] .menu-dialog[open]::backdrop,
html[data-input="keyboard"] .menu-dialog[open] .full-menu-pages img,
html[data-input="keyboard"] .lightbox[open],
html[data-input="keyboard"] .lightbox[open]::backdrop {
  animation: none;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(2rem) scale(0.985);
  transition: opacity 720ms var(--ease-out), filter 720ms var(--ease-out), transform 720ms var(--ease-out), clip-path 820ms var(--ease-in-out);
  transition-delay: var(--reveal-delay);
}

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

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

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

.menu-card.reveal .menu-image {
  clip-path: inset(0 0 18% 0);
  transition: clip-path 820ms var(--ease-in-out);
  transition-delay: var(--reveal-delay);
}

.menu-card.reveal.is-visible .menu-image {
  clip-path: inset(0 0 0 0);
}

.reveal-on-load {
  animation: none;
}

@keyframes hero-image-enter {
  from { filter: blur(4px); transform: scale(1.11); }
  to { filter: blur(0); transform: scale(1.03); }
}

@keyframes hero-title-enter {
  from { clip-path: inset(0 0 100% 0); opacity: 0; transform: translateY(1.5rem); }
  to { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0); }
}

@keyframes hero-copy-enter {
  from { filter: blur(6px); opacity: 0; transform: translateY(1.25rem); }
  to { filter: blur(0); opacity: 1; transform: translateY(0); }
}

@keyframes mobile-nav-enter {
  from { clip-path: inset(0 0 100% 0); opacity: 0; transform: translateY(-0.75rem) scale(0.98); }
  to { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mobile-nav-item-enter {
  from { filter: blur(4px); opacity: 0; transform: translateY(-0.6rem); }
  to { filter: blur(0); opacity: 1; transform: translateY(0); }
}

@keyframes backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dialog-enter {
  from { filter: blur(8px); opacity: 0; transform: translateY(1.5rem) scale(0.96); }
  to { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lightbox-enter {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes menu-page-enter {
  from { clip-path: inset(0 0 12% 0); filter: blur(6px); opacity: 0; transform: translateY(1rem) scale(0.985); }
  to { clip-path: inset(0 0 0 0); filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    color: var(--orange);
    transform: translateY(-2px) rotate(-0.5deg);
  }

  .desktop-nav a:hover {
    color: var(--orange);
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px) rotate(7deg) scale(1.06);
  }

  .button:hover:not(:active) {
    transform: translateY(-3px);
  }

  .button-primary:hover {
    background: var(--orange);
    box-shadow: 0 10px 24px rgba(255, 96, 0, 0.24);
  }

  .button-ghost:hover {
    border-color: var(--orange);
    background: rgba(0, 0, 0, 0.38);
  }

  .button-dark:hover {
    background: var(--orange);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(255, 96, 0, 0.18);
  }

  .text-link:hover,
  .text-button:hover,
  .review-meta a:hover,
  .phone-link:hover {
    transform: translateX(4px);
  }

  .story-image:hover img {
    filter: brightness(1.06);
    transform: scale(1.055);
  }

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

  .menu-card:hover h3 {
    color: var(--orange);
    transform: translateX(4px);
  }

  .menu-card:hover .menu-image img {
    filter: brightness(1.06);
    transform: scale(1.065);
  }

  .gallery-item:hover:not(:active) {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
    transform: translateY(-9px) rotate(-0.35deg);
  }

  .gallery-item:nth-child(even):hover:not(:active) {
    transform: translateY(-9px) rotate(0.35deg);
  }

  .gallery-item:hover img {
    filter: brightness(1.07) saturate(1.06);
    transform: scale(1.075);
  }

  .review:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    transform: translateY(-7px) rotate(0.2deg);
  }

  .review-featured:hover {
    transform: translateY(-7px) rotate(-0.25deg);
  }

  .review-author:hover cite {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .review-author:hover .review-avatar {
    transform: rotate(-5deg) scale(1.12);
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions > .social-link {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .story {
    grid-template-columns: 1fr 0.75fr;
    gap: 2rem;
  }

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

  .menu-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.625rem);
  }

  .feature-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .review-featured {
    grid-row: auto;
    min-height: 25rem;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 28rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 4rem;
    --shell: min(100% - 2rem, 78rem);
  }

  .site-header {
    min-height: var(--header-height);
  }

  .hero-media img {
    object-position: 62% 42%;
  }

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

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-content > p {
    max-width: 21rem;
    font-size: 1.02rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 8rem;
  }

  .story,
  .menu-grid,
  .gallery-grid,
  .footer-main,
  .footer-links,
  .full-menu-pages {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 2.4rem;
  }

  .story-image {
    width: 100%;
  }

  .menu-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .menu-note {
    min-height: auto;
  }

  .menu-footer,
  .reviews-heading,
  .review-meta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .review,
  .review-featured {
    min-height: 20rem;
  }

  .review-featured blockquote {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 24rem;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .footer-bottom {
    min-height: auto;
    gap: 1rem;
    padding-block: 1.5rem;
  }

  .lightbox[open] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 4.5rem 1rem 1rem;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
    height: calc(100dvh - 10rem);
  }

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

@keyframes reduced-fade {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

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

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

  .reveal {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .menu-card.reveal .menu-image {
    clip-path: none;
    transition: none;
  }

  .hero-media img,
  .hero h1,
  .hero-content > p,
  .hero-actions,
  .mobile-nav:not([hidden]),
  .mobile-nav:not([hidden]) > a,
  .mobile-nav:not([hidden]) .mobile-socials,
  .menu-dialog[open],
  .menu-dialog[open] .full-menu-pages img,
  .lightbox[open] {
    animation: reduced-fade 160ms ease-out both !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }

  .button:hover,
  .brand:hover,
  .social-link:hover,
  .menu-card:hover,
  .gallery-item:hover,
  .review:hover,
  .story-image:hover img,
  .menu-card:hover .menu-image img,
  .gallery-item:hover img {
    scale: 1 !important;
    transform: none !important;
  }
}
