:root {
  --blue: #8bb5e5;
  --ivory: #f3f2ee;
  --gold: #f2cc65;
  --ink: #1d2630;
  --muted: #505966;
  --paper: var(--ivory);
  --paper-deep: color-mix(in srgb, var(--blue) 12%, var(--ivory));
  --forest: var(--blue);
  --forest-deep: #375a80;
  --white: #ffffff;
  --line: rgba(114, 150, 195, 0.34);
  --radius-card: 12px;
  --radius-control: 8px;
  --shadow: 0 20px 60px rgba(39, 56, 77, 0.16);
  --header-height: 72px;
  --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; }
section[id] { scroll-margin-top: calc(var(--header-height) + 1rem); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-control);
}
.skip-link:focus { transform: translateY(0); }
.scroll-progress {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.shell { width: min(100% - 2rem, 1240px); margin-inline: auto; }
.section { padding-block: clamp(5rem, 9vw, 9rem); }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding-inline: clamp(1rem, 3vw, 3rem);
  color: var(--white);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}
.site-header.is-scrolled {
  background-color: var(--forest);
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.site-header.is-scrolled .menu-toggle { color: var(--ink); }
.site-header.is-scrolled .social-link { border-color: var(--gold); }
.wordmark, .footer-wordmark {
  text-decoration: none;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a, .site-footer a { text-decoration: none; }
.desktop-nav a { font-size: 0.84rem; font-weight: 650; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 0.75rem; }
.social-link, .footer-facebook {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: currentColor;
}
.social-link { position: relative; border: 1px solid var(--gold); transition: transform 180ms var(--ease-out), background-color 180ms ease; }
.social-link::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid color-mix(in srgb, var(--gold) 62%, transparent);
  border-radius: inherit;
  opacity: 0;
  animation: social-pulse 3.8s ease-in-out infinite;
}
.social-link svg, .footer-facebook svg { width: 21px; height: 21px; fill: currentColor; }
.menu-toggle, .panel-close, .dialog-close, .lightbox-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  color: var(--white);
  font-weight: 650;
}
.menu-lines, .menu-lines::before {
  display: block;
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease-out);
}
.menu-lines::before { transform: translateY(5px); }

.menu-panel {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  width: min(92vw, 430px);
  height: 100dvh;
  padding: 1.5rem;
  background: var(--forest-deep);
  color: var(--white);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 420ms var(--ease-drawer), visibility 420ms;
}
.menu-panel.is-open { transform: translateX(0); visibility: visible; }
.panel-close { color: var(--white); min-height: 44px; float: right; }
.menu-panel nav { clear: both; display: grid; padding-top: 12vh; }
.menu-panel nav a {
  padding-block: 0.7rem;
  font-size: clamp(2rem, 9vw, 3.6rem);
  line-height: 1.05;
  text-decoration: none;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateX(28px);
  transition: transform 320ms var(--ease-out), opacity 220ms ease, color 180ms ease;
}
.menu-panel.is-open nav a { opacity: 1; transform: translateX(0); }
.menu-panel.is-open nav a:nth-child(1) { transition-delay: 70ms; }
.menu-panel.is-open nav a:nth-child(2) { transition-delay: 110ms; }
.menu-panel.is-open nav a:nth-child(3) { transition-delay: 150ms; }
.menu-panel.is-open nav a:nth-child(4) { transition-delay: 190ms; }
.menu-panel.is-open nav a:nth-child(5) { transition-delay: 230ms; }
.panel-phone { position: absolute; left: 1.5rem; bottom: 2rem; }
.menu-scrim { position: fixed; z-index: 50; inset: 0; background: rgba(0, 0, 0, 0.32); }

.hero {
  --hero-x: 0px;
  --hero-y: 0px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}
