:root {
  color-scheme: light;
  --ink: #17140c;
  --muted: #625b4f;
  --paper: #f6f7f2;
  --surface: #fcfdf9;
  --on-dark: #fbfcf9;
  --accent: #c65312;
  --accent-dark: #9f3e08;
  --accent-warm: #e36f1e;
  --line: #d3c8b7;
  --radius: 14px;
  --header-height: 70px;
  --max-width: 1280px;
  --shadow: 0 20px 60px rgba(23, 20, 12, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--surface);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(16px, 4vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.site-header.is-scrolled {
  background: #fafbf7;
  border-bottom-color: rgba(23, 27, 25, 0.1);
  box-shadow: 0 4px 8px rgba(23, 27, 25, 0.08);
}
.scroll-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--accent-warm); transform: scaleX(0); transform-origin: left; will-change: transform; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 116px; height: auto; display: block; mix-blend-mode: multiply; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.site-nav > a, .site-footer__nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.site-nav > a { position: relative; }
.site-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--accent-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); }
.social-links { display: flex; align-items: center; gap: 8px; }
.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid rgba(23, 27, 25, 0.22);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 160ms var(--ease-out);
}
.social-links a:hover, .social-links a:focus-visible { color: var(--on-dark); background: var(--accent); transform: translateY(-2px); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(23, 27, 25, 0.24);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
}
.menu-toggle span { width: 18px; height: 2px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--on-dark);
  background: #26342d;
}
.hero__image, .hero__scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 50% 50%; display: block; animation: hero-breathe 16s var(--ease-in-out) infinite alternate; }
.hero__scrim {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.08) 100%);
}
.hero__atmosphere { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__atmosphere span { position: absolute; display: block; border-radius: 50%; background: rgba(227, 111, 30, 0.28); filter: blur(10px); mix-blend-mode: screen; will-change: transform, opacity; }
.hero__atmosphere span:nth-child(1) { width: clamp(180px, 24vw, 390px); aspect-ratio: 1; top: 8%; right: 4%; animation: glow-drift-one 11s var(--ease-in-out) infinite alternate; }
.hero__atmosphere span:nth-child(2) { width: clamp(110px, 15vw, 240px); aspect-ratio: 1; right: 28%; bottom: 4%; background: rgba(255, 171, 82, 0.2); animation: glow-drift-two 14s var(--ease-in-out) -4s infinite alternate; }
.hero__atmosphere span:nth-child(3) { width: clamp(70px, 9vw, 150px); aspect-ratio: 1; top: 28%; left: 5%; background: rgba(255, 210, 142, 0.16); animation: glow-drift-three 9s var(--ease-in-out) -2s infinite alternate; }
.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 28px) clamp(20px, 6vw, 80px) clamp(46px, 9vh, 94px);
}
.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero p { max-width: 510px; margin: 22px 0 0; font-size: clamp(1.08rem, 2vw, 1.42rem); font-weight: 600; line-height: 1.35; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:active { transform: scale(0.97); }
.button--primary { position: relative; overflow: hidden; isolation: isolate; color: var(--on-dark); background: var(--accent); }
.button--primary::after { content: ""; position: absolute; z-index: -1; top: -100%; bottom: -100%; left: -52%; width: 34%; background: rgba(255, 255, 255, 0.3); transform: translateX(-170%) rotate(18deg); animation: button-glint 4.8s var(--ease-in-out) infinite; }
.button--primary:hover, .button--primary:focus-visible { background: var(--accent-dark); }
.button--ghost { color: var(--ink); background: rgba(255, 255, 255, 0.92); border-color: rgba(255, 255, 255, 0.9); }

.quick-facts {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.quick-facts p { margin: 0; padding: 0 clamp(10px, 3vw, 34px); display: flex; flex-direction: column; }
.quick-facts p + p { border-left: 1px solid var(--line); }
.quick-facts strong { color: var(--accent-dark); font-size: 1rem; }
.quick-facts span { color: var(--muted); font-size: 0.9rem; }

.brand-ribbon { position: relative; z-index: 2; overflow: hidden; padding: 13px 0 12px; background: var(--accent-warm); color: var(--ink); border-block: 1px solid rgba(23, 20, 12, 0.18); }
.brand-ribbon__track { width: max-content; display: flex; align-items: center; animation: ribbon-flow 24s linear infinite; }
.brand-ribbon__group { flex: none; min-width: 100vw; display: flex; align-items: center; justify-content: space-around; gap: 22px; padding: 0 22px; }
.brand-ribbon span { font-size: clamp(0.82rem, 1.2vw, 1rem); font-weight: 900; letter-spacing: 0.16em; }
.brand-ribbon i { width: 9px; height: 9px; display: block; background: var(--paper); border: 2px solid var(--ink); border-radius: 50%; }

.section { width: min(100% - 32px, var(--max-width)); margin-inline: auto; padding-block: clamp(78px, 10vw, 144px); }
.story { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(330px, 0.65fr); align-items: center; gap: clamp(44px, 9vw, 120px); }
.story__copy { max-width: 700px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h2 { margin: 0; font-size: clamp(2.4rem, 5.4vw, 5rem); line-height: 0.98; letter-spacing: -0.05em; text-wrap: balance; }
.story__copy h2 { max-width: 9ch; font-size: clamp(3.2rem, 6.4vw, 5.7rem); line-height: 0.96; letter-spacing: -0.04em; }
.story__copy > p:not(.eyebrow) { color: var(--muted); font-size: clamp(1.08rem, 1.35vw, 1.2rem); line-height: 1.68; max-width: 55ch; }
.image-button { display: block; padding: 0; border: 0; background: transparent; color: inherit; cursor: zoom-in; transition: transform 160ms var(--ease-out), box-shadow 220ms ease; }
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: #dfe4df; box-shadow: var(--shadow); }
.media-frame--portrait { aspect-ratio: 3 / 4; }
.media-frame img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 420ms var(--ease-out), filter 420ms ease; }
.image-button:active { transform: scale(0.985); }
.story .media-frame { animation: portrait-float 7s var(--ease-in-out) infinite alternate; }
.story .media-frame::after { content: ""; position: absolute; inset: -55% -80%; pointer-events: none; background: linear-gradient(105deg, transparent 42%, rgba(255, 196, 118, 0.2) 49%, rgba(255, 255, 255, 0.3) 51%, transparent 58%); transform: translateX(-32%) rotate(8deg); animation: photo-light 8s var(--ease-in-out) infinite; }

.menu { border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: clamp(38px, 6vw, 70px); }
.section-heading p { max-width: 58ch; margin: 20px 0 0; color: var(--muted); font-size: 1.04rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 34px); }
.menu-card { min-width: 0; }
.menu-card .media-frame { width: 100%; box-shadow: none; }
.menu-card h3 { margin: 25px 0 6px; font-size: clamp(1.65rem, 2.6vw, 2.3rem); line-height: 1.1; letter-spacing: -0.03em; }
.menu-card__intro { min-height: 3.2em; margin: 0 0 20px; color: var(--muted); font-size: 0.94rem; }
.menu-list { margin: 0; border-top: 2px solid var(--accent-warm); }
.menu-list div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.menu-list dt { font-weight: 750; }
.menu-list dd { margin: 0; color: var(--accent-dark); font-weight: 800; text-align: right; }
.menu-links { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-top: 42px; }
.text-link { padding: 5px 0; border: 0; border-bottom: 2px solid var(--accent); background: transparent; color: var(--accent-dark); font-weight: 800; cursor: zoom-in; }

.feature-image {
  position: relative;
  min-height: min(76svh, 860px);
  margin-block: 24px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--on-dark);
}
.feature-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; animation: feature-drift 18s var(--ease-in-out) infinite alternate; }
.feature-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.44), rgba(0,0,0,.04) 62%); }
.feature-image__copy { position: relative; z-index: 1; width: min(100% - 40px, var(--max-width)); margin: 0 auto; padding: 0 0 clamp(40px, 8vw, 82px); }
.feature-image__copy h2 { max-width: 10ch; }
.feature-image__copy p { max-width: 510px; margin: 18px 0 0; font-size: 1.08rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-grid .media-frame { width: 100%; box-shadow: none; }

.reviews { border-top: 1px solid var(--line); display: grid; grid-template-columns: 0.46fr 1.54fr; gap: clamp(36px, 7vw, 90px); }
.reviews__summary { align-self: start; position: sticky; top: calc(var(--header-height) + 30px); }
.reviews__summary h2 { font-size: clamp(2.35rem, 4vw, 4.2rem); }
.rating { margin: 30px 0 0; display: flex; align-items: baseline; gap: 14px; }
.rating strong { font-size: 3.7rem; line-height: 1; letter-spacing: -0.05em; }
.rating span, .review__author div p { color: var(--accent-warm); letter-spacing: 0.08em; }
.reviews__summary > p:last-child { margin: 7px 0 0; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 18px; }
.reviews-grid__stack { display: grid; gap: 18px; }
.review { padding: clamp(24px, 3.5vw, 42px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease; }
.review--featured { position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; background: var(--accent); color: var(--on-dark); border-color: var(--accent); }
.review--featured::before { content: ""; position: absolute; z-index: -1; width: 430px; height: 430px; right: -250px; bottom: -250px; border: 72px solid rgba(255, 190, 112, 0.22); border-radius: 50%; animation: review-orbit 12s linear infinite; }
.review__author { display: flex; align-items: center; gap: 13px; }
.review__author img { flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
.review__author h3 { margin: 0; font-size: 1rem; }
.review__author div p { margin: 2px 0 0; font-size: 0.82rem; }
.review--featured .review__author div p { color: var(--on-dark); }
.review blockquote { margin: 30px 0; font-size: clamp(1.02rem, 1.5vw, 1.25rem); line-height: 1.55; }
.review--featured blockquote { font-size: clamp(1.3rem, 2.2vw, 1.85rem); line-height: 1.45; letter-spacing: -0.02em; }
.review a { align-self: flex-start; font-weight: 800; }

.visit { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr); align-items: stretch; gap: clamp(40px, 7vw, 90px); }
.visit__details h2 { max-width: 9ch; }
.visit address { margin-top: 28px; color: var(--muted); font-style: normal; font-size: 1.04rem; }
.visit__phone { margin: 16px 0 0; font-size: 1.32rem; font-weight: 800; }
.hours { margin: 34px 0; }
.hours div { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours dt { font-weight: 800; }
.hours dd { margin: 0; color: var(--muted); }
.amenities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 32px 0 0; padding: 0; list-style: none; color: var(--muted); }
.amenities li { position: relative; padding-left: 20px; }
.amenities li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 9px; height: 2px; background: var(--accent-warm); }
.map-wrap { min-height: 610px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: #dfe4df; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 610px; display: block; border: 0; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(44px, 8vw, 90px) max(20px, calc((100vw - var(--max-width)) / 2));
  background: #211b17;
  color: var(--on-dark);
  border-top: 4px solid var(--accent-warm);
}
.footer-mantra { grid-column: 1 / -1; overflow: hidden; margin-bottom: clamp(10px, 2vw, 24px); padding-bottom: clamp(28px, 4vw, 52px); border-bottom: 1px solid rgba(255, 255, 255, 0.16); color: #ff9a4c; }
.footer-mantra__track { width: max-content; display: flex; animation: footer-flow 28s linear infinite; }
.footer-mantra span { flex: none; padding-right: 0.35em; font-size: clamp(2rem, 5.3vw, 5.4rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.045em; white-space: nowrap; }
.site-footer__brand img { width: 190px; height: auto; display: block; filter: brightness(0) invert(1); }
.site-footer__brand p { margin: 10px 0 0; color: #cfc3b9; }
.site-footer__nav { display: grid; gap: 10px; }
.site-footer__nav a, .site-footer__brand a { transition: color 180ms ease; }
.site-footer__nav a:hover, .site-footer__nav a:focus-visible,
.site-footer__brand a:hover, .site-footer__brand a:focus-visible { color: #ff9a4c; }
.site-footer .social-links a { color: var(--on-dark); border-color: rgba(255, 255, 255, 0.34); }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 76px clamp(52px, 7vw, 100px) 40px;
  border: 0;
  background: rgba(13, 17, 15, 0.96);
  color: var(--on-dark);
  overflow: hidden;
}
.lightbox[open] { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px; }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.72); }
.lightbox figure { min-width: 0; min-height: 0; height: calc(100dvh - 116px); margin: 0; display: grid; place-items: center; overflow: hidden; }
.lightbox figure img { max-width: 100%; max-height: calc(100dvh - 116px); width: auto; height: auto; display: block; object-fit: contain; }
.lightbox button { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: var(--on-dark); border-radius: 50%; cursor: pointer; transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease; }
.lightbox button:active { transform: scale(0.94); }
.lightbox__close { position: fixed; top: 18px; right: 20px; width: 48px; height: 48px; font-size: 2rem; line-height: 1; }
.lightbox__previous, .lightbox__next { width: 50px; height: 50px; font-size: 1.35rem; }

:focus-visible { outline: 3px solid var(--accent-warm); outline-offset: 4px; }
.reveal { opacity: 0; transform: translateY(24px) scale(0.985); transition: opacity 680ms ease, transform 680ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.menu-card.reveal:nth-child(2), .gallery-grid .reveal:nth-child(2), .reviews-grid__stack .reveal:nth-child(2) { transition-delay: 65ms; }
.menu-card.reveal:nth-child(3), .gallery-grid .reveal:nth-child(3) { transition-delay: 130ms; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 45ms; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 110ms; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 175ms; }

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(-0.3%, -0.2%, 0); }
  to { transform: scale(1.085) translate3d(0.8%, 0.5%, 0); }
}
@keyframes glow-drift-one {
  from { transform: translate3d(0, 0, 0) scale(0.86); opacity: 0.35; }
  to { transform: translate3d(-22%, 18%, 0) scale(1.18); opacity: 0.72; }
}
@keyframes glow-drift-two {
  from { transform: translate3d(0, 8%, 0) scale(0.9); opacity: 0.28; }
  to { transform: translate3d(28%, -18%, 0) scale(1.22); opacity: 0.64; }
}
@keyframes glow-drift-three {
  from { transform: translate3d(-10%, 0, 0) scale(0.8); opacity: 0.24; }
  to { transform: translate3d(34%, 28%, 0) scale(1.12); opacity: 0.52; }
}
@keyframes ribbon-flow { to { transform: translate3d(-50%, 0, 0); } }
@keyframes portrait-float {
  from { transform: translate3d(0, -5px, 0) rotate(-0.35deg); }
  to { transform: translate3d(0, 7px, 0) rotate(0.45deg); }
}
@keyframes photo-light {
  0%, 18% { transform: translate3d(-34%, 0, 0) rotate(8deg); opacity: 0; }
  36%, 54% { opacity: 1; }
  72%, 100% { transform: translate3d(34%, 0, 0) rotate(8deg); opacity: 0; }
}
@keyframes feature-drift {
  from { transform: scale(1.035) translate3d(-0.6%, 0, 0); }
  to { transform: scale(1.09) translate3d(0.8%, -0.6%, 0); }
}
@keyframes button-glint {
  0%, 56% { transform: translate3d(-170%, 0, 0) rotate(18deg); opacity: 0; }
  65% { opacity: 0.7; }
  79%, 100% { transform: translate3d(540%, 0, 0) rotate(18deg); opacity: 0; }
}
@keyframes review-orbit {
  from { transform: rotate(0deg) translate3d(0, 0, 0); }
  to { transform: rotate(360deg) translate3d(0, 0, 0); }
}
@keyframes footer-flow { to { transform: translate3d(-50%, 0, 0); } }

@media (hover: hover) and (pointer: fine) {
  .media-frame:hover img, .media-frame:focus-visible img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }
  .menu-card:hover .media-frame, .gallery-grid .media-frame:hover { box-shadow: 0 24px 48px rgba(23, 20, 12, 0.18); }
  .review:hover { transform: translateY(-6px); border-color: rgba(198, 83, 18, 0.34); box-shadow: 0 24px 52px rgba(23, 20, 12, 0.12); }
  .lightbox button:hover { transform: scale(1.08); background: rgba(198, 83, 18, 0.9); border-color: rgba(255, 255, 255, 0.55); }
}

