:root {
  --ink: #121916;
  --ink-soft: #344039;
  --paper: #f1f2ed;
  --paper-deep: #e2e5dc;
  --white: #fbfcf8;
  --accent: #c93f32;
  --line: rgba(18, 25, 22, 0.18);
  --header-height: 72px;
  --page-pad: clamp(18px, 4vw, 64px);
  --content-width: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--page-pad);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.28s var(--ease), border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-bottom-color: rgba(18, 25, 22, 0.16);
  background: rgba(241, 242, 237, 0.84);
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.brand img { width: 52px; height: 52px; display: block; object-fit: cover; }
.site-header.is-scrolled .brand,
body.menu-open .site-header .brand { color: var(--ink); }

.site-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); }
.site-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-nav a:hover { opacity: 0.7; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

.site-header.is-scrolled .site-nav a,
body.menu-open .site-header .site-nav a { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2px;
  background: rgba(10, 14, 12, 0.18);
  padding: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}
.site-header.is-scrolled .menu-toggle,
body.menu-open .site-header .menu-toggle {
  border-color: rgba(18, 25, 22, 0.58);
  background: rgba(251, 252, 248, 0.3);
}
.site-header.is-scrolled .menu-toggle span,
body.menu-open .site-header .menu-toggle span { background: var(--ink); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-image,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; display: block; object-fit: cover; object-position: 50% 54%; }
.hero-shade {
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.26) 70%, rgba(0, 0, 0, 0.22));
}
.hero-image { animation: hero-breathe 20s var(--ease-in-out) infinite alternate; }
.hero-ambient {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.24), rgba(255,255,255,0) 68%);
  filter: blur(8px);
  mix-blend-mode: screen;
  opacity: 0.82;
  will-change: transform, opacity;
}
.hero-glow-one {
  top: -18%;
  left: -8%;
  width: clamp(360px, 48vw, 760px);
  aspect-ratio: 1;
  animation: glow-drift-one 12s var(--ease-in-out) infinite alternate;
}
.hero-glow-two {
  right: -12%;
  bottom: -28%;
  width: clamp(320px, 42vw, 680px);
  aspect-ratio: 1;
  opacity: 0.48;
  animation: glow-drift-two 15s var(--ease-in-out) -5s infinite alternate;
}
.hero-orbit {
  position: absolute;
  right: clamp(26px, 6vw, 96px);
  bottom: clamp(76px, 12vh, 132px);
  width: clamp(150px, 15vw, 220px);
  height: auto;
  overflow: visible;
  color: var(--white);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.24));
  opacity: 0.9;
  animation: orbit-spin 18s linear infinite;
}
.hero-orbit circle { fill: rgba(10,14,12,0.1); stroke: currentColor; stroke-width: 1; }
.hero-orbit text { fill: currentColor; font-family: "Avenir Next", "Segoe UI", Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: 2.15px; }
.hero-orbit .hero-orbit-mark { font-size: 25px; letter-spacing: -1px; }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  padding: calc(var(--header-height) + 52px) var(--page-pad) clamp(54px, 10vh, 104px);
  color: var(--white);
  animation: hero-in 0.9s var(--ease) both;
}
.hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-size: clamp(3.2rem, 10vw, 7.8rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
.hero-content > p {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.35;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 32%;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-220%) skewX(-18deg);
  transition: transform 420ms var(--ease-out);
  pointer-events: none;
}
.button:active { transform: scale(0.97); }
.button-primary { background: var(--accent); color: var(--white); }
.button-ghost { border-color: rgba(255, 255, 255, 0.72); background: rgba(12, 16, 14, 0.12); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-outline { border-color: var(--ink); color: var(--ink); }

.quick-facts {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.quick-facts p {
  position: relative;
  margin: 0;
  padding: 24px clamp(14px, 2.4vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
}
.quick-facts p::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: fact-pulse 2.8s ease-out infinite;
}
.quick-facts p:nth-child(2)::before { animation-delay: -0.7s; }
.quick-facts p:nth-child(3)::before { animation-delay: -1.4s; }
.quick-facts p:nth-child(4)::before { animation-delay: -2.1s; }

.flavour-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(18, 25, 22, 0.18);
  background: var(--accent);
  color: var(--white);
  transform: none;
}
.flavour-ticker-track {
  width: max-content;
  display: flex;
  padding: 14px 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
  animation: ticker-flow 24s linear infinite;
}

.section-shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}
.section-shell-narrow { max-width: 760px; }

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: center;
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: clamp(80px, 12vw, 160px);
}
.about-copy h2,
.section-heading h2,
.reviews-intro h2,
.visit-details h2 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.about-copy > p { max-width: 660px; margin: 28px 0; color: var(--ink-soft); font-size: 1.04rem; }
.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.portrait-frame,
.menu-image,
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.portrait-frame { margin: 0; }
.portrait-frame img,
.menu-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.portrait-frame img { object-position: 50% 52%; }
.portrait-frame { position: relative; }
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.24) 50%, transparent 65%);
  transform: translateX(-150%);
  animation: image-glint 8.5s var(--ease-in-out) infinite;
  pointer-events: none;
}

