:root {
  --ink: #1f211d;
  --off-white: #fffdf8;
  --soft: #f2eee6;
  --yellow: #f5a900;
  --yellow-bright: #ffc22c;
  --coral: #ef7058;
  --mint: #6cc9bd;
  --white: #ffffff;
  --line: rgba(31, 33, 29, 0.22);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --body: Aptos, "Segoe UI", Arial, sans-serif;
  --header-height: 76px;
  --section-space: clamp(5.5rem, 9vw, 8.5rem);
  --z-sticky: 20;
  --z-overlay: 50;
  --z-modal: 60;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--off-white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.nav-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h2 { margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 5.7rem); }
p { text-wrap: pretty; }

.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;
  z-index: calc(var(--z-modal) + 1);
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 850;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.page-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding-block: var(--section-space); }

.site-header {
  position: fixed;
  z-index: var(--z-sticky);
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  color: var(--white);
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 7px 8px rgba(31, 33, 29, 0.08);
}
.site-header.is-scrolled::after,
.site-header.menu-active::after { background: var(--line); }
.site-header.motion-instant,
.site-header.motion-instant .primary-navigation,
.site-header.motion-instant .menu-toggle .icon { transition: none; }
.nav-shell {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  transition: transform 140ms var(--ease-out);
}
.brand-long { display: none; }
.brand img { width: 46px; height: 46px; object-fit: cover; border: 2px solid currentColor; border-radius: 50%; }
.primary-navigation { display: flex; align-items: center; gap: clamp(0.8rem, 1.8vw, 1.65rem); }
.primary-navigation > a {
  position: relative;
  text-decoration: none;
  font-size: 0.81rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 140ms var(--ease-out);
}
.primary-navigation > a:not(.nav-find)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: currentColor;
  transition: right 180ms var(--ease-out);
}
.nav-find { padding: 0.55rem 0.92rem; border: 1.5px solid currentColor; border-radius: 99px; }
.nav-socials { display: flex; gap: 0.45rem; }
.nav-socials a,
.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.nav-socials svg,
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.icon {
  display: block;
  flex: 0 0 auto;
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-toggle { display: none; transition: transform 140ms var(--ease-out); }
.menu-toggle .icon-close { display: none; }

.hero {
  --hero-space-sm: 0.75rem;
  --hero-space-md: 1.5rem;
  --hero-space-lg: clamp(2rem, 4vw, 4rem);
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  color: var(--white);
  background: #383d37;
}
.hero-media,
.hero-media img,
.hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; }
.hero-media img {
  object-fit: cover;
  transform-origin: right center;
  animation: hero-camera 18s var(--ease-in-out) infinite alternate;
}
.hero-overlay { z-index: -2; background: rgba(0, 0, 0, 0.28); }
.hero-ambient { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.16;
  mix-blend-mode: screen;
}
.hero-orb-yellow { width: clamp(180px, 25vw, 360px); aspect-ratio: 1; top: 16%; right: 4%; background: var(--yellow); animation: orb-drift-one 8s var(--ease-in-out) infinite alternate; }
.hero-orb-coral { width: clamp(150px, 19vw, 280px); aspect-ratio: 1; right: 27%; bottom: -5%; background: var(--coral); animation: orb-drift-two 11s var(--ease-in-out) infinite alternate; }
.hero-orb-mint { width: clamp(120px, 16vw, 230px); aspect-ratio: 1; left: -4%; top: 30%; background: var(--mint); animation: orb-drift-three 9s var(--ease-in-out) infinite alternate; }
.hero-seal { display: none; }
.hero-seal-copy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: orbit-spin 18s linear infinite;
}
.hero-seal-copy circle { fill: rgba(31, 33, 29, 0.16); stroke: rgba(255, 255, 255, 0.92); stroke-width: 1.5; }
.hero-seal-copy text { fill: var(--white); font-family: var(--display); font-size: 10.25px; font-weight: 900; letter-spacing: 1.3px; }
.hero-seal img {
  position: relative;
  z-index: 1;
  width: 47%;
  height: 47%;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: orbit-heartbeat 4s var(--ease-in-out) infinite;
}
.hero-mantra {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + 2rem);
  right: max(20px, calc((100vw - 1180px) / 2));
  width: 10.5rem;
  height: 42px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.78);
  border-radius: 99px;
  background: rgba(31, 33, 29, 0.38);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-mantra span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  animation: mantra-cycle 12s var(--ease-in-out) infinite;
}
.hero-mantra span:nth-child(2) { animation-delay: 3s; }
.hero-mantra span:nth-child(3) { animation-delay: 6s; }
.hero-mantra span:nth-child(4) { animation-delay: 9s; }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(6.2rem, 11vh, 8.5rem); }
.hero .eyebrow {
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  animation: hero-arrive 620ms var(--ease-out) both;
}
.hero .eyebrow::before { content: ""; width: 2.5rem; height: 2px; background: var(--yellow); }
.eyebrow-desktop { display: none; }
.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.35rem;
  font-size: clamp(4.25rem, 8vw, 6rem);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
  animation: hero-arrive 720ms 80ms var(--ease-out) both;
}
.hero-title-desktop { display: none; }
.hero-title-mobile { display: block; color: var(--white); }
.hero-title-mobile em { color: var(--yellow); font-style: normal; }
.hero-copy {
  max-width: 36rem;
  margin-bottom: 1.75rem;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 680;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  animation: hero-arrive 720ms 150ms var(--ease-out) both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; animation: hero-arrive 720ms 220ms var(--ease-out) both; }
