:root {
  --ivory: #f6f0e6;
  --paper: #fffcf7;
  --sand: #f3e4cc;
  --goldwash: #ead7b4;
  --ink: #241c14;
  --muted: #5c534a;
  --gold: #c4a15a;
  --gold-deep: #6f4e1d;
  --line: rgba(111, 78, 29, 0.2);
  --shadow: 0 24px 50px rgba(70, 48, 16, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --nav: 78px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
}

body.nav-lock { overflow: hidden; }

img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.3rem, 4.4vw, 4rem); line-height: 0.96; margin: 0 0 12px; }
h3 { margin: 0; }
p { margin: 0 0 0.8em; }
a { color: inherit; }
ul { margin: 0; padding: 0; }

::selection { background: #e7d3a4; color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--paper);
  padding: 8px 12px;
  border-radius: 8px;
}

.skip:focus { top: 12px; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
}

.lead { font-size: 1.06rem; color: var(--muted); max-width: 62ch; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  z-index: 70;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--nav);
  display: flex;
  align-items: center;
  background: transparent;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 240, 230, 0.9);
  backdrop-filter: blur(16px);
  z-index: 0;
}

.site-nav.is-solid {
  box-shadow: 0 1px 0 var(--line);
}

.site-nav.is-solid::before { background: rgba(246, 240, 230, 0.96); }

.nav-bar {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  z-index: 46;
}

.logo-mark { color: var(--gold-deep); display: flex; }

.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-words strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
.logo-words em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 0;
}

.nav-menu a.is-active { color: var(--gold-deep); box-shadow: inset 0 -1px 0 var(--gold-deep); }
a.nav-menu-book { display: none; }

.nav-book { position: relative; z-index: 46; margin-left: 8px; flex: none; }
.nav-toggle { flex: none; }
.logo { flex: none; min-width: 0; }
.nav-book.is-active { box-shadow: 0 0 0 2px #fffaf3, 0 0 0 4px var(--gold-deep); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 46;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-gold { background: var(--gold-deep); color: #fffaf3; }
.btn-gold:hover { background: #5c3f16; }
.btn-line { background: transparent; border-color: rgba(111, 78, 29, 0.45); color: var(--ink); }
.btn-line:hover { background: rgba(255, 252, 247, 0.7); }
.btn-ink { background: var(--ink); color: var(--ivory); }
.btn-ink:hover { background: #3a2e22; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.hero, .page-hero { position: relative; overflow: hidden; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav) + 24px) 0 110px;
}

.hero-media, .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media { z-index: 0; }
.hero-media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.hero-shade, .page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(246, 240, 230, 0.42) 0%, rgba(246, 240, 230, 0.12) 38%, rgba(246, 240, 230, 0) 62%);
}

.hero .orb,
.hero .ring { z-index: 2; }
.hero-panel, .page-hero-copy { position: relative; z-index: 3; }

.hero-panel {
  width: min(620px, 100%);
  background: rgba(246, 240, 230, 0.92);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 36px 36px 26px;
  box-shadow: var(--shadow);
}

.hero h1, .page-hero h1 {
  font-size: clamp(4.2rem, 8vw, 7.2rem);
  line-height: 0.86;
  margin: 0 0 14px;
  font-weight: 500;
}

.hero h1 em, .page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.hero-lead { max-width: 46ch; color: var(--ink); font-size: 1.12rem; }