@media (max-width: 980px) {
  .story { grid-template-columns: 1fr 0.8fr; gap: 48px; }
  .menu-grid { gap: 18px; }
  .reviews { grid-template-columns: 1fr; }
  .reviews__summary { position: static; }
  .visit { grid-template-columns: 0.78fr 1.22fr; gap: 36px; }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; }
  .site-header { padding: 8px 16px; }
  .brand img { width: 98px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(250, 251, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav > a { min-height: 48px; display: flex; align-items: center; padding: 0 8px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav > a::after { display: none; }
  .site-nav .social-links { padding: 14px 6px 0; }

  .hero__image { object-position: 51% 50%; }
  .hero__content { padding-inline: 20px; padding-bottom: 44px; }
  .hero h1 { max-width: 8ch; font-size: clamp(3.6rem, 18vw, 5.3rem); }
  .hero p { max-width: 19ch; font-size: 1.12rem; }
  .hero__actions { width: 100%; }
  .hero__actions .button { flex: 1 1 138px; }

  .quick-facts { grid-template-columns: 1fr; padding: 15px 0; }
  .quick-facts p { padding: 12px 4px; }
  .quick-facts p + p { border-left: 0; border-top: 1px solid var(--line); }
  .section { width: min(100% - 32px, var(--max-width)); padding-block: 78px; }
  .story { grid-template-columns: 1fr; gap: 38px; }
  .story .media-frame { width: min(100%, 520px); }
  h2 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
  .menu-grid { grid-template-columns: 1fr; gap: 54px; }
  .menu-card__intro { min-height: 0; }
  .menu-list div { grid-template-columns: minmax(0, 1fr) minmax(104px, auto); gap: 14px; }
  .feature-image { min-height: 70svh; }
  .feature-image__copy { width: calc(100% - 32px); }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review--featured { min-height: 370px; }
  .visit { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 470px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding-inline: 20px; }
  .site-footer__nav { grid-template-columns: repeat(3, auto); justify-content: start; gap: 24px; }
  .lightbox { padding: 72px 14px 70px; }
  .lightbox[open] { grid-template-columns: 1fr; }
  .lightbox figure { height: calc(100dvh - 150px); }
  .lightbox figure img { max-height: calc(100dvh - 150px); }
  .lightbox__previous, .lightbox__next { position: fixed; bottom: 16px; z-index: 1; }
  .lightbox__previous { left: calc(50% - 62px); }
  .lightbox__next { right: calc(50% - 62px); }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: #fafbf7; }
}