.button {
  min-height: 50px;
  padding: 0.75rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 2px solid transparent;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.button > .icon { width: 1.15rem; height: 1.15rem; transition: transform 180ms var(--ease-out); }
.button-primary { background: var(--yellow); color: var(--ink); }
.button-light { border-color: var(--white); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.hero-scroll {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 140ms var(--ease-out);
}
.hero-scroll svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-scroll svg { animation: scroll-nudge 1.7s var(--ease-in-out) infinite; }
@keyframes hero-arrive {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes hero-camera {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-1%, -0.6%, 0); }
}
@keyframes orb-drift-one {
  from { opacity: 0.1; transform: translate3d(0, 0, 0) scale(0.94); }
  to { opacity: 0.22; transform: translate3d(-22%, 13%, 0) scale(1.08); }
}
@keyframes orb-drift-two {
  from { opacity: 0.09; transform: translate3d(0, 12%, 0) scale(0.9); }
  to { opacity: 0.2; transform: translate3d(18%, -20%, 0) scale(1.08); }
}
@keyframes orb-drift-three {
  from { opacity: 0.08; transform: translate3d(-15%, 0, 0); }
  to { opacity: 0.18; transform: translate3d(35%, 18%, 0); }
}
@keyframes mantra-cycle {
  0% { opacity: 0; transform: translate3d(0, 100%, 0); }
  6%, 20% { opacity: 1; transform: translate3d(0, 0, 0); }
  26%, 100% { opacity: 0; transform: translate3d(0, -100%, 0); }
}
@keyframes scroll-nudge {
  0%, 100% { transform: translate3d(0, -2px, 0); }
  50% { transform: translate3d(0, 5px, 0); }
}

.intro-band { padding-block: clamp(3rem, 6vw, 5rem); background: var(--yellow); border-bottom: 2px solid var(--ink); }
.intro-band-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) 160px auto; gap: 2.5rem clamp(1.5rem, 4vw, 4rem); align-items: center; }
.intro-band h2 { max-width: 16ch; margin: 0; font-size: clamp(2.4rem, 5vw, 4.7rem); }
.intro-orbit { position: relative; width: 160px; aspect-ratio: 1; display: grid; place-items: center; }
.intro-orbit-copy { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; animation: orbit-spin 16s linear infinite; }
.intro-orbit-copy circle { fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-dasharray: 2 5; }
.intro-orbit-copy text { fill: var(--ink); font-family: var(--display); font-size: 10px; font-weight: 900; letter-spacing: 1.35px; }
.intro-orbit img { position: relative; z-index: 1; width: 82px; height: 82px; object-fit: cover; border: 3px solid var(--ink); border-radius: 50%; animation: orbit-heartbeat 4s var(--ease-in-out) infinite; }
.intro-rating { min-width: 160px; padding-top: 1rem; border-top: 2px solid var(--ink); }
.intro-rating strong { display: block; font-family: var(--display); font-size: 3.7rem; line-height: 0.9; }
.intro-rating span { color: #532c00; font-size: 0.88rem; letter-spacing: 0.08em; }
.intro-rating p { margin: 0.35rem 0 0; font-size: 0.82rem; font-weight: 780; }
.intro-facts { grid-column: 1 / -1; margin: 0; padding: 1.15rem 0 0; display: flex; flex-wrap: wrap; gap: 0; border-top: 2px solid var(--ink); list-style: none; }
.intro-facts li { display: flex; align-items: center; font-family: var(--display); font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 900; }
.intro-facts li:not(:last-child)::after { content: "✦"; margin-inline: clamp(0.8rem, 2.5vw, 2rem); font-family: var(--body); font-size: 0.72rem; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-heartbeat {
  0%, 100% { transform: scale(0.96); }
  50% { transform: scale(1.04); }
}

.story { background: var(--off-white); }
.story-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1.22fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.story-copy { position: sticky; top: calc(var(--header-height) + 3rem); max-width: 40rem; }
.story-opening { margin: 0 0 1rem; font-family: var(--display); font-size: 1.35rem; font-weight: 900; color: #b24632; }
.story-copy h2 { max-width: 8ch; }
.story-copy > p:not(.story-opening) { max-width: 66ch; font-size: 1.04rem; }
.story-copy > p + p { margin-top: 1rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1rem; padding-bottom: 0.15rem; border-bottom: 2px solid var(--ink); text-decoration: none; font-weight: 900; transition: opacity 140ms var(--ease-out); }
.text-link .icon { width: 1rem; height: 1rem; color: var(--coral); }
.story-collage { position: relative; min-height: 0; }
.story-figure { position: relative; z-index: 2; width: min(82%, 560px); margin: 0 0 0 auto; }
.portrait-media { display: block; aspect-ratio: 3 / 4; overflow: hidden; }
.portrait-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease-out); }
.story-figure .portrait-media { box-shadow: 10px 10px 0 var(--ink); }
.story-figure figcaption { margin-top: 0.75rem; font-family: var(--display); font-size: 0.91rem; font-weight: 900; }

.menu-section { background: var(--ink); color: var(--white); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 32rem; margin: 0; font-size: 1.06rem; }
.menu-heading > div { max-width: 45rem; }
.menu-categories { margin: 1rem 0 0; color: var(--yellow); font-family: var(--display); font-size: 1.05rem; font-weight: 900; }
.menu-spotlight { position: relative; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr); margin-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; background: var(--yellow); color: var(--ink); }
.menu-spotlight-photo { min-height: 500px; overflow: hidden; }
.menu-spotlight-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.menu-spotlight-copy { position: relative; padding: clamp(1.8rem, 4vw, 3.5rem); display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; }
.coffee-steam { position: absolute; top: 1.4rem; right: 1.6rem; width: 72px; height: 86px; pointer-events: none; }
.coffee-steam span {
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 52px;
  border: 2px solid var(--ink);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  animation: steam-rise 3.2s var(--ease-in-out) infinite;
}
.coffee-steam span:nth-child(1) { left: 4px; animation-delay: 0s; }
.coffee-steam span:nth-child(2) { left: 27px; animation-delay: 1s; }
.coffee-steam span:nth-child(3) { left: 49px; animation-delay: 2s; }
.menu-spotlight-copy > span { font-weight: 850; }
.menu-spotlight-copy h3 { margin: auto 0 0.35rem; font-size: clamp(3rem, 5vw, 5rem); }
.menu-spotlight-copy > strong { font-family: var(--display); font-size: 2.2rem; }
.menu-spotlight-copy > p { max-width: 28ch; margin: 1rem 0 1.8rem; font-weight: 680; }
.spotlight-thumbnails { width: 100%; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 0.65rem; }
.spotlight-thumbnails img { width: 100%; height: 110px; object-fit: cover; border: 2px solid var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.8rem); align-items: start; }
.menu-card { position: relative; overflow: hidden; color: var(--ink); }
.menu-card::after {
  content: "✦";
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--off-white);
  color: var(--ink);
  font-size: 1.15rem;
  animation: sticker-spin 8s linear infinite;
}
.menu-card:nth-child(2)::after { animation-direction: reverse; animation-duration: 10s; }
.menu-card:nth-child(3)::after { animation-duration: 6.5s; }
.menu-card-yellow { background: var(--yellow); }
.menu-card-coral { margin-top: 3rem; background: var(--coral); }
.menu-card-mint { background: var(--mint); }
.menu-photo { border-bottom: 3px solid var(--ink); }
.menu-card-body { padding: clamp(1.35rem, 3vw, 2rem); }
.menu-card h3 { margin-bottom: 1.5rem; font-size: clamp(1.8rem, 3vw, 2.45rem); }
.menu-list { margin: 0; padding: 0; list-style: none; }
.menu-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.72rem 0; border-top: 1.5px solid rgba(31, 33, 29, 0.46); }
.menu-list span { font-weight: 740; }
.menu-list strong { white-space: nowrap; font-family: var(--display); }
.menu-note { margin: 0.65rem 0 0; font-size: 0.77rem; line-height: 1.4; }
.menu-disclaimer { max-width: 42rem; margin: 4.5rem 0 0; color: rgba(255, 255, 255, 0.68); font-size: 0.8rem; }
@keyframes steam-rise {
  0% { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.92); }
  28%, 68% { opacity: 0.66; }
  100% { opacity: 0; transform: translate3d(7px, -22px, 0) scale(1.06); }
}
@keyframes sticker-spin { to { transform: rotate(360deg); } }

