/* ============================================================
   StayOS — Section styles
   ============================================================ */

/* ============ 1 · HERO ============ */
.hero { min-height: 100svh; display: grid; align-items: center; padding: 0; overflow: clip; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 56%;
  animation: kenburns 30s var(--ease-in-out) infinite alternate;
}
.hero__video { filter: brightness(0.96) saturate(1.03); }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16) translateY(-1.5%); } }
@media (prefers-reduced-motion: reduce) { .hero__bg img { animation: none; transform: scale(1.08); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(72% 52% at 50% 44%, rgba(12,9,7,0.52) 0%, rgba(12,9,7,0.14) 55%, transparent 80%),
    linear-gradient(to bottom, rgba(12,9,7,0.5) 0%, rgba(12,9,7,0.18) 32%, rgba(12,9,7,0.18) 56%, rgba(12,9,7,0.6) 100%);
}
.hero__inner { position: relative; z-index: 2; text-align: center; color: #fff; padding-top: 6rem; }
.hero .eyebrow { color: rgba(255,255,255,0.82); }
.hero h1 { font-size: var(--step-5); color: #fff; margin: 1.2rem 0; text-shadow: 0 2px 40px rgba(0,0,0,0.35); }
.hero h1 em { font-style: italic; color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.5); }
.hero__sub { font-size: var(--step-1); color: rgba(255,255,255,0.9); max-width: 30rem; margin: 0 auto 2.2rem; line-height: 1.5; }
.hero__cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-primary { background: #fff; color: #1b1917; }
.hero .btn-primary:hover { background: var(--ember); color: #fff; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { border-color: #fff; color: #fff; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.8); font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,0.7); border-radius: 14px; position: relative;
}
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; border-radius: 3px;
  background: #fff; transform: translateX(-50%); animation: wheel 1.8s var(--ease-in-out) infinite;
}
@keyframes wheel { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 100% { opacity: 0; top: 18px; } }

/* ============ intro statement ============ */
.statement { text-align: center; }
.statement p { font-family: var(--font-display); font-size: var(--step-3); line-height: 1.22; letter-spacing: -0.01em; max-width: 20ch; margin-inline: auto; }
.statement p span { color: var(--ink-mute); }

/* ============ scroll-told opening (chapters) ============ */
.chapters { position: relative; height: 300vh; background: #0a0806; }
.chapters__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.chapters__bg { position: absolute; inset: 0; }
.chapters__bg img, .chapters__video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; filter: saturate(1.05) contrast(1.02); }
.chapters__scrim { position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 50%, rgba(10,8,6,0.32), rgba(10,8,6,0.74)); }
.chapters__beat { position: absolute; inset: 0; margin: 0; display: grid; place-items: center; text-align: center; padding: 0 8vw; opacity: 0; transition: opacity 0.9s var(--ease-out); pointer-events: none; }
.chapters__beat span { font-family: var(--font-display); color: #fff; font-weight: 400; font-size: var(--step-4); line-height: 1.14; max-width: 20ch; text-shadow: 0 2px 40px rgba(0,0,0,0.5); transform: translateY(16px); transition: transform 1s var(--ease-out); }
.chapters__beat.active { opacity: 1; }
.chapters__beat.active span { transform: none; }
.chapters__beat--name span { color: var(--ember-soft); letter-spacing: -0.01em; font-style: italic; }
@media (prefers-reduced-motion: reduce) {
  .chapters { height: auto; }
  .chapters__sticky { position: relative; height: auto; padding: 6rem 0; }
  .chapters__beat { position: relative; inset: auto; opacity: 1; padding: 2.5rem 8vw; }
  .chapters__beat span { transform: none; }
}

/* ============ 2 · 360 EXPERIENCE ============ */
.tour { background: var(--bg-2); }
.tour__stage {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  box-shadow: var(--shadow-l); border: 1px solid var(--line);
  background: #0c0a09; aspect-ratio: 16 / 10;
}
@media (max-width: 700px) { .tour__stage { aspect-ratio: 4 / 5; } }
.tour__stage { cursor: pointer; }
.tour__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.4s var(--ease-out), filter 0.6s; }
.tour__stage:hover .tour__poster { transform: scale(1.06); filter: brightness(0.92); }
.tour__stage::after { content: ""; position: absolute; inset: 0; z-index: 2; background: radial-gradient(60% 60% at 50% 55%, transparent, rgba(10,8,6,0.35)); }
.tour__enter {
  position: absolute; z-index: 5; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem; color: #fff;
  font-size: var(--step-0); font-weight: 500; letter-spacing: 0.02em;
  transition: transform 0.5s var(--ease-out);
}
.tour__stage:hover .tour__enter { transform: translate(-50%, -50%) scale(1.05); }
.tour__ring {
  width: 86px; height: 86px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
}
.tour__ring svg { width: 34px; height: 34px; }
.tour__ring::before {
  content: ""; position: absolute; width: 86px; height: 86px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5); animation: ring 2.6s var(--ease-out) infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .tour__ring::before { animation: none; } }

