/* ==========================================================================
   ОРБИТА — main.css
   Placeholder styles — design to be confirmed before full implementation
   ========================================================================== */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a[href^="tel:"], a[href^="mailto:"] { font-style: italic; }
html { font-size: 14.4px; } /* 90% of 16px — scales all rem units by −10% */

/* Page layout custom property — controls horizontal padding of .page-content.
   Used by .room-row to break out to full container width. */
:root { --page-x: 8rem; }

/* Base */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16.2px; /* 90% of 18px */
  line-height: 1.6;
  color: #1c1c1c;
  background: #f8f6f2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 160px;
}

@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

main {
  flex: 1;
  animation: page-fade-in 0.5s ease forwards;
}

/* Nav */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #111; padding: 0.75rem 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 85px; width: auto; display: block; }
.nav__brand-links { display: flex; flex-direction: column; flex: 1; gap: 0; }
.nav__title { font-weight: 300; font-size: 24px; line-height: 32px; text-transform: uppercase; color: #fff; letter-spacing: 0.025em; margin: 0; }
.nav__links-row { display: flex; align-items: center; gap: 1.5rem; }
.nav__links { display: flex; gap: 1.8rem; list-style: none; flex: 1; }
.nav__links a { font-size: 0.9rem; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: .3s ease; user-select: none; padding: 7px 0 12px; display: flex; align-items: center; gap: 6px; }
.nav__links a:hover { color: #999; }
.nav__book { white-space: nowrap; background: #fff !important; color: #111 !important; padding: 0.9rem 2.4rem !important; font-size: 1rem !important; flex-shrink: 0; }
.nav__book:hover { background: #e0e0e0 !important; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; font-size: 1.8rem; color: #fff; flex-shrink: 0; margin-left: auto; }
.nav__title-mobile { display: none; }

/* Nav dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { background: none; border: none; cursor: pointer; font-size: 0.9rem; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 7px 0 12px; transition: .3s ease; display: flex; align-items: center; gap: 6px; white-space: nowrap; font-family: inherit; line-height: inherit; user-select: none; }
.nav__dropdown-toggle:hover { color: #999; }
.nav__arrow { font-size: 0.7em; transition: transform 0.25s ease; display: inline-block; }
.nav__dropdown.is-open .nav__arrow { transform: rotate(180deg); }
.nav__dropdown-menu { display: none; position: absolute; top: calc(100% + 0.75rem); left: 0; background: #111; list-style: none; padding: 0.5rem 0; min-width: 200px; box-shadow: 0 4px 16px rgba(0,0,0,0.5); z-index: 200; border-top: 2px solid #444; }
.nav__dropdown.is-open .nav__dropdown-menu { display: block; }
.nav__dropdown-menu li a { display: block; padding: 0.55rem 1.2rem; font-size: 1rem; color: #fff; white-space: nowrap; transition: background 0.2s, color 0.2s; }
.nav__dropdown-menu li a:hover { background: #222; color: #ccc; }

/* Hero (structural only) */
.hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero__content { position: relative; z-index: 1; color: #fff; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }

/* Buttons */
.btn { display: inline-block; padding: 0.75rem 2rem; border-radius: 2px; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; }
.btn:hover { transform: scale(1.045); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn:active { transform: scale(0.98); }
.btn--primary { background: #4b2e1a; color: #fff; }
.btn--primary:hover { background: #6b3e22; }
.btn--secondary { border: 1px solid #1c1c1c; }
.btn--secondary:hover { background: #e0ddd8; color: #1c1c1c; }

/* Page content */
.page-content { margin: 0 auto; padding: 4rem var(--page-x); }
.page-content p, .page-content .lead { margin-bottom: 1rem; }
.page-content ol, .page-content ul:not(.amenities__list):not(.doc-list):not(.nav__links) { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.4rem; }
.page-content h2 { margin: 2rem 0 0.75rem; }

/* Footer */
.site-footer { background: #1c1c1c; color: #f8f6f2; padding: 29px 128px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.5; }
.footer__inner { margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }

/* Sections */
.section { padding: 4rem 0.75rem; }
.section--rooms, .section--jazz, .section--alt { background: #fff; }
.section--hero-bg { background-size: cover; background-position: center; position: relative; padding-top: 7.0rem; padding-bottom: 7.0rem; }
.section--hero-bg::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.section--hero-bg .section__inner { position: relative; z-index: 1; }
.section--hero-bg h2, .section--hero-bg p, .section--hero-bg a { color: #fff; }
.section--hero-bg .btn--secondary { border-color: #fff; }
.section--hero-bg .btn--secondary:hover { background: rgba(255,255,255,0.15); }
.section__inner { margin: 0 auto; padding: 0 8rem; }
.section__inner h2 { margin-bottom: 1.5rem; }
.section__inner h3 { margin-top: 2rem; margin-bottom: 0.6rem; }
.section__inner p { margin-bottom: 1rem; }
.section__inner ul, .section__inner ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.section__inner li { margin-bottom: 0.4rem; }

/* Rooms grid (home page teaser) */
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.room-card { background: #fff; border: 1px solid #e0ddd8; display: flex; flex-direction: column; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.room-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }
.room-card__img { aspect-ratio: 4/3; background: #d8d4ce; width: 100%; object-fit: cover; transition: transform 0.35s ease; overflow: hidden; }
.room-card:hover .room-card__img { transform: scale(1.04); }
.room-card__img--placeholder { background: repeating-linear-gradient(45deg, #dedad4, #dedad4 10px, #ccc9c2 10px, #ccc9c2 20px); }
.room-card__body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { margin-bottom: 0.4rem; }
.room-card__body p { margin-bottom: 0.3rem; font-size: 0.9rem; color: #555; }
.room-card__price { font-size: 1rem !important; font-weight: 600; color: #1c1c1c !important; margin-top: 0.5rem !important; }
.room-card__body .btn { margin-top: auto; align-self: flex-start; }

/* Room rows (room list page) */
.room-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 5rem; align-items: start; }
.room-row__photo { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.room-row__photo--placeholder { width: 100%; height: 100%; background: repeating-linear-gradient(45deg, #dedad4, #dedad4 10px, #ccc9c2 10px, #ccc9c2 20px); }
.room-row__info { padding: 2rem 2rem 2.5rem; display: flex; flex-direction: column; justify-content: flex-start; background: #fff; align-self: start; }
.room-row__info h2 { font-size: 1.6rem; margin-top: 0; margin-bottom: 0.5rem; }
.room-row__meta { font-size: 0.95rem; color: #6b6b6b; margin-bottom: 1rem; }
.room-row__desc { margin-bottom: 1.25rem; }
.room-row__info .amenities__list { margin-bottom: 0.75rem; gap: 0.4rem 1rem; }
.room-row__info .amenities__item { flex-direction: row; width: auto; font-size: 0.8rem; gap: 0.4rem; }
.room-row__info .amenities__icon { width: 20px !important; height: 20px !important; flex-shrink: 0; }
.room-row__footer { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: auto; padding-top: 0.75rem; }
.room-row__price { font-size: 1.25rem; font-weight: 600; margin: 0; }

/* Room photo slider */
.room-slider { position: absolute; inset: 0; }
.room-slider__track { position: absolute; inset: 0; display: flex; transition: transform 0.45s ease; will-change: transform; }
.room-slider__track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.room-slider__controls { position: absolute; bottom: 16px; right: 16px; display: flex; align-items: center; gap: 10px; background: rgba(0,0,0,0.78); padding: 10px 18px; }
.room-slider__arrow { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 0 6px; line-height: 1; transition: opacity 0.2s; }
.room-slider__arrow:hover { opacity: 0.65; }
.room-slider__counter { color: #fff; font-size: 0.95rem; letter-spacing: 0.05em; min-width: 40px; text-align: center; }

/* Contacts */
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.contacts-block h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.contacts-block p { margin-bottom: 0.3rem; font-size: 0.95rem; }
.contacts-info, .contacts-map { margin-top: 2rem; }
.contacts-map h2 { margin-bottom: 1rem; }
.map-placeholder { position: relative; aspect-ratio: 1/1; max-width: 600px; }

/* Info rows (restaurant, jazz) */
.info-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; margin: 2rem 0; }
.info-block h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.info-block p { margin-bottom: 0.3rem; font-size: 0.95rem; }

/* Restaurant info panel */
.restaurant-info { display: flex; gap: 3rem; align-items: flex-start; margin: 2rem 0; justify-content: flex-start; }
.restaurant-info__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 220px)); gap: 1.5rem 2rem; flex: 0 0 auto; }
.restaurant-info__menu { flex: 0 0 auto; }

/* Lead text */
.lead { font-size: 1.1rem; margin-bottom: 2rem; }
.page-intro { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; color: var(--color-text-muted); }

/* Jazz Афиша */
.acts-heading { margin: 3rem 0 0.5rem; }
.lead-prose { font-size: 1.05rem; margin-bottom: 2rem; }
.room-row--jazz { grid-template-columns: 2fr 3fr; align-items: stretch; }
.room-row--jazz + .room-row--jazz { position: relative; margin-top: 4rem; }
.room-row--jazz + .room-row--jazz::before { content: ''; position: absolute; top: -2rem; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--color-accent-light) 20%, var(--color-accent-light) 80%, transparent); }
.room-row--jazz .room-row__photo { aspect-ratio: unset; height: auto; min-height: unset; max-height: unset; align-self: start; }
.room-row--jazz .room-row__info { align-self: stretch; overflow: visible; height: auto !important; }
.room-row--jazz .act-media { position: relative; inset: auto; }
.room-row--jazz .act-media__pane { position: relative; inset: auto; display: none; }
.room-row--jazz .act-media__pane.is-active { display: block; }
.room-row--jazz .room-slider { position: relative; overflow: hidden; width: 100%; height: auto; }
.room-row--jazz .room-slider__track { position: relative; display: flex; transition: transform 0.45s ease; }
.room-row--jazz .room-slider__track img { flex: 0 0 100%; min-width: 100%; width: 100%; height: auto; max-height: 60vh; object-fit: contain; display: block; }
.act-media { position: absolute; inset: 0; }
.act-media__tabs { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; }
.act-media__tab { background: rgba(0,0,0,0.6); color: #fff; border: none; padding: 6px 18px; cursor: pointer; font-size: 0.88rem; transition: background 0.2s; }
.act-media__tab.is-active { background: #111; }
.act-media__pane { position: absolute; inset: 0; display: none; }
.act-media__pane.is-active { display: block; }
.act-media__pane--videos { overflow-y: auto; background: #000; }
.act-video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }

/* Photo grid */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 2rem; }
.photo-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Gallery slider — centered multi-peek carousel */
.gallery-slider { position: relative; overflow: hidden; margin-top: 2rem; padding: 1rem 0; width: 100vw; left: 50%; transform: translateX(-50%); }
.gallery-slider__track { display: flex; gap: 20px; transition: transform 0.45s ease; will-change: transform; }
.gallery-slider__slide { flex: 0 0 28.5%; aspect-ratio: 4/3; }
.gallery-slider__slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.gallery-slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 5.25rem; line-height: 1; cursor: pointer; padding: 0; transition: opacity 0.2s; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.gallery-slider__arrow:hover { opacity: 0.7; }
.gallery-slider__arrow--prev { left: calc(50% - 20vw); }
.gallery-slider__arrow--next { right: calc(50% - 20vw); }
.gallery-slider__counter { position: absolute; bottom: 20px; right: 18px; background: rgba(0,0,0,0.65); color: #fff; font-size: 0.9rem; letter-spacing: 0.05em; padding: 6px 14px; }

/* Booking blocks — vertical list */
.booking-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }

.bblock { border: 1px solid #e0ddd8; overflow: hidden; transition: opacity 0.5s ease, max-height 0.55s ease, margin 0.5s ease; }

/* Header — always visible, acts as toggle */
.bblock__header { display: flex; align-items: center; width: 100%; background: none; border: none; padding: 0; cursor: pointer; text-align: left; gap: 1.25rem; }
.bblock__header:hover .bblock__cover { filter: brightness(0.92); }
.bblock__cover { width: 140px; min-width: 140px; height: 88px; flex-shrink: 0; transition: filter 0.35s ease; }
.bblock__cover--online  { background: #c5c0ba; }
.bblock__cover--rules   { background: #b8b3ac; }
.bblock__cover--payment { background: #cdc8c1; }
.bblock__cover--cancel  { background: #c2bdb6; }
.bblock__title { font-size: 1.05rem; font-weight: 600; padding: 0 1.25rem 0 0; flex: 1; }

/* Body — collapsed by default */
.bblock__body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.55s ease, opacity 0.45s ease, padding 0.4s ease; padding: 0 1.5rem; }

/* Open state */
.bblock.is-open .bblock__body { opacity: 1; padding: 1.25rem 1.5rem 1.5rem; }
.bblock.is-open .bblock__header { border-bottom: 1px solid #e0ddd8; }

/* Other blocks fade when one is open */
.booking-list.has-open .bblock:not(.is-open) { opacity: 0; pointer-events: none; max-height: 0 !important; margin: 0; }

/* Body content */
.bblock__body h3 { margin: 1.1rem 0 0.45rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; }
.bblock__body h3:first-child { margin-top: 0; }
.bblock__body ul { padding-left: 1.25rem; margin-bottom: 0.9rem; }
.bblock__body li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.bblock__body p { font-size: 0.95rem; margin-bottom: 0.7rem; }

/* Payment logos */
.payment-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin: 0.75rem 0; }
.payment-logo { height: 40px; width: auto; object-fit: contain; }

/* Amenities */
.amenities { margin: 2rem 0; }
.amenities h2 { margin-bottom: 1rem; }
.amenities__list { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; }
.amenities__item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; width: 64px; text-align: center; font-size: 0.75rem; color: #555; }
.amenities__icon { display: block; color: #4b2e1a; }
.amenities__strip { display: flex; flex-wrap: wrap; gap: 6px; margin: 0.5rem 0; }
.amenities__icon--sm { color: #4b2e1a; opacity: 0.8; }

/* Cooperation page */
.coop-steps { display: flex; gap: 3rem; align-items: flex-start; justify-content: flex-start; }
.coop-steps__list { flex: 0 1 auto; }
.coop-steps__docs { flex: 0 0 auto; padding-left: 1rem; }

/* Document list */
.doc-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0; }
.coop-steps__docs h2 + .doc-list { margin-bottom: 2rem; }

/* Messages */
/* Toast notifications */
.messages { position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 2000; display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none; }
.message { pointer-events: auto; display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.25rem; background: #fff; border-left: 4px solid #4caf50; box-shadow: 0 4px 20px rgba(0,0,0,0.15); font-size: 0.95rem; white-space: nowrap; animation: toast-in 0.35s ease; }
.message--success { border-color: #4caf50; }
.message--error { border-color: #e53935; }
.message__close { background: none; border: none; cursor: pointer; color: #999; font-size: 1.1rem; line-height: 1; padding: 0; margin-left: 0.5rem; transition: color 0.2s; }
.message__close:hover { color: #333; }
.message.is-hiding { animation: toast-out 0.4s ease forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(-12px); } }

/* Social FAB */
@keyframes fab-pulse {
  0%   { transform: scale(1);    opacity: 0.65; }
  11%  { transform: scale(1.55); opacity: 0;    }
  22%  { transform: scale(1);    opacity: 0.65; }
  33%  { transform: scale(1.55); opacity: 0;    }
  44%  { opacity: 0; }
  100% { transform: scale(1);    opacity: 0;    }
}

.social-fab { position: fixed; bottom: 90px; right: 16px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; pointer-events: none; transition: bottom 0.3s ease, right 0.3s ease; }
.social-fab > * { pointer-events: auto; }
.social-fab__pulse { display: none; }
.social-fab__btn { position: relative; width: 58px; height: 58px; border-radius: 50%; background: transparent; color: #111; border: none; outline: none; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease; overflow: visible; }
.social-fab__btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 3px solid #aaa; animation: fab-pulse 3.8s ease-out infinite; pointer-events: none; }

.fab-icon { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: opacity 0.5s ease, transform 1s ease; }
.fab-icon--closed { opacity: 1; transform: rotate(0deg); }
.fab-icon--open { opacity: 0; transform: rotate(0deg); }
.social-fab__btn.is-open .fab-icon--closed { opacity: 0; transform: rotate(360deg); }
.social-fab__btn.is-open .fab-icon--open { opacity: 0.5; }

.social-fab__menu { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.45s ease, opacity 0.35s ease; }
.social-fab__menu.is-open { max-height: 400px; opacity: 1; }

.social-fab__link { width: 58px; height: 58px; border-radius: 50%; background: transparent; color: #fff; font-size: 0; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: opacity 0.2s; flex-shrink: 0; overflow: hidden; outline: none; }
.social-fab__link:hover { opacity: 0.8; }
.social-fab__logo { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 95vw; max-height: 95vh; object-fit: contain; display: block; user-select: none; }
.lightbox__close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; outline: none; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; opacity: 0.8; transition: opacity 0.2s; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; outline: none; color: #fff; font-size: 3.5rem; line-height: 1; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; padding: 0 1rem; display: none; }
.lightbox__nav--prev { left: 0.5rem; }
.lightbox__nav--next { right: 0.5rem; }
.lightbox__nav:hover { opacity: 1; }
.lightbox.has-gallery .lightbox__nav { display: block; }

/* Jazz act cards (афиша) */
.season-heading { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #6b6b6b; margin: 3rem 0 1rem; border-bottom: 1px solid #e0ddd8; padding-bottom: 0.5rem; }
.jazz-acts { display: flex; flex-direction: column; gap: 0; margin-top: 0; }
.jazz-act { display: grid; grid-template-columns: 2fr 3fr; align-items: stretch; border-top: 2px solid #e0ddd8; padding-top: 3rem; padding-bottom: 3rem; }
.jazz-act:first-of-type { border-top: none; padding-top: 0; }

.jazz-act__cover { }
.jazz-act__cover-img { width: 100%; height: auto; display: block; }
.jazz-act__cover-placeholder { width: 100%; aspect-ratio: 3/4; background: repeating-linear-gradient(45deg, #dedad4, #dedad4 10px, #ccc9c2 10px, #ccc9c2 20px); }

.jazz-act__body { padding: 2rem 2rem 2.5rem; background: #fff; display: flex; flex-direction: column; }

.jazz-act__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.jazz-act__name { margin: 0; font-size: 1.5rem; }

/* Segmented tab toggle */
.act-tabs { display: flex; flex-shrink: 0; }
.act-tab { border: 1px solid #1c1c1c; padding: 0.45rem 1.1rem; font-size: 0.78rem; font-family: inherit; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; background: none; color: #1c1c1c; line-height: 1.4; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.act-tab + .act-tab { border-left: none; }
.act-tab.is-active { background: #4b2e1a; color: #fff; border-color: #4b2e1a; }
.act-tab:hover:not(.is-active) { background: #e0ddd8; }

/* Pane fade */
@keyframes actPaneFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.act-pane { display: none; }
.act-pane.is-visible { display: block; animation: actPaneFadeIn 0.3s ease forwards; }
.act-pane .prose { margin-bottom: 1.25rem; }
.act-pane .btn { margin-top: auto; align-self: flex-start; }

/* room-slider inside act-pane — scoped overrides, rooms page styles untouched */
.act-pane .room-slider { position: relative !important; overflow: hidden; width: 100%; cursor: zoom-in; background: #000; }
.act-pane .room-slider__track { position: relative !important; inset: auto !important; display: flex; transition: transform 0.45s ease; will-change: transform; }
.act-pane .room-slider__track img { flex: 0 0 100%; min-width: 100%; width: 100%; height: auto; max-height: 55vh; object-fit: contain; display: block; pointer-events: none; }

@media (max-width: 1100px) {
  .jazz-act { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .jazz-act { grid-template-columns: 1fr; }
  .jazz-act__body { padding: 1.5rem; }
  .jazz-act__header { gap: 0.75rem; }
  .jazz-act__name { font-size: 1.3rem; }
  .act-tab { padding: 0.4rem 0.75rem; font-size: 0.72rem; }
}

/* Embed video slider (jazz act) */
.embed-slider { position: relative; background: #000; width: 100%; }
.embed-slider__slide { display: none; }
.embed-slider__slide.is-active { display: block; }
.embed-slider__iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.embed-slider__controls { display: flex; align-items: center; gap: 10px; background: rgba(0,0,0,0.78); padding: 10px 18px; }
.embed-slider__arrow { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 0 6px; line-height: 1; transition: opacity 0.2s; }
.embed-slider__arrow:hover { opacity: 0.65; }
.embed-slider__counter { color: #fff; font-size: 0.95rem; letter-spacing: 0.05em; min-width: 40px; text-align: center; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 4rem; border-top: 1px solid #e0ddd8; }

.faq-item { border-bottom: 1px solid #e0ddd8; }

.faq-item__question { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; background: none; border: none; padding: 1.25rem 0; cursor: pointer; text-align: left; font-family: inherit; font-size: 1rem; font-weight: 600; color: #1c1c1c; line-height: 1.5; transition: color 0.2s; }
.faq-item__question:hover { color: #4b2e1a; }
.faq-item.is-open .faq-item__question { color: #4b2e1a; }

.faq-item__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item__icon::before,
.faq-item__icon::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-item__icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item__answer-inner { padding: 0 0 1.5rem; font-size: 0.95rem; line-height: 1.75; color: #444; }

/* Feedback form */
.feedback-form-section { border-top: 2px solid #e0ddd8; padding-top: 3rem; }
.feedback-form-section h2 { margin-bottom: 0.4rem; }
.feedback-form-section__lead { color: #6b6b6b; margin-bottom: 2rem; }

.feedback-form { max-width: 680px; }
.feedback-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.feedback-form__field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.feedback-form__row .feedback-form__field { margin-bottom: 0; }
.feedback-form__label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #555; }
.feedback-form__label span { color: #4b2e1a; }
.feedback-form__input,
.feedback-form__textarea { font-family: inherit; font-size: 1rem; color: #1c1c1c; background: #fff; border: 1px solid #d0ccc6; border-radius: 2px; padding: 0.7rem 0.9rem; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.feedback-form__input:focus,
.feedback-form__textarea:focus { border-color: #4b2e1a; box-shadow: 0 0 0 2px rgba(75,46,26,0.1); }
.feedback-form__textarea { resize: vertical; min-height: 140px; }

@media (max-width: 768px) {
  .feedback-form__row { grid-template-columns: 1fr; }
}

/* WuBook widget */
.wubook-widget { position: fixed; top: 160px; left: 0; right: 0; z-index: 98; background: #f8f6f2; }
.wubook-widget #_baror_ { position: relative; }
.has-wubook-bar { padding-top: 80px; padding-bottom: 3rem; }
.has-wubook-bar + .section { padding-top: 6rem; scroll-margin-top: 240px; }

/* ── Page loader ─────────────────────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#page-loader.page-loader--hidden {
  opacity: 0;
  pointer-events: none;
}
.page-loader__ring {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(201, 169, 122, 0.2);
  border-top-color: #c9a97a;
  border-radius: 50%;
  animation: loader-spin 0.9s linear infinite;
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS
   ===================================================================== */

/* 2K / large screens — constrain content width */
@media (min-width: 1600px) {
  .page-content { max-width: 1400px; margin-left: auto; margin-right: auto; }
  .section__inner { max-width: 1400px; margin-left: auto; margin-right: auto; }
}

/* Medium desktop — nav starts to crowd */
@media (max-width: 1280px) {
  :root { --page-x: 5rem; }
  .page-content { padding: 4rem var(--page-x); }
  .section__inner { padding: 0 5rem; }
  .site-footer { padding: 29px 80px; }
  .nav__links { gap: 1.2rem; }
  .nav__links a { font-size: 0.78rem; }
  .nav__dropdown-toggle { font-size: 0.78rem; }
  .nav__title { font-size: 20px; }
}

/* Tablet / small desktop */
@media (max-width: 1100px) {
  :root { --page-x: 3rem; }
  body { padding-top: 140px; }
  .page-content { padding: 3rem var(--page-x); }
  .section__inner { padding: 0 3rem; }
  .site-footer { padding: 29px 48px; }
  .nav__logo-img { height: 64px; }
  .nav__title { font-size: 18px; }
  .nav__links { gap: 0.8rem; }
  .nav__links a { font-size: 0.75rem; }
  .nav__book { padding: 0.7rem 1.4rem !important; font-size: 0.9rem !important; }
  .room-row--jazz { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --page-x: 1.25rem; }
  body { padding-top: 80px; font-size: 16px; }
  .page-content { padding: 2rem var(--page-x); }
  .section__inner { padding: 0 1.25rem; }
  .site-footer { padding: 29px 20px; }
  .nav__logo-img { height: 46px; }
  .nav__title { font-size: 14px; line-height: 1.2; }
  .nav__brand-links { display: none; }
  .nav__brand-links.nav__links--open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #111; padding: 1rem 1.5rem; }
  .nav__brand-links .nav__title { display: none; }
  .nav__links-row { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .nav__links { flex-direction: column; gap: 0.4rem; }
  .nav__book { order: -1; padding: 0.6rem 1rem !important; font-size: 0.9rem !important; text-align: center; }
  .nav__title-mobile { display: block; flex: 1; font-weight: 300; font-size: 14px; line-height: 1.2; text-transform: uppercase; color: #fff; letter-spacing: 0.025em; padding: 0 0.5rem; }
  .nav__burger { display: block; }
  .nav__dropdown-menu { position: static; box-shadow: none; border-top: none; padding: 0.25rem 0 0.25rem 1rem; min-width: unset; }
  .nav__links a { font-size: 1rem; }
  .nav__dropdown-toggle { font-size: 1rem; }
  .nav__dropdown-menu li a { padding: 0.4rem 0; font-size: 0.95rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-row { grid-template-columns: 1fr; }
  .room-row__photo { height: 280px; aspect-ratio: unset; }
  .room-row--jazz { grid-template-columns: 1fr; }
  .room-row--jazz .room-row__info { padding: 1.5rem; }
  .coop-steps { flex-direction: column; gap: 1.5rem; }
  .restaurant-info { flex-direction: column; gap: 1.5rem; }
  .restaurant-info__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .gallery-slider__track { gap: 10px; }
  .gallery-slider__slide { flex: 0 0 78vw; }
  .gallery-slider__arrow { font-size: 3.5rem; }
  .gallery-slider__arrow--prev { left: 1vw; }
  .gallery-slider__arrow--next { right: 1vw; }
}
