@font-face {
  font-family: "Great Vibes";
  src: url("../assets/fonts/great-vibes.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --rose: #c5365a;
  --rose-deep: #9e2a48;
  --sea: #1a6f7c;
  --sea-soft: #7db8b4;
  --hibiscus: #e25a3c;
  --gold: #c9a36a;
  --sand: #f4ede3;
  --cream: #fff8f1;
  --ink: #1a2428;
  --muted: #3a4a50;
  --line: #d4c8b8;
  --night: #142228;
  --pillar: #c41e32;
  --open: #2f7a4a;
  --focus: #1a6f7c;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", "Noto Serif CJK JP", Georgia, serif;
  --font-body: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Noto Sans JP", "Noto Sans CJK JP", ui-sans-serif, sans-serif;
  --font-script: "Great Vibes", "Segoe Script", "Snell Roundhand", cursive;
  --space: clamp(1.1rem, 2.4vw, 2.4rem);
  --measure: 38rem;
  --sticky-nav: 4.6rem;
  --visit-bar: 4.6rem;
  --radius-ticket: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  scroll-padding-bottom: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .photo:hover img,
  .ig-grid a:hover img,
  .ig-grid a:focus-visible img {
    transform: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand);
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sea);
}

a:hover {
  color: var(--rose-deep);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 80;
  background: var(--night);
  color: var(--cream);
  padding: 0.6rem 1rem;
}

.skip:focus {
  top: 0.75rem;
}

.hours-rail {
  background: var(--night);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.hours-rail__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0.55rem var(--space);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.hours-rail__live {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-variant-numeric: tabular-nums;
  color: #c9d4d4;
  font-weight: 600;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.status__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--rose);
}

.status.is-open .status__dot {
  background: #6dce8a;
}

@media (prefers-reduced-motion: no-preference) {
  .status.is-open .status__dot {
    box-shadow: 0 0 0 0 rgba(109, 206, 138, 0.7);
    animation: pulse-open 2.2s ease-out infinite;
  }
}

@keyframes pulse-open {
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.lang {
  display: inline-flex;
  border: 1px solid rgba(244, 237, 227, 0.28);
  border-radius: 999px;
  overflow: hidden;
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  min-height: 2rem;
  cursor: pointer;
}

.site-header .lang {
  border-color: var(--line);
  color: var(--ink);
}

.site-header .lang button[aria-pressed="true"] {
  background: var(--night);
  color: var(--cream);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-left: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--sand) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

body.is-scrolled .site-header {
  background: color-mix(in srgb, var(--sand) 96%, transparent);
  box-shadow: 0 10px 28px rgba(20, 34, 40, 0.08);
}

.site-header__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0.45rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--sticky-nav);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand img {
  width: 3.1rem;
  height: 3.1rem;
  flex: none;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand__name {
  font-family: var(--font-script);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--rose);
  font-weight: 400;
}

.brand__place {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--sea);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
}

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

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--rose);
  box-shadow: inset 0 -2px 0 var(--rose);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.55rem 1.15rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

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

.btn--rose {
  background: var(--rose);
  color: var(--cream);
}

.btn--rose::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 248, 241, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .btn--rose:hover::after {
    transition: transform 0.55s ease;
    transform: translateX(120%);
  }
}

.btn--rose:hover {
  background: var(--rose-deep);
  color: var(--cream);
}

.btn--sea {
  background: var(--sea);
  color: var(--cream);
}

.btn--sea:hover {
  background: #145862;
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 237, 227, 0.4);
}

.btn--ghost-light:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.wrap {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 var(--space);
}

.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--sea);
  text-transform: uppercase;
}

.lede {
  max-width: var(--measure);
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-bleed {
  display: grid;
  background: var(--night);
  position: relative;
}

.hero-bleed::before,
.hero-bleed::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.55rem;
  background: var(--pillar);
  z-index: 2;
  pointer-events: none;
}