.character-break { position: relative; min-height: min(82svh, 780px); display: grid; align-items: end; overflow: hidden; contain: paint; isolation: isolate; color: var(--white); background: var(--ink); }
.character-break > picture,
.character-break > picture img,
.character-break-overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.character-break > picture { display: block; }
.character-break > picture img { object-fit: cover; transform-origin: right center; animation: character-camera 16s var(--ease-in-out) infinite alternate; }
.character-break-overlay { z-index: -1; background: rgba(0, 0, 0, 0.28); }
.character-break-copy { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vw, 6.5rem); }
.character-break-copy p { margin-bottom: 0.45rem; font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 900; }
.character-break h2 { max-width: 10ch; margin: 0; color: var(--yellow); font-size: clamp(3.6rem, 8vw, 6rem); text-shadow: 0 3px 22px rgba(0, 0, 0, 0.45); }
.character-floaters { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.character-floaters span {
  position: absolute;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 99px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(31, 33, 29, 0.85);
}
.character-floaters span:nth-child(1) { top: 17%; right: 11%; background: var(--yellow); transform: rotate(7deg); animation: word-float-one 6s var(--ease-in-out) infinite alternate; }
.character-floaters span:nth-child(2) { top: 41%; left: 6%; background: var(--mint); transform: rotate(-6deg); animation: word-float-two 7.5s var(--ease-in-out) infinite alternate; }
.character-floaters span:nth-child(3) { right: 8%; bottom: 24%; background: var(--coral); transform: rotate(-5deg); animation: word-float-three 8.5s var(--ease-in-out) infinite alternate; }
@keyframes character-camera {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.095) translate3d(-1.4%, -1%, 0); }
}
@keyframes word-float-one {
  from { transform: translate3d(0, -8px, 0) rotate(7deg); }
  to { transform: translate3d(-20px, 14px, 0) rotate(2deg); }
}
@keyframes word-float-two {
  from { transform: translate3d(-6px, 8px, 0) rotate(-6deg); }
  to { transform: translate3d(18px, -15px, 0) rotate(-1deg); }
}
@keyframes word-float-three {
  from { transform: translate3d(0, 8px, 0) rotate(-5deg); }
  to { transform: translate3d(-16px, -14px, 0) rotate(3deg); }
}

