:root {
  --ink: #171713;
  --ink-soft: #57574f;
  --canvas: #f3f3f0;
  --surface: #ffffff;
  --line: rgba(23, 23, 19, 0.15);
  --sun: #ffd21a;
  --sun-deep: #e8b900;
  --radius: 14px;
  --shadow: 0 20px 48px rgba(23, 23, 19, 0.12);
  --max: 1240px;
  --z-header: 100;
  --z-actions: 150;
  --z-modal: 200;
  --z-skip: 300;
  --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: 78px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.icon { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; stroke-width: 2; transition: transform 180ms var(--ease-out), color 180ms ease; }
.action-icon { width: 1.05rem; height: 1.05rem; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: -0.035em; text-wrap: balance; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.55rem, 6vw, 4.9rem); max-width: 11ch; }
h3 { font-size: 1.55rem; }

.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; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: var(--z-skip); padding: 10px 14px; background: var(--sun); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: calc(var(--z-header) + 1); height: 3px; overflow: hidden; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--sun); box-shadow: 0 0 14px rgba(255, 210, 26, 0.7); transform: scaleX(0); transform-origin: left; will-change: transform; }
:focus-visible { outline: 3px solid #11110e; outline-offset: 3px; box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.96); }
.kicker { margin-bottom: 0.8rem; color: var(--ink-soft); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.section { max-width: var(--max); margin-inline: auto; padding: 6rem 1.25rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: var(--z-header); display: flex; min-height: 72px; align-items: center; justify-content: space-between; padding: 9px max(18px, calc((100vw - var(--max)) / 2)); color: var(--ink); transition: background 220ms var(--ease-out), color 180ms ease, box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out); }
.site-header.is-solid { color: var(--ink); background: rgba(255, 255, 255, 0.96); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 0.72rem; font-weight: 800; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 50%; transition: transform 220ms var(--ease-out); }
.brand span { font-size: 1.05rem; letter-spacing: -0.025em; }
.nav-toggle { display: grid; width: 48px; height: 48px; place-items: center; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.nav-toggle svg { width: 27px; height: 27px; }
.header-socials { display: none; }
.site-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 0.9rem 1.25rem 1.25rem; color: var(--ink); background: var(--surface); box-shadow: 0 18px 35px rgba(23, 23, 19, 0.12); transform: translateY(-140%); visibility: hidden; transition: transform 240ms var(--ease-drawer), visibility 240ms; }
.site-nav.is-open { transform: translateY(0); visibility: visible; }
.site-nav a, .site-nav button { min-height: 50px; padding: 0.75rem 0.25rem; border: 0; border-bottom: 1px solid var(--line); color: inherit; background: none; font-weight: 700; text-align: left; text-decoration: none; cursor: pointer; }
.site-nav .nav-book { display: inline-flex; align-items: center; gap: 0.5rem; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease-out); }
.site-nav a.is-current::after { transform: scaleX(1); transform-origin: left; }

