/* ============================================================================
   Дом купчихи Ершовой — style.css (v6 cinematic)
   Дизайн-токены — restoran-ershovoy.ru.
   Композиция — Aman/Belmond cinematic: full-bleed sections, photos carry,
   slow scroll, big quiet typography.
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&display=swap');

/* ─── 1. TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --bg:        #FAF6EE;
  --bg2:       #F2EAE0;
  --bg3:       #E9DDD2;

  --wine:      #5C1427;
  --wine2:     #7A1C35;

  --gold:      #8B6B14;
  --gold2:     #A07820;
  --gold3:     #C4A24B;

  --cream:     #FAF6EE;
  --cream2:    #F2EAE0;

  --text:      rgba(30, 10, 16, 0.88);
  --text-mid:  rgba(30, 10, 16, 0.58);
  --text-low:  rgba(30, 10, 16, 0.45);

  --border:    rgba(92, 20, 39, 0.15);
  --border2:   rgba(92, 20, 39, 0.30);

  --ink:       #1A0810;
  --ink2:      #2A0810;

  --r: 0px;

  --container:      1280px;
  --container-tight: 880px;
  --gutter:         clamp(1.5rem, 4vw, 4rem);
  --section-y:      clamp(5rem, 10vw, 9rem);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── 2. BASE ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  background: var(--bg);
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  line-height: 1.7;
  font-feature-settings: "lnum", "kern";
  font-kerning: normal;
}

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

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

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

.cine-dark :focus-visible {
  outline-color: var(--gold3);
}

::selection { background: var(--wine); color: var(--cream); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--wine); }
::-webkit-scrollbar-thumb:hover { background: var(--wine2); }

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.05;
  font-optical-sizing: auto;
  font-feature-settings: "lnum", "kern";
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 9vw, 7.5rem); font-weight: 300; line-height: 1; }
h2 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 300; line-height: 1.05; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; line-height: 1.15; }

p { line-height: 1.75; color: var(--text); max-width: 60ch; }
p + p { margin-top: 1.1em; }

.eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.55em;
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
}

.cine-dark .eyebrow { color: var(--gold3); }

.micro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.cine-dark .micro { color: rgba(250, 246, 238, 0.62); }

.italic-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.5;
  color: var(--text);
}

.cine-dark .italic-quote { color: rgba(250, 246, 238, 0.88); }

/* ─── 4. NAV ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.4rem clamp(1.5rem, 3vw, 3rem);
  transition:
    background 0.6s var(--ease-cinema),
    padding 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
  background: linear-gradient(to bottom, rgba(13, 5, 16, 0.4) 0%, transparent 100%);
}

.nav.is-scrolled,
.nav.scrolled {
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(92, 20, 39, 0.10);
  padding: 0.9rem clamp(1.5rem, 3vw, 3rem);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

/* Лого — монограмма КЕ 1863. Тёмная по умолчанию; на тёмном hero инвертируем в светлую. */
.nav__brand {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav__logo {
  display: block;
  height: 52px;
  width: auto;
  filter: invert(1) brightness(1.6);
  transition: filter 0.5s var(--ease-cinema);
}

.nav.is-scrolled .nav__logo,
.nav.scrolled .nav__logo { filter: none; }

@media (max-width: 700px) {
  .nav__logo { height: 42px; }
}

.nav__menu {
  display: none;
  align-items: center;
  gap: clamp(1.6rem, 2.5vw, 2.4rem);
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__menu a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--cream);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s var(--ease-out);
}

.nav.is-scrolled .nav__menu a,
.nav.scrolled .nav__menu a { color: var(--text); }

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold3);
  transition: right 0.45s var(--ease-cinema);
}

.nav.is-scrolled .nav__menu a::after,
.nav.scrolled .nav__menu a::after { background: var(--gold); }

.nav__menu a:hover { color: var(--gold3); }
.nav.is-scrolled .nav__menu a:hover,
.nav.scrolled .nav__menu a:hover { color: var(--gold); }
.nav__menu a:hover::after { right: 0; }

/* Кнопка «Забронировать» — бордовая (wine) во всех состояниях, шрифт Cormorant. */
.nav__cta {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--cream);
  background: var(--wine);
  border: 1px solid var(--wine);
  padding: 0.7rem 1.6rem;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
  transition:
    background 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    color 0.4s var(--ease-out);
}

.nav__cta:hover {
  background: #4a0f1f;
  border-color: #4a0f1f;
  color: var(--cream);
}

.nav.is-scrolled .nav__cta,
.nav.scrolled .nav__cta {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}

.nav.is-scrolled .nav__cta:hover,
.nav.scrolled .nav__cta:hover {
  background: #4a0f1f;
  border-color: #4a0f1f;
  color: var(--cream);
}

.nav__burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 12px;
  margin: -12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.3s var(--ease-out),
    background 0.5s var(--ease-cinema);
}

.nav.is-scrolled .nav__burger span,
.nav.scrolled .nav__burger span { background: var(--text); }