.hero-media, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media {
  object-fit: cover;
  object-position: 50% 80%;
  will-change: transform;
  animation: hero-breathe 16s var(--ease-in-out) infinite alternate;
}
.hero-scrim { background: linear-gradient(to top, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.10)); }
.hero-scrim::after {
  content: "";
  position: absolute;
  inset: -30% -45%;
  background: linear-gradient(108deg, transparent 38%, rgba(242, 204, 101, 0.17) 49%, transparent 61%);
  transform: translate3d(-30%, 0, 0);
  animation: hero-light-pass 11s linear infinite;
}
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(3rem, 9vh, 6rem); }
.hero-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.3rem, 9vw, 6rem);
  font-weight: 680;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.hero-copy { max-width: 34rem; margin: 1.25rem 0 0; font-size: clamp(1.06rem, 2vw, 1.35rem); line-height: 1.45; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 720;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -30% auto -30% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg) translateX(0);
  animation: button-glint 5.2s var(--ease-in-out) infinite;
}
.button:active { transform: scale(0.97); }
.button-light { background: var(--gold); color: var(--ink); }
.button-ghost { border-color: var(--gold); color: var(--white); background: rgba(0, 0, 0, 0.14); }
.button-dark { background: var(--gold); color: var(--ink); }
.button-outline { border-color: var(--forest); color: var(--ink); background: transparent; }

.brand-section { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.brand-copy h2, .section-heading h2, .reviews-heading h2, .visit-details h2 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 660;
  text-wrap: balance;
}
.brand-copy h2::after, .section-heading h2::after, .reviews-heading h2::after, .visit-details h2::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 7vw, 6rem);
  height: 4px;
  margin-top: 0.24em;
  background: var(--gold);
  transform-origin: left center;
  animation: accent-line 3.6s ease-in-out infinite alternate;
}
.brand-copy > p { max-width: 60ch; margin: 2rem 0; color: var(--muted); font-size: 1.04rem; }
.brand-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0 0; }
.brand-facts div { padding-top: 0.9rem; border-top: 2px solid var(--gold); }
.brand-facts dt { color: var(--muted); font-size: 0.76rem; }
.brand-facts dd { margin: 0.3rem 0 0; font-weight: 700; line-height: 1.35; }
.ratio-3x4 { aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-3x4 img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-image { position: relative; margin: 0; border-radius: var(--radius-card); box-shadow: var(--shadow); }
.brand-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -8%;
  right: -14%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 204, 101, 0.7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(242, 204, 101, 0.08), inset 0 0 0 44px rgba(139, 181, 229, 0.08);
  animation: image-halo 13s linear infinite;
  pointer-events: none;
}
.brand-image img { object-position: 52% 50%; }
.brand-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 15rem;
  padding: 0.8rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  z-index: 2;
}

.mantra-rail {
  overflow: hidden;
  border-block: 1px solid color-mix(in srgb, var(--ink) 24%, transparent);
  background: var(--gold);
  color: var(--ink);
}
.mantra-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mantra-flow var(--mantra-duration, 22s) linear infinite;
}
.mantra-group {
  display: flex;
  flex: none;
}
.mantra-track span {
  flex: none;
  padding: 1rem 2.2rem;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 780;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.experience-band { position: relative; overflow: hidden; background: var(--blue); color: var(--ink); }
.experience-band::before {
  content: "";
  position: absolute;
  inset: -90% -20%;
  background: radial-gradient(circle, rgba(242, 204, 101, 0.34) 0 13%, transparent 42%);
  transform: translate3d(-36%, 0, 0);
  animation: band-glow 12s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}
.experience-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
}
.experience-track p {
  margin: 0;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
}
.experience-track p:nth-child(-n + 3) { border-top: 1px solid color-mix(in srgb, var(--ink) 28%, transparent); }
.experience-track p:not(:nth-child(3n + 1)) { border-left: 1px solid color-mix(in srgb, var(--ink) 28%, transparent); }