.space-section { overflow: hidden; contain: paint; background: var(--coral); }
.space-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(250px, 0.7fr); align-items: end; gap: clamp(1.5rem, 3vw, 3rem); margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.space-heading h2 { margin: 0; }
.space-heading p { max-width: 31rem; margin: 0; font-size: 1.08rem; font-weight: 680; }
.seat-stamp {
  position: relative;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  text-align: center;
}
.seat-stamp::before { content: ""; position: absolute; inset: -7px; border: 2px dashed var(--ink); border-radius: 50%; animation: seat-spin 13s linear infinite; }
.seat-stamp span { font-family: var(--display); font-size: 0.74rem; font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.seat-stamp strong { position: absolute; top: 0.5rem; right: 0.65rem; font-size: 1.1rem; line-height: 1; animation: seat-spin 4s linear infinite reverse; }
.space-scenes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.8rem); align-items: start; }
.space-scene { margin: 0; }
.space-scene-inside { animation: scene-float-one 9s var(--ease-in-out) infinite alternate; }
.space-scene-outside { margin-top: 5rem; }
.space-scene-outside { animation: scene-float-two 10.5s var(--ease-in-out) infinite alternate; }
.space-photo { aspect-ratio: 14 / 9; overflow: hidden; border: 3px solid var(--ink); }
.space-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.space-scene-copy { padding-top: 1.25rem; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.space-scene-copy h3 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.4rem); }
.space-scene-copy p { max-width: 38ch; margin: 0; }
.visitor-perks { margin: clamp(4rem, 8vw, 7rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 2px solid var(--ink); list-style: none; }
.visitor-perks li { padding: 1.35rem 1rem 0 0; }
.visitor-perks li + li { padding-left: 1rem; border-left: 1px solid rgba(31, 33, 29, 0.35); }
.visitor-perks .perk-icon { width: 1.7rem; height: 1.7rem; margin-bottom: 0.95rem; color: var(--coral); stroke-width: 1.8; }
.visitor-perks strong { display: block; margin-bottom: 0.45rem; font-family: var(--display); line-height: 1.08; }
.visitor-perks span { display: block; font-size: 0.82rem; line-height: 1.45; }
@keyframes seat-spin { to { transform: rotate(360deg); } }
@keyframes scene-float-one {
  from { transform: translate3d(0, -5px, 0); }
  to { transform: translate3d(0, 11px, 0); }
}
@keyframes scene-float-two {
  from { transform: translate3d(0, 9px, 0); }
  to { transform: translate3d(0, -7px, 0); }
}

.gallery-section { background: var(--soft); }
.gallery-note { margin: 0 0 0.7rem; color: #a9412f; font-family: var(--display); font-size: 1.05rem; font-weight: 900; }
.gallery-heading { margin-bottom: clamp(2.6rem, 4vw, 3.5rem); }
.gallery-heading > div { max-width: 48rem; }
.gallery-heading h2 { max-width: none; font-size: clamp(3rem, 5.2vw, 4.8rem); line-height: 0.95; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2.2rem, 4vw, 4.5rem) clamp(1rem, 2.2vw, 1.7rem); align-items: start; }
.gallery-item { position: relative; padding: 0; border: 0; background: transparent; color: var(--white); cursor: zoom-in; text-align: left; overflow: hidden; transition: transform 140ms var(--ease-out); }
.gallery-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 24%;
  background: rgba(255, 194, 44, 0.26);
  opacity: 0;
  transform: translate3d(-80%, 0, 0) rotate(14deg);
  pointer-events: none;
  animation: gallery-light 7s linear infinite;
}
.gallery-item:nth-child(2)::before { animation-delay: -4.7s; background: rgba(108, 201, 189, 0.3); }
.gallery-item:nth-child(3)::before { animation-delay: -2.3s; }
.gallery-item:nth-child(4)::before { animation-delay: -6.1s; background: rgba(239, 112, 88, 0.28); }
.gallery-item:nth-child(5)::before { animation-delay: -1.4s; }
.gallery-item:nth-child(6)::before { animation-delay: -5.3s; background: rgba(108, 201, 189, 0.3); }
.gallery-item::after { display: none; }
.gallery-open-icon { position: absolute; z-index: 2; top: 0.9rem; right: 0.9rem; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 50%; background: rgba(31, 33, 29, 0.35); color: var(--white); transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out); }
.gallery-open-icon .icon { width: 18px; height: 18px; stroke-width: 1.8; }
.gallery-label { position: relative; z-index: 2; display: block; margin-top: 0.65rem; color: var(--ink); font-family: var(--body); font-size: 0.8rem; font-weight: 650; line-height: 1.35; transition: transform 180ms var(--ease-out); }
@keyframes gallery-light {
  0%, 36% { opacity: 0; transform: translate3d(-80%, 0, 0) rotate(14deg); }
  43% { opacity: 0.72; }
  61% { opacity: 0.32; transform: translate3d(720%, 0, 0) rotate(14deg); }
  66%, 100% { opacity: 0; transform: translate3d(720%, 0, 0) rotate(14deg); }
}