.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__panel {
  position: fixed;
  inset: 0;
  background: rgba(13, 5, 16, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-cinema);
}

html.is-nav-open .nav__panel { opacity: 1; pointer-events: auto; }

.nav__panel a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.nav__panel a:hover { color: var(--gold3); }

.nav__panel-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(250, 246, 238, 0.3);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px;
  transition: border-color 0.3s, color 0.3s;
}
.nav__panel-close:hover { border-color: var(--gold3); color: var(--gold3); }

@media (min-width: 980px) {
  .nav__menu  { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__panel  { display: none; }
}

/* ─── 5. BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 2.2rem;
  min-height: 48px;
  cursor: pointer;
  border: 1px solid var(--wine);
  background: transparent;
  color: var(--wine);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: none;
  transition:
    background 0.5s var(--ease-cinema),
    color 0.5s var(--ease-cinema),
    border-color 0.5s var(--ease-cinema),
    transform 0.2s var(--ease-out),
    box-shadow 0.5s var(--ease-cinema);
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.btn:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(92, 20, 39, 0.20);
}

.btn--primary {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.12);
  transition: left 0.6s var(--ease-cinema);
}

.btn--primary:hover::before { left: 100%; }

.btn--primary:hover {
  background: var(--wine2);
  border-color: var(--wine2);
  color: var(--cream);
}

.btn--on-dark {
  background: rgba(13, 5, 16, 0.35);
  color: var(--cream);
  border-color: rgba(250, 246, 238, 0.65);
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
}

.btn--on-dark:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--wine);
}

/* Cream-filled CTA для hero — самая заметная */
.btn--hero-primary {
  background: var(--cream);
  color: var(--wine);
  border: 1px solid var(--cream);
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(13, 5, 16, 0.40);
}

.btn--hero-primary:hover {
  background: var(--gold3);
  border-color: var(--gold3);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(196, 162, 75, 0.35);
}

.btn--ghost {
  border: none;
  padding: 0.6rem 0;
  background: transparent;
  color: var(--wine);
  letter-spacing: 0.22em;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  min-height: 0;
}

.btn--ghost:hover {
  background: transparent;
  color: var(--wine2);
  border-bottom-color: var(--wine2);
  transform: none;
  box-shadow: none;
}

.cine-dark .btn--ghost { color: var(--gold3); }
.cine-dark .btn--ghost:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ─── 6. CINE-SECTION (cinematic base) ──────────────────────────────────── */
.cine {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.cine--tall { min-height: 110vh; }

.cine--auto { min-height: auto; padding-block: var(--section-y); }

.cine__bg {
  position: absolute;
  inset: -2vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.cine--has-pan .cine__bg {
  animation: cine-pan 22s ease-in-out infinite alternate;
}

@keyframes cine-pan {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.5%, -1.2%); }
}

.cine__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(13, 5, 16, 0.30) 0%,
      rgba(13, 5, 16, 0.15) 28%,
      rgba(13, 5, 16, 0.30) 60%,
      rgba(13, 5, 16, 0.78) 100%);
}

.cine__overlay--center {
  background:
    radial-gradient(ellipse 75% 65% at center, rgba(13, 5, 16, 0.30) 0%, rgba(13, 5, 16, 0.80) 100%);
}

.cine__overlay--strong {
  background:
    linear-gradient(180deg,
      rgba(13, 5, 16, 0.55) 0%,
      rgba(13, 5, 16, 0.45) 40%,
      rgba(13, 5, 16, 0.65) 70%,
      rgba(13, 5, 16, 0.92) 100%);
}

.cine__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  padding: var(--section-y) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  color: var(--cream);
}

.cine__inner--tight { max-width: var(--container-tight); }
.cine__inner--start { align-items: flex-start; text-align: left; }
.cine__inner--end { align-items: flex-end; text-align: right; }

.cine-dark { color: var(--cream); }
.cine-dark h1, .cine-dark h2, .cine-dark h3 { color: var(--cream); }
.cine-dark p { color: rgba(250, 246, 238, 0.88); }