.hero-bleed::before { left: 0; }
.hero-bleed::after { right: 0; }

.hero-bleed__media,
.hero-bleed__copy {
  grid-area: 1 / 1;
}

.hero-bleed__media {
  min-height: 0;
  position: relative;
}

.spot-chip {
  position: absolute;
  right: 1.4rem;
  top: 1.15rem;
  bottom: auto;
  z-index: 2;
  margin: 0;
  background: #f0c43a;
  color: var(--night);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.48rem 0.75rem;
  box-shadow: 4px 4px 0 var(--night);
}

.hero-bleed__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: static;
}

.hero-bleed__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 34, 40, 0.78) 0%, rgba(20, 34, 40, 0.48) 34%, rgba(20, 34, 40, 0.12) 62%, transparent 82%),
    linear-gradient(180deg, transparent 50%, rgba(20, 34, 40, 0.4) 100%);
  pointer-events: none;
}

.hero-bleed__copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  width: 100%;
  padding: clamp(1.6rem, 5vw, 3.6rem) 0 clamp(2rem, 5vw, 3.2rem);
}

.hero-bleed__copy .wrap {
  width: 100%;
}

.hero-card {
  max-width: 36rem;
  color: var(--cream);
}

.hero-card .kicker {
  color: #f3c5ce;
}

.hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5.2vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 600;
  text-shadow: 0 10px 28px rgba(20, 34, 40, 0.35);
}

.hero-card .lede {
  color: #e4ddd4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244, 237, 227, 0.22);
}

.facts li {
  padding-top: 0.85rem;
}

.facts strong {
  display: block;
  font-size: 0.92rem;
}

.facts span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card .facts span {
  color: #c9d4d4;
}

.section {
  padding: clamp(2.4rem, 6vw, 5rem) 0;
}

.section--night {
  background: var(--night);
  color: var(--cream);
}

.section--cream {
  background: var(--cream);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
  gap: 1rem 3rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
  align-items: end;
}

.section__head h2,
.counter h2,
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.section--night .section__head p,
.section--night .lede {
  color: #c9d4d4;
}

.photo {
  margin: 0;
  background: transparent;
}

.photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.photo[data-lightbox] {
  cursor: zoom-in;
}

.photo figcaption {
  padding: 0.45rem 0.05rem 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.film-dock {
  position: relative;
}

.film-dock__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin: 0 0 0.7rem;
}

.film-nav {
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.film-nav:hover {
  border-color: var(--ink);
}

.film-progress {
  height: 3px;
  background: var(--line);
  margin: 0 0 0.7rem;
}

.film-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--rose);
  transform-origin: left;
}

.film {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  align-items: flex-end;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}

.film .photo {
  flex: 0 0 auto;
  width: auto;
  scroll-snap-align: start;
}

.film .photo img {
  height: min(36rem, 72vh);
  width: auto;
  max-width: none;
  object-fit: contain;
}

.film::-webkit-scrollbar {
  height: 6px;
}

.film::-webkit-scrollbar-thumb {
  background: var(--line);
}

.floors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  align-items: start;
}

.floor-pane,
.floor-pane--1 {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--cream);
}

.floor-pane__body {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 6px solid var(--pillar);
}

.floor-pane__body::after {
  content: "2F";
  position: absolute;
  right: 0.6rem;
  bottom: -0.15rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.4rem);
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.06;
  pointer-events: none;
}

.floor-pane--1 .floor-pane__body::after {
  content: "1F";
}

.floor-pane__photo {
  position: relative;
  min-height: 0;
  background: var(--night);
}

.floor-pane__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.floor-pane__body {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 6px solid var(--pillar);
}

.floor-pane--1 .floor-pane__body {
  border-top-color: var(--sea);
}

.floor-pane__level {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--pillar);
  margin: 0 0 0.45rem;
}

.floor-pane--1 .floor-pane__level {
  color: var(--sea);
}