/* scene chip strip under the stage */
.tour__chips { display: flex; gap: 0.5rem; overflow-x: auto; padding: 1.2rem 0 0.4rem; scrollbar-width: none; }
.tour__chips::-webkit-scrollbar { display: none; }
.tour__chips button {
  flex: none; padding: 0.6rem 1rem; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--line-strong); color: var(--ink-soft); background: var(--surface);
  transition: all 0.3s var(--ease-out); white-space: nowrap;
}
.tour__chips button:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }
.tour__topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3; pointer-events: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}
.tour__topbar .where { font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.9; }
.tour__topbar .live { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--step--1); }
.tour__topbar .live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #6ee7a8; box-shadow: 0 0 0 0 rgba(110,231,168,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(110,231,168,0); } 100% { box-shadow: 0 0 0 0 rgba(110,231,168,0); } }

/* floating glass hotspots */
.hotspot {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: #fff; font-size: 0.82rem; font-weight: 500; white-space: nowrap;
  box-shadow: 0 8px 26px -10px rgba(0,0,0,0.6);
  opacity: 0; transform: translateY(8px) scale(0.96); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.tour__stage.in .hotspot { opacity: 1; transform: none; }
.hotspot .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember-soft); box-shadow: 0 0 0 4px rgba(214,154,118,0.25); }
.hotspot:nth-child(2) { transition-delay: 0.15s; } .hotspot:nth-child(3) { transition-delay: 0.3s; }
.hotspot:nth-child(4) { transition-delay: 0.45s; } .hotspot:nth-child(5) { transition-delay: 0.6s; }
.hotspot:nth-child(6) { transition-delay: 0.75s; } .hotspot:nth-child(7) { transition-delay: 0.9s; }
.hotspot.h1 { top: 20%; left: 8%; } .hotspot.h2 { top: 34%; right: 9%; }
.hotspot.h3 { top: 56%; left: 12%; } .hotspot.h4 { bottom: 26%; right: 12%; }
.hotspot.h5 { top: 44%; left: 46%; } .hotspot.h6 { bottom: 16%; left: 30%; }
@media (max-width: 700px) { .hotspot.h5, .hotspot.h6 { display: none; } }
.tour__hint { text-align: center; margin-top: 1.4rem; color: var(--ink-mute); font-size: var(--step--1); letter-spacing: 0.02em; }