.menu-section { background: var(--paper-deep); }
.section-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading p { max-width: 48rem; margin: 1.2rem 0 0; color: var(--muted); font-size: 1.05rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.menu-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid color-mix(in srgb, var(--gold) 72%, transparent); border-radius: var(--radius-card); overflow: hidden; transition: translate 240ms var(--ease-out), border-color 180ms ease; }
.menu-card:nth-child(2) { background: var(--gold); color: var(--ink); }
.menu-card .ratio-3x4 { position: relative; }
.menu-card .ratio-3x4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 40%, rgba(255, 255, 255, 0.20) 50%, transparent 60%);
  transform: translate3d(-110%, 0, 0);
  animation: food-light-pass 9s linear infinite;
  pointer-events: none;
}
.menu-card:nth-child(2) .ratio-3x4::after { animation-delay: -3s; }
.menu-card:nth-child(3) .ratio-3x4::after { animation-delay: -6s; }
.menu-card .ratio-3x4 img { will-change: transform; animation: food-breathe 12s var(--ease-in-out) infinite alternate; }
.menu-card:nth-child(2) .ratio-3x4 img { animation-duration: 15s; animation-delay: -5s; }
.menu-card:nth-child(3) .ratio-3x4 img { animation-duration: 13s; animation-delay: -8s; }
.menu-card:nth-child(1) img { object-position: 50% 48%; }
.menu-card:nth-child(2) img { object-position: 50% 50%; }
.menu-card:nth-child(3) img { object-position: 52% 50%; }
.menu-card-copy { flex: 1; padding: 1.4rem 1.35rem 1.65rem; }
.menu-card h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2rem); letter-spacing: -0.035em; }
.menu-card p { margin: 0.75rem 0 0; color: var(--muted); }
.menu-card:nth-child(2) p { color: var(--ink); }
.menu-card .menu-time {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.menu-card:nth-child(2) .menu-time { color: var(--ink); }
.menu-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); font-weight: 760; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 0.3rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); padding-bottom: 2rem; }
.gallery-item { --gallery-y: 0px; position: relative; border: 1px solid var(--gold); padding: 0; border-radius: var(--radius-card); background: var(--paper-deep); cursor: zoom-in; translate: 0 var(--gallery-y); transition: translate 260ms var(--ease-out), border-color 180ms ease; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 120%, rgba(242, 204, 101, 0.30), transparent 42%);
  opacity: 0.4;
  animation: gallery-glow 5s ease-in-out infinite alternate;
  pointer-events: none;
}
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { --gallery-y: 2rem; }
.gallery-item img { will-change: transform; animation: gallery-breathe 14s var(--ease-in-out) infinite alternate; transition: filter 220ms ease; }
.gallery-item:nth-child(2n) img { animation-duration: 17s; animation-direction: alternate-reverse; }
.gallery-item:nth-child(3n) img { animation-delay: -6s; }
.gallery-item:nth-child(1) img { object-position: 50% 48%; }
.gallery-item:nth-child(2) img { object-position: 50% 42%; }
.gallery-item:nth-child(3) img { object-position: 50% 48%; }
.gallery-item:nth-child(4) img { object-position: 50% 46%; }
.gallery-item:nth-child(5) img { object-position: 50% 48%; }
.gallery-item:nth-child(6) img { object-position: 50% 50%; }