.menu-section { padding: clamp(80px, 10vw, 140px) 0; background: var(--paper-deep); }
.section-heading { margin: 0 auto clamp(40px, 6vw, 72px); padding-inline: var(--page-pad); text-align: center; }
.section-heading p { max-width: 580px; margin: 22px auto 0; color: var(--ink-soft); font-size: 1.02rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 30px); }
.menu-panel { border-top: 4px solid var(--ink); transition: transform 240ms var(--ease-out); }
.menu-image { position: relative; background: var(--ink); }
.menu-image img { animation: menu-breathe 12s var(--ease-in-out) infinite alternate; }
.menu-panel:nth-child(2) .menu-image img { animation-duration: 14s; animation-delay: -4s; }
.menu-panel:nth-child(3) .menu-image img { animation-duration: 11s; animation-delay: -7s; animation-direction: alternate-reverse; }
.menu-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,0.18) 50%, transparent 62%);
  opacity: 0.55;
  transform: translateX(-150%);
  animation: image-glint 9s var(--ease-in-out) infinite;
  pointer-events: none;
}
.menu-panel:nth-child(2) .menu-image::after { animation-delay: -3s; }
.menu-panel:nth-child(3) .menu-image::after { animation-delay: -6s; }
.menu-panel:nth-child(1) .menu-image img { object-position: 50% 54%; }
.menu-panel:nth-child(2) .menu-image img { object-position: 38% 52%; }
.menu-panel:nth-child(3) .menu-image img { object-position: 50% 48%; }
.menu-copy { padding: 22px 4px 0; }
.menu-copy h3 { margin: 0 0 8px; font-size: clamp(1.45rem, 2.4vw, 2rem); letter-spacing: -0.03em; }
.menu-copy p { margin: 0; color: var(--ink-soft); }
.menu-callout {
  margin: clamp(56px, 7vw, 90px) auto 0;
  padding-inline: var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.menu-callout p { margin: 0; font-weight: 800; }

.gallery-section { padding-top: clamp(80px, 12vw, 160px); padding-bottom: clamp(80px, 12vw, 160px); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  position: relative;
  appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  cursor: zoom-in;
  transition: transform 240ms var(--ease-out);
}
.gallery-item img { animation: gallery-drift 13s var(--ease-in-out) infinite alternate; }
.gallery-item:nth-child(2n) img { animation-direction: alternate-reverse; animation-duration: 15s; }
.gallery-item:nth-child(3n) img { animation-delay: -6s; animation-duration: 17s; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 48%, rgba(255,255,255,0.16) 58%, transparent 68%);
  opacity: 0.7;
  transform: translateY(-145%);
  animation: gallery-light 11s var(--ease-in-out) infinite;
  pointer-events: none;
}
.gallery-item:nth-child(2)::after { animation-delay: -2s; }
.gallery-item:nth-child(3)::after { animation-delay: -4s; }
.gallery-item:nth-child(4)::after { animation-delay: -6s; }
.gallery-item:nth-child(5)::after { animation-delay: -8s; }
.gallery-item:nth-child(6)::after { animation-delay: -10s; }
.gallery-item:nth-child(1) img { object-position: 50% 52%; }
.gallery-item:nth-child(2) img { object-position: 50% 52%; }
.gallery-item:nth-child(3) img { object-position: 48% 50%; }
.gallery-item:nth-child(4) img { object-position: 48% 52%; }
.gallery-item:nth-child(5) img { object-position: 43% 52%; }
.gallery-item:nth-child(6) img { object-position: 50% 52%; }