.cycle {
  height: 1.25em;
  overflow: hidden;
  margin: 8px 0 4px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.cycle-track { display: flex; flex-direction: column; animation: cycle 10s infinite; }
.cycle-track span { height: 1.25em; line-height: 1.25em; }

@keyframes cycle {
  0%, 16% { transform: translateY(0); }
  20%, 36% { transform: translateY(-1.25em); }
  40%, 56% { transform: translateY(-2.5em); }
  60%, 76% { transform: translateY(-3.75em); }
  80%, 100% { transform: translateY(-5em); }
}

.hero-panel > * { animation: rise 0.7s ease both; }
.hero-panel > *:nth-child(2) { animation-delay: 0.06s; }
.hero-panel > *:nth-child(3) { animation-delay: 0.12s; }
.hero-panel > *:nth-child(4) { animation-delay: 0.18s; }
.hero-panel > *:nth-child(5) { animation-delay: 0.24s; }

@keyframes rise {
  from { transform: translateY(12px); }
  to { transform: none; }
}

.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 108px;
  z-index: 2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  margin: 8px auto 0;
  background: linear-gradient(var(--gold-deep), transparent);
  transform-origin: top;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  50% { transform: scaleY(0.55); opacity: 0.45; }
}

.orb, .ring { position: absolute; pointer-events: none; }
.orb {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 161, 90, 0.55), rgba(196, 161, 90, 0) 70%);
  animation: drift 12s ease-in-out infinite;
}
.orb-1 { width: 180px; height: 180px; right: 10%; top: 16%; }
.orb-2 { width: 110px; height: 110px; right: 28%; bottom: 24%; animation-delay: -4s; }
.ring {
  width: 210px;
  height: 210px;
  right: 7%;
  top: 26%;
  border: 1px solid rgba(196, 161, 90, 0.75);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}
.ring::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(111, 78, 29, 0.4);
}

@keyframes drift {
  50% { transform: translate3d(10px, -18px, 0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.shape-sep { line-height: 0; }
.shape-sep svg { display: block; width: 100%; height: 84px; }
.shape-sep path { fill: currentColor; }
.tone-paper { color: var(--paper); }
.tone-sand { color: var(--sand); }
.tone-ivory { color: var(--ivory); }
.tone-gold { color: var(--goldwash); }
.hero .shape-sep, .page-hero .shape-sep {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.72);
}
.marquee-track { display: flex; width: max-content; animation: ticker 36s linear infinite; }
.marquee-group { display: flex; }
.marquee span {
  padding: 14px 0 14px 22px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.marquee span::before {
  content: "◆";
  font-size: 0.55rem;
  margin-right: 22px;
  color: var(--gold);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

.band { position: relative; padding: 84px 0 12px; overflow: hidden; }
.band-flush { padding-top: 0; }
.section-pad { padding-top: 42px; }
.section-head { margin-bottom: 8px; }
.head-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.band-paper { background: var(--paper); }
.band-sand { background: var(--sand); }
.band-ivory { background: var(--ivory); }
.band-gold { background: var(--goldwash); }
.band .container { position: relative; z-index: 1; }

.watermark {
  position: absolute;
  right: -1vw;
  top: 10px;
  z-index: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(111, 78, 29, 0.16);
  pointer-events: none;
  user-select: none;
}

.stat-grid, .exp-grid, .timeline, .visit-grid, .foot-grid, .split, .film, .book-layout {
  display: grid;
  gap: 22px;
}

.stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 36px; }
.stat { padding: 8px 8px 0 0; border-top: 1px solid var(--gold-deep); }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1;
}
.stat span { display: block; margin-top: 8px; color: var(--muted); }

.exp-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 42px; }
.exp {
  display: block;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 150px 150px 22px 22px;
  overflow: hidden;
  color: inherit;
  min-height: 100%;
}
.band-paper .exp { background: var(--ivory); }
.exp-media { height: 190px; overflow: hidden; }
.exp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.exp:hover img { transform: scale(1.06); }
.exp:hover { border-color: rgba(111, 78, 29, 0.45); }
.exp-no, .exp h3, .exp p, .exp-go { padding-left: 16px; padding-right: 16px; }
.exp-no {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-deep);
}
.exp h3 { font-size: 1.7rem; margin-top: 4px; }
.exp p { color: var(--muted); font-size: 0.95rem; margin: 6px 0 0; }
.exp-go {
  display: inline-block;
  margin: 8px 16px 18px;
  padding: 0;
  color: var(--gold-deep);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
.split-flip { grid-template-columns: 0.95fr 1.05fr; }

.frame { background: #ead9b8; overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-arch {
  border-radius: 200px 200px 28px 28px;
  height: min(520px, 70vw);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ticks { list-style: none; margin-top: 8px; }
.ticks li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold-deep);
  transform: rotate(45deg);
}