/* ─── 7. HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: -2vh;
  background-size: cover;
  background-position: center 42%;
  z-index: 0;
  will-change: transform;
  animation: hero-pan 24s ease-in-out infinite alternate;
}

@keyframes hero-pan {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.10) translate(-1.5%, -1.5%); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(13, 5, 16, 0.55) 0%,
      rgba(13, 5, 16, 0.40) 28%,
      rgba(13, 5, 16, 0.55) 55%,
      rgba(13, 5, 16, 0.78) 80%,
      rgba(13, 5, 16, 0.96) 100%),
    radial-gradient(ellipse 70% 55% at center 50%, rgba(13, 5, 16, 0.20) 0%, rgba(13, 5, 16, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 6rem var(--gutter) 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.4rem, 3vh, 2.4rem);
}

.hero .eyebrow {
  color: var(--gold3);
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.92rem);
  letter-spacing: 0.45em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 0 28px rgba(0, 0, 0, 0.7);
}

.hero__content h1 {
  color: var(--cream);
  font-weight: 500;
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.75),
    0 1px 8px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(13, 5, 16, 0.6);
}

.hero__sub {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  max-width: 42ch;
  text-shadow:
    0 1px 16px rgba(0, 0, 0, 0.85),
    0 0 32px rgba(0, 0, 0, 0.55);
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.6rem;
}

.hero__badge {
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold3);
  text-transform: uppercase;
  margin-top: clamp(1.2rem, 3vh, 2.2rem);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  color: rgba(250, 246, 238, 0.5);
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: hero-hint 3s ease-in-out infinite;
}

.hero__scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold3), transparent);
}

@keyframes hero-hint {
  0%, 100% { opacity: 0.4; transform: translate(-50%, 0); }
  50%      { opacity: 0.85; transform: translate(-50%, 4px); }
}

.hero__ctas .btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.95rem 2.2rem;
}

@media (max-width: 600px) {
  .hero__content { padding-block: 5rem 6rem; }
  .hero__ctas .btn { font-size: 1rem; padding: 0.85rem 1.7rem; }
}

/* ─── 8. MOMENT (full-bleed cinematic) ──────────────────────────────────── */
.moment {
  composes: cine;
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
}

.moment__bg {
  position: absolute;
  inset: -2vh;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.moment--has-pan .moment__bg {
  animation: moment-pan 28s ease-in-out infinite alternate;
}

@keyframes moment-pan {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(1%, -1%); }
}

.moment__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at center, rgba(13,5,16,0.40) 0%, rgba(13,5,16,0.85) 100%),
    linear-gradient(180deg, rgba(13,5,16,0.55) 0%, rgba(13,5,16,0.42) 50%, rgba(13,5,16,0.72) 100%);
}

.moment__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-tight);
  padding: var(--section-y) var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.4rem, 2.8vw, 2.4rem);
}

.moment__inner h2 {
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.moment__inner .italic-quote {
  color: rgba(250, 246, 238, 0.88);
  max-width: 56ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.moment__inner .micro {
  color: rgba(250, 246, 238, 0.55);
  letter-spacing: 0.04em;
}

.moment__inner .eyebrow { color: var(--gold3); }

/* ─── 9. ROOMS-COMPACT (все 10 одной сеткой) ────────────────────────────── */
.rooms-cinema {
  background: var(--bg);
  position: relative;
  padding: clamp(5rem, 9vw, 7.5rem) var(--gutter);
}

.rooms-cinema__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.rooms-cinema__intro {
  text-align: center;
  max-width: var(--container-tight);
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.rooms-cinema__intro .eyebrow { margin-bottom: 1.4rem; }
.rooms-cinema__intro h2 { margin-bottom: 1.4rem; }
.rooms-cinema__intro p {
  margin: 0 auto;
  color: var(--text-mid);
  font-style: italic;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 2.6vw, 2.4rem);
}

@media (min-width: 700px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
}

.room-card {
  position: relative;
  display: block;
  background: #FFFFFF;
  color: inherit;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    border-color 0.5s var(--ease-cinema),
    transform 0.5s var(--ease-cinema),
    box-shadow 0.5s var(--ease-cinema);
}

.room-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(92, 20, 39, 0.10);
}

.room-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg2);
}

.room-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-cinema), opacity 0.9s var(--ease-cinema);
}

/* Second photo overlay — invisible by default, fades in on hover (desktop) or auto-rotate (mobile) */
.room-card__photo img + img { opacity: 0; }
.room-card:hover .room-card__photo img + img { opacity: 1; }
.room-card.is-rotated .room-card__photo img + img { opacity: 1; }
.room-card__photo:hover img { transform: scale(1.04); }

.room-card__photo-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: rgba(250, 246, 238, 0.85);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.room-card__body {
  padding: clamp(1.4rem, 2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.room-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  line-height: 1.1;
  color: var(--text);
}

.room-card__meta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.room-card__short {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0.2rem 0 0.4rem;
}

.room-card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.4rem;
}

.room-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--wine);
  font-variant-numeric: tabular-nums lining-nums;
  line-height: 1;
}

.room-card__price small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  color: var(--text-mid);
  margin-left: 0.3rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.room-card__arrow {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.4s var(--ease-out), gap 0.4s var(--ease-out);
}

.room-card:hover .room-card__arrow { color: var(--wine); gap: 0.8rem; }

.room-card:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 4px;
}
.room-card:focus-visible .room-card__arrow { color: var(--wine); gap: 0.8rem; }

/* ─── 11. RESTAURANT (cinematic split) ──────────────────────────────────── */
.restaurant-cine {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

@media (min-width: 900px) {
  .restaurant-cine { grid-template-columns: 1fr 1fr; }
}

.restaurant-cine__photo {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}

@media (min-width: 900px) {
  .restaurant-cine__photo { min-height: 100vh; }
}

.restaurant-cine__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Модификатор «верх-право»: для STORY с акварелью — белый дом справа сверху
   должен оставаться в кадре при кадрировании по cover (и на десктопе, и на мобиле). */
.restaurant-cine__photo--top-right img { object-position: right top; }

.restaurant-cine__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  gap: 1.4rem;
  background: var(--ink);
}

