:root {
  --brand-purple: #6d2d8d;
  --brand-purple-dark: #35153f;
  --accent: #f2ca3f;
  --ink: #211a24;
  --muted: #665d69;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --line: #dcd8de;
  --radius-card: 14px;
  --radius-control: 999px;
  --shadow: 0 24px 70px rgba(78, 44, 86, 0.13);
  --header-height: 72px;
  --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: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  color: #211a24;
  background: var(--accent);
  border-radius: var(--radius-control);
}
.skip-link:focus { top: 12px; }

.page-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: clamp(76px, 10vw, 132px); }
.section-kicker, .hero-location {
  margin: 0 0 12px;
  color: var(--brand-purple);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 5vw, 5rem); }
h3 { font-size: 1.55rem; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading p { max-width: 55ch; color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  color: #fffdf7;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.is-scrolled {
  background: #241b26;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 8px rgba(18, 12, 20, 0.16);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -0.02em; }
.brand span { font-size: 1.5rem; line-height: 1; }
.brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; }
.desktop-nav { display: flex; align-items: center; gap: 22px; white-space: nowrap; }
.desktop-nav a { font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.desktop-nav a:not(.social-link) { padding-block: 8px; border-bottom: 1px solid transparent; }
.desktop-nav a:not(.social-link):hover { border-color: var(--accent); }
.nav-book, .mobile-nav button {
  border: 0;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--accent);
  border-radius: var(--radius-control);
  font-weight: 800;
  cursor: pointer;
}
.social-link { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,0.45); border-radius: 50%; }
.social-link svg { width: 22px; height: 22px; fill: currentColor; }
.mobile-menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fffdf7;
  background: #241b26;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08) 10%, rgba(10, 10, 10, 0.12) 48%, rgba(10, 10, 10, 0.28) 100%);
}
.hero-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 52%; animation: hero-breathe 18s var(--ease-in-out) infinite alternate; }
.hero-light { position: absolute; inset: -35%; z-index: -1; pointer-events: none; background: linear-gradient(112deg, transparent 35%, rgba(255,230,159,0.03) 43%, rgba(255,230,159,0.34) 50%, rgba(255,230,159,0.03) 57%, transparent 65%); transform: translateX(-48%) rotate(3deg); animation: hero-light-sweep 9s var(--ease-in-out) infinite; mix-blend-mode: screen; }
.hero-content { position: relative; z-index: 2; max-width: 1080px; padding-top: 96px; padding-bottom: clamp(42px, 7vh, 72px); }
.hero-orbit { position: absolute; right: max(30px, calc((100vw - 1180px) / 2)); bottom: 64px; z-index: 2; width: 142px; aspect-ratio: 1; display: grid; place-items: center; color: var(--ink); background: var(--accent); border: 1px solid rgba(33,26,36,0.45); border-radius: 50%; box-shadow: 0 8px 8px rgba(15,10,17,0.24); }
.hero-orbit::before { content: ""; position: absolute; inset: 12px; border: 1px dashed rgba(33,26,36,0.55); border-radius: inherit; animation: orbit-spin 13s linear infinite reverse; }
.hero-orbit span { position: absolute; width: 88%; text-align: center; font-size: 0.66rem; font-weight: 900; line-height: 1.25; letter-spacing: 0.09em; animation: orbit-spin 13s linear infinite; }
.hero-orbit b { position: relative; z-index: 1; padding: 6px; background: var(--accent); font-size: 1rem; }
.hero-location { color: #fffdf7; }
.hero h1 { max-width: 760px; margin-bottom: 16px; font-size: clamp(3rem, 6.8vw, 6.1rem); text-wrap: balance; }
.hero-copy { max-width: 480px; margin-bottom: 24px; font-size: clamp(1rem, 1.6vw, 1.15rem); font-weight: 600; }
.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: var(--radius-control);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button::after, .nav-book::after { content: ""; position: absolute; inset: -60% -35%; pointer-events: none; background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.55) 49%, transparent 60%); transform: translateX(-75%); transition: transform 480ms var(--ease-out); }
.nav-book { position: relative; overflow: hidden; }
.button:active, .nav-book:active, .gallery-item:active { transform: scale(0.98); }
.button-primary { color: var(--ink); background: var(--accent); }
.button-primary:hover { background: #ffdd62; }
.button-ghost { color: #fffdf7; background: rgba(20, 20, 20, 0.22); border-color: rgba(255,255,255,0.65); }
.button-ghost:hover { background: rgba(20,20,20,0.38); }
.button-dark { color: #fffdf7; background: var(--brand-purple-dark); }
.button-dark:hover { background: var(--brand-purple); }
.button-outline { color: var(--brand-purple-dark); background: transparent; border-color: var(--brand-purple-dark); }
.button-outline:hover { color: #fff; background: var(--brand-purple-dark); }

.service-strip { position: relative; overflow: hidden; color: #fffdf7; background: var(--brand-purple-dark); }
.service-strip::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg, transparent 25%, rgba(242,202,63,0.14) 48%, transparent 70%); transform: translateX(-100%); animation: strip-flow 11s linear infinite; }
.service-strip-inner { display: grid; grid-template-columns: 0.9fr 1.35fr 0.85fr 0.8fr; }
.service-strip-inner > * { min-height: 112px; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,0.17); text-decoration: none; }
.service-strip-inner > *:first-child { padding-left: 0; }
.service-strip-inner > *:last-child { padding-right: 0; border-right: 0; }
.service-strip span { color: rgba(255,253,247,0.7); font-size: 0.75rem; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.service-strip strong { font-size: 1rem; line-height: 1.35; }
.service-strip a strong { color: var(--accent); }

.about { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.about-copy p:not(.section-kicker) { max-width: 60ch; color: var(--muted); }
.about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; }
.about-facts { display: grid; gap: 0; margin: 44px 0 0; border-top: 1px solid var(--line); }
.about-facts div { display: grid; grid-template-columns: minmax(120px, 0.7fr) 1fr; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.about-facts dt { font-weight: 800; }
.about-facts dd { margin: 0; color: var(--muted); }
.text-link { color: var(--brand-purple); font-weight: 800; text-underline-offset: 5px; }
.ratio-portrait { aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-portrait > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-collage { min-width: 0; }
.about-media { min-width: 0; margin: 0; overflow: hidden; border-radius: var(--radius-card); }
.about-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-media-main { position: relative; width: 100%; box-shadow: var(--shadow); }
.about-media img { object-position: center 56%; }
.about-media-main img { transform: scale(1.025); animation: storefront-drift 12s var(--ease-in-out) infinite alternate; }
.about-float-note { position: absolute; right: 18px; bottom: 18px; display: grid; min-width: 176px; padding: 14px 16px; color: #fffdf7; background: rgba(53,21,63,0.91); border-radius: 12px; box-shadow: 0 8px 8px rgba(24,12,29,0.24); animation: note-float 4.8s var(--ease-in-out) infinite; }
.about-float-note strong { color: var(--accent); font-size: 0.92rem; }
.about-float-note span { font-size: 0.78rem; }

.menu-section { position: relative; overflow: hidden; background: #ece8ef; }
.menu-ticker { position: absolute; inset: 0 0 auto; overflow: hidden; padding: 9px 0; color: var(--accent); background: var(--brand-purple-dark); white-space: nowrap; }
.menu-ticker-track { display: flex; width: max-content; will-change: transform; animation: ticker-roll 30s linear infinite; }
.menu-ticker-group { display: flex; flex: none; }
.menu-ticker span { flex: none; padding-right: 2.2rem; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.11em; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.menu-card { position: relative; overflow: hidden; background: var(--surface); border-radius: var(--radius-card); box-shadow: 0 8px 8px rgba(61,39,66,0.07); transform-style: preserve-3d; transition: transform 220ms var(--ease-out), box-shadow 220ms ease; }
.menu-card img { object-position: center 52%; animation: food-breathe 9s var(--ease-in-out) infinite alternate; }
.menu-card:nth-child(2) img { animation-delay: -3s; }
.menu-card:nth-child(3) img { animation-delay: -6s; }
.menu-card-copy { padding: 24px; }
.menu-card-copy > p { min-height: 5em; color: var(--muted); }
.menu-number { display: block; margin-bottom: 12px; color: var(--brand-purple); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.12em; }
.menu-line { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.menu-line:last-child { border-bottom: 0; }
.menu-line span:last-child { color: var(--brand-purple); font-weight: 800; }
.menu-footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(109,45,141,0.24); }
.menu-footer p { max-width: 50ch; margin: 0; color: var(--muted); }

.evening-section { padding-block: clamp(80px, 10vw, 132px); color: #fffdf7; background: var(--brand-purple-dark); }
.evening-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr); gap: clamp(50px, 9vw, 120px); align-items: center; }
.evening-copy .section-kicker { color: var(--accent); }
.evening-copy h2 { max-width: 540px; }
.evening-copy > p:not(.section-kicker) { max-width: 48ch; color: rgba(255,253,247,0.76); }
.evening-options { border-top: 1px solid rgba(255,255,255,0.2); }
.evening-options article { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.evening-options article > span { color: var(--accent); font-weight: 850; }
.evening-options h3 { margin-bottom: 7px; font-size: 1.75rem; }
.evening-options p { max-width: 48ch; margin: 0; color: rgba(255,253,247,0.7); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-item { padding: 0; border: 0; border-radius: var(--radius-card); background: #ddd; cursor: zoom-in; box-shadow: 0 14px 34px rgba(67,49,71,0.08); transition: transform 200ms var(--ease-out), box-shadow 200ms ease; }
.gallery-item img { object-position: center 52%; animation: gallery-drift 11s var(--ease-in-out) infinite alternate; }
.gallery-item:nth-child(2n) img { animation-direction: alternate-reverse; animation-delay: -4s; }
.gallery-item:nth-child(3n) img { animation-duration: 14s; animation-delay: -8s; }
.gallery-item:nth-child(3) img { object-position: center 46%; }
.gallery-item:nth-child(4) img { object-position: center 55%; }
.gallery-item:nth-child(6) img { object-position: center 48%; }

.reviews-section { background: #fff; }
.review-summary { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; margin-bottom: 50px; }
.review-summary h2 { max-width: 700px; margin-bottom: 0; }
.rating-total { display: grid; justify-items: end; }
.rating-total strong { font-size: 4.4rem; line-height: 0.9; color: var(--brand-purple); animation: rating-pulse 3.6s var(--ease-in-out) infinite; }
.rating-total span { margin-top: 10px; color: var(--muted); }
.review-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr); gap: 18px; }
.review-secondary { display: grid; gap: 18px; }
.review-card { min-height: 0; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-card); }
.review-card-featured { position: relative; isolation: isolate; min-height: 100%; justify-content: space-between; overflow: hidden; padding: clamp(34px, 5vw, 64px); color: #fffdf7; background: var(--brand-purple-dark); border: 0; }
.review-card-featured::before { content: ""; position: absolute; inset: -55%; z-index: -1; pointer-events: none; background: conic-gradient(from 0deg, transparent 0 32%, rgba(242,202,63,0.22) 42%, transparent 52% 100%); animation: review-glow 15s linear infinite; }
.review-card-featured .stars { color: var(--accent); }
.review-card.review-card-featured blockquote { max-width: 17ch; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.08; letter-spacing: -0.03em; }
.review-card.review-card-featured a { color: var(--accent); }
.review-author { display: flex; gap: 14px; align-items: center; }
.review-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: #eee; }
.review-author div { display: grid; }
.stars { color: #c08c00; letter-spacing: 0.05em; }
.review-card blockquote { margin: 32px 0 26px; font-size: 1.12rem; line-height: 1.55; }
.review-card a { margin-top: auto; color: var(--brand-purple); font-weight: 800; text-underline-offset: 5px; }

.visit-grid { display: grid; grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.4fr); gap: 26px; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-content: start; padding: 30px; background: #fff; border-radius: var(--radius-card); }
.visit-details h3 { margin-bottom: 8px; font-size: 1rem; letter-spacing: 0; }
.visit-details p { margin-bottom: 8px; color: var(--muted); }
.visit-details a:not(.text-link) { text-decoration: none; font-weight: 800; }
.visit-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; }
.facility-list { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; }
.facility-list span { padding: 7px 11px; color: var(--brand-purple-dark); background: #eee8f1; border-radius: var(--radius-control); font-size: 0.83rem; font-weight: 750; }
.map-frame { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-card); background: #ddd; }
.map-frame iframe { width: 100%; height: 100%; min-height: 520px; display: block; border: 0; }
.map-frame iframe.map-warming { position: fixed; top: 0; left: 0; z-index: 0; width: 720px; height: 520px; min-height: 520px; opacity: 0.001; pointer-events: none; }

.site-footer { padding-block: 68px; color: #fffdf7; background: var(--brand-purple-dark); }
.footer-grid { display: grid; grid-template-columns: minmax(280px, 1.4fr) 0.8fr 0.7fr auto; gap: 48px; align-items: start; }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { width: 96px; height: 96px; object-fit: cover; border-radius: 14px; }
.footer-brand div { display: grid; }
.footer-brand strong { font-size: 1.8rem; line-height: 1.04; }
.footer-brand span, .site-footer p { color: rgba(255,253,247,0.76); }
.footer-details > strong { color: var(--accent); }
.footer-links { display: flex; align-items: center; gap: 20px; }
.footer-links > a:not(.social-link) { font-weight: 800; text-underline-offset: 5px; }

.mobile-action-bar { display: none; }

dialog { border: 0; padding: 0; color: var(--ink); background: transparent; }
dialog::backdrop { background: rgba(15, 11, 16, 0.68); backdrop-filter: blur(6px); }
.booking-dialog { width: min(760px, calc(100% - 28px)); max-height: calc(100svh - 28px); border-radius: var(--radius-card); }
.dialog-panel { position: relative; padding: clamp(26px, 5vw, 50px); background: var(--paper); }
.dialog-close { position: absolute; top: 18px; right: 18px; border: 0; color: var(--brand-purple); background: transparent; font-weight: 800; cursor: pointer; }
.dialog-panel h2 { margin-bottom: 14px; font-size: clamp(2.2rem, 6vw, 4rem); }
.dialog-intro { max-width: 58ch; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
form label { display: grid; gap: 7px; margin-bottom: 16px; color: #403643; font-size: 0.9rem; font-weight: 800; }
input, select, textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #fff; border: 1px solid #817487; border-radius: 8px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(109,45,141,0.22); border-color: var(--brand-purple); }
.form-message { min-height: 1.6em; color: #823629; font-weight: 750; }

.lightbox { width: 100vw; max-width: none; height: 100svh; max-height: none; overflow: hidden; }
.lightbox-panel { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: 110px 1fr 110px; align-items: center; gap: 18px; padding: 70px 22px 24px; color: white; }
.lightbox figure { width: 100%; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; justify-items: center; gap: 12px; margin: 0; }
.lightbox figure img { max-width: 100%; max-height: calc(100svh - 122px); width: auto; height: auto; object-fit: contain; }
.lightbox figcaption { font-weight: 700; }
.lightbox button { border: 1px solid rgba(255,255,255,0.55); padding: 11px 14px; color: white; background: rgba(20,20,20,0.42); border-radius: var(--radius-control); cursor: pointer; }
.lightbox-close { position: absolute; top: 18px; right: 22px; }

.motion-ready .reveal-target { opacity: 0; filter: blur(5px); transform: translateY(28px) scale(0.985); transition: opacity 700ms var(--ease-out), filter 700ms var(--ease-out), transform 700ms var(--ease-out); }
.motion-ready .reveal-target.is-visible { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }

.booking-dialog[open] .dialog-panel, .lightbox[open] .lightbox-panel { animation: dialog-enter 360ms var(--ease-out) both; }
.booking-dialog[open]::backdrop, .lightbox[open]::backdrop { animation: backdrop-enter 240ms ease-out both; }

@keyframes hero-breathe {
  from { transform: scale(1.02) translate3d(-0.4%, 0, 0); }
  to { transform: scale(1.075) translate3d(0.8%, -0.8%, 0); }
}
@keyframes hero-light-sweep {
  0%, 18% { transform: translateX(-48%) rotate(3deg); opacity: 0; }
  35%, 58% { opacity: 1; }
  78%, 100% { transform: translateX(48%) rotate(3deg); opacity: 0; }
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes strip-flow { to { transform: translateX(100%); } }
@keyframes storefront-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-1.2%, -1%, 0); }
}
@keyframes note-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes ticker-roll { to { transform: translateX(-50%); } }
@keyframes food-breathe {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(0, -1.2%, 0); }
}
@keyframes gallery-drift {
  from { transform: scale(1.02) translate3d(-1%, 0, 0); }
  to { transform: scale(1.1) translate3d(1%, -1%, 0); }
}
@keyframes rating-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes review-glow { to { transform: rotate(360deg); } }
@keyframes dialog-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.96); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes backdrop-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes mobile-menu-enter {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@media (hover: hover) and (pointer: fine) {
  .button:hover::after, .nav-book:hover::after { transform: translateX(75%); }
  .button:hover { box-shadow: 0 6px 8px rgba(53,21,63,0.22); }
  .brand:hover img { transform: rotate(-6deg) scale(1.06); }
  .brand img { transition: transform 200ms var(--ease-out); }
  .gallery-item:hover { transform: translateY(-7px) rotate(0.35deg); box-shadow: var(--shadow); }
  .menu-card:hover { box-shadow: 0 18px 38px rgba(61,39,66,0.16); }
  .text-link:hover { text-decoration-thickness: 3px; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-flex; border: 1px solid rgba(255,255,255,0.6); padding: 9px 15px; color: white; background: rgba(20,20,20,0.15); border-radius: var(--radius-control); font-weight: 800; }
  .mobile-nav { position: absolute; top: calc(100% + 8px); right: 20px; width: min(320px, calc(100vw - 40px)); padding: 18px; color: var(--ink); background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow); }
  .mobile-nav:not([hidden]) { display: grid; gap: 8px; }
  .mobile-nav:not([hidden]) { transform-origin: top right; animation: mobile-menu-enter 220ms var(--ease-out) both; }
  .mobile-nav a, .mobile-nav button { width: 100%; padding: 12px 14px; text-align: left; text-decoration: none; }
  .mobile-nav a { border-bottom: 1px solid var(--line); }
  .mobile-nav .mobile-social { width: 42px; padding: 0; border: 1px solid var(--line); }
  .service-strip-inner { grid-template-columns: 1fr 1fr; }
  .service-strip-inner > * { min-height: 96px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.17); }
  .service-strip-inner > *:first-child { padding-left: 20px; }
  .service-strip-inner > *:nth-child(2) { border-right: 0; }
  .service-strip-inner > *:nth-child(n+3) { border-bottom: 0; }
  .service-strip-inner > *:last-child { padding-right: 20px; }
  .evening-layout, .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .review-card-featured { min-height: 500px; }
  .visit-grid { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 440px; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; }
}

@media (min-width: 700px) and (max-width: 1023px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  :root { --header-height: 66px; }
  body { padding-bottom: 72px; }
  .page-shell { width: min(100% - 28px, 1180px); }
  .section { padding-block: 76px; }
  .brand span { font-size: 1.22rem; }
  .brand img { width: 44px; height: 44px; }
  .site-header { padding-inline: 14px; }
  .hero-content { padding-top: 90px; padding-bottom: 40px; }
  .hero h1 { max-width: 350px; font-size: clamp(3.05rem, 15vw, 4.9rem); }
  .hero-copy { max-width: 330px; font-size: 1.02rem; }
  .hero-orbit { top: 92px; right: 14px; bottom: auto; width: 94px; }
  .hero-orbit::before { inset: 8px; }
  .hero-orbit span { font-size: 0.49rem; }
  .hero-orbit b { font-size: 0.76rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { padding-inline: 14px; }
  .about { grid-template-columns: 1fr; gap: 42px; }
  .about-copy { order: 1; }
  .about-collage { order: 2; }
  .about-float-note { right: 12px; bottom: 12px; min-width: 158px; padding: 11px 13px; }
  .about-facts div { grid-template-columns: 1fr; gap: 2px; }
  .menu-grid, .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .menu-card-copy > p { min-height: 0; }
  .menu-footer { align-items: flex-start; flex-direction: column; }
  .evening-section { padding-block: 76px; }
  .evening-layout { grid-template-columns: 1fr; gap: 48px; }
  .evening-options article { grid-template-columns: 42px 1fr; gap: 14px; }
  .review-summary { grid-template-columns: 1fr; align-items: start; }
  .rating-total { justify-items: start; }
  .review-card-featured { min-height: 440px; }
  .review-card-featured blockquote { font-size: clamp(2rem, 9vw, 3rem); }
  .visit-details { grid-template-columns: 1fr; }
  .visit-actions { grid-column: auto; }
  .facility-list { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .lightbox-panel { grid-template-columns: 1fr 1fr; align-content: center; padding: 64px 14px 20px; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; height: calc(100svh - 160px); }
  .lightbox-prev, .lightbox-next { grid-row: 2; }
  .mobile-action-bar { position: fixed; inset: auto 0 0; z-index: 38; height: 72px; display: grid; grid-template-columns: repeat(3, 1fr); color: #fffdf7; background: #241b26; border-top: 1px solid rgba(255,255,255,0.14); box-shadow: 0 -4px 8px rgba(18,12,20,0.16); opacity: 0; pointer-events: none; transform: translateY(100%); transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1); }
  .mobile-action-bar.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-action-bar a, .mobile-action-bar button { display: grid; place-items: center; align-content: center; gap: 2px; padding: 7px 5px; color: inherit; background: transparent; border: 0; border-right: 1px solid rgba(255,255,255,0.12); text-decoration: none; font-size: 0.76rem; font-weight: 800; cursor: pointer; }
  .mobile-action-bar > *:last-child { color: var(--ink); background: var(--accent); border-right: 0; }
  .mobile-action-bar svg { width: 22px; height: 22px; fill: currentColor; }
  .mobile-action-bar svg.stroke-icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .map-frame iframe:not(.map-warming) { width: 720px; max-width: none; }
}

@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; }
  .hero-image, .hero-light, .hero-orbit::before, .hero-orbit span, .service-strip::before, .about-media-main img, .about-float-note, .menu-ticker-track, .menu-card img, .gallery-item img, .rating-total strong, .review-card-featured::before { animation: none !important; }
  .motion-ready .reveal-target { opacity: 1; filter: none; transform: none; }
}

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