.reviews-section { position: relative; isolation: isolate; overflow: hidden; padding: clamp(82px, 10vw, 140px) 0; background: var(--ink); color: var(--white); }
.reviews-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40%;
  left: -18%;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,63,50,0.34), transparent 66%);
  filter: blur(12px);
  opacity: 0.82;
  animation: review-glow 13s var(--ease-in-out) infinite alternate;
}
.reviews-intro { width: min(100%, 760px); margin: 0 auto 54px; padding: 0 var(--page-pad); text-align: center; }
.reviews-intro p { margin: 18px 0 0; color: rgba(251, 252, 248, 0.75); }
.reviews-intro strong { color: var(--white); font-size: 1.35em; }
.reviews-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.review { position: relative; padding: 30px clamp(18px, 3vw, 42px); border-top: 1px solid rgba(255,255,255,0.25); border-right: 1px solid rgba(255,255,255,0.2); transition: background-color 200ms ease, transform 240ms var(--ease-out); }
.review:last-child { border-right: 0; }
.review header { display: flex; align-items: center; gap: 14px; }
.review header img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; animation: avatar-float 4.8s var(--ease-in-out) infinite alternate; }
.review:nth-child(2) header img { animation-delay: -1.6s; }
.review:nth-child(3) header img { animation-delay: -3.2s; }
.review h3 { margin: 0; font-size: 1rem; }
.stars { margin: 2px 0 0; color: #f5c84c; letter-spacing: 0.06em; }
.review blockquote { min-height: 110px; margin: 26px 0; font-size: 1.05rem; line-height: 1.55; }
.review > a { color: var(--white); font-size: 0.86rem; font-weight: 800; text-underline-offset: 5px; }

.visit-section { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); min-height: 760px; }
.visit-details { padding: clamp(72px, 9vw, 140px) var(--page-pad); }
.visit-details h2 { max-width: 650px; margin-bottom: 46px; }
.visit-block { max-width: 560px; margin-top: 32px; }
.visit-block h3 { margin: 0 0 10px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.visit-block p { margin: 0 0 10px; }
.hours dl { margin: 0; }
.hours dl div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 8px 0; }
.hours dt { font-weight: 700; }
.hours dd { margin: 0; text-align: right; }
.small-note { color: var(--ink-soft); font-size: 0.84rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.map-frame { min-height: 720px; background: #d9ddd6; }
.map-frame iframe { width: 100%; height: 100%; min-height: 720px; display: block; border: 0; content-visibility: visible; }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px var(--page-pad);
  background: #0c120f;
  color: var(--white);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; object-fit: cover; }
.footer-brand p { margin: 0; font-weight: 800; }
.site-footer address { font-style: normal; color: rgba(251,252,248,0.72); }
.site-footer > a { font-weight: 800; text-decoration: none; }
.site-footer nav { display: flex; gap: 22px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 100px;
  align-items: center;
  gap: 18px;
  padding: 72px 24px 24px;
  background: rgba(8, 12, 10, 0.96);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out), visibility 220ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox figure { max-width: 1200px; max-height: calc(100dvh - 110px); margin: auto; text-align: center; opacity: 0; transform: scale(0.96); transition: opacity 240ms var(--ease-out), transform 280ms var(--ease-out); }
.lightbox.is-open figure { opacity: 1; transform: scale(1); }
.lightbox.is-instant,
.lightbox.is-instant figure { transition-duration: 0ms; }
.lightbox figure img { max-width: 100%; max-height: calc(100dvh - 150px); display: block; margin: auto; object-fit: contain; }
.lightbox figcaption { margin-top: 12px; color: rgba(251,252,248,0.78); }
.lightbox button {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 140ms var(--ease-out);
}
.lightbox button:active { transform: scale(0.96); }
.lightbox-close { position: absolute; top: 18px; right: 24px; padding: 8px 18px; }
.lightbox-prev, .lightbox-next { padding: 8px 12px; }

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

.motion-enabled [data-reveal] {
  transition: opacity 680ms var(--ease-out), transform 760ms var(--ease-out), clip-path 860ms var(--ease-in-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-enabled [data-reveal="rise"].reveal-pending {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
.motion-enabled [data-reveal="clip"].reveal-pending {
  opacity: 0.01;
  clip-path: inset(0 0 99.5% 0);
  transform: translate3d(0, 22px, 0) scale(0.985);
}
.motion-enabled [data-reveal].is-revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .brand:hover img { transform: rotate(-4deg) scale(1.04); }
  .brand img { transition: transform 200ms var(--ease-out); }
  .button:hover { transform: translateY(-3px); }
  .button:hover::before { transform: translateX(520%) skewX(-18deg); }
  .menu-panel:hover { transform: translateY(-8px); }
  .menu-panel:hover .menu-image img,
  .gallery-item:hover img { animation-play-state: paused; }
  .gallery-item:hover { transform: translateY(-8px) rotate(0.45deg); }
  .gallery-item:nth-child(even):hover { transform: translateY(-8px) rotate(-0.45deg); }
  .review:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
  .lightbox button:hover { background: var(--white); color: var(--ink); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-breathe {
  from { transform: scale(1.02) translate3d(-0.4%, 0.25%, 0); }
  to { transform: scale(1.075) translate3d(0.65%, -0.45%, 0); }
}
@keyframes glow-drift-one {
  from { transform: translate3d(-6%, -4%, 0) scale(0.9); opacity: 0.42; }
  to { transform: translate3d(24%, 18%, 0) scale(1.14); opacity: 0.9; }
}
@keyframes glow-drift-two {
  from { transform: translate3d(12%, 8%, 0) scale(1.08); opacity: 0.28; }
  to { transform: translate3d(-24%, -18%, 0) scale(0.92); opacity: 0.62; }
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes ticker-flow { to { transform: translate3d(-50%, 0, 0); } }
@keyframes fact-pulse {
  0%, 100% { transform: scale(0.76); opacity: 0.58; }
  45% { transform: scale(1.45); opacity: 1; }
}
@keyframes image-glint {
  0%, 62% { transform: translateX(-150%); opacity: 0; }
  72% { opacity: 0.6; }
  88%, 100% { transform: translateX(150%); opacity: 0; }
}
@keyframes menu-breathe {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(0, -1.2%, 0); }
}
@keyframes gallery-drift {
  from { transform: scale(1.025) translate3d(-0.6%, 0.4%, 0); }
  to { transform: scale(1.07) translate3d(0.8%, -1%, 0); }
}
@keyframes gallery-light {
  0%, 60% { transform: translateY(-145%); opacity: 0; }
  74% { opacity: 0.58; }
  92%, 100% { transform: translateY(145%); opacity: 0; }
}
@keyframes review-glow {
  from { transform: translate3d(-8%, -4%, 0) scale(0.86); opacity: 0.5; }
  to { transform: translate3d(88%, 34%, 0) scale(1.18); opacity: 0.95; }
}
@keyframes avatar-float {
  from { transform: translate3d(0, -2px, 0) rotate(-1deg); }
  to { transform: translate3d(0, 4px, 0) rotate(1deg); }
}

@media (max-width: 980px) {
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr 0.82fr; gap: 44px; }
  .menu-grid { gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .reviews-list { grid-template-columns: 1fr; }
  .review { display: grid; grid-template-columns: 230px minmax(0, 1fr) auto; align-items: center; gap: 24px; border-right: 0; }
  .review blockquote { min-height: 0; margin: 0; }
  .visit-section { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 540px; }
  .site-footer { grid-template-columns: 1fr 1.5fr; }
}

@media (max-width: 767px) {
  :root { --header-height: 68px; --page-pad: 18px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 28px;
    background: rgba(12, 18, 15, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s var(--ease), visibility 0.25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,0.2); font-size: 1.15rem; }
  .site-header.is-scrolled .site-nav a,
  body.menu-open .site-header .site-nav a { color: var(--white); }
  .hero-content { padding-bottom: 44px; }
  .hero-orbit { top: 104px; right: -22px; bottom: auto; width: 126px; opacity: 0.78; }
  .hero-glow-one { top: -8%; left: -55%; width: 520px; }
  .hero-glow-two { right: -58%; bottom: -10%; width: 480px; }
  .hero h1 { max-width: 360px; font-size: clamp(3.35rem, 18vw, 5.2rem); }
  .hero-content > p { max-width: 310px; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { padding-inline: 16px; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-facts p { min-height: 76px; display: flex; align-items: center; padding: 16px; font-size: 0.8rem; }
  .flavour-ticker-track { padding-block: 12px; font-size: 1.28rem; animation-duration: 19s; }
  .about { grid-template-columns: 1fr; gap: 40px; padding-top: 78px; padding-bottom: 78px; }
  .about-copy > p { font-size: 0.98rem; }
  .portrait-frame { order: -1; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-callout { align-items: stretch; flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-item { aspect-ratio: 3 / 4; }
  .review { display: block; padding: 30px 18px; }
  .review blockquote { margin: 24px 0; }
  .visit-details { padding-top: 78px; padding-bottom: 78px; }
  .hours dl div { grid-template-columns: 1fr; gap: 2px; }
  .hours dd { text-align: left; }
  .visit-actions { display: grid; }
  .map-frame, .map-frame iframe { min-height: 480px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .lightbox { grid-template-columns: 1fr 1fr; align-content: center; gap: 12px; padding: 68px 16px 16px; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; }
  .lightbox-prev, .lightbox-next { grid-row: 2; }
}

@media (max-width: 390px) {
  .hero-actions { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.25rem; }
}

@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 !important; clip-path: none !important; transform: none !important; }
  .hero-image,
  .hero-orbit,
  .flavour-ticker-track,
  .menu-image img,
  .gallery-item img,
  .review header img { transform: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  body.menu-open .site-header {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