.restaurant-cine__info h2 {
  color: var(--cream);
  font-weight: 300;
}

.restaurant-cine__info p {
  color: rgba(250, 246, 238, 0.78);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  max-width: 42ch;
}

.restaurant-cine__info .eyebrow { color: var(--gold3); }

.restaurant-cine__info .btn { margin-top: 0.6rem; align-self: flex-start; }

/* «Реверс» модификатор — фото справа, текст слева */
.restaurant-cine--reverse > .restaurant-cine__info { order: -1; }
@media (max-width: 899px) {
  .restaurant-cine--reverse > .restaurant-cine__info { order: 0; }
}

/* Reusable accent label (Cinzel uppercase, gold3) — для повторяющихся «4★», «№1 по версии» */
.cine-dark p.cine-label,
.cine-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold3);
  margin-top: 0.4rem;
  font-style: normal;
  line-height: 1.3;
}

.cine-label--light { color: var(--gold); }

/* Booking-link в mobile nav__panel — выделение через класс, не inline */
.nav__panel a.nav__panel-cta { color: var(--gold3); }

/* ─── 11.5. AMENITIES (с фотками) ───────────────────────────────────────── */
.amenities {
  background: var(--bg2);
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
}

.amenities__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.amenities__head {
  text-align: center;
  max-width: var(--container-tight);
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.amenities__head .eyebrow { margin-bottom: 1.2rem; }
.amenities__head p {
  color: var(--text-mid);
  font-style: italic;
  margin: 1rem auto 0;
  max-width: 56ch;
}

.amenities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 2.5vw, 2rem);
}

@media (min-width: 700px) {
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  /* 3 наверху + 2 снизу = красивая асимметрия */
  .amenities__grid { grid-template-columns: repeat(6, 1fr); }
  .amenities__item:nth-child(1) { grid-column: span 2; }
  .amenities__item:nth-child(2) { grid-column: span 2; }
  .amenities__item:nth-child(3) { grid-column: span 2; }
  .amenities__item:nth-child(4) { grid-column: span 3; }
  .amenities__item:nth-child(5) { grid-column: span 3; }
}

.amenities__item {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.6s var(--ease-cinema),
    border-color 0.5s var(--ease-out),
    box-shadow 0.6s var(--ease-cinema);
}

.amenities__item:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 16px 50px rgba(92, 20, 39, 0.10);
}

.amenities__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg2);
}

.amenities__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-cinema);
}

.amenities__item:hover .amenities__photo img { transform: scale(1.05); }

.amenities__item:focus-within {
  outline: 2px solid var(--wine);
  outline-offset: 4px;
}

.amenities__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 5, 16, 0.35) 100%);
  pointer-events: none;
}

.amenities__body {
  padding: clamp(1.4rem, 2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.amenities__label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
}

.amenities__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--text);
  line-height: 1.15;
}

.amenities__sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--text-mid);
  text-transform: none;
  margin-top: 0.15rem;
}

.amenities__text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-mid);
  margin-top: 0.6rem;
}

/* ─── 12. REVIEWS CAROUSEL — большой заголовок + горизонтальные карточки ── */
.reviews-carousel {
  background: var(--bg);
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

.reviews-carousel__head {
  text-align: center;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  padding: 0 var(--gutter);
}

.reviews-carousel__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
}

.reviews-carousel__track {
  display: flex;
  gap: clamp(1.4rem, 2vw, 2rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.4rem var(--gutter) 1.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--border);
}

.reviews-carousel__track::-webkit-scrollbar { height: 4px; }
.reviews-carousel__track::-webkit-scrollbar-track { background: var(--border); }
.reviews-carousel__track::-webkit-scrollbar-thumb { background: var(--gold); }

.review-card {
  flex: 0 0 clamp(280px, 36vw, 440px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  padding: clamp(1.8rem, 2.6vw, 2.4rem);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.4s var(--ease-out), transform 0.5s var(--ease-cinema);
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.review-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.review-card__foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border2);
  background: var(--bg2);
}

.review-card__author {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.3;
}