.cap {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.6rem);
  line-height: 0.85;
  margin: 0;
  color: var(--gold-deep);
}
.cap span {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); position: relative; margin-top: 10px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(111, 78, 29, 0.28);
}
.step-no {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-deep);
  background: var(--goldwash);
  font-family: var(--serif);
  font-size: 1.2rem;
  position: relative;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.7rem; margin-bottom: 6px; }
.step p { color: var(--muted); max-width: 36ch; }

.dish-swiper { overflow: hidden; }
.dish-card {
  height: 100%;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.dish-card .frame { height: 230px; }
.dish-body { padding: 14px 16px 18px; }
.dish-body .price { margin: 10px 0 0; color: var(--gold-deep); font-weight: 500; }
.dish-card h3 { font-size: 1.6rem; margin: 4px 0; }
.dish-card p { margin: 0; color: var(--muted); }
.swiper-nav { display: flex; gap: 8px; margin-top: 16px; }
.round-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}
.round-btn:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.film { grid-template-columns: 1.35fr 0.8fr; align-items: center; gap: 36px; }
.reel, .film-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: #1b1612;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.reel img, .film-frame video, .film-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel img { opacity: 0; transition: opacity 1s ease; }
.reel img.is-on { opacity: 1; }

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.mini-gallery a {
  display: block;
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.mini-gallery img { width: 100%; height: 100%; object-fit: cover; }

.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.6rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--muted); max-width: 68ch; }

.visit-grid { grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.hours li span:last-child { color: var(--muted); text-align: right; }

.cta-band {
  position: relative;
  overflow: hidden;
  margin: 28px 16px;
  padding: 64px 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 252, 247, 0.7), transparent 28%),
    linear-gradient(155deg, #f8efdc, #e4cb96);
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; }
.cta-band .orb-1 { right: 8%; top: -20px; }
.cta-band .ring { right: 4%; top: 18%; width: 160px; height: 160px; }

.site-footer { background: #efe0c4; padding: 56px 0 24px; }
.foot-grid { grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr; gap: 28px; }
.foot-brand strong { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; display: block; margin-bottom: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold-deep); }
.foot-base {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav) + 36px) 0 120px;
}
.page-hero.is-short { min-height: 52vh; }
.page-hero-shade {
  background: linear-gradient(90deg, rgba(246, 240, 230, 0.95) 0%, rgba(246, 240, 230, 0.78) 46%, rgba(246, 240, 230, 0.28) 100%);
}
.page-hero h1 { font-size: clamp(3.1rem, 6vw, 5.5rem); }
.page-hero-copy { max-width: 740px; }

.chip-bar {
  position: sticky;
  top: var(--nav);
  z-index: 25;
  background: rgba(246, 240, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
}
.chip {
  flex: none;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--paper);
  font-size: 0.9rem;
}
.chip:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.menu-block { scroll-margin-top: 150px; padding: 54px 0; }
.menu-block + .menu-block { border-top: 1px solid var(--line); }

.dish-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.dish-row h3 { font-size: 1.45rem; }
.dish-row p { margin: 4px 0 0; color: var(--muted); }
.dish-row .price { margin: 6px 0 0; color: var(--gold-deep); font-weight: 500; white-space: nowrap; }
.kind {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
  vertical-align: middle;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.book-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; gap: 28px; }
