@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --bg: #110a08;
  --bg-soft: #1a100d;
  --bg-elev: #231613;
  --ink: #f7ede0;
  --muted: #ccb9a8;
  --muted-strong: #decebe;
  --line: rgba(247, 237, 224, 0.12);
  --line-strong: rgba(247, 237, 224, 0.2);
  --amber: #e1af66;
  --amber-soft: #f5d7a8;
  --blush: #db8aa2;
  --rose: #8e5161;
  --glow: #fff0c8;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.24);
  --header-h: 88px;
  --content: 1180px;
  --wide: 1360px;
  --radius: 28px;
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Bricolage Grotesque", "Noto Sans SC", "PingFang SC", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 82% 8%, rgba(219, 138, 162, 0.13), transparent 28%),
    radial-gradient(circle at 20% 14%, rgba(255, 240, 200, 0.08), transparent 18%),
    linear-gradient(180deg, #140d0b 0%, #0d0807 52%, #070505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(225, 175, 102, 0.04), transparent 20%);
  z-index: -1;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(219, 138, 162, 0.28);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition),
    transform var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 7, 6, 0.8);
  border-bottom-color: rgba(247, 237, 224, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: var(--wide);
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(255, 240, 200, 0.28), rgba(255, 240, 200, 0.02) 70%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(247, 237, 224, 0.08);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: rgba(247, 237, 224, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--amber-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  position: relative;
  color: rgba(247, 237, 224, 0.86);
  font-size: 0.95rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.section-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(247, 237, 224, 0.16);
  background: rgba(247, 237, 224, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  top: -8px;
}

.mobile-toggle span::after {
  top: 8px;
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] span::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::after {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.page-main {
  overflow: clip;
}

.page-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 24px;
}

.page-shell.narrow {
  width: min(100%, 980px);
}

.page-shell.wide {
  width: min(100%, var(--wide));
}

.section {
  position: relative;
  padding: 112px 0;
}

.section.tight {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section.no-top {
  padding-top: 0;
}

.section.no-bottom {
  padding-bottom: 0;
}

.section-divider {
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 237, 224, 0.78);
  font-family: "Fraunces", serif;
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(247, 237, 224, 0.34);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Bricolage Grotesque", "Noto Sans SC", sans-serif;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.8rem, 11vw, 9.2rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.92;
}

h3 {
  font-size: clamp(1.22rem, 2vw, 2rem);
  line-height: 1;
}

h4 {
  font-size: 1rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.lede {
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.7;
}

.title-lg {
  font-size: clamp(2.5rem, 5vw, 5.4rem);
}

.title-md {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.serif-note {
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.18;
  color: var(--ink);
}

.stack {
  display: grid;
  gap: 22px;
}

.stack.sm {
  gap: 14px;
}

.stack.lg {
  gap: 34px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 44px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(247, 237, 224, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  border-color: transparent;
  color: #120b09;
  font-weight: 700;
}

.btn-secondary {
  background: rgba(247, 237, 224, 0.06);
}

.btn-ghost {
  background: transparent;
  color: rgba(247, 237, 224, 0.82);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-soft);
  font-size: 0.94rem;
}

.inline-link::after {
  content: "↗";
}

.hero-home,
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 24px);
}

.hero-home {
  min-height: 100svh;
  align-items: center;
}

.page-hero {
  min-height: 72svh;
  border-bottom: 1px solid rgba(247, 237, 224, 0.08);
}

.hero-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-layer video,
.hero-layer img,
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.06);
  filter: saturate(0.9) contrast(0.94) brightness(0.8);
  transition: transform 180ms linear;
}

.hero-home::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 240, 200, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(11, 8, 7, 0.14) 0%, rgba(11, 8, 7, 0.32) 20%, rgba(11, 8, 7, 0.68) 60%, rgba(11, 8, 7, 0.96) 100%),
    linear-gradient(90deg, rgba(11, 8, 7, 0.84) 0%, rgba(11, 8, 7, 0.45) 38%, rgba(11, 8, 7, 0.22) 70%, rgba(11, 8, 7, 0.6) 100%);
}

.hero-home::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 240, 200, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(11, 8, 7, 0.12) 0%, rgba(11, 8, 7, 0.26) 20%, rgba(11, 8, 7, 0.58) 62%, rgba(11, 8, 7, 0.9) 100%),
    linear-gradient(90deg, rgba(11, 8, 7, 0.8) 0%, rgba(11, 8, 7, 0.46) 38%, rgba(11, 8, 7, 0.26) 72%, rgba(11, 8, 7, 0.56) 100%);
}