.trust__accred {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: clamp(3rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 760px) {
  .trust__accred {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .trust__accred-item + .trust__accred-item { border-left: 1px solid var(--border); }
}

.trust__accred-item {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.trust__accred-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  line-height: 1.15;
  color: var(--text);
}

.trust__accred-item .micro {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  letter-spacing: 0;
  color: var(--text-mid);
}

/* ─── 14. FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink2);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2.4rem;
  color: rgba(250, 246, 238, 0.55);
  font-size: 0.92rem;
  font-family: 'Cormorant Garamond', serif;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding-bottom: clamp(1.4rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgba(250, 246, 238, 0.08);
}

@media (min-width: 700px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__top > span {
  font-style: italic;
  color: rgba(250, 246, 238, 0.62);
  font-variant-numeric: lining-nums;
}

.footer__links { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }

.footer__links a {
  color: rgba(250, 246, 238, 0.62);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.4s var(--ease-out);
}

.footer__links a:hover { color: var(--gold3); }

.footer__legal {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.65;
}

@media (min-width: 700px) {
  .footer__legal { grid-template-columns: 1fr 1.4fr; }
}

.footer__legal p {
  margin: 0.2rem 0;
  font-variant-numeric: lining-nums;
  color: #ffffff;
}

.footer__legal-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ─── 15. ROOM PAGE ─────────────────────────────────────────────────────── */
.room-page { padding-top: clamp(6rem, 12vw, 9rem); padding-bottom: 0; }

.room-page__hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  margin-bottom: 0;
  isolation: isolate;
}

.room-page__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  animation: hero-pan 26s ease-in-out infinite alternate;
}

.room-page__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,5,16,0.20) 0%, rgba(13,5,16,0.10) 50%, rgba(13,5,16,0.85) 100%);
}

.room-page__hero-text {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem);
  text-align: center;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
}

.room-page__hero-text .eyebrow { color: var(--gold3); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.room-page__hero-text h1 {
  color: var(--cream);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.room-page__hero-text .micro {
  color: rgba(250, 246, 238, 0.75);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.room-page__body {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 5vw, 5rem);
}

@media (min-width: 1100px) {
  .room-page__body { grid-template-columns: 1fr 380px; }
}

.room-page__content p {
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.35vw, 1.22rem);
  line-height: 1.8;
  max-width: 60ch;
}

.room-page__content p + p { margin-top: 1.4em; }

.room-page__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(3rem, 5vw, 4rem);
}

@media (min-width: 700px) { .room-page__gallery { grid-template-columns: repeat(2, 1fr); } }

.room-page__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-page__sticky {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: clamp(2rem, 3vw, 2.6rem);
  position: static;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

@media (min-width: 1100px) {
  .room-page__sticky { position: sticky; top: 110px; align-self: start; }
}

.room-page__sticky .eyebrow { color: var(--gold); }

.room-page__sticky h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text);
}

.room-page__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.room-page__price-row .price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--wine);
  font-variant-numeric: tabular-nums lining-nums;
  line-height: 1;
}

.room-page__price-row .unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

.room-page__sticky .btn { width: 100%; }

.room-page__sticky .phone {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-mid);
  text-align: center;
}

.room-page__back {
  padding: clamp(3rem, 5vw, 4rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
}

.room-page__back a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

.room-page__back a:hover { color: var(--wine); }

/* ─── 16. GALLERY PAGE ──────────────────────────────────────────────────── */
.gallery-page { padding-top: clamp(6rem, 12vw, 9rem); }

.gallery-page__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(4rem, 6vw, 6rem);
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.gallery-page__head h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
}

.gallery-page__head .sub {
  color: var(--text-mid);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.35vw, 1.22rem);
  max-width: 56ch;
}

.gallery-grid {
  columns: 1;
  column-gap: clamp(1rem, 2vw, 1.5rem);
  padding-inline: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 600px) { .gallery-grid { columns: 2; } }
@media (min-width: 1000px) { .gallery-grid { columns: 3; } }

.gallery__item {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  display: block;
  background: var(--bg2);
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.9s var(--ease-cinema), opacity 0.6s var(--ease-out);
  opacity: 0.95;
}

.gallery__item:hover img { transform: scale(1.04); opacity: 1; }

.gallery__group-title {
  break-inside: avoid;
  column-span: all;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
  margin: clamp(3rem, 5vw, 5rem) 0 clamp(1.4rem, 2vw, 2rem);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--border);
  text-align: center;
}

.gallery__group-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* ─── 17. REVEAL — плавное появление с blur ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(14px);
  transition:
    opacity 1.2s var(--ease-cinema),
    transform 1.2s var(--ease-cinema),
    filter 1.2s var(--ease-cinema);
  will-change: opacity, transform, filter;
}

.reveal.is-in,
.reveal.on {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

[data-stagger] > .reveal { transition-delay: calc(min(var(--i, 0), 8) * 70ms); }

/* Целая секция мягко появляется fade-in при первой видимости.
   Filter:blur не используем — он каскадно сложился бы с blur у .reveal внутри. */
section.section-reveal {
  opacity: 0;
  transition: opacity 1.3s var(--ease-cinema);
}
section.section-reveal.is-in { opacity: 1; }

/* ─── 18. UTILITIES ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --gutter: 1.25rem; }
}

@media (max-width: 380px) {
  .hero__content h1 { font-size: 2.4rem; line-height: 1.05; }
  .hero__sub { font-size: 0.98rem; }
}

/* Touch-friendly */
@media (hover: none) and (pointer: coarse) {
  .nav__menu a,
  .nav__panel a,
  .footer__links a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ─── 19.5. RELATED ROOMS (карусель на странице номера) ──────────────────── */
.related-rooms {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  background: var(--bg2);
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.related-rooms__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-inline: var(--gutter);
}

.related-rooms__head .eyebrow { color: var(--gold); margin-bottom: 1rem; display: block; }
.related-rooms__head h2 { color: var(--text); font-weight: 400; }

.related-rooms__track {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--gutter);
  padding-bottom: 1.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold2) var(--bg3);
}