.reviews-section { position: relative; overflow: hidden; background: var(--forest-deep); color: var(--white); }
.reviews-section::before,
.reviews-section::after {
  content: "";
  position: absolute;
  width: clamp(260px, 42vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.24;
  pointer-events: none;
  will-change: transform;
}
.reviews-section::before {
  top: -42%;
  right: -14%;
  background: radial-gradient(circle, var(--gold), transparent 66%);
  animation: review-orb-a 15s var(--ease-in-out) infinite alternate;
}
.reviews-section::after {
  bottom: -55%;
  left: -12%;
  background: radial-gradient(circle, var(--blue), transparent 67%);
  animation: review-orb-b 18s var(--ease-in-out) infinite alternate;
}
.reviews-section > .shell { position: relative; z-index: 1; }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.rating-summary { margin: 1rem 0 0; color: rgba(251, 252, 249, 0.72); }
.rating-summary strong { color: var(--white); font-size: 1.6rem; }
.reviews-section .text-link { color: var(--white); }
.reviews-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1rem; }
.review-stack { display: grid; gap: 1rem; }
.review { display: flex; flex-direction: column; padding: clamp(1.35rem, 3vw, 2.25rem); border: 1px solid color-mix(in srgb, var(--gold) 58%, transparent); border-radius: var(--radius-card); background: rgba(255, 255, 255, 0.055); transition: translate 240ms var(--ease-out), background-color 180ms ease; }
.review-featured { justify-content: space-between; padding-left: 0; border: 0; border-radius: 0; background: transparent; }
.review-meta { display: flex; align-items: center; gap: 0.9rem; }
.review-meta img { width: 48px; height: 48px; border: 2px solid color-mix(in srgb, var(--gold) 70%, transparent); border-radius: 50%; object-fit: cover; animation: avatar-breathe 4.5s ease-in-out infinite alternate; }
.review-meta div { display: grid; }
.review-meta span { color: var(--gold); letter-spacing: 0.05em; font-size: 0.78rem; }
.review blockquote { margin: 1.5rem 0; font-size: clamp(1.05rem, 2.1vw, 1.65rem); line-height: 1.4; letter-spacing: -0.02em; }
.review-featured blockquote { max-width: 24ch; font-size: clamp(1.75rem, 3.5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.035em; }
.review:not(.review-featured) blockquote { font-size: 1rem; }
.review a { align-self: flex-start; color: var(--white); font-size: 0.85rem; text-underline-offset: 0.25rem; }

.visit-section { background: var(--paper); }
.visit-layout { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: stretch; }
.visit-details address { margin: 2rem 0 0; font-style: normal; color: var(--muted); }
.visit-phone { display: inline-block; margin-top: 0.75rem; color: var(--ink); font-weight: 800; font-size: 1.25rem; text-decoration-color: var(--gold); text-underline-offset: 0.25rem; }
.hours { margin: 2rem 0; }
.hours div { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-block: 0.7rem; border-bottom: 1px solid color-mix(in srgb, var(--gold) 55%, transparent); }
.hours dt { font-weight: 700; }
.hours dd { margin: 0; text-align: right; color: var(--muted); }
.visit-notes { color: var(--muted); font-size: 0.94rem; }
.map-wrap { min-height: 580px; border: 3px solid var(--gold); border-radius: var(--radius-card); overflow: hidden; background: var(--paper-deep); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 580px; border: 0; }

.site-footer { padding-block: 4rem 2.5rem; background: var(--forest-deep); color: var(--white); border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 0.7fr auto; gap: 2rem; align-items: start; }
.site-footer p { color: rgba(251, 252, 249, 0.68); }
.site-footer strong { display: block; margin-bottom: 0.7rem; color: var(--gold); }
.footer-grid > div > a:not(.footer-wordmark) { display: block; margin-block: 0.4rem; }
.footer-facebook { border: 1px solid var(--gold); transition: transform 180ms var(--ease-out), background-color 180ms ease; }

dialog { border: 0; padding: 0; max-width: none; }
dialog::backdrop { background: rgba(0, 0, 0, 0.58); backdrop-filter: blur(4px); }
.booking-dialog { width: min(100% - 1rem, 760px); max-height: calc(100dvh - 1rem); border-radius: var(--radius-card); background: var(--paper); color: var(--ink); }
.booking-dialog[open], .lightbox[open] { animation: dialog-enter 280ms var(--ease-out) both; }
.dialog-shell { padding: clamp(1.4rem, 4vw, 3rem); }
.dialog-close, .lightbox-close { float: right; min-height: 44px; text-decoration: underline; text-underline-offset: 0.2rem; }
.dialog-kicker { margin: 0; padding-top: 2rem; color: var(--ink); font-size: 0.78rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.booking-dialog h2 { max-width: 600px; margin: 0.5rem 0 2rem; font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1; letter-spacing: -0.04em; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
label { display: grid; gap: 0.45rem; margin-bottom: 1rem; font-size: 0.9rem; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid rgba(29, 38, 48, 0.38); border-radius: var(--radius-control); background: var(--white); color: var(--ink); padding: 0.8rem 0.85rem; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 28%, transparent); }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: #9a2f2f; }
.field-error { min-height: 1em; color: #8b2424; font-size: 0.8rem; font-weight: 600; }
.submit-booking { width: 100%; }
.booking-status { min-height: 1.6em; margin: 1rem 0 0; color: var(--ink); font-weight: 700; }

.lightbox { width: 100vw; height: 100dvh; background: rgba(10, 14, 11, 0.97); color: var(--white); }
.lightbox-shell { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; width: 100%; height: 100%; padding: 1rem; }
.lightbox-close { position: fixed; z-index: 2; top: 1rem; right: 1rem; color: var(--white); }
.lightbox figure { display: grid; place-items: center; gap: 0.75rem; margin: 0; min-width: 0; }
.lightbox figure img { display: block; max-width: 100%; max-height: calc(100dvh - 6rem); object-fit: contain; }
.lightbox figcaption { font-size: 0.85rem; color: rgba(251, 252, 249, 0.7); }
.lightbox-prev, .lightbox-next { min-height: 48px; padding: 0.7rem; border: 1px solid rgba(255, 255, 255, 0.34); border-radius: 999px; background: transparent; color: var(--white); cursor: pointer; }

@keyframes hero-breathe {
  from { transform: scale(1.035) translate3d(var(--hero-x), var(--hero-y), 0); }
  to { transform: scale(1.085) translate3d(var(--hero-x), var(--hero-y), 0); }
}
@keyframes hero-light-pass {
  0%, 12% { transform: translate3d(-34%, 0, 0); opacity: 0; }
  24% { opacity: 1; }
  54%, 100% { transform: translate3d(36%, 0, 0); opacity: 0; }
}
@keyframes social-pulse {
  0%, 55%, 100% { transform: scale(0.88); opacity: 0; }
  72% { opacity: 0.72; }
  88% { transform: scale(1.08); opacity: 0; }
}
@keyframes button-glint {
  0%, 58% { transform: skewX(-18deg) translateX(0); opacity: 0; }
  66% { opacity: 1; }
  82%, 100% { transform: skewX(-18deg) translateX(420%); opacity: 0; }
}
@keyframes image-halo { to { transform: rotate(360deg); } }
@keyframes mantra-flow { to { transform: translate3d(-50%, 0, 0); } }
@keyframes band-glow {
  from { transform: translate3d(-30%, -4%, 0) scale(0.9); }
  to { transform: translate3d(30%, 4%, 0) scale(1.1); }
}
@keyframes food-light-pass {
  0%, 34% { transform: translate3d(-110%, 0, 0); opacity: 0; }
  42% { opacity: 1; }
  58%, 100% { transform: translate3d(110%, 0, 0); opacity: 0; }
}
@keyframes food-breathe {
  from { transform: scale(1.01) translate3d(-0.6%, -0.4%, 0); }
  to { transform: scale(1.07) translate3d(0.8%, 0.7%, 0); }
}
@keyframes gallery-breathe {
  from { transform: scale(1.01) translate3d(-0.7%, 0, 0); }
  to { transform: scale(1.065) translate3d(0.7%, -0.5%, 0); }
}
@keyframes gallery-glow { from { opacity: 0.18; } to { opacity: 0.56; } }
@keyframes review-orb-a {
  from { transform: translate3d(-8%, 0, 0) scale(0.9); }
  to { transform: translate3d(12%, 15%, 0) scale(1.12); }
}
@keyframes review-orb-b {
  from { transform: translate3d(0, 8%, 0) scale(1); }
  to { transform: translate3d(22%, -10%, 0) scale(1.16); }
}
@keyframes avatar-breathe { from { transform: scale(0.97); } to { transform: scale(1.04); } }
@keyframes accent-line { from { transform: scaleX(0.58); } to { transform: scaleX(1); } }
@keyframes dialog-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(32px) scale(0.985); transition: opacity 680ms ease, transform 760ms var(--ease-out), clip-path 900ms var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.motion-ready .brand-image.reveal, .motion-ready .gallery-item.reveal { clip-path: inset(0 0 12% 0); }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }
.motion-ready .brand-image.reveal.is-visible, .motion-ready .gallery-item.reveal.is-visible { clip-path: inset(0); }
.menu-card:nth-child(2), .gallery-item:nth-child(2), .review-stack .review:nth-child(2) { --reveal-delay: 70ms; }
.menu-card:nth-child(3), .gallery-item:nth-child(3) { --reveal-delay: 140ms; }
.gallery-item:nth-child(4) { --reveal-delay: 50ms; }
.gallery-item:nth-child(5) { --reveal-delay: 120ms; }
.gallery-item:nth-child(6) { --reveal-delay: 190ms; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 5px var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button-light:hover, .button-dark:hover { background: var(--blue); }
  .button-outline:hover { background: var(--blue); }
  .text-link:hover { text-decoration-thickness: 2px; }
  .desktop-nav a:hover { text-decoration: underline; text-underline-offset: 0.35rem; }
  .social-link:hover { transform: rotate(-7deg) scale(1.08); background: color-mix(in srgb, var(--gold) 18%, transparent); }
  .menu-panel nav a:hover { color: var(--gold); transform: translateX(-8px); }
  .menu-card:hover { translate: 0 -8px; border-color: var(--gold); }
  .gallery-item:hover { translate: 0 calc(var(--gallery-y) - 8px); }
  .gallery-item:hover img { animation-play-state: paused; filter: saturate(1.13) contrast(1.03); }
  .review:not(.review-featured):hover { translate: -8px 0; background: rgba(255, 255, 255, 0.09); }
  .footer-facebook:hover { transform: rotate(8deg) scale(1.08); }
}
.menu-toggle:active, .gallery-item:active, .lightbox-prev:active, .lightbox-next:active, .footer-facebook:active { scale: 0.97; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .brand-section, .visit-layout, .reviews-layout { grid-template-columns: 1fr; }
  .brand-copy { order: 1; }
  .brand-image { order: 0; width: min(100%, 520px); }
  .experience-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-track p:nth-child(-n + 3) { border-top: 0; }
  .experience-track p:nth-child(-n + 2) { border-top: 1px solid color-mix(in srgb, var(--ink) 28%, transparent); }
  .experience-track p:not(:nth-child(3n + 1)) { border-left: 0; }
  .experience-track p:nth-child(even) { border-left: 1px solid color-mix(in srgb, var(--ink) 28%, transparent); }
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:nth-child(2), .gallery-item:nth-child(5) { --gallery-y: 0px; translate: 0; }
  .map-wrap, .map-wrap iframe { min-height: 480px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-facebook { grid-column: 3; }
}

@media (max-width: 767px) {
  :root { --header-height: 64px; }
  .shell { width: min(100% - 1.5rem, 1240px); }
  .section { padding-block: 4.5rem; }
  .site-header { gap: 0.5rem; padding-inline: 0.75rem; }
  .social-link { width: 40px; height: 40px; }
  .menu-toggle { padding-inline: 0.25rem; }
  .hero-content { padding-bottom: 2.5rem; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5.3rem); max-width: 100%; }
  .hero-copy { max-width: 19rem; }
  .hero-actions .button { flex: 1 1 9rem; }
  .brand-section { gap: 2.5rem; }
  .mantra-track span { padding: 0.8rem 1.5rem; }
  .brand-facts { grid-template-columns: 1fr; }
  .experience-track { grid-template-columns: 1fr; padding-block: 1.25rem; }
  .experience-track p { padding-inline: 0; border-left: 0 !important; }
  .experience-track p:first-child { border-top: 1px solid color-mix(in srgb, var(--ink) 28%, transparent); }
  .menu-grid, .gallery-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .menu-card-copy { padding: 1.2rem; }
  .gallery-item { width: 100%; }
  .reviews-heading { align-items: start; flex-direction: column; }
  .review-stack { gap: 0.75rem; }
  .review { padding: 1.25rem; }
  .visit-actions .button { flex: 1 1 100%; }
  .map-wrap, .map-wrap iframe { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-facebook { grid-column: auto; align-self: end; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .lightbox-shell { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; }
  .lightbox-prev, .lightbox-next { grid-row: 2; }
}

@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; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .hero-media { transform: none !important; }
  .hero-scrim::after, .button::before, .experience-band::before, .reviews-section::before, .reviews-section::after { display: none; }
  .mantra-track { transform: none; }
  .menu-card .ratio-3x4 img, .gallery-item img, .review-meta img { transform: none; }
}