.book-aside { position: sticky; top: calc(var(--nav) + 18px); }
.aside-card, .form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(111, 78, 29, 0.35);
  border-radius: 0;
  padding: 12px 0;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6f4e1d 50%), linear-gradient(135deg, #6f4e1d 50%, transparent 50%);
  background-position: calc(100% - 16px) 55%, calc(100% - 10px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-deep);
  box-shadow: 0 1px 0 var(--gold-deep);
}
.help { margin: 8px 0 0; font-size: 0.88rem; color: var(--muted); }
.field-error { color: #6e2e24; font-size: 0.86rem; margin-top: 4px; }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 16px; }
.alert-bad { background: #f8ece6; color: #6e2e24; }
.alert-ok { background: #f3ead6; border: 1px solid var(--line); }
.alert-ok h2 { margin-bottom: 8px; }
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 12px;
}
.shot {
  display: block;
  padding: 0;
  border: 0;
  background: #ead9b8;
  cursor: zoom-in;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.shot:hover img { transform: scale(1.05); }
.span2 { grid-column: span 2; }
.tall { grid-row: span 2; }

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(1080px, 94vw);
  max-width: 94vw;
}
.lightbox::backdrop { background: rgba(28, 22, 16, 0.78); }
.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  background: #1b1612;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--ivory);
  cursor: pointer;
}

section[id] { scroll-margin-top: calc(var(--nav) + 12px); }

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--d, 0ms);
  }
  .js [data-reveal].in { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .exp-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { gap: 14px; }
}

@media (max-width: 1080px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-book { margin-left: auto; }
  .nav-menu {
    position: fixed;
    inset: 0;
    margin: 0;
    padding: 110px 32px 40px;
    background: rgba(246, 240, 230, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    transform: translateY(-102%);
    transition: transform 0.4s ease;
    z-index: 45;
  }
  .nav-menu.is-open { transform: none; visibility: visible; }
  .nav-menu { visibility: hidden; }
  .nav-menu a {
    font-family: var(--serif);
    font-size: 2.4rem;
    box-shadow: none;
  }
  .nav-book { display: none; }
  .nav-menu a.nav-menu-book {
    display: inline-flex;
    margin-top: 16px;
    font-family: var(--sans);
    font-size: 1rem;
    box-shadow: none;
  }
}

@media (max-width: 860px) {
  .split, .split-flip, .film, .visit-grid, .book-layout, .timeline {
    grid-template-columns: 1fr;
  }
  .split-flip .frame { order: -1; }
  .timeline::before { display: none; }
  .book-aside { position: static; }
  .page-hero-shade, .hero-shade {
    background: linear-gradient(180deg, rgba(246, 240, 230, 0.45) 0%, rgba(246, 240, 230, 0.9) 42%, rgba(246, 240, 230, 0.97) 100%);
  }
  .hero { align-items: flex-end; }
  .hero-panel {
    width: auto;
    border-radius: 28px;
    padding: 26px 20px 16px;
    margin-bottom: 8px;
  }
  .scroll-cue, .hero .ring, .hero .orb { display: none; }
  .mini-gallery, .bento { grid-template-columns: 1fr 1fr; }
  .tall { grid-row: span 1; }
  .bento { grid-auto-rows: 150px; }
}

@media (max-width: 700px) {
  .container, .nav-bar { width: min(100% - 28px, var(--max)); }
  .nav-bar { gap: 8px; }
  .logo-words strong { font-size: 1.2rem; }
  .nav-book { min-height: 40px; padding: 0 12px; font-size: 0.9rem; }
  .nav-toggle { width: 40px; height: 40px; }
  .stat-grid, .exp-grid, .foot-grid, .form-grid, .mini-gallery { grid-template-columns: 1fr; }
  .foot-base, .hours li { flex-direction: column; }
  .hours li span:last-child { text-align: left; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 4.6rem); }
  .shape-sep svg { height: 52px; }
  .cta-band { margin: 16px 10px; padding: 42px 0; }
  .frame-arch { border-radius: 120px 120px 22px 22px; }
  .band { padding-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .cycle-track, .orb, .ring, .hero-panel > *, .scroll-cue::after { animation: none !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .exp, .exp img, .shot img, .reel img { transition: none; }
  .exp:hover img, .shot:hover img { transform: none; }
  html { scroll-behavior: auto; }
}