.reviews-section { background: var(--mint); }
.reviews-shell { display: grid; grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.review-score { position: sticky; top: calc(var(--header-height) + 2.5rem); }
.review-intro { margin: 0 0 1.4rem; font-family: var(--display); font-size: 1.2rem; font-weight: 900; }
.score-row { display: flex; align-items: center; gap: 1rem; }
.score-row strong { font-family: var(--display); font-size: 4rem; line-height: 1; }
.score-row span, .reviewer span { color: #532c00; letter-spacing: 0.08em; }
.review-score > p:not(.review-intro) { margin: 0.4rem 0 2rem; font-weight: 760; }
.review-score h2 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.review-sparks { position: absolute; top: 1.7rem; right: 0; width: 132px; height: 118px; pointer-events: none; }
.review-sparks span { position: absolute; display: block; color: #376c65; line-height: 1; animation: spark-dance 4.5s var(--ease-in-out) infinite alternate; }
.review-sparks span:nth-child(1) { top: 0; right: 8px; font-size: 2.2rem; }
.review-sparks span:nth-child(2) { left: 22px; bottom: 7px; font-size: 1.3rem; animation-delay: -1.5s; }
.review-sparks span:nth-child(3) { right: 42px; bottom: 21px; font-size: 0.76rem; animation-delay: -3s; }
.review-list { border-top: 2px solid var(--ink); }
.review-card { padding: clamp(1.8rem, 4vw, 3rem) 0; border-bottom: 2px solid var(--ink); }
.review-card-featured { margin-top: 1.5rem; padding: clamp(1.6rem, 3vw, 2.4rem); background: var(--yellow); border-bottom: 0; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer img { width: 56px; height: 56px; border: 2px solid var(--ink); border-radius: 50%; object-fit: cover; }
.reviewer h3 { margin: 0 0 0.3rem; font-size: 1.12rem; letter-spacing: -0.02em; }
.reviewer span { font-size: 0.72rem; }
.review-card blockquote { margin: 1.4rem 0 1rem; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.34; font-weight: 700; letter-spacing: -0.02em; }
.review-card-featured blockquote { font-size: clamp(1.55rem, 3vw, 2.4rem); line-height: 1.18; }
.review-card > a { font-size: 0.82rem; font-weight: 850; text-underline-offset: 4px; transition: opacity 140ms var(--ease-out); }
.review-card > a { display: inline-flex; align-items: center; gap: 0.35rem; }
.review-card > a .icon { width: 0.95rem; height: 0.95rem; stroke-width: 2; }
@keyframes spark-dance {
  from { opacity: 0.45; transform: translate3d(-4px, 7px, 0) rotate(-12deg) scale(0.9); }
  to { opacity: 1; transform: translate3d(7px, -8px, 0) rotate(15deg) scale(1.12); }
}

.visit-section { display: grid; grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr); align-items: stretch; background: var(--coral); }
.visit-info { padding: clamp(4rem, 6vw, 5.75rem) max(20px, calc((100vw - 1180px) / 2)); padding-right: clamp(2rem, 4vw, 4rem); }
.visit-opening { margin: 0 0 0.7rem; font-family: var(--display); font-size: 1.2rem; font-weight: 900; }
.visit-info h2 { max-width: 8.5ch; margin-bottom: 1.25rem; font-size: clamp(3.2rem, 4.7vw, 4.7rem); }
.visit-block { padding: 1.1rem 0; border-top: 2px solid var(--ink); }
.visit-block h3 { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.8rem; font-family: var(--body); font-size: 0.79rem; letter-spacing: 0.11em; text-transform: uppercase; }
.visit-block h3 .icon { width: 1.05rem; height: 1.05rem; stroke-width: 2.1; }
.visit-block address { font-size: 1.03rem; font-weight: 690; }
.hours-list { margin: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; }
.hours-list dt, .hours-list dd { margin: 0; }
.hours-list dd { text-align: right; font-weight: 790; }
.visit-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.2rem; }
.phone-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 900; text-underline-offset: 5px; transition: opacity 140ms var(--ease-out); }
.phone-link .icon { width: 1.1rem; height: 1.1rem; stroke-width: 2; }
.map-wrap { min-height: 0; overflow: hidden; background: #ddd8cf; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 100%; border: 0; }

.site-footer { padding-block: 0 1.5rem; overflow: hidden; background: var(--ink); color: var(--white); }
.footer-marquee { overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.26); border-bottom: 1px solid rgba(255, 255, 255, 0.26); background: var(--yellow); color: var(--ink); }
.footer-marquee-track { width: max-content; display: flex; animation: footer-loop 22s linear infinite; }
.footer-marquee span { display: block; padding: 1rem 2.4rem 1rem 0; white-space: nowrap; font-family: var(--display); font-size: clamp(1.15rem, 2.2vw, 1.85rem); font-weight: 900; letter-spacing: -0.025em; text-transform: uppercase; }
.footer-grid { margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.8fr auto; align-items: center; gap: 3rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 72px; height: 72px; object-fit: cover; border: 2px solid var(--white); border-radius: 50%; }
.footer-brand strong { display: block; font-family: var(--display); font-size: 1.55rem; line-height: 0.92; }
.footer-brand span { display: block; margin-top: 0.45rem; color: rgba(255, 255, 255, 0.68); font-size: 0.76rem; }
.footer-grid > p { max-width: 22rem; margin: 0; color: rgba(255, 255, 255, 0.76); }
.footer-socials { display: flex; gap: 0.65rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.24); color: rgba(255, 255, 255, 0.62); font-size: 0.76rem; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--white); font-weight: 800; text-underline-offset: 4px; transition: opacity 140ms var(--ease-out); }
.footer-bottom a .icon { width: 1rem; height: 1rem; }
@keyframes footer-loop { to { transform: translate3d(-50%, 0, 0); } }