/* ============ 3 · ROOMS ============ */
.rooms__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); }
.room {
  position: relative; border-radius: var(--radius-l); padding: 2rem 1.8rem 1.8rem;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-s);
  overflow: hidden; transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.6s;
}
.room:hover { transform: translateY(-8px); box-shadow: var(--shadow-m); border-color: var(--line-strong); }
.room__portal {
  width: 150px; height: 150px; margin: 0 auto 1.4rem; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 50% 40%, var(--surface-2), var(--bg-2));
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-s);
}
.room__portal img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  transition: transform 1.4s var(--ease-out);
}
.room:hover .room__portal img { transform: scale(1.08) rotate(6deg); }
.room h3 { font-family: var(--font-display); font-size: var(--step-2); text-align: center; }
.room .room__meta { text-align: center; color: var(--ink-mute); font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; margin: 0.5rem 0 0.9rem; }
.room p { text-align: center; color: var(--ink-soft); font-size: var(--step-0); }
.room__actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1.4rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease-out), opacity 0.5s var(--ease-out), margin-top 0.6s var(--ease-out);
}
.room:hover .room__actions, .room:focus-within .room__actions { max-height: 200px; opacity: 1; }
.room__actions a, .room__actions button {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem; width: 100%;
  padding: 0.7rem 0.5rem; border-radius: var(--radius-s); font-size: 0.82rem; font-weight: 500;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.room__actions a:hover, .room__actions button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.room__actions .pano-open { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.room__actions .pano-open:hover { background: var(--ember); border-color: var(--ember); }
.room__actions a.book { grid-column: 1 / -1; background: var(--ember); color: #fff; border-color: var(--ember); }
.room__actions a.book:hover { background: var(--ink); border-color: var(--ink); }
.room__portal { cursor: pointer; }
.room__badge {
  position: absolute; top: 6px; right: 6px; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em;
  color: #fff; background: rgba(20,16,12,0.6); border: 1px solid rgba(255,255,255,0.25);
  padding: 0.2rem 0.45rem; border-radius: var(--radius-pill); backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) { .room__actions { max-height: none; opacity: 1; } }

/* ============ 4 · AUDIO ============ */
.audio { background: var(--bg-2); }
.audio__wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 860px) { .audio__wrap { grid-template-columns: 1fr; } }
.audio h2 { font-size: var(--step-3); }
.langs { display: flex; gap: 0.5rem; margin: 1.6rem 0; flex-wrap: wrap; }
.lang {
  min-width: 44px; min-height: 40px; padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); font-size: var(--step--1); font-weight: 600; letter-spacing: 0.08em;
  color: var(--ink-soft); transition: all 0.3s var(--ease-out);
}
.lang.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.lang:hover:not(.active) { border-color: var(--ember); color: var(--ember); }
.transcript {
  border-left: 2px solid var(--ember); padding: 0.4rem 0 0.4rem 1.2rem; margin-top: 1.4rem;
  color: var(--ink-soft); font-family: var(--font-display); font-size: var(--step-1); font-style: italic; line-height: 1.5;
}
.transcript .tag { display: block; font-family: var(--font-sans); font-style: normal; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.5rem; }

/* phone mockup */
.phone { justify-self: center; width: 300px; max-width: 82vw; }
.phone__frame {
  border-radius: 44px; background: linear-gradient(160deg, #2a2622, #100d0b); padding: 12px;
  box-shadow: var(--shadow-l), inset 0 0 0 1px rgba(255,255,255,0.08); position: relative;
}
.phone__screen {
  border-radius: 34px; overflow: hidden; background: var(--surface); aspect-ratio: 9 / 19.5;
  display: flex; flex-direction: column; position: relative;
}
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 96px; height: 24px; background: #100d0b; border-radius: 999px; z-index: 3; }
.phone__cover { position: relative; height: 46%; overflow: hidden; }
.phone__cover img { width: 100%; height: 100%; object-fit: cover; }
.phone__cover .grad { position: absolute; inset: 0; background: linear-gradient(to top, var(--surface) 2%, transparent 55%); }
.phone__cover .place { position: absolute; left: 16px; bottom: 12px; }
.phone__cover .place small { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.phone__cover .place b { display: block; font-family: var(--font-display); font-size: 1.35rem; color: #fff; font-weight: 500; }
.phone__body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.wave { display: flex; align-items: center; gap: 3px; height: 40px; }
.wave span { flex: 1; background: var(--ember); border-radius: 3px; height: 30%; opacity: 0.5; }
.phone.playing .wave span { animation: bars 1.1s var(--ease-in-out) infinite; }
.wave span:nth-child(odd) { animation-delay: 0.2s; } .wave span:nth-child(3n) { animation-delay: 0.4s; }
.wave span:nth-child(4n) { animation-delay: 0.1s; }
@keyframes bars { 0%,100% { height: 22%; opacity: 0.45; } 50% { height: 95%; opacity: 1; } }
.player-row { display: flex; align-items: center; gap: 12px; }
.play-btn { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--ink); color: var(--bg); display: grid; place-items: center; box-shadow: var(--shadow-m); transition: transform 0.3s var(--ease-out); }
.play-btn:hover { transform: scale(1.06); }
.play-btn svg { width: 20px; height: 20px; }
.player-row .meta small { display: block; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.player-row .meta b { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.phone__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.phone__chips span { font-size: 0.62rem; padding: 0.3rem 0.6rem; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-soft); }
.phone__chips span.on { background: var(--ember); color: #fff; border-color: var(--ember); }

/* ============ 5 · DESTINATION ============ */
.dest__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.8rem, 1.4vw, 1.2rem); }
.dcard { min-height: 240px; }
@media (max-width: 1080px) { .dest__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .dest__grid { grid-template-columns: repeat(2, 1fr); } }
.dcard {
  position: relative; border-radius: var(--radius-m); padding: 1.6rem; min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
  color: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-s);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.dcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.dcard::before { content: ""; position: absolute; inset: 0; z-index: 0; transition: transform 1.6s var(--ease-out); }
.dcard:hover::before { transform: scale(1.08); }
.dcard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,8,6,0.72), rgba(10,8,6,0.15) 60%, rgba(10,8,6,0.28)); }
.dcard > * { position: relative; z-index: 2; }
.dcard .kicker { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; }
.dcard h3 { font-family: var(--font-display); font-size: var(--step-2); font-weight: 500; margin-top: 0.3rem; }
.dcard .listen { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-size: 0.8rem; opacity: 0.92; }
.dcard .listen svg { width: 15px; height: 15px; }
.dcard.g1::before { background: linear-gradient(150deg, #6d5a86, #b06a48); }
.dcard.g2::before { background: linear-gradient(150deg, #3f6b63, #8fae6a); }
.dcard.g3::before { background: linear-gradient(150deg, #8a5a3c, #d59a6a); }
.dcard.g4::before { background: linear-gradient(150deg, #4a4668, #7a86b3); }
.dcard.g5::before { background: linear-gradient(150deg, #7a3f4a, #c07a5f); }
.dcard.g6::before { background: linear-gradient(150deg, #2f3c4a, #6a86a0); }

/* ============ 6 · TODAY ============ */
.today__panel {
  border-radius: var(--radius-l); border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-m); overflow: hidden;
}
.today__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.tstat { padding: clamp(1.4rem, 3vw, 2.2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tstat small { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); display: flex; align-items: center; gap: 0.4rem; }
.tstat small svg { width: 15px; height: 15px; opacity: 0.8; }
.tstat .val { font-family: var(--font-display); font-size: var(--step-3); font-weight: 500; line-height: 1.1; margin-top: 0.6rem; }
.tstat .val .u { font-size: 0.4em; color: var(--ink-mute); margin-left: 0.15em; }
.tstat .sub { font-size: var(--step--1); color: var(--ink-soft); margin-top: 0.2rem; }
.today__note { padding: 1rem 1.4rem; font-size: var(--step--1); color: var(--ink-mute); text-align: center; }

/* ============ 7 · GALLERY ============ */
.masonry { columns: 3 300px; column-gap: 1rem; }
.masonry figure { break-inside: avoid; margin: 0 0 1rem; border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-s); cursor: zoom-in; position: relative; }
.masonry img { width: 100%; transition: transform 1.2s var(--ease-out); }
.masonry figure:hover img { transform: scale(1.05); }
.masonry .portal { background: radial-gradient(circle at 50% 40%, var(--surface-2), var(--bg-2)); padding: 8%; }
.masonry .portal img { border-radius: 50%; }

.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(8,6,4,0.92); backdrop-filter: blur(10px); display: none; place-items: center; padding: 4vw; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-m); box-shadow: var(--shadow-l); }
.lightbox .close { position: absolute; top: 1.4rem; right: 1.6rem; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 1.4rem; }

/* ============ 8 · REVIEWS ============ */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.rcard { border-radius: var(--radius-m); background: var(--surface); border: 1px solid var(--line); padding: 1.8rem; box-shadow: var(--shadow-s); transition: transform 0.5s var(--ease-out); }
.rcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.stars { color: var(--ember); letter-spacing: 0.15em; font-size: 0.95rem; }
.rcard p { margin-top: 0.9rem; color: var(--ink-soft); font-size: var(--step-0); }
.rcard .who { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.4rem; }
.rcard .who .av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--ember), var(--twilight)); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 0.9rem; }
.rcard .who b { font-size: var(--step-0); } .rcard .who small { display: block; color: var(--ink-mute); font-size: 0.72rem; }
.reviews__meta { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; color: var(--ink-soft); font-size: var(--step--1); }
.reviews__meta .score { font-family: var(--font-display); font-size: var(--step-2); color: var(--ink); }
.reviews__map { margin-top: 2rem; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-m); height: 340px; filter: saturate(0.9); }
.reviews__map iframe { width: 100%; height: 100%; border: 0; }

/* ============ 9 · BOOKING ============ */
.book { text-align: center; }
.book__panel {
  border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 6rem) 2rem; position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--twilight), var(--ember)); color: #fff; box-shadow: var(--shadow-l);
}
.book__panel::before { content: ""; position: absolute; inset: 0; background: url("../assets/moment-4.jpg") center/cover; opacity: 0.22; mix-blend-mode: overlay; }
.book__panel > * { position: relative; z-index: 1; }
.book h2 { font-family: var(--font-display); font-size: var(--step-4); font-weight: 400; }
.book p { max-width: 34rem; margin: 1.2rem auto 2rem; color: rgba(255,255,255,0.9); font-size: var(--step-1); }
.book .btn-primary { background: #fff; color: #1b1917; }
.book .btn-primary:hover { background: #1b1917; color: #fff; }
.book__row { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.book__whisper { margin-top: 1.4rem; font-size: var(--step--1); color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }

/* ============ FOOTER ============ */
.footer { padding-block: var(--space-xl) var(--space-l); border-top: 1px solid var(--line); }
.footer__top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer__brand { max-width: 22rem; }
.footer__brand p { color: var(--ink-mute); font-size: var(--step--1); margin-top: 0.8rem; }
.footer__cols { display: flex; gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap; }
.footer__cols h4 { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.9rem; }
.footer__cols a { display: block; color: var(--ink-soft); font-size: var(--step--1); padding: 0.3rem 0; transition: color 0.3s; }
.footer__cols a:hover { color: var(--ember); }
.footer__base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: var(--space-xl); color: var(--ink-mute); font-size: var(--step--1); }

/* ============ 360 GALLERY ============ */
.gal360 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gal360 .g360:first-child { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) { .gal360 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gal360 { grid-template-columns: 1fr; } .gal360 .g360:first-child { grid-column: span 1; grid-row: span 1; } }
.g360 { position: relative; margin: 0; border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-s); cursor: pointer; }
.g360 img, .g360 video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-out); }
.g360:hover img { transform: scale(1.07); }
.g360::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,6,0.58), transparent 55%); }
.g360 figcaption { position: absolute; z-index: 2; left: 15px; bottom: 13px; color: #fff; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.g360 .badge { position: absolute; z-index: 2; top: 11px; right: 11px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; color: #fff; background: rgba(20,16,12,0.55); border: 1px solid rgba(255,255,255,0.3); padding: 0.25rem 0.55rem; border-radius: var(--radius-pill); backdrop-filter: blur(6px); }
.g360--video { cursor: default; }
.g360--video .badge { background: var(--ember); border-color: var(--ember); }

/* ============ 360 VIEWER MODAL ============ */
.pano { position: fixed; inset: 0; z-index: 600; display: none; background: #050403; }
.pano.open { display: block; }
.pano__view { position: absolute; inset: 0; width: 100%; height: 100%; }
.pano__view .pnlm-container { background: #050403 !important; }
.pano__top {
  position: absolute; z-index: 10; top: 0; left: 0; right: 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}
.pano__title { color: #fff; font-family: var(--font-display); font-size: var(--step-2); font-weight: 500; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.pano__close {
  pointer-events: auto; width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35); color: #fff;
  font-size: 1.5rem; line-height: 1; backdrop-filter: blur(8px); transition: background 0.3s, transform 0.4s var(--ease-out);
}
.pano__close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }
.pano__chips {
  position: absolute; z-index: 10; left: 0; right: 0; bottom: 0; display: flex; gap: 0.5rem;
  overflow-x: auto; padding: 1.4rem 1.3rem 1.5rem; scrollbar-width: none;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.pano__chips::-webkit-scrollbar { display: none; }
.pano__chips button {
  flex: none; padding: 0.55rem 0.95rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 500;
  white-space: nowrap; color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px); transition: background 0.3s var(--ease-out), color 0.3s;
}
.pano__chips button:hover { background: rgba(255,255,255,0.24); }
.pano__chips button.active { background: #fff; color: #1b1917; border-color: #fff; }