.hero { position: relative; display: grid; min-height: 100svh; align-items: end; color: white; overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 50%; will-change: transform; }
.hero-overlay { background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.30) 100%); }
.hero-content { position: relative; z-index: 1; width: 100%; max-width: var(--max); margin-inline: auto; padding: 8rem 1.25rem 6.7rem; }
.hero-kicker { display: none; }
.hero h1 { max-width: 10ch; margin-bottom: 1.35rem; font-size: clamp(3.25rem, 10vw, 6rem); letter-spacing: -0.04em; }
.hero h1 > span { display: inline-block; }
.hero-title-lower { position: relative; isolation: isolate; }
.hero-title-lower::after { content: ""; position: absolute; z-index: -1; right: -0.08em; bottom: 0.04em; left: -0.08em; height: 0.14em; background: var(--sun); transform: scaleX(0.18); transform-origin: left; opacity: 0.88; }
.hero h1, .hero-content > p { color: #11110e; }
.hero-content > p { max-width: 34rem; margin-bottom: 1.8rem; font-size: clamp(1rem, 3vw, 1.28rem); font-weight: 700; line-height: 1.5; }
.hero-actions, .visit-actions, .atmosphere-actions, .closing-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.button { position: relative; isolation: isolate; display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 0.55rem; overflow: hidden; padding: 0.82rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1; text-align: center; text-decoration: none; cursor: pointer; transition: transform 160ms var(--ease-out), background 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.button::before { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(255, 255, 255, 0.28); transform: translateX(-105%) skewX(-16deg); transition: transform 240ms var(--ease-out); }
.button:active { transform: scale(0.97); }
.button-primary { color: var(--ink); background: var(--sun); }
.button-primary:hover { background: #ffe05a; }
.button-ghost { border-color: rgba(17, 17, 14, 0.6); color: var(--ink); background: rgba(255, 255, 255, 0.78); }
.button-dark { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: var(--surface); }
.hero-scroll { position: absolute; right: 1.25rem; bottom: 1.6rem; z-index: 2; display: flex; align-items: center; gap: 0.4rem; padding: 0.38rem 0.55rem; border-radius: 999px; color: var(--ink); background: rgba(255, 255, 255, 0.82); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-decoration: none; text-transform: uppercase; }
.hero-scroll svg { width: 20px; height: 20px; }
.hero-orbit { position: absolute; right: -0.5rem; bottom: 7.8rem; z-index: 1; display: grid; width: 132px; aspect-ratio: 1; place-items: center; color: #11110e; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16)); }
.hero-orbit-ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hero-orbit-circle { fill: none; stroke: currentColor; stroke-width: 1.4; opacity: 0.42; }
.hero-orbit-ring text { fill: currentColor; stroke: none; font-size: 12px; font-weight: 900; letter-spacing: 0.14em; }
.hero-orbit img { width: 58px; height: 58px; border: 4px solid rgba(255, 255, 255, 0.72); border-radius: 50%; }

.quick-facts { color: white; background: var(--ink); }
.quick-facts ul { display: grid; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; list-style: none; }
.quick-facts li { display: grid; grid-template-columns: auto minmax(0, 1fr); grid-template-areas: "icon label" "icon value"; align-items: center; column-gap: 0.75rem; gap: 0.2rem 0.75rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.quick-facts li:last-child { border-bottom: 0; }
.quick-facts .fact-icon { grid-area: icon; width: 1.55rem; height: 1.55rem; color: var(--sun); }
.quick-facts span { grid-area: label; color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; }
.quick-facts strong { grid-area: value; font-size: 0.96rem; line-height: 1.35; }
.quick-facts li { transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease-out); }

.flavour-loop { position: relative; z-index: 2; overflow: hidden; border-top: 1px solid rgba(23, 23, 19, 0.2); border-bottom: 1px solid rgba(23, 23, 19, 0.2); color: var(--ink); background: var(--sun); }
.flavour-track { display: flex; width: max-content; will-change: transform; }
.flavour-sequence { display: flex; flex: 0 0 auto; align-items: center; gap: 1.25rem; min-height: 66px; padding-right: 1.25rem; font-size: clamp(1rem, 2.4vw, 1.42rem); font-weight: 900; letter-spacing: -0.025em; text-transform: uppercase; white-space: nowrap; }
.flavour-sequence b { font-size: 0.85em; }

.story { display: grid; gap: 3.5rem; align-items: center; }
.story-body p { max-width: 63ch; color: var(--ink-soft); font-size: 1.04rem; }
.story-body p:last-child { margin-bottom: 0; }
.story-pull { max-width: 23ch; margin: 2rem 0 0; padding-left: 1.15rem; border-left: 5px solid var(--sun); font-size: clamp(1.15rem, 3vw, 1.45rem); font-weight: 800; line-height: 1.35; }
.story-collage { position: relative; padding: 0; }
.ratio-frame { aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-visual { margin: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-photo-float { width: 100%; height: 100%; will-change: transform; }
.story-visual img { object-position: 50% 48%; transition: transform 600ms var(--ease-out); }

.menu-section { position: relative; isolation: isolate; max-width: none; overflow: hidden; padding-inline: 0; background: var(--ink); color: white; }
.menu-section::before { content: ""; position: absolute; z-index: -1; top: 5%; right: -170px; width: 420px; aspect-ratio: 1; border: 2px dashed rgba(255, 210, 26, 0.28); border-radius: 50%; box-shadow: 0 0 0 52px rgba(255, 210, 26, 0.045), 0 0 0 104px rgba(255, 210, 26, 0.025); will-change: transform; }
.menu-section::after { content: ""; position: absolute; z-index: -1; bottom: 8%; left: -70px; width: 160px; aspect-ratio: 1; border-radius: 50%; background: var(--sun); opacity: 0.075; will-change: transform; }
.menu-section > * { position: relative; z-index: 1; width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.menu-heading { display: grid; gap: 1rem; }
.menu-heading p { max-width: 42ch; margin: 0; color: rgba(255, 255, 255, 0.66); font-size: 1.08rem; }
.menu-categories { display: flex; gap: 0.55rem; margin-top: 2rem; padding: 0 0 1rem; overflow-x: auto; list-style: none; scrollbar-width: none; }
.menu-categories::-webkit-scrollbar { display: none; }
.menu-categories li { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 0.45rem; padding: 0.45rem 0.8rem; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px; color: rgba(255, 255, 255, 0.8); font-size: 0.78rem; font-weight: 800; }
.menu-categories .category-icon { width: 0.95rem; height: 0.95rem; }
.menu-categories li:nth-child(4) { border-color: var(--sun); color: var(--sun); }
.menu-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.menu-card { border-top: 1px solid rgba(255, 255, 255, 0.22); padding-top: 1rem; }
.menu-card-media { border-radius: var(--radius); transform-style: preserve-3d; will-change: transform; }
.menu-card-media img { object-position: 50% 58%; transition: transform 480ms ease; }
.menu-card:nth-child(2) .menu-card-media img { object-position: 52% 54%; }
.menu-card-copy { padding: 1.4rem 0.3rem 0; }
.menu-card-copy h3 { margin-bottom: 1.1rem; }
.menu-card dl { margin: 0; }
.menu-card dl div { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 0.62rem 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.menu-card dt { color: rgba(255, 255, 255, 0.78); }
.menu-card dd { margin: 0; font-weight: 800; }
.menu-preview { display: grid; gap: 2rem; align-items: center; margin-top: 4rem; padding: 2rem 0 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.menu-preview-copy h3 { margin-bottom: 0.75rem; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.menu-preview-copy p { max-width: 48ch; color: rgba(255, 255, 255, 0.7); }
.menu-preview-copy small { display: block; margin-top: 0.5rem; color: rgba(255, 255, 255, 0.5); }
.menu-preview-pages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.menu-preview-pages button { position: relative; overflow: hidden; padding: 0; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 10px; background: #e8e8e5; cursor: pointer; transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease; }
.menu-preview-pages button:active { transform: scale(0.98); }
.menu-preview-pages img { width: 100%; height: auto; transition: transform 600ms var(--ease-out), filter 300ms ease; }
.menu-preview-pages span { position: absolute; right: 0.6rem; bottom: 0.6rem; padding: 0.3rem 0.55rem; border-radius: 999px; color: var(--ink); background: var(--sun); font-size: 0.72rem; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 0.6rem; min-height: 48px; padding: 0; border: 0; color: var(--sun); background: none; font-weight: 800; cursor: pointer; transition: transform 160ms var(--ease-out), color 180ms ease; }
.text-link:active { transform: scale(0.97); }
.text-link svg { width: 22px; height: 22px; transition: transform 180ms var(--ease-out); }
.text-link .action-icon { width: 1.05rem; height: 1.05rem; }
.hero-arrow { display: none; }
.text-link-dark { color: var(--ink); }

.atmosphere { display: grid; overflow: hidden; background: var(--sun); }
.atmosphere-image { min-height: 390px; margin: 0; overflow: hidden; }
.atmosphere-image picture { display: block; width: 100%; height: 100%; }
.atmosphere-image img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; object-position: center; will-change: transform; }
.atmosphere-copy { position: relative; isolation: isolate; display: grid; align-content: center; overflow: hidden; padding: 4.5rem 1.25rem; }
.atmosphere-copy::before { content: "JASMINES"; position: absolute; z-index: -1; right: -0.14em; bottom: -0.18em; color: rgba(23, 23, 19, 0.075); font-size: clamp(5.5rem, 15vw, 11rem); font-weight: 900; line-height: 0.8; letter-spacing: -0.06em; writing-mode: vertical-rl; will-change: transform; }
.atmosphere-copy h2 { max-width: 12ch; }
.atmosphere-copy p { max-width: 49ch; margin-bottom: 1.5rem; }

.gallery-section { padding-bottom: 7rem; }
.gallery-heading { position: relative; isolation: isolate; display: grid; gap: 0.8rem; }
.gallery-heading::after { content: "06"; position: absolute; z-index: -1; top: -1.6rem; right: 0; display: grid; width: 86px; aspect-ratio: 1; place-items: center; border-radius: 50%; color: var(--ink); background: var(--sun); box-shadow: 0 0 0 14px rgba(255, 210, 26, 0.17); font-size: 1.4rem; font-weight: 900; will-change: transform; }
.gallery-heading p { max-width: 49ch; margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; margin-top: 2.7rem; }
.gallery-item { position: relative; isolation: isolate; padding: 0; border: 0; border-radius: var(--radius); background: #ddd; cursor: zoom-in; transform-style: preserve-3d; will-change: transform; }
.gallery-item img { transition: transform 500ms ease; }
.gallery-item::before { content: ""; position: absolute; z-index: 2; inset: -20%; background: rgba(255, 210, 26, 0.16); transform: translateX(-135%) skewX(-18deg); pointer-events: none; transition: transform 650ms var(--ease-out); }
.gallery-item::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0, 0, 0, 0.58)); }
.gallery-meta { position: absolute; z-index: 1; right: 1rem; bottom: 0.9rem; left: 1rem; display: flex; align-items: end; justify-content: space-between; gap: 1rem; color: white; text-align: left; }
.gallery-meta b { font-size: 0.72rem; letter-spacing: 0.08em; }
.gallery-meta span { max-width: 13ch; font-weight: 800; letter-spacing: -0.02em; text-align: right; }
.gallery-item:nth-child(1) img { object-position: 52% 48%; }
.gallery-item:nth-child(2) img { object-position: 50% 58%; }
.gallery-item:nth-child(3) img { object-position: 50% 58%; }
.gallery-item:nth-child(4) img { object-position: 50% 56%; }
.gallery-item:nth-child(5) img { object-position: 48% 57%; }
.gallery-item:nth-child(6) img { object-position: 51% 55%; }

.reviews-section { display: grid; gap: 2.5rem; border-top: 1px solid var(--line); }
.reviews-summary { align-self: start; }
.rating-summary { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 0 0.75rem; }
.rating-summary strong { grid-row: 1 / 3; font-size: 3.5rem; line-height: 1; }
.rating-summary span, .review-head span { color: #765d00; letter-spacing: 0.06em; }
.rating-summary small { color: var(--ink-soft); }
.reviews-layout { display: grid; gap: 1rem; }
.review-stack { display: grid; gap: 1rem; }
.review { display: flex; flex-direction: column; min-height: 280px; padding: 1.45rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform 200ms var(--ease-out), box-shadow 200ms ease, border-color 200ms ease; }
.review-featured { position: relative; isolation: isolate; overflow: hidden; color: white; background: var(--ink); }
.review-featured::before { content: ""; position: absolute; z-index: -1; top: -48%; right: -36%; width: 84%; aspect-ratio: 1; border: 44px solid rgba(255, 210, 26, 0.08); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255, 210, 26, 0.035); will-change: transform; }
.review-featured .review-head span { color: var(--sun); }
.review.review-featured > p { color: rgba(255, 255, 255, 0.78); }
.review-featured > a { color: white; }
.review-head { display: flex; align-items: center; gap: 0.8rem; }
.review-head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: #eee; }
.review-head h3 { margin: 0 0 0.15rem; font-size: 1rem; letter-spacing: -0.02em; }
.review-head span { font-size: 0.8rem; }
.review > p { margin: 1.35rem 0; color: var(--ink-soft); }
.review > a { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; align-self: flex-start; font-size: 0.85rem; font-weight: 800; text-underline-offset: 4px; }
.review > a .icon { width: 0.95rem; height: 0.95rem; }

.visit-shell { background: var(--surface); }
.visit-top { padding-bottom: 4rem; }
.visit-heading p { max-width: 42ch; margin: 0; color: var(--ink-soft); font-size: 1.04rem; }
.amenities { display: grid; gap: 0; margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.amenities li { display: grid; grid-template-columns: auto minmax(0, 1fr); grid-template-areas: "icon title" "icon detail"; align-items: start; column-gap: 0.75rem; gap: 0.2rem 0.75rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.amenities .amenity-icon { grid-area: icon; width: 1.5rem; height: 1.5rem; color: var(--sun-deep); }
.amenities strong { grid-area: title; font-size: 0.92rem; }
.amenities span { grid-area: detail; color: var(--ink-soft); font-size: 0.86rem; }
.visit-section { display: grid; background: var(--sun); }
.visit-info { padding: 5rem 1.25rem; }
.visit-info h3 { max-width: 9ch; margin-bottom: 1.6rem; font-size: clamp(2.4rem, 6vw, 4rem); }
.visit-info address { display: grid; gap: 1rem; margin: 0 0 2rem; font-style: normal; font-weight: 800; }
.visit-info address a { display: inline-flex; width: fit-content; align-items: flex-start; gap: 0.6rem; text-underline-offset: 4px; }
.visit-info address a .icon { width: 1.1rem; height: 1.1rem; margin-top: 0.2rem; color: var(--ink); }
.hours { max-width: 34rem; margin: 0 0 2.2rem; }
.hours div { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 0.62rem 0; border-top: 1px solid rgba(23, 23, 19, 0.22); }
.hours dd { margin: 0; font-weight: 800; text-align: right; }
.map-wrap { min-height: 520px; background: #e8e8e5; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 520px; border: 0; }

.closing-cta { position: relative; isolation: isolate; display: grid; gap: 2rem; align-items: end; overflow: hidden; padding: 5.5rem max(1.25rem, calc((100vw - var(--max)) / 2)); color: white; background: var(--ink); }
.closing-cta::before { content: ""; position: absolute; z-index: -1; right: -7rem; bottom: -10rem; width: 25rem; aspect-ratio: 1; border: 2px solid rgba(255, 210, 26, 0.24); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(255, 210, 26, 0.04), 0 0 0 6rem rgba(255, 210, 26, 0.025); will-change: transform; }
.closing-cta h2 { max-width: 12ch; margin-bottom: 1rem; }
.closing-cta p { max-width: 45ch; margin: 0; color: rgba(255, 255, 255, 0.65); }
.closing-actions { align-items: center; }

.site-footer { display: grid; gap: 2rem; padding: 3.4rem 1.25rem 2rem; color: white; background: #0d0d0b; }
.footer-brand img { border-radius: 50%; }
.footer-brand p { margin: 0.8rem 0 0; font-size: 1.7rem; font-weight: 800; letter-spacing: -0.035em; }
.footer-brand span { color: rgba(255, 255, 255, 0.58); }
.footer-contact, .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.footer-contact a, .footer-links > a, .footer-links > button { min-height: 44px; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0; border: 0; color: rgba(255, 255, 255, 0.78); background: none; text-decoration: none; cursor: pointer; }
.footer-contact .icon, .footer-links .icon { width: 1rem; height: 1rem; }
.footer-contact a:hover, .footer-links > a:hover, .footer-links > button:hover { color: var(--sun); }
.social-links { display: flex; gap: 0.55rem; margin-top: 0.35rem; }
.social-links a { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; color: white; }
.social-links svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.footer-copy { margin: 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.5); font-size: 0.76rem; }
.mobile-actions { display: none; }

.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: 0.7rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.78); opacity: 1; transition: opacity 180ms var(--ease-out); }
.modal-panel { position: relative; z-index: 1; width: min(100%, 760px); max-height: calc(100svh - 1.4rem); overflow: auto; padding: 2.8rem 1.2rem 1.4rem; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); opacity: 1; transform: translateY(0) scale(1); transform-origin: center; transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out); }
.modal.is-entering .modal-backdrop, .modal.is-leaving .modal-backdrop { opacity: 0; }
.modal.is-entering .modal-panel, .modal.is-leaving .modal-panel { opacity: 0; transform: translateY(14px) scale(0.965); }
.modal.is-leaving .modal-backdrop { transition-duration: 140ms; }
.modal.is-leaving .modal-panel { transition-duration: 160ms; }
.modal-panel h2 { font-size: clamp(2.3rem, 9vw, 4rem); }
.modal-lead { max-width: 55ch; color: var(--ink-soft); }
.modal-close { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3; display: grid; width: 48px; height: 48px; place-items: center; padding: 0; border: 0; border-radius: 50%; color: var(--ink); background: rgba(255, 255, 255, 0.92); cursor: pointer; transition: transform 150ms var(--ease-out), background 160ms ease; }
.modal-close svg { width: 24px; height: 24px; }
.form-grid { display: grid; gap: 1rem; margin-top: 1.6rem; }
.form-grid label { display: grid; gap: 0.35rem; font-size: 0.82rem; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 48px; padding: 0.72rem 0.8rem; border: 1px solid #aaa99f; border-radius: 10px; color: var(--ink); background: white; }
textarea { resize: vertical; }
[aria-invalid="true"] { border-color: #9b1c1c; }
.field-error { min-height: 1.1em; color: #8c1717; font-size: 0.75rem; font-weight: 600; }
.form-submit { margin-top: 1.2rem; }
.booking-review { padding: 1.3rem; border-radius: var(--radius); background: #ededeb; }
.booking-review h3 { margin-bottom: 0.7rem; }
.booking-review .button { margin-top: 0.5rem; }
.text-button { display: block; min-height: 44px; margin-top: 0.7rem; padding: 0; border: 0; background: none; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; transition: transform 150ms var(--ease-out), color 160ms ease; }
.menu-panel { width: min(100%, 1100px); }
.menu-pages { display: grid; gap: 1rem; margin-top: 2rem; }
.menu-pages figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #eee; }
.menu-pages img { width: 100%; height: auto; }
.menu-pages figcaption { padding: 0.7rem 1rem; font-weight: 800; }
.lightbox { padding: 0; }
.lightbox-panel { position: relative; z-index: 1; display: grid; width: 100%; height: 100%; grid-template-columns: 54px minmax(0, 1fr) 54px; align-items: center; }
.lightbox-panel figure { display: grid; max-width: min(90vw, 1200px); max-height: 88svh; justify-self: center; margin: 0; color: white; }
.lightbox-panel figure img { max-width: 100%; max-height: calc(88svh - 48px); width: auto; height: auto; justify-self: center; object-fit: contain; }
.lightbox-panel figcaption { min-height: 44px; padding: 0.7rem 0; text-align: center; }
.lightbox-close { position: fixed; top: 0.8rem; right: 0.8rem; }
.lightbox-nav { display: grid; width: 48px; height: 48px; place-items: center; justify-self: center; padding: 0; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 50%; color: white; background: rgba(0, 0, 0, 0.18); cursor: pointer; transition: transform 150ms var(--ease-out), background 160ms ease, border-color 160ms ease; }
.lightbox-nav svg { width: 26px; height: 26px; }
.reveal { opacity: 1; transform: none; }

.nav-toggle:active, .modal-close:active, .lightbox-nav:active, .menu-preview-pages button:active, .gallery-item.is-pressed { transform: scale(0.97); }

@media (hover: hover) and (pointer: fine) {
  .brand:hover img { transform: rotate(-7deg) scale(1.07); }
  .site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .button:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(23, 23, 19, 0.14); }
  .button:hover::before { transform: translateX(105%) skewX(-16deg); }
  .button:hover .action-icon { transform: translateY(-1px) rotate(-4deg); }
  .text-link:hover > svg:last-of-type { transform: translateX(5px); }
  .text-link:hover .action-icon { transform: translateY(-1px) rotate(-4deg); }
  .quick-facts li:hover { color: var(--sun); transform: translateY(-3px); }
  .quick-facts li:hover .fact-icon { transform: rotate(8deg) scale(1.08); }
  .menu-categories li:hover .category-icon { transform: translateY(-1px) rotate(8deg); }
  .amenities li:hover .amenity-icon { transform: translateY(-2px); }
  .footer-contact a:hover .icon, .footer-links > a:hover .icon, .footer-links > button:hover .icon { transform: translateX(2px); }
  .story-collage:hover .story-visual img { transform: scale(1.035); }
  .menu-card:hover .menu-card-media img { transform: scale(1.04); }
  .menu-preview-pages button:hover { border-color: var(--sun); box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28); transform: translateY(-5px) rotate(-0.6deg); }
  .menu-preview-pages button:nth-child(2):hover { transform: translateY(-5px) rotate(0.6deg); }
  .menu-preview-pages button:hover img { filter: saturate(1.08); transform: scale(1.025); }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item:hover::before { transform: translateX(135%) skewX(-18deg); }
  .review:not(.review-featured):hover { border-color: rgba(23, 23, 19, 0.3); box-shadow: 0 16px 30px rgba(23, 23, 19, 0.08); transform: translateY(-5px); }
  .modal-close:hover { background: var(--sun); transform: rotate(90deg); }
  .lightbox-nav:hover { border-color: var(--sun); background: rgba(255, 210, 26, 0.18); transform: scale(1.06); }
  .text-button:hover { color: #765d00; transform: translateX(3px); }
}

@media (min-width: 600px) {
  .section { padding: 7rem 2rem; }
  .quick-facts ul { grid-template-columns: repeat(2, 1fr); padding-inline: 2rem; }
  .quick-facts li { padding: 1.35rem 1.5rem; border-right: 1px solid rgba(255, 255, 255, 0.16); }
  .quick-facts li:nth-child(even) { border-right: 0; }
  .story { grid-template-columns: 1fr minmax(280px, 0.78fr); }
  .menu-section > * { width: min(calc(100% - 4rem), var(--max)); }
  .menu-heading, .gallery-heading, .visit-heading { grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr); align-items: end; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-preview { grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.2fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-section { grid-template-columns: minmax(220px, 0.65fr) 1.5fr; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .amenities li:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--line); }
  .amenities li:nth-child(even) { padding-left: 1.5rem; }
  .visit-info { padding: 6rem 2rem; }
  .closing-cta { grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); padding-inline: max(2rem, calc((100vw - var(--max)) / 2)); }
  .closing-actions { justify-content: flex-end; }
  .site-footer { grid-template-columns: 1.2fr 1fr 0.7fr; padding: 4.5rem max(2rem, calc((100vw - var(--max)) / 2)) 2rem; }
  .footer-copy { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wide { grid-column: 1 / -1; }
  .menu-pages { grid-template-columns: repeat(2, 1fr); }
  .modal-panel { padding: 3.3rem 2rem 2rem; }
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: flex; align-items: center; gap: 1.4rem; padding: 0; background: none; box-shadow: none; transform: none; visibility: visible; }
  .site-nav a, .site-nav button { min-height: 44px; padding: 0.55rem 0; border: 0; color: inherit; font-size: 0.84rem; }
  .site-nav .nav-book { padding-inline: 1rem; border-radius: 999px; color: var(--ink); background: var(--sun); }
  .hero-media img { object-position: 50% 50%; }
  .hero-content { padding-inline: 2rem; }
  .hero-scroll { right: max(2rem, calc((100vw - var(--max)) / 2)); }
  .hero-orbit { right: max(2rem, calc((100vw - var(--max)) / 2)); bottom: 8.5rem; width: 168px; }
  .hero-orbit img { width: 68px; height: 68px; }
  .quick-facts ul { grid-template-columns: repeat(4, 1fr); }
  .quick-facts li { min-height: 112px; align-content: center; border-bottom: 0; }
  .quick-facts li:nth-child(even) { border-right: 1px solid rgba(255, 255, 255, 0.16); }
  .quick-facts li:last-child { border-right: 0; }
  .atmosphere { grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr); }
  .atmosphere-copy { padding: 5rem max(2rem, calc((100vw - var(--max)) / 2)); padding-left: clamp(2.5rem, 5vw, 5.5rem); }
  .visit-section { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
  .visit-info { padding-left: max(2rem, calc((100vw - var(--max)) / 2)); }
  .menu-pages { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-layout { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
  .review-featured { min-height: 100%; padding: 2rem; }
  .review-featured > p { font-size: 1.12rem; line-height: 1.72; }
  .review-stack .review { min-height: 0; }
}

/* Desktop hero direction: an editorial split composition inspired by the supplied reference. */
@media (min-width: 768px) {
  .site-header { padding-inline: clamp(18px, 6.7vw, 7rem); }
  .site-header:not(.is-solid) {
    color: white;
    background: linear-gradient(180deg, rgba(13, 13, 11, 0.46), rgba(13, 13, 11, 0));
    box-shadow: none;
  }
  .site-header:not(.is-solid) .brand span,
  .site-header:not(.is-solid) .site-nav a {
    text-shadow: 0 1px 7px rgba(0, 0, 0, 0.64);
  }
  .site-header:not(.is-solid) .site-nav { color: white; }
  .site-header:not(.is-solid) .brand span {
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.045em;
    text-transform: uppercase;
  }

  .hero-media img { filter: brightness(0.84) saturate(0.94); }
  .hero-content {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
    grid-template-rows: auto auto;
    column-gap: clamp(2rem, 5vw, 5rem);
    row-gap: clamp(0.7rem, 1.2vw, 1.25rem);
    align-items: end;
    padding: 7.4rem clamp(2rem, 6.7vw, 7rem) 4.6rem;
  }
  .hero-kicker {
    display: block;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.72);
  }
  .hero .hero-kicker { color: white; }
  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    margin: 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.8rem, 5.6vw, 7.2rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.86;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    text-wrap: nowrap;
  }
  .hero h1 > span { display: block; white-space: nowrap; }
  .hero h1 > br { display: none; }
  .hero-title-lower { color: white; }
  .hero-title-lower::after { display: none; }
  .hero-content > p:not(.hero-kicker) {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    width: min(100%, 36ch);
    max-width: 36ch;
    margin: 0;
    color: white;
    font-size: clamp(0.96rem, 1.45vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
  }
  .hero-actions {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    display: flex;
    width: 100%;
    max-width: 402px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.75rem;
  }
  .hero-actions .button {
    min-width: 0;
    min-height: 60px;
    flex: 1 1 0;
    justify-content: flex-start;
    padding: 0.8rem 1rem;
    border-radius: 0;
    font-size: 0.83rem;
    letter-spacing: 0.01em;
  }
  .hero-actions .button-primary {
    border-color: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
  }
  .hero-actions .button-ghost {
    border-color: rgba(255, 255, 255, 0.86);
    color: white;
    background: rgba(17, 17, 14, 0.14);
  }
  .hero-actions .action-icon { display: none; }
  .hero-actions .hero-arrow {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    margin-left: auto;
  }
  .hero-orbit {
    top: 5.8rem;
    right: clamp(2rem, 6.7vw, 7rem);
    bottom: auto;
    width: 208px;
    color: white;
    opacity: 0.8;
  }
  .hero-orbit img { width: 84px; height: 84px; border-width: 3px; }
  .hero-orbit-circle { opacity: 0.62; }
  .hero-orbit-ring text { font-size: 12px; }
  .hero-scroll {
    right: clamp(2rem, 6.7vw, 7rem);
    bottom: 1.25rem;
    padding: 0;
    color: white;
    background: none;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  }
  .hero-scroll span { display: none; }
  .hero-scroll svg { width: 28px; height: 28px; }
}

@media (min-width: 768px) and (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.8fr);
    column-gap: 1.5rem;
    padding-inline: clamp(1.5rem, 6.7vw, 3.5rem);
  }
  .hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    letter-spacing: -0.065em;
  }
  .hero-orbit { right: 1rem; width: 170px; }
  .hero-orbit img { width: 70px; height: 70px; }
  .hero-actions { max-width: 300px; }
}

@media (max-width: 767px) {
  body { padding-bottom: 70px; }
  .site-header:not(.is-solid) { color: white; background: linear-gradient(180deg, rgba(13, 13, 11, 0.48), rgba(13, 13, 11, 0)); box-shadow: none; }
  .site-header:not(.is-solid) .brand img { width: 56px; height: 56px; border: 2px solid rgba(255, 255, 255, 0.92); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22); }
  .site-header:not(.is-solid) .brand span { color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7); white-space: nowrap; }
  .site-header:not(.is-solid) .nav-toggle { color: white; }
  .header-socials { display: flex; order: 2; align-items: center; gap: 0.35rem; margin-inline: 0.3rem auto 0.3rem; }
  .header-socials a { display: grid; width: 30px; height: 38px; place-items: center; color: inherit; text-decoration: none; }
  .header-socials .icon { width: 1.35rem; height: 1.35rem; }
  .nav-toggle { order: 3; }
  .site-nav { order: 4; }
  .hero-content { padding: 9.2rem 1.25rem 4.5rem; }
  .hero-kicker { display: block; margin-bottom: 0.85rem; color: white; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7); }
  .hero h1 { max-width: none; margin-bottom: 1.25rem; color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 10vw, 3.8rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.98; text-shadow: 0 2px 9px rgba(0, 0, 0, 0.68); text-transform: uppercase; white-space: nowrap; }
  .hero h1 > span { display: block; }
  .hero h1 > br { display: none; }
  .hero-title-lower { color: white; -webkit-text-stroke: 0; text-shadow: 0 2px 9px rgba(0, 0, 0, 0.68); }
  .hero-title-lower::after { display: none; }
  .hero-content > p { max-width: 31ch; margin-bottom: 1.55rem; color: white; font-size: 1rem; font-weight: 400; line-height: 1.42; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85); }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .hero-actions .button { min-width: 0; min-height: 62px; justify-content: flex-start; padding: 0.72rem 0.75rem; border-radius: 0; font-size: 0.78rem; letter-spacing: 0.01em; }
  .hero-actions .button-primary { border-color: rgba(255, 255, 255, 0.94); color: var(--ink); background: rgba(255, 255, 255, 0.95); }
  .hero-actions .button-ghost { border-color: rgba(255, 255, 255, 0.86); color: white; background: rgba(17, 17, 14, 0.16); }
  .hero-actions .action-icon { width: 1rem; height: 1rem; }
  .hero-actions .hero-arrow { display: block; width: 1.2rem; height: 1.2rem; margin-left: auto; }
  .hero-orbit { top: 8.8rem; right: 0.75rem; bottom: auto; width: 150px; color: white; opacity: 0.82; }
  .hero-orbit img { width: 64px; height: 64px; border-color: rgba(255, 255, 255, 0.88); background: rgba(255, 255, 255, 0.16); }
  .hero-orbit-circle { opacity: 0.62; }
  .hero-orbit-ring text { fill: currentColor; font-size: 11px; }
  .hero-scroll { right: 1.25rem; bottom: 1rem; padding: 0; color: white; background: none; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8); }
  .hero-scroll span { display: none; }
  .hero-scroll svg { width: 28px; height: 28px; }
  .mobile-actions { position: fixed; right: 0.75rem; bottom: 0.65rem; left: 0.75rem; z-index: var(--z-actions); display: grid; grid-template-columns: repeat(3, 1fr); padding: 0.35rem; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 16px; color: white; background: rgba(23, 23, 19, 0.96); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); backdrop-filter: blur(16px); transform: translateY(calc(100% + 1.5rem)); visibility: hidden; transition: transform 240ms var(--ease-drawer), visibility 240ms; }
  .mobile-actions.is-visible { transform: translateY(0); visibility: visible; }
  .mobile-actions a, .mobile-actions button { display: grid; min-height: 52px; place-items: center; gap: 0.1rem; padding: 0.3rem; border: 0; border-right: 1px solid rgba(255, 255, 255, 0.16); color: inherit; background: none; font-size: 0.7rem; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform 140ms var(--ease-out), color 160ms ease; }
  .mobile-actions a:active, .mobile-actions button:active { color: var(--sun); transform: scale(0.94); }
  .mobile-actions > :last-child { border-right: 0; }
  .mobile-actions svg { width: 19px; height: 19px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.15rem); }
  .hero-actions .button { width: 100%; }
  .hours div { grid-template-columns: 1fr; gap: 0; }
  .hours dd { text-align: left; }
}