.related-rooms__track::-webkit-scrollbar { height: 4px; }
.related-rooms__track::-webkit-scrollbar-track { background: var(--bg3); }
.related-rooms__track::-webkit-scrollbar-thumb { background: var(--gold2); }

.related-rooms__card {
  flex: 0 0 clamp(220px, 28vw, 320px);
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.5s var(--ease-cinema), border-color 0.4s var(--ease-out), box-shadow 0.5s var(--ease-cinema);
}

.related-rooms__card:hover {
  transform: translateY(-3px);
  border-color: var(--border2);
  box-shadow: 0 12px 36px rgba(92, 20, 39, 0.08);
}

.related-rooms__card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg3);
}

.related-rooms__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-cinema);
}

.related-rooms__card:hover .related-rooms__card-photo img { transform: scale(1.05); }

.related-rooms__card-body {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.related-rooms__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--text);
  line-height: 1.2;
}

.related-rooms__card-meta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.related-rooms__card-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--wine);
  font-variant-numeric: tabular-nums lining-nums;
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

.related-rooms__cta {
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-inline: var(--gutter);
}

/* ─── 20. ZENKOV (split — реставратор) ──────────────────────────────────── */
.zenkov {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--bg2);
  min-height: 90vh;
}

@media (min-width: 900px) {
  .zenkov { grid-template-columns: 1fr 1.2fr; }
}

.zenkov__photo {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  background: var(--bg3);
}

@media (min-width: 900px) {
  .zenkov__photo { min-height: 90vh; }
}

.zenkov__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.zenkov__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  gap: 1.4rem;
  position: relative;
}

.zenkov__info .eyebrow { color: var(--gold); }

.zenkov__info h2 {
  font-weight: 400;
  color: var(--text);
}

.zenkov__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  line-height: 1.45;
  color: var(--wine);
  max-width: 36ch;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border2);
  margin: 0.8rem 0 0.4rem;
}

.zenkov__bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--text);
  max-width: 56ch;
}

.zenkov__signature {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
}

/* ─── 20.5. RELIC LOG — тайна XIX века (full-bleed бревно на общем фоне) ── */
.relic {
  padding: clamp(5rem, 9vw, 8rem) 0;
  /* без своего фона — используется body --bg (#FAF6EE); без боковых padding,
     чтобы фото жило от края до края экрана. */
}

.relic__inner {
  max-width: 100%;
  margin: 0;
  display: block;
}

.relic__photo {
  width: 100%;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding: 0;
  display: block;
}

.relic__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  /* PNG с прозрачным фоном — растягивается на всю ширину viewport-а. */
}

@media (max-width: 720px) {
  .relic__photo img { max-height: none; }
}

.relic__info {
  max-width: var(--container-tight, 760px);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.relic__info .eyebrow { color: var(--gold); }

.relic__info h2 {
  color: var(--text);
  font-weight: 400;
  line-height: 1.05;
}

.relic__info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--text);
  max-width: 42ch;
}

.relic__info .invitation {
  font-style: italic;
  color: var(--wine);
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  margin-top: 0.6rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--border2);
}

.relic__btn {
  margin-top: 1.4rem;
  align-self: flex-start;
}

/* ─── 21. DISHES CAROUSEL ──────────────────────────────────────────────── */
.dishes {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

/* ─── 21.1. RESTAURANT + DISHES merged ──────────────────────────────────
 * Когда два блока живут в одном <section.restaurant-block>:
 * — нижний (.dishes--inline) теряет собственный фон/верхний padding,
 * — между ними появляется тонкий золотой разделитель в максимум-ширину контейнера,
 * — у split-блока убирается жёсткий min-height: 100vh.
 */
.restaurant-block { background: var(--ink); color: var(--cream); }

.restaurant-cine--flush { min-height: auto; }
@media (min-width: 900px) {
  .restaurant-cine--flush { min-height: 78vh; }
  .restaurant-cine--flush .restaurant-cine__photo { min-height: 78vh; }
}

.dishes--inline {
  background: transparent;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  position: relative;
}

.dishes--inline::before {
  content: "";
  display: block;
  width: clamp(60px, 8vw, 120px);
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

/* bare-вариант: без шапки и без разделителя — карусель сразу под split-блоком */
.dishes--bare {
  padding-top: clamp(0.6rem, 1.5vw, 1.2rem);
}
.dishes--bare::before { content: none; }


.dishes__head {
  text-align: center;
  max-width: var(--container-tight);
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
  padding-inline: var(--gutter);
}

.dishes__head .eyebrow { color: var(--gold3); margin-bottom: 1.2rem; }
.dishes__head h2 { color: var(--cream); font-weight: 300; }
.dishes__head p {
  color: rgba(250, 246, 238, 0.7);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 56ch;
  margin-inline: auto;
}

.dishes__track {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--gutter);
  padding-bottom: 1.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold3) var(--ink2);
}