.lightbox {
  position: fixed;
  z-index: var(--z-modal);
  inset: 0;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  background: rgba(18, 19, 17, 0.94);
  color: var(--white);
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-figure { margin: 0; height: min(82vh, 860px); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transform: translate3d(0, 12px, 0) scale(0.96); transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out); }
.lightbox.is-open .lightbox-figure { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.lightbox-figure img { max-width: 100%; max-height: calc(100% - 2.5rem); object-fit: contain; box-shadow: 0 8px 8px rgba(0, 0, 0, 0.34); }
.lightbox-figure figcaption { width: min(100%, 680px); margin-top: 0.9rem; display: flex; justify-content: space-between; gap: 2rem; font-size: 0.86rem; }
.lightbox-close,
.lightbox-control { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; transition: transform 140ms var(--ease-out), background-color 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out); }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; }
.lightbox-close svg, .lightbox-control svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.lightbox.motion-instant,
.lightbox.motion-instant .lightbox-figure { transition: none; }

.motion-enabled [data-reveal].reveal-pending {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
.motion-enabled [data-reveal="clip"].reveal-pending {
  clip-path: inset(0 0 18% 0);
  transform: translate3d(0, 34px, 0) scale(0.98);
}
.motion-enabled [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 540ms var(--ease-out), transform 680ms var(--ease-out), clip-path 760ms var(--ease-in-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-enabled [data-reveal="clip"].is-revealed { clip-path: inset(0 0 0 0); }
.menu-grid [data-reveal]:nth-child(2),
.gallery-grid [data-reveal]:nth-child(2),
.review-list [data-reveal]:nth-child(2) { --reveal-delay: 55ms; }
.menu-grid [data-reveal]:nth-child(3),
.gallery-grid [data-reveal]:nth-child(3),
.review-list [data-reveal]:nth-child(3) { --reveal-delay: 110ms; }
.gallery-grid [data-reveal]:nth-child(4) { --reveal-delay: 45ms; }
.gallery-grid [data-reveal]:nth-child(5) { --reveal-delay: 100ms; }
.gallery-grid [data-reveal]:nth-child(6) { --reveal-delay: 155ms; }

.brand:active,
.primary-navigation > a:active,
.button:active,
.nav-find:active,
.menu-toggle:active,
.nav-socials a:active,
.footer-socials a:active,
.lightbox-close:active,
.lightbox-control:active { transform: scale(0.97); }
.gallery-item:active { transform: scale(0.985); }
.text-link:active,
.review-card > a:active,
.phone-link:active,
.footer-bottom a:active,
.hero-scroll:active { opacity: 0.68; }

@media (hover: hover) and (pointer: fine) {
  .primary-navigation > a:not(.nav-find):hover::after { right: 0; }
  .nav-socials a:hover,
  .footer-socials a:hover { transform: translateY(-2px); background: var(--yellow); color: var(--ink); }
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: var(--yellow-bright); }
  .button-light:hover { background: var(--white); color: var(--ink); }
  .button-dark:hover { background: var(--yellow); color: var(--ink); }
  .text-link span { display: inline-block; transition: transform 180ms var(--ease-out); }
  .text-link:hover span { transform: translate3d(3px, -3px, 0); }
  .text-link .icon { transition: transform 180ms var(--ease-out); }
  .text-link:hover .icon { transform: translate3d(3px, -3px, 0); }
  .menu-spotlight:hover .menu-spotlight-photo img { transform: scale(1.018); }
  .menu-card:hover .menu-photo img { transform: scale(1.025); }
  .space-scene:hover .space-photo img { transform: scale(1.022); }
  .gallery-item:hover img { transform: scale(1.035); }
  .gallery-item:hover .gallery-open-icon { transform: scale(1.08) rotate(-5deg); background: var(--yellow); color: var(--ink); }
  .gallery-item:hover .gallery-label { transform: translate3d(7px, 0, 0); }
  .lightbox-close:hover,
  .lightbox-control:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
}

@media (min-width: 901px) {
  .nav-shell,
  .hero-content { width: min(1280px, calc(100% - 64px)); }

  .hero-overlay { background: rgba(0, 0, 0, 0.34); }
  .hero-orb-coral,
  .hero-orb-mint { display: none; }
  .hero-orb-yellow { top: 8%; right: 2%; opacity: 0.1; }
  .hero-mantra { display: none; }
  .hero-seal {
    position: absolute;
    z-index: 2;
    top: calc(var(--header-height) + var(--hero-space-lg));
    right: max(32px, calc((100vw - 1280px) / 2));
    width: clamp(140px, 11vw, 176px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    pointer-events: none;
  }

  .hero-content {
    position: absolute;
    inset: var(--header-height) 0 0;
    margin-inline: auto;
    padding: 0 0 clamp(2rem, 3.2vw, 3rem);
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.5fr);
    grid-template-rows: 1fr auto auto;
    grid-template-areas:
      ". ."
      "eyebrow copy"
      "title actions";
    column-gap: var(--hero-space-lg);
    align-items: end;
  }
  .hero .eyebrow {
    grid-area: eyebrow;
    margin: 0 0 var(--hero-space-sm);
  }
  .eyebrow-desktop { display: inline; }
  .eyebrow-mobile { display: none; }
  .hero h1 {
    grid-area: title;
    max-width: none;
    margin: 0;
    font-size: clamp(4.75rem, 8vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .hero-title-desktop { display: block; color: var(--white); }
  .hero-title-mobile { display: none; }
  .hero-copy {
    grid-area: copy;
    align-self: end;
    justify-self: end;
    max-width: 29ch;
    margin: 0 0 var(--hero-space-md);
    font-size: clamp(1.08rem, 1.45vw, 1.28rem);
    line-height: 1.48;
    text-align: center;
  }
  .hero-actions {
    grid-area: actions;
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: 390px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--hero-space-sm);
  }
  .hero-actions .button {
    min-height: 58px;
    padding: 0.85rem 1.15rem;
    justify-content: space-between;
    border-width: 1.5px;
    border-radius: 0;
  }
  .hero .button-primary { background: var(--white); color: var(--ink); }
  .hero .button-light { background: rgba(31, 33, 29, 0.18); }
  .hero-scroll { display: none; }
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .hero-actions .button:hover > .icon { transform: translate3d(3px, -3px, 0); }
  .hero .button-primary:hover { background: var(--yellow); }
}

@media (max-width: 1040px) {
  .story-grid { grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr); gap: 3rem; }
  .intro-band-grid { grid-template-columns: minmax(0, 1.4fr) 148px auto; }
  .intro-orbit { width: 148px; }
  .visitor-perks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .visitor-perks li:nth-child(4) { border-left: 0; }
  .primary-navigation { gap: 0.9rem; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .page-shell { width: min(100% - 28px, 720px); }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }
  .menu-toggle .icon { width: 22px; height: 22px; }
  .menu-active .menu-toggle .icon-menu { display: none; }
  .menu-active .menu-toggle .icon-close { display: block; }
  .primary-navigation {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100svh - var(--header-height));
    padding: 2rem 28px 2.5rem;
    display: grid;
    gap: 0;
    overflow-y: auto;
    background: var(--off-white);
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms var(--ease-out), visibility 220ms var(--ease-out);
  }
  .menu-active .primary-navigation { transform: translateY(0); visibility: visible; }
  .primary-navigation > a { padding: 0.72rem 0; font-family: var(--display); font-size: 1.55rem; border-bottom: 1px solid var(--line); }
  .primary-navigation > a::after { display: none; }
  .primary-navigation .nav-find { margin-top: 1rem; padding: 0.85rem 1rem; border: 2px solid var(--ink); text-align: center; }
  .nav-socials { margin-top: 1.25rem; }
  .intro-band-grid { grid-template-columns: minmax(0, 1fr) 138px auto; gap: 2rem; }
  .intro-orbit { width: 138px; }
  .story-grid { grid-template-columns: 1fr; gap: 4rem; }
  .story-copy { position: static; }
  .story-collage { width: min(100%, 650px); margin-inline: auto; }
  .menu-spotlight { grid-template-columns: 1fr; }
  .menu-spotlight-photo { min-height: 0; aspect-ratio: 16 / 9; }
  .menu-spotlight-copy h3 { margin-top: 2.4rem; }
  .menu-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .menu-card { display: grid; grid-template-columns: minmax(180px, 0.78fr) 1fr; }
  .menu-card-coral { margin-top: 0; }
  .menu-photo { border-bottom: 0; }
  .menu-disclaimer { margin-top: 2.8rem; }
  .space-scene-copy { grid-template-columns: 1fr; gap: 0.8rem; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.4rem 1rem; }
  .gallery-heading h2 { font-size: clamp(2.8rem, 9vw, 4.2rem); }
  .reviews-shell { grid-template-columns: 1fr; }
  .review-score { position: static; }
  .visit-section { grid-template-columns: 1fr; min-height: 0; }
  .visit-info { padding: var(--section-space) max(20px, calc((100vw - 720px) / 2)); }
  .map-wrap, .map-wrap iframe { min-height: 0; height: 400px; }
}

@media (max-width: 639px) {
  :root {
    --header-height: calc(70px + env(safe-area-inset-top));
    --section-space: 5.2rem;
  }
  h2 { font-size: clamp(2.8rem, 14vw, 4.35rem); }
  .nav-shell { padding-top: env(safe-area-inset-top); }
  .brand { gap: 0.6rem; }
  .brand img { width: 48px; height: 48px; }
  .brand-short { display: none; }
  .brand-long {
    display: inline;
    max-width: 9.5rem;
    font-size: 1.02rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .menu-toggle { border: 0; border-radius: 0; }
  .hero-media img { object-position: 50% center; }
  .hero-overlay { background: rgba(0, 0, 0, 0.34); }
  .hero-ambient { display: none; }
  .hero-mantra { display: none; }
  .hero-seal {
    position: absolute;
    z-index: 2;
    top: calc(var(--header-height) + clamp(2rem, 7vh, 4.5rem));
    right: 5vw;
    width: clamp(112px, 32vw, 144px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .hero-content {
    position: absolute;
    inset: var(--header-height) 0 0;
    width: min(100% - 40px, 560px);
    padding: 0 0 max(1.5rem, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
  .hero .eyebrow {
    margin-bottom: 0.8rem;
    font-size: clamp(0.68rem, 3vw, 0.78rem);
    line-height: 1.25;
    letter-spacing: 0.16em;
  }
  .hero .eyebrow::before { display: none; }
  .eyebrow-desktop { display: inline; }
  .eyebrow-mobile { display: none; }
  .hero h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(2.8rem, 11.2vw, 4rem);
    line-height: 0.87;
    letter-spacing: -0.045em;
    text-transform: uppercase;
  }
  .hero-title-desktop { display: block; color: var(--white); }
  .hero-title-mobile { display: none; }
  .hero-copy {
    max-width: 34ch;
    margin: 1.1rem 0 1.35rem;
    font-size: clamp(1rem, 4.1vw, 1.12rem);
    line-height: 1.45;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    width: 100%;
  }
  .hero-actions .button {
    min-height: 56px;
    padding: 0.8rem 1rem;
    justify-content: space-between;
    border-width: 1.5px;
    border-radius: 0;
    font-size: 0.96rem;
  }
  .hero .button-primary { background: var(--white); color: var(--ink); }
  .hero .button-light { background: rgba(31, 33, 29, 0.18); }
  .hero-scroll { display: none; }
  .intro-band-grid { grid-template-columns: 126px minmax(0, 1fr); gap: 1.7rem 1.25rem; }
  .intro-band h2 { grid-column: 1 / -1; }
  .intro-orbit { width: 126px; }
  .intro-orbit img { width: 64px; height: 64px; }
  .intro-band h2 { font-size: 2.65rem; }
  .intro-rating { padding: 1.2rem 0 0; border-top: 2px solid var(--ink); border-left: 0; }
  .intro-facts { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .intro-facts li { padding: 0.55rem 0; border-bottom: 1px solid rgba(31, 33, 29, 0.32); font-size: 1rem; }
  .intro-facts li::after { display: none; }
  .story-collage { width: min(100%, 650px); margin-inline: auto; }
  .story-figure { width: 100%; margin-left: auto; }
  .story-figure figcaption { font-size: 0.76rem; line-height: 1.35; }
  .story-copy > p:not(.story-opening) { font-size: 1rem; }
  .section-heading,
  .space-heading { display: block; margin-bottom: 2.8rem; }
  .section-heading > p,
  .space-heading > p { margin-top: 1.4rem; }
  .menu-spotlight-copy { padding: 1.5rem; }
  .menu-spotlight-copy h3 { font-size: 3.5rem; }
  .spotlight-thumbnails img { height: 90px; }
  .menu-card { display: block; }
  .menu-photo { border-right: 0; border-bottom: 3px solid var(--ink); }
  .menu-card h3 { font-size: 2.1rem; }
  .menu-card-body { padding: 1.5rem; }
  .character-break { min-height: 620px; }
  .character-break > picture img { object-position: 56% center; }
  .character-break h2 { font-size: 4.2rem; }
  .character-floaters span:nth-child(1) { top: 16%; right: 5%; }
  .character-floaters span:nth-child(2) { top: 38%; left: 4%; }
  .character-floaters span:nth-child(3) { display: none; }
  .space-heading { position: relative; padding-right: 6.3rem; }
  .seat-stamp { position: absolute; top: 0; right: 0; width: 86px; }
  .seat-stamp span { font-size: 0.6rem; }
  .seat-stamp strong { top: 0.35rem; right: 0.45rem; font-size: 0.9rem; }
  .space-scenes { grid-template-columns: 1fr; gap: 3.5rem; }
  .space-scene-outside { margin-top: 0; }
  .space-scene-copy { padding-top: 1rem; }
  .visitor-perks { grid-template-columns: 1fr; margin-top: 4.5rem; }
  .visitor-perks li { padding: 1rem 0; border-bottom: 1px solid rgba(31, 33, 29, 0.32); }
  .visitor-perks li + li { padding-left: 0; border-left: 0; }
  .gallery-grid { gap: 1.8rem 0.75rem; }
  .gallery-label { margin-top: 0.5rem; font-size: 0.74rem; }
  .review-score h2 { font-size: 3.25rem; }
  .review-card-featured { margin-top: 0.75rem; }
  .visit-info { padding-block: 4.25rem; }
  .visit-info h2 { font-size: 3.4rem; }
  .hours-list div { display: block; padding: 0.35rem 0; }
  .hours-list dd { text-align: left; }
  .visit-actions { align-items: flex-start; flex-direction: column; }
  .map-wrap, .map-wrap iframe { min-height: 0; height: 340px; }
  .footer-grid { grid-template-columns: 1fr auto; gap: 2rem 1rem; }
  .footer-grid { margin-top: 3rem; }
  .footer-grid > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { display: block; }
  .footer-bottom a { display: inline-flex; align-items: center; margin-top: 0.6rem; }
  .lightbox { padding: 4rem 0.75rem 1rem; grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 0.25rem; }
  .lightbox-figure { height: 78vh; }
  .lightbox-control { width: 40px; height: 40px; }
  .lightbox-close { width: 44px; height: 44px; top: 0.75rem; right: 0.75rem; }
}

@media (max-width: 639px) and (max-height: 700px) {
  .hero-seal {
    top: calc(var(--header-height) + 0.7rem);
    width: clamp(90px, 25vw, 112px);
  }
  .hero-content { padding-bottom: max(0.85rem, env(safe-area-inset-bottom)); }
  .hero .eyebrow { margin-bottom: 0.55rem; font-size: 0.66rem; }
  .hero h1 { font-size: clamp(2.55rem, 10.4vw, 3.45rem); }
  .hero-copy { margin: 0.7rem 0 0.9rem; font-size: 0.94rem; line-height: 1.38; }
  .hero-actions .button { min-height: 50px; padding-inline: 0.75rem; font-size: 0.84rem; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: 0.01ms !important; }
  .hero-mantra span { opacity: 0; transform: none; }
  .hero-mantra span:first-child { opacity: 1; }
  .motion-enabled [data-reveal].reveal-pending,
  .motion-enabled [data-reveal="clip"].reveal-pending,
  .motion-enabled [data-reveal].is-revealed {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: none;
  }
  .lightbox,
  .lightbox-figure { transform: none; transition: opacity 140ms var(--ease-out) !important; }
  .button,
  .brand,
  .primary-navigation > a,
  .nav-find,
  .menu-toggle,
  .nav-socials a,
  .footer-socials a,
  .gallery-item,
  .lightbox-close,
  .lightbox-control { transform: none !important; }
}