.page-hero::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 240, 200, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(11, 8, 7, 0.18) 0%, rgba(11, 8, 7, 0.46) 50%, rgba(11, 8, 7, 0.94) 100%);
}

.hero-home::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(219, 138, 162, 0.16), transparent 20%),
    linear-gradient(180deg, transparent 60%, rgba(20, 13, 11, 0.85) 100%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: 0 24px 42px;
}

.hero-home .hero-shell {
  padding-top: 92px;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 22px;
  max-width: min(760px, 92vw);
}

.poster-lockup {
  display: grid;
  gap: 8px;
}

.hero-subtitle {
  color: rgba(247, 237, 224, 0.72);
  font-size: 0.96rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  gap: 8px;
  max-width: 8ch;
}

.hero-title span {
  display: block;
}

.hero-title em {
  display: block;
  color: var(--amber-soft);
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-headline {
  max-width: 13ch;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.04;
}

.hero-copy .lede,
.page-hero-copy .lede {
  max-width: 38rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(247, 237, 224, 0.14);
  color: rgba(247, 237, 224, 0.66);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(225, 175, 102, 0.8);
  box-shadow: 0 0 20px rgba(225, 175, 102, 0.4);
}

.split-story,
.contact-layout,
.gallery-immersive,
.menu-grid,
.page-split {
  display: grid;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.split-story,
.contact-layout,
.gallery-immersive {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.page-split {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.visual-stage,
.map-frame,
.scene,
.media-stack-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.visual-stage::after,
.map-frame::after,
.scene::after,
.media-stack-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 237, 224, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.visual-stage img,
.visual-stage video,
.map-frame img,
.media-stack-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-stage.tall {
  min-height: 720px;
}

.visual-stage.medium {
  min-height: 620px;
}

.visual-stage.short {
  min-height: 520px;
}

.media-stack {
  position: relative;
  min-height: 680px;
  padding-bottom: 60px;
}

.media-stack-main {
  min-height: 620px;
}

.media-stack-float {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: min(42%, 280px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(247, 237, 224, 0.08);
  transform: rotate(5deg);
}

.media-stack-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-note,
.menu-footnote,
.scene figcaption {
  color: rgba(247, 237, 224, 0.66);
  font-size: 0.92rem;
  line-height: 1.6;
}

.visual-note {
  margin-top: 16px;
  max-width: 38rem;
}

.manifesto-list,
.visit-list,
.event-lines,
.menu-items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.manifesto-list article,
.visit-list .row,
.event-lines article,
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.manifesto-list article {
  grid-template-columns: 76px minmax(0, 1fr);
}

.manifesto-list strong,
.event-lines h3,
.menu-item h3,
.visit-list strong {
  color: var(--ink);
}

.manifesto-no {
  color: var(--amber-soft);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.manifesto-list p,
.event-lines p,
.menu-item small,
.visit-list p {
  color: rgba(247, 237, 224, 0.64);
  font-size: 0.94rem;
  line-height: 1.6;
}

.menu-item small {
  display: block;
  margin-top: 8px;
}

.price {
  color: var(--amber-soft);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.callout {
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.quote-block {
  display: grid;
  gap: 18px;
  padding-top: 14px;
}

.quote-block p:last-child {
  max-width: 40rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.section-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 12px;
  align-self: start;
}

.section-nav a {
  position: relative;
  width: fit-content;
  color: rgba(247, 237, 224, 0.74);
  font-size: 0.96rem;
  padding-bottom: 8px;
}

.section-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-stack {
  display: grid;
  gap: 56px;
}

.menu-block {
  display: grid;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.menu-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-block-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.menu-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.menu-visual {
  display: grid;
  gap: 14px;
}

.menu-visual-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.menu-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(247, 237, 224, 0.08);
  pointer-events: none;
}

.menu-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-visual-frame.poster img {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.16);
}

.mix-note,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mix-note span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(247, 237, 224, 0.12);
  color: rgba(247, 237, 224, 0.78);
  font-size: 0.88rem;
}

.gallery-immersive {
  align-items: start;
}

.gallery-copy {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: 20px;
}

.scene-stack {
  display: grid;
  gap: 22px;
}

.scene {
  margin: 0;
  aspect-ratio: 4 / 5;
}

.scene.large {
  aspect-ratio: 16 / 10;
}

.scene.tall {
  aspect-ratio: 4 / 7;
}

.scene > img,
.scene > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: rgba(247, 237, 224, 0.88);
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.82);
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 5, 5, 0.84) 100%);
}

.memory-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.memory-wall figure {
  grid-column: span 4;
  margin: 0;
  align-self: start;
}

.memory-wall figure.wide {
  grid-column: span 8;
}

.memory-wall figure.tall {
  grid-row: span 2;
}

.memory-wall .scene {
  aspect-ratio: 4 / 5;
}

.memory-wall .scene.wide {
  aspect-ratio: 16 / 10;
}

.memory-wall .scene.tall {
  aspect-ratio: 4 / 7;
}

.contact-layout {
  align-items: start;
}

.visit-list .row {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
}

.visit-label {
  color: rgba(247, 237, 224, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-frame {
  min-height: 640px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.96) brightness(0.88);
}

.info-strip {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.info-strip article {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.info-strip h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.final-cta {
  padding: 84px 0 112px;
}

.final-cta-inner {
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.site-footer {
  border-top: 1px solid rgba(247, 237, 224, 0.08);
  padding: 30px 24px 44px;
  background: rgba(4, 3, 3, 0.42);
}

.footer-shell {
  width: min(100%, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.footer-copy {
  display: grid;
  gap: 10px;
  max-width: 38rem;
}

.footer-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy p {
  color: rgba(247, 237, 224, 0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(247, 237, 224, 0.74);
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(247, 237, 224, 0.32);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .menu-block {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view,
.menu-block.is-visible {
  opacity: 1;
  transform: none;
}

.hero-copy > *,
.page-hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy > *:nth-child(2),
.page-hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3),
.page-hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4),
.page-hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(5),
.page-hero-copy > *:nth-child(5) {
  animation-delay: 0.32s;
}

.scene img,
.scene video,
.memory-wall img {
  transition: transform 1s ease;
}

.scene:hover img,
.scene:hover video,
.memory-wall figure:hover img {
  transform: scale(1.04);
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .split-story,
  .contact-layout,
  .gallery-immersive,
  .page-split,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .visual-stage.tall,
  .visual-stage.medium,
  .map-frame,
  .media-stack,
  .media-stack-main {
    min-height: 480px;
  }

  .scene.large,
  .memory-wall .scene.wide {
    aspect-ratio: 16 / 11;
  }

  .scene.tall,
  .memory-wall .scene.tall {
    aspect-ratio: 4 / 6;
  }

  .gallery-copy,
  .section-nav {
    position: static;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    overflow: visible;
    padding-bottom: 0;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    inset: calc(var(--header-h) - 2px) 16px auto;
    z-index: 59;
    padding: 18px;
    gap: 10px;
    border-radius: 22px;
    border: 1px solid rgba(247, 237, 224, 0.08);
    background: rgba(10, 7, 6, 0.95);
    backdrop-filter: blur(20px);
    display: grid;
    transform-origin: top;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .mobile-panel.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .mobile-panel a {
    color: rgba(247, 237, 224, 0.88);
    padding: 10px 0;
  }

  .mobile-panel a:last-child {
    color: var(--amber-soft);
    border-top: 1px solid rgba(247, 237, 224, 0.1);
    padding-top: 14px;
  }

  .hero-home {
    align-items: flex-end;
  }

  .hero-title {
    max-width: 7ch;
  }

  .hero-meta {
    gap: 12px 16px;
  }

  .memory-wall figure,
  .memory-wall figure.wide {
    grid-column: span 12;
  }

  .memory-wall figure.tall {
    grid-row: auto;
  }

  .scene.large,
  .scene.tall,
  .memory-wall .scene.wide,
  .memory-wall .scene.tall {
    aspect-ratio: 4 / 5;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 78px;
    --radius: 22px;
  }

  .nav-shell {
    padding: 16px 18px;
  }

  .page-shell,
  .hero-shell,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 84px 0;
  }

  .section.tight {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .page-hero {
    min-height: 58svh;
  }

  .brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    letter-spacing: 0.16em;
  }

  .hero-copy > *,
  .page-hero-copy > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-headline {
    max-width: 12ch;
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-meta,
  .mix-note,
  .tag-row {
    display: grid;
  }

  .manifesto-list article,
  .visit-list .row,
  .event-lines article,
  .menu-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-item .price {
    order: -1;
  }

  .media-stack {
    min-height: 0;
    padding-bottom: 0;
  }

  .media-stack-main,
  .visual-stage.tall,
  .visual-stage.medium,
  .visual-stage.short,
  .map-frame,
  .menu-visual-frame {
    min-height: 380px;
  }

  .media-stack-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(74%, 240px);
    margin: -38px 0 0 auto;
    transform: rotate(3deg);
  }

  .scene,
  .scene.large,
  .scene.tall,
  .memory-wall .scene.wide,
  .memory-wall .scene.tall {
    aspect-ratio: 5 / 6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .menu-block {
    opacity: 1 !important;
    transform: none !important;
  }
}