.dishes__track::-webkit-scrollbar { height: 4px; }
.dishes__track::-webkit-scrollbar-track { background: var(--ink2); }
.dishes__track::-webkit-scrollbar-thumb { background: var(--gold); }

.dish-card {
  flex: 0 0 clamp(260px, 32vw, 380px);
  scroll-snap-align: start;
  background: var(--ink2);
  border: 1px solid rgba(196, 162, 75, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-cinema), border-color 0.5s var(--ease-out);
}

.dish-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 162, 75, 0.45);
}

.dish-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #100308;
}

.dish-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-cinema);
}

.dish-card:hover .dish-card__photo img { transform: scale(1.04); }

.dish-card__body {
  padding: 1.2rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.dish-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.25;
  color: var(--cream);
  min-height: 2.5em;
}

.dish-card__meta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  color: rgba(250, 246, 238, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.dish-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--gold3);
  font-variant-numeric: tabular-nums lining-nums;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(196, 162, 75, 0.15);
}

.dishes__cta {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-inline: var(--gutter);
}

.dishes__hint {
  text-align: center;
  margin-top: 1rem;
  padding-inline: var(--gutter);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  color: rgba(196, 162, 75, 0.55);
  text-transform: uppercase;
}

/* ─── 22. FAQ ──────────────────────────────────────────────────────────── */
.faq {
  background: var(--bg2);
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
}

.faq__inner {
  max-width: var(--container-tight);
  margin: 0 auto;
}

.faq__head { text-align: center; margin-bottom: clamp(3rem, 5vw, 4rem); }
.faq__head .eyebrow { margin-bottom: 1.2rem; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-top: 1px solid var(--border);
  background: transparent;
}

.faq__item:last-child { border-bottom: 1px solid var(--border); }

.faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 2.4vw, 2rem) 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  color: var(--text);
  line-height: 1.3;
  transition: color 0.35s var(--ease-out);
}

.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::marker { content: ''; }

.faq__summary:hover { color: var(--wine); }
.faq__summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform 0.45s var(--ease-cinema);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transition: transform 0.45s var(--ease-cinema), background 0.35s ease;
}

.faq__icon::before {
  width: 16px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__item[open] .faq__icon::before { background: var(--wine); }
.faq__item[open] .faq__summary { color: var(--wine); }

.faq__answer {
  padding: 0 0 clamp(1.4rem, 2.4vw, 2rem);
  max-width: 60ch;
}

.faq__answer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── 23. CONTACTS REDESIGN — фасад + темнее overlay + большая typography ── */
.contacts {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.contacts__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: contacts-pan 30s ease-in-out infinite alternate;
}

@keyframes contacts-pan {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}

.contacts__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(13, 5, 16, 0.70) 0%,
      rgba(13, 5, 16, 0.55) 30%,
      rgba(13, 5, 16, 0.65) 60%,
      rgba(13, 5, 16, 0.88) 100%),
    radial-gradient(ellipse 75% 65% at 70% 50%, rgba(13, 5, 16, 0.25) 0%, rgba(13, 5, 16, 0.70) 100%);
}

.contacts__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}

@media (min-width: 900px) {
  .contacts__inner { grid-template-columns: 1.2fr 1fr; }
}

.contacts__head h2 {
  color: var(--cream);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.contacts__head .eyebrow {
  color: var(--gold3);
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.contacts__head p {
  color: rgba(250, 246, 238, 0.78);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  max-width: 46ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.contacts__panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  background: rgba(13, 5, 16, 0.5);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(196, 162, 75, 0.20);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}

.contacts__rows { display: grid; gap: 1.2rem; }

.contacts__row { display: flex; flex-direction: column; gap: 0.3rem; }

.contacts__row .label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gold3);
  text-transform: uppercase;
}

.contacts__row .value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  color: var(--cream);
  font-variant-numeric: lining-nums;
}

.contacts__row .value a {
  color: var(--cream);
  border-bottom: 1px solid rgba(250, 246, 238, 0.25);
  transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

.contacts__row .value a:hover { color: var(--gold3); border-color: var(--gold3); }

.contacts__cta .btn--primary {
  background: var(--cream);
  color: var(--wine);
  border-color: var(--cream);
  width: 100%;
}

.contacts__cta .btn--primary:hover {
  background: var(--gold3);
  border-color: var(--gold3);
  color: var(--ink);
}

.contacts__cta-note {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 246, 238, 0.6);
  margin-top: 0.8rem;
}

/* ─── 19. REDUCED MOTION ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .hero__bg,
  .moment__bg,
  .cine__bg,
  .room-page__hero-bg { animation: none; will-change: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ─── 25. CERTIFICATES — Росаккредитация + 4 звезды ────────────────────── */