@media (max-width: 360px) {
  .header-socials { display: none; }
  .hero-content { padding-inline: 1rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .reveal { opacity: 0; filter: blur(4px); transform: translate3d(0, 30px, 0); transition: opacity 680ms var(--ease-out) var(--reveal-delay, 0ms), transform 680ms var(--ease-out) var(--reveal-delay, 0ms), filter 520ms var(--ease-out) var(--reveal-delay, 0ms), clip-path 820ms var(--ease-out) var(--reveal-delay, 0ms); }
  html.motion-ready .reveal.is-visible { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
  html.motion-ready .story-collage.reveal, html.motion-ready .atmosphere-image.reveal { clip-path: inset(0 0 18% 0); }
  html.motion-ready .story-collage.reveal.is-visible, html.motion-ready .atmosphere-image.reveal.is-visible { clip-path: inset(0 0 0 0); }

  .hero-media img { animation: hero-breathe 14s var(--ease-in-out) infinite alternate; }
  .hero h1 > span:first-child { animation: hero-copy-in 820ms var(--ease-out) 100ms both; }
  .hero h1 > span:last-child { animation: hero-copy-in 820ms var(--ease-out) 170ms both; }
  .hero-kicker { animation: hero-copy-in 720ms var(--ease-out) 40ms both; }
  .hero-content > p { animation: hero-copy-in 720ms var(--ease-out) 250ms both; }
  .hero-actions { animation: hero-copy-in 720ms var(--ease-out) 320ms both; }
  .hero-title-lower::after { animation: underline-flow 4.8s var(--ease-in-out) 1s infinite; }
  .hero-orbit-ring { animation: orbit-spin 16s linear infinite; }
  .hero-orbit img { animation: logo-float 4.6s var(--ease-in-out) infinite; }
  .hero-scroll svg { animation: arrow-bob 1.8s var(--ease-in-out) infinite; }
  .flavour-track { animation: flavour-marquee 24s linear infinite; }
  .story-photo-float { animation: story-float 7s var(--ease-in-out) infinite; }
  .menu-section::before { animation: orbit-spin 28s linear infinite; }
  .menu-section::after { animation: menu-drift 8s var(--ease-in-out) infinite; }
  .atmosphere-image img { animation: atmosphere-drift 13s var(--ease-in-out) infinite alternate; }
  .atmosphere-copy::before { animation: word-drift 9s var(--ease-in-out) infinite; }
  .gallery-heading::after { animation: gallery-orbit 7s var(--ease-in-out) infinite; }
  .review-featured::before { animation: review-glow 9s var(--ease-in-out) infinite; }
  .closing-cta::before { animation: closing-orbit 18s linear infinite; }
  .mobile-actions button svg { animation: action-pulse 2.8s var(--ease-in-out) infinite; }

  @keyframes hero-breathe {
    0% { transform: scale(1.015) translate3d(-0.25%, 0, 0); }
    50% { transform: scale(1.065) translate3d(0.55%, -0.45%, 0); }
    100% { transform: scale(1.035) translate3d(-0.4%, 0.35%, 0); }
  }
  @keyframes hero-copy-in {
    from { opacity: 0; filter: blur(5px); transform: translate3d(0, 34px, 0); }
    to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
  }
  @keyframes underline-flow {
    0%, 100% { opacity: 0.72; transform: scaleX(0.18); }
    45%, 60% { opacity: 0.94; transform: scaleX(1); }
  }
  @keyframes orbit-spin { to { transform: rotate(360deg); } }
  @keyframes logo-float {
    0%, 100% { transform: translate3d(0, -5px, 0) rotate(-3deg); }
    50% { transform: translate3d(0, 7px, 0) rotate(3deg); }
  }
  @keyframes arrow-bob {
    0%, 100% { transform: translate3d(0, -2px, 0); }
    50% { transform: translate3d(0, 4px, 0); }
  }
  @keyframes flavour-marquee { to { transform: translate3d(-50%, 0, 0); } }
  @keyframes story-float {
    0%, 100% { transform: translate3d(0, -7px, 0) rotate(-0.25deg) scale(1.045); }
    50% { transform: translate3d(0, 8px, 0) rotate(0.35deg) scale(1.065); }
  }
  @keyframes inset-float {
    0%, 100% { transform: translate3d(-3px, 7px, 0) rotate(-1.1deg); }
    50% { transform: translate3d(5px, -7px, 0) rotate(0.8deg); }
  }
  @keyframes menu-drift {
    0%, 100% { transform: translate3d(-10px, -10px, 0) scale(0.92); }
    50% { transform: translate3d(34px, 24px, 0) scale(1.08); }
  }
  @keyframes atmosphere-drift {
    from { transform: scale(1.035) translate3d(-0.6%, 0, 0); }
    to { transform: scale(1.11) translate3d(1.25%, -0.8%, 0); }
  }
  @keyframes word-drift {
    0%, 100% { opacity: 0.72; transform: translate3d(0, -10px, 0); }
    50% { opacity: 1; transform: translate3d(0, 16px, 0); }
  }
  @keyframes gallery-orbit {
    0%, 100% { transform: translate3d(-7px, 0, 0) rotate(-7deg); }
    50% { transform: translate3d(8px, 9px, 0) rotate(7deg); }
  }
  @keyframes review-glow {
    0%, 100% { transform: translate3d(-8%, -5%, 0) rotate(0deg); opacity: 0.72; }
    50% { transform: translate3d(13%, 16%, 0) rotate(150deg); opacity: 1; }
  }
  @keyframes closing-orbit {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.04); }
    100% { transform: rotate(360deg) scale(1); }
  }
  @keyframes action-pulse {
    0%, 100% { transform: scale(1); opacity: 0.82; }
    50% { transform: scale(1.18); opacity: 1; }
  }
}

@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; }
  .flavour-track { transform: translate3d(-8%, 0, 0); }
  .hero-title-lower::after { transform: scaleX(1); }
}

html.motion-paused *, html.motion-paused *::before, html.motion-paused *::after { animation-play-state: paused !important; }
html.motion-ready .ambient-zone:not(.is-ambient-active), html.motion-ready .ambient-zone:not(.is-ambient-active)::before, html.motion-ready .ambient-zone:not(.is-ambient-active)::after, html.motion-ready .ambient-zone:not(.is-ambient-active) *, html.motion-ready .ambient-zone:not(.is-ambient-active) *::before, html.motion-ready .ambient-zone:not(.is-ambient-active) *::after { animation-play-state: paused !important; }