.floor-pane__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.floor-pane__body p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chips li {
  border: 1px solid var(--line);
  background: var(--sand);
  padding: 0.22rem 0.65rem;
  font-size: 0.82rem;
}

.mosaic {
  columns: 3;
  column-gap: 0.55rem;
}

.mosaic .photo {
  break-inside: avoid;
  margin: 0 0 0.55rem;
  display: inline-block;
  width: 100%;
}

.counter {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: start;
}

.vh-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.tickets {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.tickets label {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  margin: 0 0 0.55rem;
  background: var(--sand);
  cursor: pointer;
}

.tickets label:has(:checked) {
  border-color: var(--rose);
  background: color-mix(in srgb, var(--rose) 8%, var(--cream));
}

.tickets input {
  margin-top: 0.3rem;
  accent-color: var(--rose);
}

.tickets strong {
  display: block;
  color: var(--ink);
}

.tickets span {
  color: var(--muted);
  font-size: 0.9rem;
}

.slip {
  background: var(--cream);
  border-radius: var(--radius-ticket);
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 18px 40px rgba(20, 34, 40, 0.08);
  border: 1px dashed var(--gold);
  min-height: 16rem;
}

.slip__meta {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--hibiscus);
  margin: 0 0 0.5rem;
}

.slip h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.6rem;
}

.slip p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.slip ol {
  margin: 0;
  padding-left: 1.15rem;
}

.offer-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: start;
}

.offer-photo {
  min-height: 0;
  position: relative;
  background: var(--night);
}

.offer-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: static;
}

.hours-board {
  background: var(--cream);
  color: var(--ink);
  border-left: 6px solid var(--rose);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.1rem;
}

.hours-board table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.hours-board th,
.hours-board td {
  text-align: start;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.hours-board td {
  text-align: end;
  font-weight: 500;
  color: var(--muted);
}

.offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.offer-list li {
  border-top: 1px solid rgba(244, 237, 227, 0.18);
  padding-top: 0.75rem;
}

.offer-list strong {
  display: block;
  font-size: 1rem;
}

.offer-list span {
  color: #c9d4d4;
  font-size: 0.92rem;
}

.note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.ig-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 1.3rem;
}

.ig-grid {
  columns: 3;
  column-gap: 0.45rem;
}

.ig-grid a {
  display: block;
  break-inside: avoid;
  margin: 0 0 0.45rem;
  position: relative;
}

.ig-grid a::after {
  content: "Instagram";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.65rem 0.55rem;
  background: linear-gradient(transparent, rgba(20, 34, 40, 0.78));
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.ig-grid a:hover::after,
.ig-grid a:focus-visible::after {
  opacity: 1;
}

.ig-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.reviews {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: 1.4rem 2rem;
}

.rating {
  border-right: 1px solid var(--line);
  padding-right: 1.4rem;
}

.rating b {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  display: block;
}

.stars {
  display: flex;
  gap: 0.18rem;
  margin: 0.45rem 0 0.7rem;
}

.stars span {
  width: 0.95rem;
  height: 0.95rem;
  background: linear-gradient(90deg, var(--gold) var(--fill, 100%), var(--line) var(--fill, 100%));
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.rating p {
  margin: 0.4rem 0 0.8rem;
  color: var(--muted);
}

.quotes {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.quotes blockquote {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--gold);
}

.quotes p {
  margin: 0 0 0.35rem;
}

.quotes footer {
  color: var(--muted);
  font-size: 0.85rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  color: var(--rose);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.access-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 28rem);
  align-items: center;
  background: var(--cream);
}

.access-hero__photo {
  margin: 0;
  background: var(--night);
}

.access-hero__photo[data-lightbox] {
  cursor: zoom-in;
}

.access-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.access-hero__copy {
  padding: clamp(1.4rem, 3.5vw, 2.6rem) clamp(1.2rem, 3vw, 2.2rem);
}

.access-hero__copy .lede {
  max-width: none;
}

.access-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
}