.certificates {
  background: var(--bg);
  padding: clamp(5rem, 9vw, 7.5rem) var(--gutter);
  border-top: 1px solid var(--border);
}

.certificates__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.certificates__head {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 720px;
  margin-inline: auto;
}

.certificates__head .eyebrow { margin-bottom: 1rem; }

.certificates__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
}

.certificates__head p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-mid);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
  max-width: 60ch;
  margin-inline: auto;
}

.certificates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  max-width: 880px;
  margin-inline: auto;
}

@media (min-width: 700px) {
  .certificates__grid { grid-template-columns: 1fr 1fr; }
}

.certificates__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg2, #fff);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.5s var(--ease-cinema),
    border-color 0.4s var(--ease-out),
    box-shadow 0.5s var(--ease-cinema);
}
.certificates__card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.18);
}

.certificates__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
}

.certificates__caption {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
  padding: 0.4rem 0 0.6rem;
  line-height: 1.5;
}
.certificates__caption em {
  display: block;
  margin-top: 0.4rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
}

/* ─── 26. GUESTS — редакционный коллаж на тёмно-бордовом фоне ─────── */
.guests {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  overflow: hidden;
}

.guests__head {
  text-align: center;
  margin: 0 auto clamp(2.5rem, 4.5vw, 4rem);
  max-width: 760px;
}
.guests__head .eyebrow { color: var(--gold3); margin-bottom: 1rem; }
.guests__head h2 {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
}

/* Editorial collage — 4 разных по форме плитки в grid */
.guests__collage {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 1.8vw, 1.6rem);
}

@media (min-width: 760px) {
  .guests__collage {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "hero tall tall"
      "hero wide square";
  }
  .guest-tile--hero   { grid-area: hero; }
  .guest-tile--tall   { grid-area: tall; }
  .guest-tile--wide   { grid-area: wide; }
  .guest-tile--square { grid-area: square; }
}

.guest-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--bg2, #f4ece0);
  border: 1px solid var(--border);
  transition: transform 0.6s var(--ease-cinema), box-shadow 0.6s var(--ease-cinema);
}
.guest-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -22px rgba(26, 8, 16, 0.22);
}

.guest-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-cinema);
}
.guest-tile:hover img { transform: scale(1.04); }

/* Высоты под формы */
.guest-tile--hero   { aspect-ratio: 4 / 5; }
.guest-tile--tall   { aspect-ratio: 3 / 4; }
.guest-tile--wide   { aspect-ratio: 4 / 3; }
.guest-tile--square { aspect-ratio: 4 / 3; }

@media (min-width: 760px) {
  .guest-tile--hero { aspect-ratio: auto; min-height: 620px; }
  .guest-tile--tall { aspect-ratio: auto; }
  .guest-tile--wide,
  .guest-tile--square { aspect-ratio: auto; }
}

/* Подпись-плашка снизу — сплошная белая, без blur. */
.guest-tile__plate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1.1rem, 2vw, 1.6rem);
  background: var(--cream);
}

.guest-tile__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.25rem;
}

.guest-tile__role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-mid);
  margin: 0;
}

.guest-tile__link {
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  transition: color 0.3s ease;
}
.guest-tile__link:hover { color: var(--gold); }

/* ─── 27. GALLERY PREVIEW — masonry-style мини-блок на главной ────────── */
.gallery-preview {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.gallery-preview__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-preview__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.gallery-preview__head .eyebrow { margin-bottom: 1rem; }
.gallery-preview__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--text);
}

.gallery-preview__grid {
  columns: 1;
  column-gap: 14px;
}
@media (min-width: 600px) {
  .gallery-preview__grid { columns: 2; column-gap: 16px; }
}
@media (min-width: 1024px) {
  .gallery-preview__grid { columns: 3; column-gap: 18px; }
}

.gallery-preview__item {
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  overflow: hidden;
  position: relative;
}
.gallery-preview__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-cinema);
}
.gallery-preview__item:hover img { transform: scale(1.04); }

.gallery-preview__cta {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

/* ─── 26.5. AWARD chip — «Предприниматель года 2025» в Zenkov ──────────── */
.zenkov__award {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--border2);
  background: rgba(196, 162, 75, 0.06);
  align-self: flex-start;
  max-width: 100%;
}
.zenkov__award-icon {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0;
  flex-shrink: 0;
}
.zenkov__award-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}
.zenkov__award-text strong {
  font-style: normal;
  font-weight: 500;
  display: block;
  letter-spacing: 0.02em;
}

/* ─── 28. ROOM PAGE VIDEO + AMENITIES VIDEO (landscape 720×460) ───────── */
.room-page__video {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.room-page__video video {
  width: 100%;
  max-width: 540px;
  height: auto;
  aspect-ratio: 720 / 680;
  display: block;
  background: var(--ink);
  border: 1px solid var(--border);
}

.room-page__video figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}

/* Amenities tile с portrait-видео — сохраняем родное соотношение 720:880 */
.amenities__photo--video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 720 / 680;
  background: var(--ink);
}
.amenities__photo--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