.map-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.map-frame {
  margin: 0;
  width: 100%;
  min-height: 22rem;
  background: #dfe7e4;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
}

.steps b {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose);
}

.steps p {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.site-footer {
  background: var(--night);
  color: var(--cream);
  padding: 2rem 0 6.5rem;
}

.site-footer a {
  color: var(--sea-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.4rem;
}

.footer__grid h2 {
  font-family: var(--font-script);
  color: #f3c5ce;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
}

.footer__grid p,
.footer__grid li {
  color: #c9d4d4;
}

.footer__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tiny {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: #8ea0a4;
}

.visit-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--night);
  padding: 0.55rem 0.8rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
  box-shadow: 0 -8px 24px rgba(20, 34, 40, 0.28);
}

.visit-bar .btn {
  flex: 1;
}

.ticker {
  background: var(--pillar);
  color: var(--cream);
  overflow: hidden;
  border-block: 1px solid color-mix(in srgb, #000 14%, var(--pillar));
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0.62rem 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker__track span {
  padding: 0 1.4rem;
  white-space: nowrap;
}

.ticker__track span::after {
  content: "❀";
  margin-left: 1.4rem;
  color: #f0c43a;
  font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
  .ticker__track {
    animation: ticker 38s linear infinite;
  }

  .ticker:hover .ticker__track {
    animation-play-state: paused;
  }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.1rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

.lightbox {
  width: min(92vw, 72rem);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 80;
}

.lightbox::backdrop {
  background: rgba(20, 34, 40, 0.88);
}

.lightbox__frame {
  position: relative;
  background: var(--night);
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox figcaption {
  margin: 0;
  padding: 0.7rem 1rem 0.9rem;
  color: var(--cream);
  font-size: 0.88rem;
}

.lightbox__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  appearance: none;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  z-index: 2;
}

.hours-board__now {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sea);
}

@media (max-width: 860px) {
  .hero-bleed::before,
  .hero-bleed::after {
    display: none;
  }

  .spot-chip {
    top: auto;
    right: 0.7rem;
    bottom: 0.7rem;
  }
}

@media (max-width: 960px) {
  .mosaic,
  .ig-grid {
    columns: 2;
  }
}

@media (max-width: 860px) {
  .section__head,
  .counter,
  .offer-split,
  .reviews,
  .map-split,
  .footer__grid,
  .floors {
    grid-template-columns: 1fr;
  }

  .hero-bleed {
    display: block;
    background: var(--sand);
  }

  .hero-bleed__media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(20, 34, 40, 0.45) 100%);
  }

  .hero-bleed__copy {
    display: block;
    padding: 1.25rem 0 1.6rem;
  }

  .hero-card {
    max-width: none;
    color: var(--ink);
  }

  .hero-card .kicker {
    color: var(--sea);
  }

  .hero-card h1 {
    text-shadow: none;
  }

  .hero-card .btn--ghost-light {
    color: var(--ink);
    border-color: var(--line);
  }

  .hero-card .btn--ghost-light:hover {
    border-color: var(--ink);
    color: var(--ink);
  }

  .hero-card .lede,
  .hero-card .facts span {
    color: var(--muted);
  }

  .hero-card .facts {
    border-top-color: var(--line);
  }

  .rating {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--space) 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.55rem 0;
  }

  .site-nav .btn {
    width: 100%;
    margin-top: 0.35rem;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .film .photo img {
    height: min(26rem, 68vh);
  }

  .access-hero {
    grid-template-columns: 1fr;
  }

  .visit-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 7.2rem;
  }
}

@media (max-width: 520px) {
  .brand__name {
    font-size: 1.5rem;
  }

  .brand img {
    width: 2.6rem;
    height: 2.6rem;
  }

  .mosaic,
  .ig-grid {
    columns: 1;
  }
}
