/* ================================================================
   LUX.CSS — Unified Stylesheet
   Merged: 2026-02-16
   Order: base → hero → info → rooms → comments → gallery → contacts
   ================================================================ */

/* ================================================================
   1. BASE STYLES (lux.css)
   ================================================================ */
:root {
  --bg-color: #F2F0EB;       /* Жемчужно-серый */
  --bg-card: #FFFFFF;        /* Белый */
  --text-main: #2B2A26;      /* warm graphite */
  --text-muted: #6B675E;     /* warm stone */
  --accent: #8C9688;         /* Шалфей */
  --border: #DCDCD9;

  /* Header background (2026 quiet luxury): matte solid + ultra-subtle texture */
  --hdr-olive: #7F8A5B;
  --hdr-sage: #9BA886;
  /* Slightly warmer midpoint of olive/sage — reads as "matte" instead of digital gradient */
  --hdr-bg: #8A966C;

  /* Back-compat alias (was linear-gradient); keep the variable name to avoid touching markup */
  --hdr-gradient: var(--hdr-bg);

  /* Subtle paper/fabric grain overlay (SVG fractal noise as a data URI) */
  --hdr-noise-opacity: 0.08;
  --hdr-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");

  /* Header text */
  --text-on-header: #F6F2E9;               /* ivory */
  --text-on-header-muted: rgba(246,242,233,0.78);

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);

  /* Matte paper texture — real noise PNG for tactile feel */
  --paper-texture: url('/static/media/paper_texture.png');
  --paper-opacity: 0.22;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

/* Base reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

/* Anchor offset for fixed header (prevents section titles from hiding under the header) */
section[id], footer[id], header[id] {
  scroll-margin-top: calc(var(--hdr-h, 84px) + 22px);
}
body {
  margin: 0;
  background: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Matte paper texture overlay — covers entire page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: var(--paper-texture);
  background-size: 500px 500px;
  background-repeat: repeat;
  opacity: var(--paper-opacity);
  mix-blend-mode: soft-light;
}

a { color: inherit; text-decoration: none; transition: 0.25s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem 0;
}

h1 { font-size: 3.4rem; letter-spacing: -0.02em; }
h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 3rem;
}
h3 { font-size: 1.7rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1rem 0; }

.lux-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Wider container for full-bleed sections that still need calm side padding */
.lux-container--wide { max-width: 1400px; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  background: var(--hdr-gradient);
  background-color: var(--hdr-bg);
  border-bottom: 0; /* no seam */
  color: var(--text-on-header);
  position: relative;
  isolation: isolate; /* keeps blend/noise contained inside header */
  left: 0;
  right: 0;
  z-index: 1200;
  transform: translateY(0);
  opacity: 1;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 320ms ease,
              box-shadow 420ms ease;
  will-change: transform;
}

/* Matte texture layer (ultra subtle; tweak --hdr-noise-opacity if needed) */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--hdr-noise);
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: var(--hdr-noise-opacity);
  mix-blend-mode: soft-light;
}

/* Bring header content above the texture overlay */
.site-header__inner {
  position: relative;
  z-index: 1;
}

.header-spacer { height: 0; }

.site-header.is-fixed {
  position: fixed;
  top: 0;
}

.site-header.is-fixed.is-visible {
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.site-header.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-header__inner {
  padding: 1.6rem 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo .logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: none;
}

.header-logo .logo-img--icon {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.header-right {
  flex-shrink: 0;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.nav-menu a {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-main);
  white-space: nowrap;
  display: inline-block;
}

/* Header overrides for gradient */
.site-header a:hover { color: var(--text-on-header); }
.site-header .nav-menu a { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.site-header .nav-menu a:hover { color: #fff; opacity: 0.82; }

.site-header .btn-luxury {
  border-color: rgba(246,242,233,0.62);
  color: var(--text-on-header);
}

.site-header .btn-luxury--cta {
  --btn-r: 999px;
  background: rgba(246,242,233,0.92);
  color: var(--text-main);
  border-color: rgba(246,242,233,0.92);
}

.site-header .btn-luxury--cta:hover {
  background: transparent;
  color: var(--text-on-header);
  border-color: rgba(246,242,233,0.62);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}


.socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.55);

  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
  will-change: transform;
}

.social-icon:hover { background: var(--bg-card); border-color: rgba(0,0,0,0.18); }
.social-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* Fix: prevent 1px seam between header and hero on some browsers */
.hero-section { margin-top: -1px; }

/* Hero (video background) */
.hero-section {
  position: relative;
  padding: 7.5rem 0 6rem;
  text-align: center;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1f1e1a; /* fallback while video loads */
  color: var(--text-on-header);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.02) brightness(0.92);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(43,42,38,0.62) 0%,
    rgba(43,42,38,0.28) 45%,
    rgba(43,42,38,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--text-on-header);
  text-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.hero-text {
  max-width: 760px;
  margin: 0.9rem auto 0;
  font-size: 1.08rem;
  color: rgba(246,242,233,0.88);
  text-shadow: 0 14px 30px rgba(0,0,0,0.42);
}

.hero-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-on-header-muted);
  margin-bottom: 1.4rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-section { background: radial-gradient(circle at center, rgba(31,30,26,0.8), rgba(31,30,26,1)); }
}

/* Buttons */
.btn-luxury {
  /* tactile / premium feel */
  --btn-r: 14px;
  --btn-r-hover: 999px;
  --btn-scale: 1;
  --mag-x: 0px;
  --mag-y: 0px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 42px;
  border: 1px solid var(--text-main);
  background: transparent;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  white-space: nowrap;
  cursor: pointer;

  border-radius: var(--btn-r);
  transform: translate3d(var(--mag-x), var(--mag-y), 0) scale(var(--btn-scale));
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 520ms ease,
    background-color 420ms ease,
    color 420ms ease,
    border-color 420ms ease;
  will-change: transform, border-radius, box-shadow;
}

.btn-luxury:hover {
  --btn-scale: 1.03;
  border-radius: var(--btn-r-hover);
  box-shadow: 0 22px 56px rgba(0,0,0,0.14);
  background: var(--text-main);
  color: #fff;
}

.btn-luxury:active {
  --btn-scale: 0.99;
  box-shadow: 0 14px 38px rgba(0,0,0,0.12);
}

.btn-luxury:focus-visible {
  outline: none;
  border-radius: var(--btn-r-hover);
  box-shadow: 0 0 0 2px rgba(31,30,26,0.18), 0 22px 56px rgba(0,0,0,0.12);
}

.btn-luxury--sm { padding: 10px 28px; font-size: 0.72rem; }

.btn-luxury--cta {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}

.btn-luxury--cta:hover {
  background: transparent;
  color: var(--text-main);
}

@media (prefers-reduced-motion: reduce) {
  .btn-luxury {
    transition: none;
    transform: none;
  }
  .btn-luxury:hover,
  .btn-luxury:active {
    box-shadow: none;
  }
}


/* Sections */
.section { padding: 6rem 0; }
.section--white { background: var(--bg-card); }

/* Info (reference-style infographic, uses original project icons) */
.info-ref {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle grain for the whole info block (same texture family as header/hero) */
.info-ref::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image: var(--hdr-noise);
  background-repeat: repeat;
  background-size: 240px 240px;
  opacity: 0.035;
  mix-blend-mode: soft-light;
}

/* Content above grain */
.info-ref > .container {
  position: relative;
  z-index: 1;
}

.info-ref-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1.12fr 1.1fr;
  gap: 2.8rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.info-ref-col {
  position: relative;
  min-width: 0;
}

.info-ref-col + .info-ref-col { padding-left: 2.2rem; }

.info-ref-col + .info-ref-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: rgba(0,0,0,0.06);
}

.info-ref-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.info-ref-head-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.42rem;
  line-height: 1.15;
  margin-top: 0.05rem;
}

/* Info section title: keep in one line on desktop (requested) */
.info-ref-title {
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  margin-bottom: 2.4rem;
}
.info-ref-title br { display: none; }

/* helper for controlled 2-line items (e.g., "Русская баня ...") */
.info-ref-line-nowrap{
  display: inline-block;
  white-space: nowrap;
}

/* icon shells (fallback uses the original PNGs; modern browsers use mask recolor) */
.info-ref-head-ic,
.info-ref-ic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(43,42,38,0.02);
  border: 1px solid rgba(43,42,38,0.06);
}

.info-ref-head-ic { margin-top: 0.06rem; }

.info-ref-head-ic img,
.info-ref-ic img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  /* quiet-luxury fallback: make the legacy colored PNGs muted */
  filter: grayscale(100%) saturate(0) brightness(0.45) contrast(1.1);
  opacity: 0.5;
}

@supports (-webkit-mask-image: url("")) or (mask-image: url("")) {
  .info-ref-head-ic img,
  .info-ref-ic img { display: none; }

  .info-ref-head-ic::before,
  .info-ref-ic::before {
    content: "";
    width: 28px;
    height: 28px;
    background: var(--text-main);
    opacity: 0.62;
    -webkit-mask-image: var(--ic);
    mask-image: var(--ic);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .info-ref-head-ic::before {
    width: 30px;
    height: 30px;
    opacity: 0.55;
  }
}

.info-ref-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.info-ref-list--dense { gap: 0.95rem; }

.info-ref-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.95rem;
  align-items: start;
}

.info-ref-copy {
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.65;
}

.info-ref-copy--muted { color: var(--text-muted); }

.info-ref-copy p { margin: 0; }

.info-ref-copy p + p { margin-top: 0.35rem; }

/* make the first bold segment behave like a title (matches the reference style) */
.info-ref-copy b,
.info-ref-copy strong {
  display: block;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.info-ref-copy--muted b,
.info-ref-copy--muted strong { color: var(--text-main); }

/* optional: slightly softer text after the title */
.info-ref-copy br { display: block; content: ""; margin-top: 0.22rem; }

/* one-line rows (used for "Бесплатные услуги" items etc.) */
.info-ref-item--nowrap { align-items: center; }

.info-ref-copy--nowrap {
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
}

.info-ref-copy--nowrap p { display: inline; }
.info-ref-copy--nowrap p + p { margin-top: 0; }
.info-ref-copy--nowrap br { display: none !important; }

/* special: force "Русская баня ..." to look compact (2 lines) */
.info-ref-copy--banya {
  font-size: 0.90rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.info-ref-copy--banya .info-ref-line-nowrap{ white-space: nowrap; }

@media (max-width: 560px) {
  .info-ref-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .info-ref-title { white-space: normal; }
  .info-ref-copy--nowrap { white-space: normal; }
  .info-ref-line-nowrap { white-space: normal; }

  .info-ref-col + .info-ref-col { padding-left: 0; }
  .info-ref-col + .info-ref-col::before { display: none; }

  .info-ref-head { justify-content: center; text-align: center; }

}

/* Rooms */

.rooms-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Desktop: keep all room cards on a single row (no wrapping) */
@media (min-width: 1024px) {
  .rooms-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
  }
}

.room-card {
  background: var(--bg-color);
  min-width: 0;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease;
}

.room-card:hover { transform: translateY(-5px); }

.room-img {
  height: 300px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img img { transform: scale(1.05); }

.room-details { padding: 1.8rem 1.7rem; text-align: center; }

.room-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  margin: 0.6rem 0 1rem;
  color: var(--text-muted);
}

.room-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.room-more {
  width: 100%;
  margin-top: 1rem;
  text-align: left;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 1rem;
}

.room-more summary {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--text-main);
  outline: none;
}

.room-more p { margin: 0.6rem 0 0; color: var(--text-muted); }

/* Comments */
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

/* Desktop: keep all comment cards on a single row (no wrapping) */
@media (min-width: 1024px) {
  .comments-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
  }
}

.comment-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.8rem;
  min-width: 0;
}

.comment-card img { width: 44px; margin: 0 auto 1rem; opacity: 0.85; }

.comment-text { font-style: italic; color: var(--text-muted); }

.comment-quality {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.comment-quality img { width: 14px; height: 14px; margin: 0; opacity: 0.75; }

/* Foto — Editorial Filmstrip (quiet luxury) */
.foto-editorial {
  display: grid;
  gap: 1.6rem;
}

.foto-editorial__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.9rem;
  position: relative;
  padding-bottom: 1.1rem;
}

.foto-editorial__head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.foto-editorial__title h2 {
  text-align: center;
  margin-bottom: 0.65rem;
}

.foto-editorial__subtitle {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0.02em;
}

.foto-editorial__counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.foto-editorial__counter-current {
  color: var(--text-main);
}

.foto-filmstrip {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 20px;
  margin: 0 -20px;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 20px;
  -webkit-overflow-scrolling: touch;
  /* Hide visible scrollbars (quiet luxury) */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.foto-filmstrip::-webkit-scrollbar { width: 0; height: 0; display: none; }

.foto-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.6);
}

.foto-slide.is-hero { width: min(82vw, 860px); }
.foto-slide:not(.is-hero) { width: min(56vw, 560px); }

.foto-slide__btn {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
}

.foto-slide img {
  width: 100%;
  height: clamp(280px, 34vw, 460px);
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

@media (hover: hover) {
  .foto-slide__btn:hover img {
    transform: scale(1.02);
    filter: contrast(1.03) saturate(1.02);
  }
}

.foto-slide__btn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(140,150,136,0.35);
}

@media (max-width: 720px) {
  .foto-filmstrip { gap: 1rem; }
  .foto-slide.is-hero { width: 88vw; }
  .foto-slide:not(.is-hero) { width: 78vw; }
  .foto-slide img { height: clamp(240px, 62vw, 360px); }
}

/* Lightbox (used by foto-filmstrip) */
.modal.modal--lightbox { background: rgba(59,58,54,0.68); }
.modal.modal--lightbox .modal-dialog {
  width: min(1120px, 96vw);
  padding: 0;
  overflow: hidden;
}

.lightbox-media {
  background: rgba(0,0,0,0.06);
}

.lightbox-media img {
  width: 100%;
  height: min(74vh, 720px);
  object-fit: contain;
  background: rgba(0,0,0,0.04);
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Contacts */
/* Map hero + editorial contact card (quiet luxury) */
.section.section--contacts { padding: 0; }

/* End-of-page wrapper: ensures Contacts + Footer fill the viewport on tall screens
   so the previous section (Gallery) never becomes visible above them. */
.site-end{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Let Contacts grow to fill the remaining viewport height so the map
   naturally expands and there is no “gap line” before the footer. */
.site-end > section.section--contacts{
  flex: 1 1 auto;
  display: flex;
}
.site-end > section.section--contacts > .contacts-hero{
  flex: 1 1 auto;
}
.site-end > footer.footer{
  margin-top: 0;
  border-top: 0;
}

.contacts-hero {
  position: relative;
  overflow: hidden;
  background: rgba(250,248,243,0.72);
  min-height: 520px;
}
/* soft editorial veil to reduce “tech” feel */
.contacts-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(250,248,243,0.22) 0%,
    rgba(250,248,243,0.03) 50%,
    rgba(250,248,243,0.22) 100%
  );
}

.contacts-hero__inner {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4.75rem 0;
  /* Do not block interactions with the map (incl. built-in footer link) */
  pointer-events: none;
}

.contacts-hero__card {
  text-align: left;
  position: relative;
  width: min(560px, 100%);
  margin: 3.2rem 0;
  padding: 2.1rem 2rem;
  background: rgba(250,248,243,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);
  /* keep the card interactive while allowing map interactions around it */
  pointer-events: auto;
}

/* Nudge the contact card further to the left on wide screens (more editorial, less "centered") */
@media (min-width: 1100px) {
  .contacts-hero__card {
    margin-left: clamp(-96px, -5vw, -24px);
  }
}

/* Card header (mirrors hero tone, but smaller) */
.contacts-card-head{
  text-align: center;
  margin-bottom: 1.25rem;
}
.contacts-card-title{
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.0vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}
.contacts-card-desc{
  margin: 0.3rem auto 0;
  max-width: 30rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Remove default paragraph spacing inside the descriptor to keep it close to the title */
.contacts-card-desc p{ margin: 0; }

.contacts-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.15rem;
}

/* Keep the logo calm and consistent with the rest of the project */
.contacts-brand img { max-height: 54px; opacity: 0.9; }

/* Social strip (quiet luxury: small monoline buttons) */
.contacts-socials {
  width: 100%;
  justify-content: center;
  gap: 0.65rem;
  position: relative;
  padding: 0.45rem 0 0;
}

.contacts-socials--bottom {
  margin-top: 1.35rem;
}

.contacts-socials::before {
  display: none;
}

.contacts-socials .social-icon {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  color: rgba(42,41,37,0.78);
  background: rgba(250,248,243,0.94);
  border-color: rgba(0,0,0,0.14);
}

.contacts-socials .social-icon:hover {
  transform: translateY(-1px);
  background: rgba(250,248,243,0.98);
  border-color: rgba(0,0,0,0.20);
}

.contacts-socials .social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-meta {
  margin-top: 1.05rem;
}

.contacts-row {
  display: flex;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: center;
}


.contacts-ico {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--text-muted);
  opacity: 0.9;
}

.contacts-ico svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-text { color: var(--text-muted); word-break: break-word; }

.contacts-phone {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 1.12rem;
  color: var(--text-main);
}

.contacts-email{
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  color: var(--text-main);
}
.contacts-email:hover{
  color: var(--accent);
}

.contacts-row--email{
  border-bottom: 0;
}

.contacts-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.contacts-openmap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.contacts-openmap::after {
  content: "↗";
  opacity: 0.75;
  transform: translateY(-1px);
}

.contacts-openmap:hover {
  color: var(--text-main);
}

.contacts-actions .btn-luxury { width: 100%; }

@media (max-width: 920px) {
  .contacts-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .contacts-hero::before {
    /* keep the veil, but lighter on mobile */
    background: linear-gradient(180deg,
      rgba(250,248,243,0.38) 0%,
      rgba(250,248,243,0.06) 65%,
      rgba(250,248,243,0.38) 100%
    );
  }

  .contacts-hero__inner {
    display: block;
    min-height: auto;
    order: 1;
  }

  .contacts-hero__card {
    width: auto;
    margin: 18px;
    padding: 1.8rem 1.6rem;
  }

  .contacts-actions {
    grid-template-columns: 1fr;
  }
  .contacts-actions .btn-luxury { width: 100%; }
}

/* Footer */

.footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 4.2rem 0 0;
  background: rgba(255,255,255,0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand img:not(.footer-brand__logo) { max-height: 44px; opacity: 0.85; }

.footer-brand__logo {
  max-height: 140px;
  width: auto;
  display: block;
  opacity: 1;
}

.footer-tagline { color: var(--text-muted); margin-top: 0.9rem; }

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

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

.footer-link { color: var(--text-muted); }
.footer-link:hover { color: var(--text-main); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1.2rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Modal */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(59,58,54,0.55);
  z-index: 1000;
}

.modal[hidden] { display: none; }

.modal-dialog {
  width: min(520px, 100%);
  background: var(--bg-card);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
}

.modal-close:hover { background: var(--bg-card); }

.form {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(242,240,235,0.35);
  font: inherit;
}

.input:focus { border-color: rgba(140,150,136,0.9); background: rgba(242,240,235,0.55); }

.form-status { font-size: 0.95rem; color: var(--text-muted); }
.form-status[data-ok="0"] { color: #7c2d2d; }
.form-status[data-ok="1"] { color: var(--text-muted); }

/* Responsive */
@media (max-width: 920px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-image img { height: 420px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-actions .btn-luxury { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  h1 { font-size: 2.4rem; }
  .nav-menu { display: none; }
  .site-header__inner { flex-wrap: nowrap; max-width: 100vw; }
  .header-logo { flex-shrink: 1; min-width: 0; }
  .header-logo .logo-img { height: 28px; max-width: 55vw; object-fit: contain; object-position: left; }
  .header-right { margin-left: auto; flex-shrink: 0; }
  .header-right .btn-luxury { font-size: 0.6rem; letter-spacing: 0.12em; }
  .site-header .header-right .btn-luxury--cta { padding: 9px 16px; }
  .hero-section { padding: 6rem 0 4.5rem; min-height: 70vh; }
  .hero-features { grid-template-columns: 1fr; }
}

/* Fix: remove 1px seam between header and hero (Chrome/Windows) */
.site-header { border-bottom: 0 !important; }
.site-header.is-fixed { border-bottom: 0 !important; }
.hero-section { margin-top: -1px; }


/* Info icon override (SVG) */
/* icon shells (SVG, quiet luxury) */
.info-ref-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(43,42,38,0.02);
  border: 1px solid rgba(43,42,38,0.08);
  color: var(--text-main);
  flex: 0 0 38px;
}

.info-ref-ic svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.info-ref-item--muted .info-ref-ic { opacity: 0.75; }

.info-ref-head-ic, .info-ref-head-ic::before, .info-ref-ic::before { content: none !important; }

/* =========================================================
   ABOVE THE FOLD FIX (Header + Hero = 1 viewport)
   - Header is always fixed (no spacer, no layout jump)
   - Hero is exactly 100vh (svh/dvh) and starts at the very top
   - Video is hard-cover (no top/bottom bars)
   ========================================================= */

:root { --hdr-h: 96px; }

/* Always-fixed header (prevents first-scroll jitter and seams) */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-bottom: 0 !important;
}

/* Disable spacer if previous scripts injected it */
.header-spacer {
  display: none !important;
  height: 0 !important;
}

/* Hero fits the entire viewport. Header overlays; hero reserves space via padding-top. */
.hero-section {
  margin-top: 0 !important;
  height: 100vh !important;
  min-height: 100vh !important;
  padding-top: calc(var(--hdr-h) + clamp(18px, 3vh, 34px)) !important;
  padding-bottom: clamp(44px, 6vh, 96px) !important;
}

@supports (height: 100svh) {
  .hero-section { height: 100svh !important; min-height: 100svh !important; }
}

@supports (height: 100dvh) {
  .hero-section { height: 100dvh !important; min-height: 100dvh !important; }
}

/* Video hard-cover: center + min-size prevents letterboxing */
.hero-media {
  overflow: hidden;
  background: var(--bg-color);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.02);
  object-fit: cover;
  object-position: center;
}

/* Veil (2026): tint video (not just darken) — deep green + warm brown mesh */
:root{
  --veil-green-top: rgba(16, 43, 27, 0.58);
  --veil-green-mid: rgba(16, 43, 27, 0.18);
  --veil-brown-bot: rgba(63, 43, 27, 0.50);
  --veil-sage:      rgba(155, 168, 134, 0.18);
  --veil-amber:     rgba(168, 135, 102, 0.14);
  --veil-noise-opacity: 0.05;
}

.hero-veil {
  background:
    radial-gradient(75% 65% at 50% 18%, var(--veil-sage), transparent 62%),
    radial-gradient(70% 70% at 18% 62%, var(--veil-amber), transparent 64%),
    radial-gradient(60% 70% at 84% 58%, rgba(60, 75, 45, 0.16), transparent 66%),
    linear-gradient(180deg,
      var(--veil-green-top) 0%,
      var(--veil-green-mid) 48%,
      var(--veil-brown-bot) 100%
    ) !important;
}

/* ultra-subtle grain so the veil reads as “matte fabric/paper” */
.hero-veil::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--hdr-noise);
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: var(--veil-noise-opacity);
  mix-blend-mode: soft-light;
}
/* Ensure hero content stays above veil/video */
.hero-content { position: relative; z-index: 2; }
/* === HERO VIDEO: убрать нижнюю полосу + спрятать водяной знак (crop) === */
:root{
  --hero-bleed: 4px;      /* перекрытие по краям (швы) */
  --hero-zoom: 1.14;      /* увеличить видео */
  --hero-shift-x: -2.2vw; /* сместить влево (прячет водяной знак справа) */
  --hero-shift-y: 0px;    /* если нужно вверх/вниз */
}

/* перекрываем возможные швы на границах */
.hero-media,
.hero-veil{
  inset: calc(var(--hero-bleed) * -1) !important;
}

/* жёсткий cover + увеличенный кадр */
.hero-media .hero-video{
  top: 50% !important;
  left: 50% !important;
  width: 112% !important;
  height: 112% !important;
  min-width: 112% !important;
  min-height: 112% !important;

  object-fit: cover !important;
  object-position: center !important;

  transform:
    translate3d(-50%, -50%, 0)
    translate3d(var(--hero-shift-x), var(--hero-shift-y), 0)
    scale(var(--hero-zoom)) !important;

  will-change: transform;
}

/* на больших экранах обычно нужен чуть больший crop */
@media (min-width: 1200px){
  :root{ --hero-zoom: 1.18; --hero-shift-x: -2.6vw; }
}

/* на очень узких — поменьше смещение, чтобы не “съесть” композицию */
@media (max-width: 480px){
  :root{ --hero-zoom: 1.16; --hero-shift-x: -1.2vw; }
}


/* ================================
   INFO (Bento / Quiet Luxury)
================================= */

#info .info-ref-title{
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}


.info-ref .info-bento{
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: 26px;
  align-items: stretch;
}

.info-bento-hero,
.info-bento-card,
.info-bento-panel{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
  background: rgba(255,255,255,.82);
}

.info-bento-hero{
  position: relative;
  min-height: 460px;
  background: #0f0f0f;
}

.info-bento-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(.92) contrast(.95);
  opacity: .95;
}

.info-bento-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.32) 60%, rgba(0,0,0,.10) 100%);
}

.info-bento-hero-content{
  position: relative;
  z-index: 1;
  padding: 38px;
  color: #fff;
  max-width: 560px;
}

.info-bento-overline{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  opacity: .86;
}

.info-bento-hero-title{
  margin: 10px 0 0;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.06;
}

.info-bento-hero-points{
  margin-top: 18px;
  display: grid;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

.info-bento-point{
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.32);
}

.info-bento-card{
  padding: 26px 26px 22px;
}

/* unified right panel (floating) */
.info-bento-panel{
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.info-bento-panel-section{
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
}

.info-bento-panel-divider{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 0 26px;
}

/* push note to the bottom for cleaner rhythm */
.info-bento-note--bottom{
  margin-top: auto;
}

.info-bento-card-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 18px;
}


.info-bento-tags{
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-bento-tag{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1;
  color: var(--lux-ink, #141414);
}

.info-bento-tag--muted{
  background: rgba(0,0,0,.03);
}

.info-bento-tags--chips{
  margin-top: 16px;
}

.info-bento-tag--btn{
  background: rgba(255,255,255,.86);
  border-color: rgba(0,0,0,.12);
  padding: 10px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  letter-spacing: .02em;
}

@media (hover:hover){
  .info-bento-tag--btn:hover{
    background: rgba(255,255,255,.92);
    border-color: rgba(0,0,0,.18);
  }
}

.info-bento-tag--muted.info-bento-tag--btn{
  background: rgba(0,0,0,.03);
  box-shadow: none;
}

/* one-line note at the bottom of cards (e.g., linen change / prices) */
.info-bento-note{
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(140,150,136,0.08);
  border-left: 2px solid rgba(140,150,136,0.35);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0,0,0,.7);
  letter-spacing: 0.01em;
}

.info-bento-note--muted{
  color: rgba(0,0,0,.65);
}

.info-bento-note--muted > div + div{
  margin-top: 8px;
}

.info-bento-details{
  margin-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 12px;
}

.info-bento-details summary{
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  letter-spacing: .06em;
  color: rgba(0,0,0,.72);
  list-style: none;
}

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

.info-bento-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.info-bento-list li{
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  color: rgba(0,0,0,.78);
  line-height: 1.45;
}

.info-bento-list li:first-child{
  border-top: 0;
}


.info-bento-lines{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px 18px;
}

.info-bento-lines--two{
  grid-template-columns: 1fr 1fr;
}

.info-bento-lines li{
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(0,0,0,.78);
}

.info-bento-lines li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,.28);
}
/* Responsive */
@media (max-width: 980px){
  .info-ref .info-bento{
    grid-template-columns: 1fr;
  }
  .info-bento-panel{
    min-height: auto;
  }
  .info-bento-hero{
    grid-row: auto;
    min-height: 360px;
  }
  .info-bento-hero::after{
    background: linear-gradient(0deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.18) 70%);
  }
  .info-bento-hero-content{
    max-width: 100%;
    padding: 30px;
  }
}

@media (max-width: 560px){
  .info-bento-card, .info-bento-panel-section{ padding: 20px; }
  .info-bento-panel-divider{ margin: 0 20px; }
  .info-bento-hero-content{ padding: 22px; }
  .info-bento-tag{ padding: 9px 10px; font-size: 13px; }
  .info-bento-lines--two{ grid-template-columns: 1fr; }
}

/* =====================================
   HERO VEIL GRADIENT + SUBTLE PARALLAX
   - quieter veil: gradient bottom->top
   - parallax hook via CSS var --hero-parallax
   - reduce hero height on mobile to 70vh
===================================== */

.hero-veil{
  background: linear-gradient(
    to top,
    rgba(43, 42, 38, 0.45) 0%,
    rgba(43, 42, 38, 0.25) 50%,
    rgba(43, 42, 38, 0.05) 100%
  ) !important;
}

.hero-media{ --hero-parallax: 0px; }

/* Keep existing crop/zoom/shift variables and add parallax as a separate translate */
.hero-media .hero-video{
  transform:
    translate3d(-50%, -50%, 0)
    translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0)
    translate3d(0, var(--hero-parallax, 0px), 0)
    scale(var(--hero-zoom, 1.02)) !important;
}

@media (max-width: 680px){
  .hero-section{
    height: 70vh !important;
    min-height: 70vh !important;
  }
}

@supports (height: 100svh){
  @media (max-width: 680px){
    .hero-section{ height: 70svh !important; min-height: 70svh !important; }
  }
}

@supports (height: 100dvh){
  @media (max-width: 680px){
    .hero-section{ height: 70dvh !important; min-height: 70dvh !important; }
  }
}


/* ================================================================
   2. HERO TYPOGRAPHY (lux_hero_typography.css)
   ================================================================ */
/* Hero typography — Variant B refined: descriptor below title */

.hero-section{ position: relative; }

/* Title: Montserrat, light */
.hero-section h1,
.hero-section .hero-title{
  font-family: var(--font-sans);
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.05;
  margin: 0;
  font-size: clamp(2.9rem, 6.2vw, 5.2rem);
  text-align: center;
}

/* Descriptor: below title, centered, slightly larger */
.hero-section .hero-text,
.hero-section .hero-descriptor{
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: none;

  font-size: clamp(1.15rem, 1.8vw, 1.55rem);

  /* below title */
  position: static;
  margin: clamp(14px, 2.2vh, 22px) auto 0;

  width: fit-content;
  max-width: min(720px, 92vw);
  text-align: center;
  padding: 0 18px;

  color: var(--text-on-header, #F6F2E9);
  text-shadow: 0 1px 18px rgba(0,0,0,.25);
}

/* Keep hero container above video */
.hero-section .lux-container,
.hero-section .hero-content{
  position: relative;
  z-index: 5;
}

@media (max-width: 560px){
  .hero-section .hero-text,
  .hero-section .hero-descriptor{
    max-width: 92vw;
    padding: 0 14px;
    margin-top: 14px;
  }
}


/* ================================================================
   3. INFO BLOCK v2 (lux_info_v2.css)
   ================================================================ */
/* ============================================================
   INFO BLOCK v2 — "Quiet Luxury" Redesign
   - Visible section title with editorial spacing
   - Glassmorphism panel with depth
   - Refined bento chips with sage micro-accents
   - Scroll-reveal entrance animations
   - Generous breathing room
   ============================================================ */

/* --- CSS custom props (scoped to info) --- */
.info-ref {
  --info-sage: #8C9688;
  --info-sage-light: rgba(140, 150, 136, 0.12);
  --info-sage-glow: rgba(140, 150, 136, 0.18);
  --info-glass: rgba(255, 255, 255, 0.62);
  --info-glass-border: rgba(255, 255, 255, 0.38);
  --info-ink: #1a1a18;
  --info-muted: #6B675E;
  --info-divider: rgba(0, 0, 0, 0.06);
  --info-reveal-duration: 0.8s;
  --info-reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Section container: more vertical breathing room --- */
.info-ref.section {
  padding: 7.5rem 0;
}

/* --- Visible section title (override sr-only) --- */
#info .info-ref-title {
  /* Cancel sr-only */
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 0 3.2rem 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;

  /* Editorial typography */
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--info-muted);
  line-height: 1.2;
}

/* Thin decorative line under section title */
#info .info-ref-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--info-sage);
  margin: 1.4rem auto 0;
  opacity: 0.5;
}

/* --- Bento grid: wider gap, more air --- */
.info-ref .info-bento {
  margin-top: 0;
  gap: 28px;
  grid-template-columns: minmax(0, 7.5fr) minmax(0, 4.5fr);
}

/* --- Shared card treatment: refined glass --- */
.info-bento-hero,
.info-bento-card,
.info-bento-panel {
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 24px 56px rgba(0, 0, 0, 0.04);
  background: var(--info-glass);
}

/* =====================
   HERO CARD (left)
   ===================== */
.info-bento-hero {
  min-height: 500px;
  border-radius: 24px;
}

/* Softer, more cinematic image overlay — heavier at bottom where text sits */
.info-bento-hero::after {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.55) 35%,
      rgba(0, 0, 0, 0.22) 65%,
      rgba(0, 0, 0, 0.10) 100%
    );
}

/* Image: tame bright pool photos */
.info-bento-hero::before {
  filter: saturate(0.82) contrast(0.92) brightness(0.85);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gentle zoom on hover */
@media (hover: hover) {
  .info-bento-hero:hover::before {
    transform: scale(1.04);
  }
}

/* Hero content: more generous padding */
.info-bento-hero-content {
  padding: 44px 46px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

/* Overline: sage accent underline */
.info-bento-overline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 1;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.info-bento-hero .info-bento-overline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: var(--info-sage);
  opacity: 0.7;
}

/* Hero title: refined serif */
.info-bento-hero-title {
  margin: 16px 0 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Points: elegant left-accent with sage */
.info-bento-hero-points {
  margin-top: 24px;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.info-bento-point {
  padding: 12px 0 12px 14px;
  border-left: none;
  opacity: 0.92;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-bento-point-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.info-bento-point-heading::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--info-sage, #8C9688);
  flex-shrink: 0;
}

.info-bento-point-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  padding-left: 13px;
}

@media (hover: hover) {
  .info-bento-point:hover {
    opacity: 1;
  }
}

/* =====================
   PANEL (right) — Glassmorphism
   ===================== */
.info-bento-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.45);
  min-height: 500px;
}

/* Panel sections: more breathing room */
.info-bento-panel-section {
  padding: 30px 30px 26px;
}

/* Divider: sage-tinted */
.info-bento-panel-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--info-sage-light) 20%,
    var(--info-sage-light) 80%,
    transparent 100%
  );
  margin: 0 30px;
}

/* Card head: icon alignment */
.info-bento-card-head {
  gap: 16px;
  align-items: flex-start;
}

/* Overline in panel: sage accent */
.info-bento-panel .info-bento-overline {
  color: var(--info-muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  padding-bottom: 0;
}

.info-bento-panel .info-bento-overline::after {
  display: none;
}



/* =====================
   CHIPS / TAGS — Luxury redesign
   ===================== */
.info-bento-tags--chips {
  margin-top: 20px;
  gap: 8px;
}

/* Base chip: refined capsule */
.info-bento-tag--btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--info-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  cursor: default;
}

/* Sage dot indicator before text */
.info-bento-tag--btn::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--info-sage);
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

@media (hover: hover) {
  .info-bento-tag--btn:hover {
    transform: translateY(-1px);
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.06),
      0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: var(--info-sage-glow);
    background: rgba(255, 255, 255, 1);
  }
  .info-bento-tag--btn:hover::before {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Muted variant (paid services) */
.info-bento-tag--muted.info-bento-tag--btn {
  background: rgba(0, 0, 0, 0.025);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: none;
  color: var(--info-muted);
}

.info-bento-tag--muted.info-bento-tag--btn::before {
  background: var(--info-muted);
  opacity: 0.35;
}

@media (hover: hover) {
  .info-bento-tag--muted.info-bento-tag--btn:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .info-bento-tag--muted.info-bento-tag--btn:hover::before {
    opacity: 0.6;
  }
}

/* =====================
   NOTES — Bottom notes refinement
   ===================== */
.info-bento-note {
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(140,150,136,0.08);
  border-left: 2px solid rgba(140,150,136,0.35);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.01em;
}

.info-bento-note--muted {
  color: rgba(0, 0, 0, 0.65);
}


/* =====================
   SCROLL-REVEAL ANIMATIONS
   ===================== */

/* Initial state: elements hidden below */
.info-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--info-reveal-duration) var(--info-reveal-ease),
    transform var(--info-reveal-duration) var(--info-reveal-ease);
  will-change: opacity, transform;
}

/* Stagger children */
.info-reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.info-reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.info-reveal[data-reveal-delay="3"] { transition-delay: 0.35s; }
.info-reveal[data-reveal-delay="4"] { transition-delay: 0.5s; }

/* Revealed state */
.info-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero card: slide from left */
.info-bento-hero.info-reveal {
  transform: translateX(-40px) translateY(0);
  opacity: 0;
}
.info-bento-hero.info-reveal.is-revealed {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

/* Panel: slide from right */
.info-bento-panel.info-reveal {
  transform: translateX(40px) translateY(0);
  opacity: 0;
}
.info-bento-panel.info-reveal.is-revealed {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

/* Tags: staggered fade-up (applied via JS) */
.info-bento-tag.info-chip-reveal {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-bento-tag.info-chip-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* =====================
   SUBTLE GRAIN OVERLAY — Refined
   ===================== */
.info-ref::before {
  opacity: 0.025;
  mix-blend-mode: multiply;
}


/* =====================
   RESPONSIVE REFINEMENTS
   ===================== */
@media (max-width: 980px) {
  .info-ref.section {
    padding: 5.5rem 0 6rem;
  }

  .info-ref .info-bento {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .info-bento-hero {
    min-height: 380px;
  }

  .info-bento-panel {
    min-height: auto;
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
  }

  /* On mobile, both slide up instead of left/right */
  .info-bento-hero.info-reveal,
  .info-bento-panel.info-reveal {
    transform: translateX(0) translateY(32px);
  }
  .info-bento-hero.info-reveal.is-revealed,
  .info-bento-panel.info-reveal.is-revealed {
    transform: translateX(0) translateY(0);
  }

  .info-bento-hero::after {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.38) 50%,
      rgba(0, 0, 0, 0.12) 100%
    );
  }

  .info-bento-hero-content {
    justify-content: flex-end;
    padding: 32px;
  }
}

@media (max-width: 560px) {
  .info-ref.section {
    padding: 4rem 0 4.5rem;
  }

  #info .info-ref-title {
    font-size: 1.35rem;
    margin-bottom: 2.2rem !important;
  }

  .info-bento-panel-section {
    padding: 22px;
  }

  .info-bento-panel-divider {
    margin: 0 22px;
  }

  .info-bento-hero-content {
    padding: 22px;
  }

  .info-bento-tag--btn {
    padding: 9px 13px;
    font-size: 12.5px;
  }

  .info-bento-tag--btn::before {
    width: 4px;
    height: 4px;
    margin-right: 6px;
  }

  .info-bento-tags--chips {
    gap: 6px;
  }
}

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
  .info-reveal,
  .info-bento-tag.info-chip-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .info-bento-hero::before {
    transition: none !important;
  }
}


/* ================================================================
   4. ROOMS BLOCK v2 (lux_rooms_v2.css)
   ================================================================ */
/* ============================================================
   ROOMS BLOCK v2 — "Quiet Luxury" Redesign
   
   Three major improvements:
   1. Price: Montserrat 300 sans-serif (clean whisper)
   2. Hover image slider with crossfade
   3. Chips instead of <details> for room amenities
   ============================================================ */

#rooms {
  --room-sage: #8C9688;
  --room-sage-light: rgba(140, 150, 136, 0.12);
  --room-sage-glow: rgba(140, 150, 136, 0.22);
  --room-ink: #1a1a18;
  --room-muted: #6B675E;
  --room-radius: 20px;
  --room-reveal-duration: 0.8s;
  --room-reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Section breathing room --- */
#rooms.section {
  padding: 7.5rem 0;
}

/* --- Section title: editorial --- */
#rooms > .lux-container > h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #4A4D47;
  line-height: 1.2;
  margin-bottom: 3.4rem;
}

#rooms > .lux-container > h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--room-sage);
  margin: 1.4rem auto 0;
  opacity: 0.5;
}

/* --- Grid 2×2 --- */
#rooms .rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  counter-reset: room-counter;
}

@media (min-width: 1024px) {
  #rooms .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 2.2rem;
  }
}

/* --- Card --- */
#rooms .room-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--room-radius);
  overflow: hidden;
  position: relative;
  counter-increment: room-counter;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 4px 16px rgba(0,0,0,0.04),
    0 16px 48px rgba(0,0,0,0.03);
  transition:
    transform 0.6s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.6s cubic-bezier(0.16,1,0.3,1),
    border-color 0.4s ease;
}

@media (hover: hover) {
  #rooms .room-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 2px 4px rgba(0,0,0,0.04),
      0 8px 24px rgba(0,0,0,0.07),
      0 32px 64px rgba(0,0,0,0.06);
    border-color: var(--room-sage-glow);
  }
}

/* --- Number badge --- */
#rooms .room-card::before {
  content: counter(room-counter, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.82);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}


/* =====================================================
   1. HOVER IMAGE SLIDER — crossfade on hover
   ===================================================== */

#rooms .room-img {
  position: relative;
  height: auto;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8e6e1;
}

/* All images stacked */
#rooms .room-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

/* First image visible by default */
#rooms .room-img img:first-child,
#rooms .room-img img.is-active {
  opacity: 1;
}

/* Only active image is visible */
#rooms .room-img img.is-active {
  opacity: 1;
}

#rooms .room-img img:not(.is-active) {
  opacity: 0;
}

/* Subtle zoom on active during hover */
@media (hover: hover) {
  #rooms .room-card:hover .room-img img.is-active {
    transform: scale(1.03);
    filter: saturate(0.96) contrast(1.03) brightness(1.01);
  }
}

/* Vignette */
#rooms .room-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.04) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,0,0,0.08) 100%
    );
}

/* --- Slide progress dots --- */
.room-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

@media (hover: hover) {
  #rooms .room-card:hover .room-slider-dots {
    opacity: 1;
  }
}

.room-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  transition:
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.room-slider-dot.is-active {
  background: rgba(255,255,255,0.92);
  transform: scale(1.3);
}

/* Show dots on touch devices too */
@media (hover: none) {
  .room-slider-dots {
    opacity: 0.7;
  }
}


/* =====================================================
   2. PRICE — Montserrat 300, clean whisper
   ===================================================== */

#rooms .room-price {
  font-family: var(--font-sans);
  font-weight: 300;
  font-style: normal;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0 0 1.4rem 0;
  color: var(--room-muted);
  padding-left: 16px;
  border-left: 2px solid var(--room-sage);
}


/* =====================================================
   3. CHIPS instead of <details>
   ===================================================== */

#rooms .room-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

#rooms .room-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--room-ink);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 2px 8px rgba(0,0,0,0.02);
  cursor: default;
  transition:
    transform 0.4s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Sage dot before chip text */
#rooms .room-chip::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--room-sage);
  margin-right: 7px;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

@media (hover: hover) {
  #rooms .room-chip:hover {
    transform: translateY(-1px);
    box-shadow:
      0 2px 6px rgba(0,0,0,0.05),
      0 6px 16px rgba(0,0,0,0.04);
    border-color: var(--room-sage-glow);
  }
  #rooms .room-chip:hover::before {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Hide old <details> if still in DOM */
#rooms .room-more {
  display: none;
}


/* =====================================================
   DETAILS AREA — grid layout, price + button on one row
   ===================================================== */

#rooms .room-details {
  text-align: left;
  padding: 1.8rem 2rem 2rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 1.2rem;
}

/* Title: full width */
#rooms .room-details h3 {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--room-ink);
  margin: 0 0 0.8rem 0;
}

/* Price: left column */
#rooms .room-price {
  grid-column: 1;
  margin-bottom: 0;
}

/* Button: right column, vertically centered with price */
#rooms .room-actions {
  grid-column: 2;
  justify-content: flex-end;
}

/* Chips: full width below */
#rooms .room-chips {
  grid-column: 1 / -1;
}


/* =====================================================
   SCROLL-REVEAL
   ===================================================== */

.room-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--room-reveal-duration, 0.8s) var(--room-reveal-ease, cubic-bezier(0.16,1,0.3,1)),
    transform var(--room-reveal-duration, 0.8s) var(--room-reveal-ease, cubic-bezier(0.16,1,0.3,1));
  will-change: opacity, transform;
}

.room-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.room-title-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16,1,0.3,1),
    transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.room-title-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


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

@media (max-width: 980px) {
  #rooms.section { padding: 5.5rem 0; }
  #rooms .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}

@media (max-width: 680px) {
  #rooms .rooms-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 480px;
    margin: 0 auto;
  }
  #rooms .room-img { aspect-ratio: 16 / 9; }
  #rooms .room-details { padding: 1.5rem 1.5rem 1.6rem; }
  #rooms .room-card::before { top: 12px; left: 12px; font-size: 11px; padding: 5px 10px; }
  #rooms > .lux-container > h2 { margin-bottom: 2.4rem; }

  #rooms .room-chip { padding: 6px 10px; font-size: 11.5px; }
  #rooms .room-chip::before { width: 3px; height: 3px; margin-right: 5px; }

  /* Show dots always on mobile */
  .room-slider-dots { opacity: 0.6; }
}

@media (max-width: 440px) {
  /* Stack price + button vertically on very small screens */
  #rooms .room-details {
    grid-template-columns: 1fr;
  }
  #rooms .room-actions {
    grid-column: 1;
    justify-content: flex-start;
    margin-top: 0.8rem;
  }
}

@media (max-width: 560px) {
  #rooms.section { padding: 4rem 0; }
  #rooms > .lux-container > h2 { font-size: 1.35rem; }
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .room-reveal,
  .room-title-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  #rooms .room-card { transition: none; }
  #rooms .room-img img { transition: none !important; }
}


/* ================================================================
   5. COMMENTS/REVIEWS v2 (lux_comments_v2.css)
   ================================================================ */
/* ============================================================
   COMMENTS / REVIEWS BLOCK v2 — Fixed
   
   - Two-column bento: Yandex (larger) + Google
   - No CTA card
   - Stars under rating, bigger and more visible
   - Rating: Montserrat 300 (matching rooms)
   - Faster quote rotation (3s)
   ============================================================ */

#comments {
  --rev-sage: #8C9688;
  --rev-sage-light: rgba(140, 150, 136, 0.12);
  --rev-sage-glow: rgba(140, 150, 136, 0.22);
  --rev-ink: #1a1a18;
  --rev-muted: #4A4D47;
  --rev-radius: 22px;
}

#comments.section {
  padding: 7.5rem 0;
}

/* --- Title --- */
#comments > .lux-container > h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--rev-muted);
  line-height: 1.2;
  margin-bottom: 3.4rem;
}

#comments > .lux-container > h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--rev-sage);
  margin: 1.4rem auto 0;
  opacity: 0.5;
}

/* Hide old comments grid if still in DOM */
#comments .comments-grid {
  display: none;
}


/* =====================
   BENTO GRID — three columns
   ===================== */
#comments .reviews-bento {
  display: grid;
  grid-template-columns: 5fr 4fr 4fr;
  gap: 22px;
  align-items: stretch;
}


/* =====================
   CARD BASE
   ===================== */
#comments .review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.4rem 2.6rem;
  border-radius: var(--rev-radius);
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  color: var(--rev-ink);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}

@media (hover: hover) {
  #comments .review-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.04),
      0 8px 24px rgba(0, 0, 0, 0.07),
      0 28px 56px rgba(0, 0, 0, 0.05);
    border-color: var(--rev-sage-glow);
  }
}

/* External link arrow */
#comments .review-card::after {
  content: "→";
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--rev-sage);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  #comments .review-card:hover::after {
    opacity: 0.8;
    transform: translateX(0);
  }
}


/* =====================
   CARD HEADER: vertical axis — logo, then score, then label
   ===================== */
.review-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

.review-card__logo {
  height: 26px;
  width: auto;
  opacity: 0.75;
  object-fit: contain;
  flex-shrink: 0;
}

/* Rating: stacked vertically, centered */
.review-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

/* Score: Montserrat 300, LARGE accent */
.review-card__score {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--rev-ink);
}

.review-card--primary .review-card__score {
  font-size: 4rem;
}

.review-card__score-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rev-sage);
  line-height: 1.3;
  white-space: nowrap;
  margin-top: 0.2rem;
}


/* =====================
   STARS — hidden (minimal mode)
   ===================== */
.review-card__stars {
  display: none;
}

.review-card__star {
  width: 18px;
  height: 18px;
  color: #C4A95A;
}

.review-card--primary .review-card__star {
  width: 20px;
  height: 20px;
}

.review-card__star svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.review-card__star--empty {
  color: #D6D3CC;
}

.review-card__star--half {
  color: #D4C48A;
}


/* =====================
   REVIEW QUOTES
   ===================== */
.review-card__quotes {
  position: relative;
  width: 100%;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  /* min-height will be set by JS based on tallest quote */
}

.review-card__quote {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.4rem;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card__quote.is-active {
  opacity: 1;
}

.review-card__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rev-muted);
  padding: 0;
  border: none;
  margin: 0;
  position: relative;
}

.review-card__quote-text::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--rev-sage);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.review-card--primary .review-card__quote-text {
  font-size: 1.08rem;
  line-height: 1.65;
}

.review-card__quote-author {
  margin-top: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(43, 42, 38, 0.65);
}

/* Dots centered */
.review-card__dots {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 1.4rem;
  justify-content: center;
}

.review-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transition:
    background 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card__dot.is-active {
  background: var(--rev-sage);
  transform: scale(1.35);
}


/* =====================
   CATEGORIES (rating bars) — primary card only
   ===================== */
.review-card__categories {
  display: grid;
  gap: 10px;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-cat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-cat__label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--rev-muted);
  min-width: 100px;
  flex-shrink: 0;
}

.review-cat__bar {
  flex: 1;
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.review-cat__fill {
  height: 100%;
  background: var(--rev-sage);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-cat__value {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--rev-muted);
  min-width: 24px;
  text-align: right;
}


/* =====================
   SCROLL REVEAL
   ===================== */
.review-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.review-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.review-title-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-title-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 980px) {
  #comments.section { padding: 5.5rem 0; }
  #comments .reviews-bento {
    grid-template-columns: 1fr 1fr;
  }
  /* 2GIS card spans full width on tablet */
  #comments .review-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  #comments .reviews-bento {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #comments .review-card:nth-child(3) {
    grid-column: auto;
  }

  #comments .review-card {
    padding: 1.8rem 1.6rem;
  }

  .review-card--primary .review-card__score {
    font-size: 3.2rem;
  }
}

@media (max-width: 560px) {
  #comments.section { padding: 4rem 0; }
  #comments > .lux-container > h2 { font-size: 1.35rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .review-reveal,
  .review-title-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .review-card__quote { transition: none !important; }
  .review-cat__fill { transition: none !important; }
}


/* ================================================================
   6. GALLERY v2 (lux_gallery_v2.css)
   ================================================================ */
/* ============================================================
   GALLERY v2 — Hero + Grid + Self-contained Lightbox
   ============================================================ */

/* Hide old filmstrip */
#foto .foto-editorial { display: none !important; }

/* Wrapper */
.gallery-v2 {
  display: grid;
  gap: 1.6rem;
}

/* Title */
.gallery-v2__head {
  text-align: center;
  margin-bottom: 0.4rem;
}

.gallery-v2__head h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
  margin: 0;
}

.gallery-v2__head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #8C9688;
  margin: 1.4rem auto 0;
  opacity: 0.5;
}

/* Shared item */
.gallery-v2__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-v2__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease;
}

@media (hover: hover) {
  .gallery-v2__item:hover img {
    transform: scale(1.03);
    filter: contrast(1.02) saturate(1.03);
  }
  .gallery-v2__item:hover {
    border-color: rgba(140,150,136,0.22);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.04);
  }
}

/* Hero */
.gallery-v2__hero {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
}

/* 2×2 Grid */
.gallery-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gallery-v2__grid .gallery-v2__item {
  height: clamp(180px, 22vw, 300px);
}

/* "+N" overlay */
.gallery-v2__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,24,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background 0.4s ease;
  pointer-events: none;
}

.gallery-v2__more-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.1em;
  color: rgba(246,242,233,0.9);
  text-transform: uppercase;
}

@media (hover: hover) {
  .gallery-v2__item:hover .gallery-v2__more {
    background: rgba(26,26,24,0.55);
  }
}

/* Counter */
.gallery-v2__counter {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 0.2rem;
}


/* =====================
   SELF-CONTAINED LIGHTBOX
   ===================== */
.glb-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(26,26,24,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.glb-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.glb-wrap {
  position: relative;
  width: min(1100px, 94vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-select: none;
}

.glb-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: 0;
  color: rgba(246,242,233,0.7);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-weight: 300;
  transition: color 0.3s ease;
  line-height: 1;
}

.glb-close:hover { color: #fff; }

.glb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,242,233,0.8);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(4px);
  line-height: 1;
}

.glb-nav:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.glb-prev { left: -64px; }
.glb-next { right: -64px; }

@media (max-width: 1250px) {
  .glb-prev { left: 12px; }
  .glb-next { right: 12px; }
}

.glb-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  color: rgba(246,242,233,0.5);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}


/* =====================
   SCROLL REVEAL
   ===================== */
.gallery-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
.gallery-reveal.is-revealed { opacity: 1; transform: translateY(0); }

.gallery-title-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.gallery-title-reveal.is-revealed { opacity: 1; transform: translateY(0); }


/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .gallery-v2__hero { height: clamp(220px, 56vw, 340px); border-radius: 12px; }
  .gallery-v2__grid { gap: 10px; }
  .gallery-v2__grid .gallery-v2__item { height: clamp(140px, 38vw, 200px); border-radius: 12px; }
}

@media (max-width: 480px) {
  .gallery-v2__grid { gap: 8px; }
  .gallery-v2__grid .gallery-v2__item { height: clamp(120px, 36vw, 170px); border-radius: 10px; }
  .gallery-v2__hero { border-radius: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-reveal, .gallery-title-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .gallery-v2__item img { transition: none !important; }
  .glb-overlay { transition: none !important; }
}


/* ================================================================
   7. CONTACTS + FOOTER v2 (lux_contacts_v2.css)
   ================================================================ */
/* ============================================================
   CONTACTS v2 — Clean tall map + Минимал-свет footer (v3)
   ============================================================ */

#contacts { scroll-margin-top: 0; margin-top: -4px; position: relative; z-index: 1; }

/* ===================== HIDE CONTACTS CARD ===================== */
.contacts-hero__card { display: none !important; }
.contacts-hero::before {
  background: linear-gradient(90deg,
    rgba(242,240,235,0.10) 0%, rgba(242,240,235,0.02) 50%, rgba(242,240,235,0.10) 100%
  ) !important;
  z-index: 2 !important;
}
.contacts-hero__inner { z-index: 3 !important; padding: 0 !important; min-height: 0 !important; pointer-events: none; }
.contacts-hero { min-height: 70vh !important; }

/* ===================== MAP ===================== */
.contacts-map { position: absolute; inset: 0; z-index: 1; }
.ymap-balloon__title { font-family:var(--font-serif);font-weight:400;font-size:1.1rem;margin:0 0 4px;color:#1a1a18 }
.ymap-balloon__text  { font-family:var(--font-sans);font-weight:300;font-size:.82rem;color:#6B675E;margin:0;line-height:1.5 }
.ymap-balloon__text p { margin: 0; }
.ymap-balloon__text a { color: #2B2A26; text-decoration: none; border-bottom: 1px solid rgba(43,42,38,0.2); transition: border-color 0.3s; }
.ymap-balloon__text a:hover { border-color: #8A966C; }

/* ===================== HOTEL PIN ===================== */
.hotel-pin { position: relative; display: flex; flex-direction: column; align-items: center; cursor: pointer; }
.hotel-pin__pulse { position: absolute; top: 2px; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(138,150,108,0.2); animation: pinPulse 2s ease-in-out infinite; }
.hotel-pin__core { position: relative; width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2.5px solid #8A966C; box-shadow: 0 3px 12px rgba(0,0,0,0.18); display: flex; align-items: center; justify-content: center; z-index: 1; }
.hotel-pin__logo { width: 34px; height: 34px; object-fit: contain; }
.hotel-pin__label { margin-top: 4px; font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500; color: #2B2A26; background: rgba(255,255,255,0.92); padding: 2px 8px; border-radius: 4px; white-space: nowrap; letter-spacing: 0.04em; box-shadow: 0 1px 4px rgba(0,0,0,0.1); z-index: 1; }
@keyframes pinPulse { 0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; } 50% { transform: translateX(-50%) scale(1.6); opacity: 0; } }

/* ===================== MAP ACTIVATION ===================== */
.map-activate { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5; pointer-events: auto; cursor: pointer; transition: opacity 0.5s ease; }
.map-activate__hint {
  display: flex; align-items: center; gap: 8px; padding: 10px 22px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08); border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-family: var(--font-sans); font-weight: 300; font-size: 0.78rem; color: #6B675E; letter-spacing: 0.04em;
  animation: mapHintPulse 2.5s ease-in-out infinite; white-space: nowrap;
}
.map-activate__hint svg { width: 16px; height: 16px; stroke: #8C9688; stroke-width: 1.5; fill: none; }
.map-activate.is-hidden { opacity: 0; pointer-events: none; }
.contacts-hero.map-active .map-activate { opacity: 0; pointer-events: none; }
@keyframes mapHintPulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.02); opacity: 1; } }

/* ===================== POI CHIPS ===================== */
.poi-chips { position: absolute; z-index: 4; top: 50%; right: 20px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; pointer-events: auto; }
.poi-chip {
  display: flex; align-items: center; gap: 8px; padding: 11px 18px;
  border: 1px solid rgba(0,0,0,0.06); border-radius: 14px;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  cursor: pointer; font-family: var(--font-sans); font-weight: 300; font-size: 0.8rem; color: #2B2A26; letter-spacing: 0.04em;
  transition: background .35s, border-color .35s, box-shadow .35s, transform .35s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.04); white-space: nowrap; min-width: 160px;
}
.poi-chip:hover { background: rgba(255,255,255,0.92); border-color: rgba(140,150,136,0.2); transform: translateX(-3px); }
.poi-chip.is-active { background: rgba(140,150,136,0.12); border-color: rgba(140,150,136,0.35); box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 8px 24px rgba(140,150,136,0.12); transform: translateX(-4px); color: #4a5247; font-weight: 400; }
.poi-chip__icon { width: 20px; height: 20px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.poi-chip__icon svg { width: 18px; height: 18px; }
.poi-chip__time { font-weight: 300; font-size: 0.7rem; color: #8C9688; margin-left: auto; opacity: 0; transition: opacity .3s; }
.poi-chip.is-active .poi-chip__time { opacity: 1; }
.poi-chip__time:empty { display: none; }

/* ===================== SOCIAL ICONS ===================== */
.social-icon { width: 40px !important; height: 40px !important; border: 1px solid rgba(0,0,0,0.08) !important; border-radius: 12px !important; background: rgba(255,255,255,0.45) !important; transition: transform 350ms cubic-bezier(0.16,1,0.3,1), background 300ms, border-color 300ms, box-shadow 300ms, color 300ms !important; }
.social-icon:hover { background: rgba(140,150,136,0.10) !important; border-color: rgba(140,150,136,0.30) !important; transform: translateY(-2px) !important; box-shadow: 0 4px 16px rgba(140,150,136,0.12) !important; color: #8C9688 !important; }
.social-icon svg { width: 18px !important; height: 18px !important; stroke: currentColor !important; fill: none !important; stroke-width: 1.6 !important; stroke-linecap: round !important; stroke-linejoin: round !important; }

input[name="phone"]::placeholder { letter-spacing: 0.02em; }


/* =====================================================
   FOOTER v4 — Brand | Nav | Contacts | Info+Weather
   ===================================================== */

.footer.footer--v2 .footer-grid { display: none !important; }
.footer.footer--v2 .footer-bottom { display: none !important; }
.footer.footer--v2 { border-top: none !important; padding: 0 !important; background: var(--bg-color) !important; }

.fv2-accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(140,150,136,0.27), transparent);
}

/* 4-column grid */
.fv2-body {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr 1fr;
  gap: 36px;
  padding: 44px 0 36px;
  align-items: start;
}

/* --- Col headings --- */
.fv2-col__heading {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8C9688;
  margin-bottom: 16px;
}

/* --- 1. BRAND (left, vertically centered) --- */
.fv2-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.fv2-brand__name {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 6px;
}

.fv2-brand__logo {
  max-height: 200px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.fv2-brand__tagline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.fv2-brand__socials {
  display: flex;
  gap: 8px;
}
.fv2-brand__socials .social-icon {
  width: 36px !important; height: 36px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.35) !important;
  border-color: rgba(0,0,0,0.04) !important;
  color: var(--text-muted) !important;
  opacity: 0.65;
  transition: opacity 350ms ease, background 300ms, border-color 300ms !important;
}
.fv2-brand__socials .social-icon:hover {
  opacity: 1;
  background: rgba(140,150,136,0.08) !important;
  border-color: rgba(140,150,136,0.18) !important;
}
.fv2-brand__socials .social-icon svg {
  width: 15px !important; height: 15px !important;
  stroke: currentColor !important;
}

/* --- 2. NAV --- */
.fv2-col__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.fv2-col__link:hover { color: var(--text-main); }

/* --- 3. CONTACTS --- */
.fv2-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.fv2-contact-row__icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #8C9688;
}
.fv2-contact-row__icon svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.fv2-contact-row a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s;
}
.fv2-contact-row a:hover { color: #8C9688; }
.fv2-contact-row span {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.45;
}

/* Buttons */
.fv2-buttons {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 14px;
}
.fv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 12px;
  background: transparent;
  color: #6B7A66;
  border: 1px solid rgba(107,122,102,0.5);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
  white-space: nowrap;
}
.fv2-btn:hover {
  background: #8C9688;
  color: #fff;
  border-color: #8C9688;
  box-shadow: 0 8px 24px rgba(140,150,136,0.18);
}
.fv2-btn svg {
  width: 13px; height: 13px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
}

/* --- 4. INFO + WEATHER --- */
.fv2-info__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.fv2-info__link:hover { color: var(--text-main); }

/* Weather widget (old — overridden by v5 at end of file) */

/* --- Bottom bar --- */
.fv2-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 13px 0;
}
.fv2-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(42,41,37,0.35);
}
.fv2-bottom__inner a {
  color: rgba(42,41,37,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.fv2-bottom__inner a:hover { color: var(--text-muted); }
.fv2-bottom__left { display: flex; gap: 16px; }


/* ===================== RESPONSIVE ===================== */
@media (max-width: 899px) {
  .poi-chips { top: auto; bottom: 50px; right: 12px; transform: none; gap: 8px; }
  .poi-chip { padding: 8px 14px; font-size: 0.74rem; min-width: 120px; border-radius: 12px; }
  .map-activate { bottom: 12px; }
  .map-activate__hint { font-size: 0.72rem; padding: 8px 16px; }
  .fv2-body { gap: 24px; }
}

@media (max-width: 768px) {
  .fv2-body {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 32px 0 28px;
  }
  .contacts-hero { min-height: 55vh !important; }
}

@media (max-width: 480px) {
  .poi-chip { padding: 7px 12px; font-size: 0.7rem; min-width: 100px; }
  .fv2-body { grid-template-columns: 1fr; gap: 24px; }
  .fv2-buttons { flex-direction: row; }
  .fv2-btn { flex: 1; }
  .fv2-bottom__inner { flex-direction: column; text-align: center; gap: 6px; }
  .fv2-bottom__left { justify-content: center; }
}




/* ================================================================
   VISUAL AUDIT FIXES — Quiet Luxury Refinements (2026-04-13)
   ================================================================ */

/* --- 1. HEADER REFINEMENTS --- */

/* Softer nav link tracking */
.nav-menu a {
  letter-spacing: 0.10em;
  font-weight: 400;
  font-size: 0.73rem;
}

/* CTA button in header: warmer, more visible */
.site-header .btn-luxury--cta {
  background: rgba(246,242,233,0.96);
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 11px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.site-header .btn-luxury--cta:hover {
  background: transparent;
  color: var(--text-on-header);
  border-color: rgba(246,242,233,0.72);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}


/* --- 2. HERO REFINEMENTS --- */

/* Richer veil for better text contrast */
.hero-veil {
  background: linear-gradient(180deg,
    rgba(43,42,38,0.60) 0%,
    rgba(43,42,38,0.35) 40%,
    rgba(43,42,38,0.55) 100%
  );
}

/* Hero title: slightly smaller for elegance */
.hero-section h1 {
  font-size: clamp(2.8rem, 4.2vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

/* Subtitle: more legible */
.hero-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: rgba(246,242,233,0.92);
  text-shadow: 0 8px 24px rgba(0,0,0,0.40);
}


/* --- 3. SECTION TITLES --- */

/* Section h2: refine tracking and weight */
.info-ref-title {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.06em;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  color: var(--text-muted);
}

/* Section h2 underline: slightly thicker for visibility */
#rooms > .lux-container > h2::after,
#comments > .lux-container > h2::after,
.gallery-v2__head h2::after {
  height: 2px;
  width: 40px;
  opacity: 0.4;
  margin: 1.2rem auto 0;
}


/* --- 4. INFO/BENTO SECTION REFINEMENTS --- */

/* Overline text: slightly bolder for hierarchy */
.info-bento-overline {
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 1;
}

/* Hero card title: warmer serif */
.info-bento-hero-title {
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* Point headings: better hierarchy */
.info-bento-point-heading {
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Panel balance: ensure the two sections distribute space well */
.info-bento-panel-section--included {
  flex: 1 1 auto;
}

.info-bento-panel-section--paid {
  flex: 0 1 auto;
}

/* Chip tags: refined for quiet luxury */
.info-bento-tag--btn {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.info-bento-tag--btn::before {
  opacity: 0.4;
}

/* Notes: cleaner bottom notes */
.info-bento-note {
  font-size: 0.82rem;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(140,150,136,0.06);
  border-left: 2px solid rgba(140,150,136,0.28);
}


/* --- 5. ROOMS SECTION REFINEMENTS --- */

/* Room card: softer shadow for luxury feel */
#rooms .room-card {
  box-shadow:
    0 1px 3px rgba(0,0,0,0.02),
    0 8px 24px rgba(0,0,0,0.04),
    0 24px 56px rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.05);
}

/* Number badge: slightly more visible */
#rooms .room-card::before {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* Room title: refined */
#rooms .room-details h3 {
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}

/* Price text: refined */
#rooms .room-price {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border-left-color: rgba(140,150,136,0.45);
}

/* Button in room card: less letter-spacing */
#rooms .room-actions .btn-luxury {
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  padding: 9px 24px;
}

/* Room chips: tighter */
#rooms .room-chip {
  font-size: 11.5px;
  padding: 6px 12px;
  border-color: rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.95);
}

#rooms .room-chip::before {
  opacity: 0.4;
}


/* --- 6. REVIEWS SECTION REFINEMENTS --- */

/* Show stars for richer visual */
.review-card__stars {
  display: flex !important;
  align-items: center;
  gap: 3px;
  margin-bottom: 0.4rem;
}

.review-card__star {
  color: rgba(196,169,90,0.55);
}

.review-card--primary .review-card__star {
  color: rgba(196,169,90,0.65);
}

/* Score number: more weight for impact */
.review-card__score {
  font-weight: 200;
  letter-spacing: -0.04em;
}

/* Score label: slightly more visible */
.review-card__score-label {
  font-weight: 400;
  letter-spacing: 0.10em;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Quote text: refined */
.review-card__quote-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.review-card--primary .review-card__quote-text {
  font-size: 1.02rem;
}

/* Quote mark: more subtle */
.review-card__quote-text::before {
  font-size: 2rem;
  opacity: 0.25;
  color: var(--accent);
}

/* Review card header: tighter spacing */
.review-card__header {
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

/* Logo: slightly smaller for subtlety */
.review-card__logo {
  height: 22px;
  opacity: 0.65;
}


/* --- 7. GALLERY REFINEMENTS --- */

/* Tighter layout */
.gallery-v2 {
  gap: 1.2rem;
}

.gallery-v2__grid {
  gap: 12px;
}

/* Hero image: less extreme height */
.gallery-v2__hero {
  height: clamp(280px, 38vw, 480px);
}

/* "+N" overlay: clearer text */
.gallery-v2__more {
  background: rgba(26,26,24,0.50);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-v2__more-text {
  font-weight: 400;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


/* --- 8. FOOTER REFINEMENTS --- */

/* Footer heading: refined */
.footer-heading {
  letter-spacing: 0.10em;
  font-weight: 500;
  font-size: 0.72rem;
}

/* Footer links: slightly less muted */
.footer-link {
  font-size: 0.88rem;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
}

/* Footer bottom: refined */
.footer-bottom {
  padding: 1.4rem 0;
  font-size: 0.78rem;
  opacity: 0.5;
}


/* --- 9. QUIET LUXURY ENHANCEMENTS --- */

/* Smooth section transitions between bg colors */
.section + .section--white,
.section--white + .section {
  position: relative;
}

/* Gentle breathing animation for hero title */
@keyframes gentleFade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.96; }
}

/* Smooth focus styles for all interactive elements */
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(140,150,136,0.4);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smoother scroll-reveal timing */
.info-reveal,
.room-reveal,
.review-reveal,
.gallery-reveal {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Cards: refined border radius for luxury */
.info-bento-hero,
.info-bento-panel {
  border-radius: 20px;
}

/* Social icons in footer: more refined */
.footer .social-icon {
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.4);
}

.footer .social-icon:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.14);
  transform: translateY(-2px);
}

/* Contact section card: refined */
.contacts-hero__card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}


/* --- 10. RESPONSIVE FIXES --- */

@media (max-width: 980px) {
  .info-ref-title {
    font-size: 1.15rem;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .hero-section h1 {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .review-card__star {
    width: 14px;
    height: 14px;
  }
  
  .review-card__stars {
    gap: 2px;
  }
}


/* ================================================================
   QUIET LUXURY — Micro-Interactions & Polish
   ================================================================ */

/* --- Hero entrance animation --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section h1 {
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-text {
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* --- Subtle section separators --- */
.section + .section--white::before,
.section--white + .section::before {
  content: "";
  display: block;
  height: 0;
}

/* --- Enhanced card hover micro-interaction --- */
@media (hover: hover) {
  /* Review cards: subtle glow on hover */
  #comments .review-card:hover {
    box-shadow:
      0 2px 4px rgba(0,0,0,0.03),
      0 8px 20px rgba(0,0,0,0.06),
      0 24px 48px rgba(0,0,0,0.04),
      0 0 0 1px rgba(140,150,136,0.12);
  }
  
  /* Room cards: refined hover lift */
  #rooms .room-card:hover {
    box-shadow:
      0 2px 4px rgba(0,0,0,0.03),
      0 8px 20px rgba(0,0,0,0.06),
      0 24px 56px rgba(0,0,0,0.05),
      0 0 0 1px rgba(140,150,136,0.10);
  }
  
  /* Nav links: subtle underline animation */
  .nav-menu a {
    position: relative;
  }
  
  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  }
  
  .nav-menu a:hover::after {
    opacity: 0.5;
    transform: scaleX(0.6);
  }
}

/* --- Review dots: softer active state --- */
.review-card__dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(140,150,136,0.12);
}

/* --- Gallery items: more refined hover --- */
@media (hover: hover) {
  .gallery-v2__item:hover {
    border-color: rgba(140,150,136,0.18);
    box-shadow:
      0 4px 16px rgba(0,0,0,0.05),
      0 12px 40px rgba(0,0,0,0.04);
  }
}

/* --- Button micro-interaction: pill shape on hover --- */
.btn-luxury {
  --btn-r: 12px;
}

/* --- Info bento hero: more cinematic gradient --- */
.info-bento-hero::after {
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.68) 0%,
      rgba(0,0,0,0.38) 50%,
      rgba(0,0,0,0.12) 100%
    ),
    linear-gradient(180deg,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.25) 100%
    );
}

/* --- Social icons: refined hover --- */
@media (hover: hover) {
  .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
}

/* --- Review card stars: subtle entrance when scrolled into view --- */
.review-card__stars .review-card__star {
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .review-card:hover .review-card__star {
    color: rgba(196,169,90,0.75);
  }
  .review-card--primary:hover .review-card__star {
    color: rgba(196,169,90,0.85);
  }
}

/* --- CTA button in rooms: softer hover --- */
@media (hover: hover) {
  #rooms .room-actions .btn-luxury:hover {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
  }
}

/* --- Hero scroll cue: ensure visibility --- */
.hero-scrollcue {
  opacity: 0.65 !important;
}

/* --- Footer social icons spacing --- */
.footer .socials {
  gap: 0.6rem;
}

/* --- Contacts card: subtle backdrop for depth --- */
.contacts-hero__card {
  border: 1px solid rgba(0,0,0,0.06);
}

/* --- Section padding: unified rhythm --- */
#comments.section {
  padding: 7.5rem 0;
}

#foto.section {
  padding: 7.5rem 0;
}

/* --- Reduced motion: disable animations --- */
@media (prefers-reduced-motion: reduce) {
  .hero-section h1,
  .hero-text {
    animation: none;
  }
  
  .nav-menu a::after {
    display: none;
  }
}


/* ================================================================
   BENTO PANEL CONTRAST — Улучшение контраста бенто-панелей
   2026-04-13
   ================================================================ */

/* 1. PANEL — deeper shadow, stronger border, cooler white against warm bg */
.info-bento-panel {
  background: #FFFFFF;
  border: 1px solid rgba(80,80,60,0.13);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 6px 16px rgba(0,0,0,0.06),
    0 24px 48px rgba(40,50,40,0.07);
}

/* 2. HERO card — match shadow depth */
.info-bento-hero {
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 6px 16px rgba(0,0,0,0.06),
    0 24px 48px rgba(40,50,40,0.07);
  border: 1px solid rgba(80,80,60,0.10);
}

/* 3. CHIPS — visible on white, olive-tinted for luxury feel */
.info-bento-tag--btn {
  background: rgba(140,150,136,0.13);
  border: 1px solid rgba(90,100,80,0.22);
  color: #353833;
  font-weight: 470;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.info-bento-tag--btn::before {
  color: rgba(120,130,110,0.8);
}

/* Muted chips (paid services) — lighter but still distinct */
.info-bento-tag--muted.info-bento-tag--btn {
  background: rgba(140,150,136,0.08);
  border-color: rgba(90,100,80,0.15);
  color: #505348;
}

@media (hover:hover) {
  .info-bento-tag--btn:hover {
    background: rgba(140,150,136,0.15);
    border-color: rgba(100,110,90,0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .info-bento-tag--muted.info-bento-tag--btn:hover {
    background: rgba(140,150,136,0.10);
    border-color: rgba(100,110,90,0.18);
  }
}

/* 4. SECTION OVERLINES — stronger hierarchy */
.info-bento-panel .info-bento-overline {
  color: #4a4d47;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  opacity: 1;
}

/* 5. DIVIDER — more visible separation */
.info-bento-panel-divider {
  height: 1px;
  background: rgba(100,110,90,0.14);
}

/* 6. NOTES — warmer contrast against white panel */
.info-bento-note {
  background: rgba(140,150,136,0.08);
  border-left: 2px solid rgba(120,130,116,0.35);
  color: #4a4d47;
}

.info-bento-note--muted {
  color: #585b54;
}

/* 7. Section background — warmer to push white panels forward */
#info {
  background: #E5E2DA;
}

/* 8. Section title — refined */
#info .info-ref-title {
  color: #4A4D47;
}

/* 9. Mobile: ensure panel contrast holds */
@media (max-width: 980px) {
  .info-bento-panel {
    box-shadow:
      0 1px 2px rgba(0,0,0,0.03),
      0 4px 12px rgba(0,0,0,0.05),
      0 16px 32px rgba(40,50,40,0.05);
  }
}


/* ================================================================
   STAGGERED BENTO — Info Section Redesign
   2026-04-14
   ================================================================ */

/* Grid: 2 columns, auto rows */
.sb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

/* ── ROW 1: Full-width photo card ── */
.sb-photo {
  grid-column: 1 / -1;
  position: relative;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center 35%;
  display: flex;
  align-items: flex-end;
}

.sb-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 35, 25, 0.75) 0%,
    rgba(30, 35, 25, 0.35) 40%,
    rgba(30, 35, 25, 0.08) 100%
  );
  z-index: 1;
}

.sb-photo__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 3rem;
}

.sb-photo__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.sb-photo__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ── ROW 2–3: Staggered cards ── */
.sb-card {
  border-radius: 14px;
  overflow: hidden;
}

.sb-card__inner {
  height: 100%;
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
}

/* Text card (advantages) */
.sb-card--text {
  background: #fff;
  border: 1px solid rgba(80,80,60,0.10);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 6px 20px rgba(40,50,40,0.06);
}

.sb-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.sb-point + .sb-point {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(100,110,90,0.09);
}

.sb-point__icon {
  color: var(--accent, #8C9688);
  font-size: 0.55rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
  opacity: 0.6;
}

.sb-point__heading {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #3a3d38;
  margin-bottom: 0.35rem;
}

.sb-point__desc {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.6;
  color: #6a6d66;
}

/* Services card (free) */
.sb-card--services {
  background: rgba(140,150,136,0.08);
  border: 1px solid rgba(100,110,90,0.12);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.02),
    0 4px 14px rgba(40,50,40,0.04);
}

/* Paid services card */
.sb-card--paid {
  background: rgba(140,150,136,0.05);
  border: 1px solid rgba(100,110,90,0.10);
}

/* Notes card */
.sb-card--note {
  background: #fff;
  border: 1px solid rgba(80,80,60,0.10);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.02),
    0 4px 12px rgba(40,50,40,0.04);
}

/* Overline label */
.sb-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4d47;
  margin-bottom: 1.2rem;
}

/* Chips */
.sb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sb-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 470;
  color: #353833;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(90,100,80,0.18);
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.sb-chip--muted {
  background: rgba(255,255,255,0.45);
  border-color: rgba(90,100,80,0.12);
  color: #505348;
}

@media (hover:hover) {
  .sb-chip:hover {
    background: rgba(255,255,255,0.95);
    border-color: rgba(90,100,80,0.28);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
}

/* Note (inline, small) */
.sb-note {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.50);
  border-left: 2px solid rgba(120,130,116,0.30);
  border-radius: 0 6px 6px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: #5a5d56;
  line-height: 1.5;
}

.sb-note-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #4a4d47;
  line-height: 1.55;
}

.sb-note-line + .sb-note-line {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(100,110,90,0.08);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .sb-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .sb-photo {
    min-height: 280px;
    border-radius: 12px;
  }

  .sb-photo__content {
    padding: 1.5rem 1.8rem;
  }

  .sb-photo__title {
    font-size: 1.8rem;
  }

  .sb-photo__subtitle {
    font-size: 0.75rem;
  }

  .sb-card {
    border-radius: 12px;
  }

  .sb-card__inner {
    padding: 1.5rem 1.4rem;
  }

  .sb-point + .sb-point {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
}

/* ── Tablet (769-980) ── */
@media (min-width: 769px) and (max-width: 980px) {
  .sb-grid {
    gap: 1rem;
  }

  .sb-photo {
    min-height: 320px;
  }

  .sb-card__inner {
    padding: 1.6rem 1.8rem;
  }
}

/* Hide old info-bento if still in DOM */
.info-bento { display: none; }

/* ================================================================
   ROOMS SECTION — Visual Polish
   2026-04-14
   ================================================================ */

/* 1. BADGE — refined glass pill, more contrast */
#rooms .room-card::before {
  background: rgba(20,25,18,0.50);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 5px 14px;
}

/* 2. PRICE — more prominent, warm accent */
#rooms .room-price {
  font-weight: 400;
  font-size: 0.95rem;
  color: #4a4d47;
  border-left: 2.5px solid var(--accent, #8C9688);
  padding-left: 14px;
}

/* 3. TITLE — slightly larger, tighter leading */
#rooms .room-details h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: #2b2a26;
}

/* 4. BUTTON — filled on idle for better CTA, outline on hover */
#rooms .room-actions .btn-luxury {
  background: #2b2a26;
  color: #fff;
  border: 1px solid #2b2a26;
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  padding: 10px 26px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

@media (hover:hover) {
  #rooms .room-actions .btn-luxury:hover {
    background: transparent;
    color: #2b2a26;
    border-color: #2b2a26;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
}

/* 5. CHIPS — first chip (площадь) highlighted as key stat */
#rooms .room-chip:first-child {
  background: rgba(140,150,136,0.12);
  border-color: rgba(100,110,90,0.20);
  font-weight: 500;
  color: #3a3d38;
}

#rooms .room-chip:first-child::before {
  background: var(--accent, #8C9688);
  opacity: 0.7;
  width: 5px;
  height: 5px;
}

/* Other chips — subtler to create hierarchy */
#rooms .room-chip {
  font-size: 11.5px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(0,0,0,0.06);
  color: #555750;
}

#rooms .room-chip::before {
  opacity: 0.35;
  width: 3.5px;
  height: 3.5px;
}

/* Chips container — tighter gap */
#rooms .room-chips {
  gap: 5px;
  margin-top: 1rem;
  padding-top: 1rem;
}

/* 6. CARD — slightly softer radius for modern feel */
#rooms .room-card {
  border-radius: 16px;
}

/* 7. IMAGE — slightly taller aspect for better composition */
#rooms .room-img {
  aspect-ratio: 16 / 9.5;
}

/* 8. SECTION PADDING — unified */
#rooms.section {
  padding-bottom: 7.5rem;
}

/* 9. DETAILS padding refinement */
#rooms .room-details {
  padding: 1.6rem 1.8rem 1.8rem;
  gap: 0 1rem;
}

/* 10. RESPONSIVE tweaks */
@media (max-width: 680px) {
  #rooms .room-details {
    padding: 1.3rem 1.3rem 1.5rem;
  }

  #rooms .room-actions .btn-luxury {
    padding: 10px 22px;
    font-size: 0.68rem;
    width: 100%;
    text-align: center;
  }

  #rooms .room-chip:first-child {
    font-size: 12px;
    padding: 6px 12px;
  }

  #rooms .room-img {
    aspect-ratio: 16 / 9;
  }

  #rooms.section {
    padding-bottom: 5.5rem;
  }
}


/* ================================================================
   REVIEWS SECTION — Polish Pass
   ================================================================ */

/* --- 1. Section background: warmer, distinct from body --- */
#comments.section {
  background: #E8E5DD;
}

/* --- 2. Grid: equal columns for balanced feel --- */
#comments .reviews-bento {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* --- 3. Card: slightly more padding, crisper surface --- */
#comments .review-card {
  padding: 2.6rem 2.4rem 2.2rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow:
    0 1px 3px rgba(0,0,0,0.03),
    0 6px 24px rgba(0,0,0,0.05);
}

/* --- 4. Stars: richer gold, visible --- */
.review-card__star {
  color: rgba(196,169,90,0.80) !important;
}

.review-card--primary .review-card__star {
  color: rgba(196,169,90,0.90) !important;
}

@media (hover: hover) {
  .review-card:hover .review-card__star {
    color: rgba(196,169,90,0.92) !important;
  }
  .review-card--primary:hover .review-card__star {
    color: #C4A95A !important;
  }
}

/* --- 5. Platform logos: bigger, crisper --- */
.review-card__logo {
  height: 26px !important;
  opacity: 0.82 !important;
}

/* --- 6. Score: sharper contrast --- */
.review-card__score {
  color: #1a1a18;
  font-weight: 250;
}

.review-card__score-label {
  color: #6B675E;
  opacity: 0.85;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

/* --- 7. Opening quote mark: elegant sage, more presence --- */
.review-card__quote-text::before {
  font-size: 2.8rem;
  opacity: 0.40;
  color: #8C9688;
  margin-bottom: 0.4rem;
}

/* --- 8. Quote text: warmer, more readable --- */
.review-card__quote-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a4d47;
  font-style: italic;
}

.review-card--primary .review-card__quote-text {
  font-size: 1.04rem;
}

/* --- 9. Author: visible, trustworthy --- */
.review-card__quote-author {
  color: rgba(43,42,38,0.65);
  font-weight: 500;
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  margin-top: 1rem;
}

/* --- 10. Separator line: sage tint --- */
.review-card__quotes {
  border-top-color: rgba(140,150,136,0.15);
}

/* --- 11. Dots: match sage accent --- */
.review-card__dot {
  background: rgba(140,150,136,0.18);
}

.review-card__dot.is-active {
  background: #8C9688 !important;
  box-shadow: 0 0 0 3px rgba(140,150,136,0.15) !important;
}

/* --- 12. Title underline: match section bg --- */
#comments > .lux-container > h2 {
  color: #4a4d47;
  margin-bottom: 3rem;
}

#comments > .lux-container > h2::after {
  background: #8C9688;
  opacity: 0.45;
}

/* --- 13. Responsive: reviews --- */
@media (max-width: 980px) {
  #comments .reviews-bento {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  #comments .reviews-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #comments .review-card {
    padding: 2rem 1.8rem 1.8rem;
  }

  .review-card__score {
    font-size: 2.8rem;
  }

  .review-card--primary .review-card__score {
    font-size: 2.8rem;
  }

  .review-card__quote-text {
    font-size: 0.92rem;
  }

  .review-card--primary .review-card__quote-text {
    font-size: 0.95rem;
  }
}


/* ================================================================
   GALLERY — Polish Pass
   ================================================================ */

/* --- 1. Soft transition from reviews bg (#E8E5DD) to white --- */
#foto.section.section--white {
  background: linear-gradient(180deg, #E8E5DD 0%, #F2F0EB 8%, #fff 22%);
  padding-top: 7.5rem;
}

/* --- 2. Hero: slightly shorter so grid peeks above fold --- */
.gallery-v2__hero {
  height: clamp(280px, 36vw, 460px) !important;
}

/* --- 3. Masonry-style grid: 6-col base for stagger --- 
   Row 1: item1 spans 4 cols, item2 spans 2 cols (wide + narrow)
   Row 2: item3 spans 2 cols, item4 spans 4 cols (narrow + wide) */
.gallery-v2__grid {
  grid-template-columns: repeat(6, 1fr) !important;
  grid-template-rows: auto auto;
  gap: 12px !important;
}

/* Row 1: wide left (4 cols), narrow right (2 cols) */
.gallery-v2__grid .gallery-v2__item:nth-child(1) {
  grid-column: 1 / 5;
}
.gallery-v2__grid .gallery-v2__item:nth-child(2) {
  grid-column: 5 / 7;
}

/* Row 2: narrow left (2 cols), wide right (4 cols) — stagger */
.gallery-v2__grid .gallery-v2__item:nth-child(3) {
  grid-column: 1 / 3;
}
.gallery-v2__grid .gallery-v2__item:nth-child(4) {
  grid-column: 3 / 7;
}

/* Row heights: taller top, shorter bottom */
.gallery-v2__grid .gallery-v2__item:nth-child(-n+2) {
  height: clamp(190px, 22vw, 300px) !important;
}
.gallery-v2__grid .gallery-v2__item:nth-child(n+3) {
  height: clamp(160px, 18vw, 250px) !important;
}

/* --- 4. Border-radius: proportional --- */
.gallery-v2__hero {
  border-radius: 14px !important;
}

.gallery-v2__grid .gallery-v2__item {
  border-radius: 12px !important;
}

/* --- 5. Hover overlay "Открыть" for regular items --- */
.gallery-v2__item:not(.gallery-v2__hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0.0);
  z-index: 1;
  transition: background 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.gallery-v2__item:not(.gallery-v2__hero)::after {
  content: "Открыть";
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(26,26,24,0.50);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 20px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

/* Don't show "Открыть" on the +5 overlay item */
.gallery-v2__item:has(.gallery-v2__more)::after {
  display: none;
}

@media (hover: hover) {
  .gallery-v2__item:not(.gallery-v2__hero):hover::before {
    background: rgba(26,26,24,0.12);
  }
  .gallery-v2__item:not(.gallery-v2__hero):hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Hero hover: subtle dark overlay + "Открыть" */
.gallery-v2__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0.0);
  z-index: 1;
  transition: background 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.gallery-v2__hero::after {
  content: "Открыть";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(26,26,24,0.50);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 20px;
  border-radius: 20px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

@media (hover: hover) {
  .gallery-v2__hero:hover::before {
    background: rgba(26,26,24,0.10);
  }
  .gallery-v2__hero:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* --- 6. Counter: stronger --- */
.gallery-v2__counter {
  opacity: 0.75;
  font-weight: 400;
  font-size: 0.8rem;
  color: #6B675E;
  margin-top: 0.8rem;
}

/* --- 7. Title: match other sections' style --- */
.gallery-v2__head h2 {
  color: #4a4d47;
}

.gallery-v2__head h2::after {
  opacity: 0.45;
}

/* --- 8. Responsive gallery polish --- */
@media (max-width: 768px) {
  .gallery-v2__grid {
    grid-template-columns: 1fr 1fr !important;
  }
  
  /* Reset stagger — equal 2-col on mobile */
  .gallery-v2__grid .gallery-v2__item:nth-child(1),
  .gallery-v2__grid .gallery-v2__item:nth-child(2),
  .gallery-v2__grid .gallery-v2__item:nth-child(3),
  .gallery-v2__grid .gallery-v2__item:nth-child(4) {
    grid-column: auto !important;
  }
  
  .gallery-v2__grid .gallery-v2__item:nth-child(-n+2),
  .gallery-v2__grid .gallery-v2__item:nth-child(n+3) {
    height: clamp(140px, 38vw, 200px) !important;
  }
  
  .gallery-v2__hero {
    height: clamp(200px, 50vw, 320px) !important;
    border-radius: 12px !important;
  }
  
  .gallery-v2__grid .gallery-v2__item {
    border-radius: 10px !important;
  }

  /* Hide hover overlay on touch */
  .gallery-v2__item::after {
    display: none !important;
  }
}

@media (max-width: 480px) {
  #foto.section.section--white {
    padding-top: 3.5rem;
  }
  
  .gallery-v2__hero {
    height: clamp(180px, 48vw, 280px) !important;
    border-radius: 10px !important;
  }
}


/* ================================================================
   SEAMLESS SECTION TRANSITIONS — no hard lines between blocks
   ================================================================
   Color map:
   Hero      #1F1E1A (dark)  
   Info      #E5E2DA (warm sand)
   Rooms     #FFFFFF (white)
   Reviews   #E8E5DD (warm sand, slightly lighter)
   Gallery   gradient E8E5DD → FFF (already done)
   Contacts  map (edge-to-edge)
   Footer    #F2F0EB
   ================================================================ */

/* --- 1. Hero → Info: longer, softer dark-to-warm --- */
#info.section {
  position: relative;
  background: linear-gradient(
    180deg,
    #4a4840 0%,       /* softer start — not as dark */
    #8a877e 4%,       /* warm stone */
    #ada99f 8%,       /* mid warm grey */
    #c8c5bc 13%,      /* light stone */
    #d9d6ce 18%,      /* approaching sand */
    #E5E2DA 26%,      /* target info bg */
    #E5E2DA 100%
  );
}

/* --- 2. Info → Rooms: wider fade zone --- */
#info.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, rgba(235,233,226,0.5) 50%, #EBE9E2 100%);
  pointer-events: none;
  z-index: 0;
}

#rooms.section {
  position: relative;
  background: linear-gradient(
    180deg,
    #EBE9E2 0%,
    #F2F0EC 4%,
    #F7F6F3 9%,
    #FFFFFF 18%,
    #FFFFFF 100%
  );
}

/* --- 3. Rooms → Reviews: wider fade zone --- */
#rooms.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, rgba(240,237,230,0.5) 50%, #F0EDE6 100%);
  pointer-events: none;
  z-index: 0;
}

#comments.section {
  background: linear-gradient(
    180deg,
    #F0EDE6 0%,
    #ECE9E1 5%,
    #E8E5DD 14%,
    #E8E5DD 100%
  ) !important;
}

/* --- 4. Gallery → Contacts: wider fade --- */
#foto.section.section--white::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(242,240,235,0.5) 50%, #F2F0EB 100%);
  pointer-events: none;
  z-index: 0;
}

#foto.section {
  position: relative;
}

/* --- 5. Contacts → Footer: ensure footer blends --- */
.footer.footer--v2 {
  background: #F2F0EB;
}

/* =====================================================
   MAP + FOOTER POLISH — v5
   ===================================================== */

/* Hide Yandex default promo buttons */
.ymap-clean [class*="copyrights-pane"] a[href*="maps.yandex"],
.ymap-clean [class*="copyrights-pane"] a[href*="taxi"],
.ymap-clean [class*="copyrights-pane"] a[class*="gotoymaps"],
.ymap-clean [class*="copyrights-pane"] a[class*="gototaxi"],
.ymap-clean [class*="gotoymaps"],
.ymap-clean [class*="gototaxi"],
.ymap-clean .ymaps-2-1-79-map-copyrights-promo,
.ymap-clean .ymaps-2-1-79-searchbox,
.ymap-clean [class*="searchbox"],
.ymap-clean [class*="routeButton"] {
  display: none !important;
}

/* POI chips — active state color matches category */
.poi-chip.is-active .poi-chip__icon svg {
  stroke: currentColor;
}
.poi-chip__time {
  font-weight: 300;
  font-size: 0.68rem;
  color: #6B675E;
  margin-left: auto;
  opacity: 0;
  transition: opacity .3s;
  white-space: nowrap;
}
.poi-chip.is-active .poi-chip__time {
  opacity: 1;
}

/* ===================== INTERACTIVE WEATHER WIDGET ===================== */
.fv2-weather {
  margin-top: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
  cursor: default;
}
.fv2-weather:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.fv2-weather__current {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.fv2-weather__icon {
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8C9688;
}
.fv2-weather__icon svg {
  width: 32px;
  height: 32px;
  stroke: #8C9688;
}

.fv2-weather__data {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fv2-weather__temp {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.1;
}

.fv2-weather__desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.fv2-weather__meta {
  display: flex;
  gap: 10px;
  margin-top: 3px;
}
.fv2-weather__meta span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  color: #8C9688;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.fv2-meta-icon {
  width: 11px;
  height: 11px;
  stroke: #8C9688;
  flex-shrink: 0;
}

.fv2-weather__city {
  display: none;
}

/* Toggle button */
.fv2-weather__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C9688;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.fv2-weather__toggle:hover {
  background: rgba(140,150,136,0.06);
  color: #6B7A66;
}
.fv2-weather__toggle svg {
  transition: transform 0.3s ease;
}
.fv2-weather--expanded .fv2-weather__toggle svg {
  transform: rotate(180deg);
}

/* Forecast panel — collapsed by default */
.fv2-weather__forecast {
  display: flex;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.45s ease;
  padding: 0 16px;
  border-top: 0 solid transparent;
}
.fv2-weather--expanded .fv2-weather__forecast {
  max-height: 100px;
  padding: 10px 16px 8px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.fv2-forecast__day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 0;
}
.fv2-forecast__day:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.04);
}

.fv2-forecast__name {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8C9688;
  text-align: center;
  line-height: 1.3;
}
.fv2-forecast__name span {
  font-weight: 300;
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.fv2-forecast__icon {
  line-height: 1;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8C9688;
}
.fv2-forecast__icon svg {
  width: 20px;
  height: 20px;
  stroke: #8C9688;
}

.fv2-forecast__temps {
  display: flex;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
}
.fv2-forecast__hi {
  font-weight: 400;
  color: var(--text-main);
}
.fv2-forecast__lo {
  font-weight: 300;
  color: var(--text-muted);
}

/* Loading state */
.fv2-weather--loading .fv2-weather__temp {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.fv2-weather--loading .fv2-weather__toggle {
  display: none;
}
.fv2-weather--loading .fv2-weather__forecast {
  display: none;
}

/* ===================== FOOTER EMAIL FIX ===================== */
.fv2-contact-row a[href^="mailto:"] {
  word-break: break-all;
}

/* ===================== MAP RESPONSIVE ===================== */
@media (max-width: 768px) {
  .fv2-weather__current {
    padding: 12px 14px;
  }
  .fv2-weather__icon {
    width: 28px;
    height: 28px;
  }
  .fv2-weather__icon svg {
    width: 24px;
    height: 24px;
  }
  .fv2-weather__temp {
    font-size: 1.1rem;
  }
}

/* =====================================================================
   MOBILE IMPROVEMENTS — Burger menu, text fixes, compact header/map
   ===================================================================== */

/* --- Burger button (visible <=768px) --- */
.burger-btn {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
  margin-left: 12px;
}
.burger-btn span {
  display: block;
  position: absolute;
  left: 4px;
  width: 24px;
  height: 1.5px;
  background: var(--text-on-header, #fff);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}
.burger-btn span:nth-child(1) { top: 8px; }
.burger-btn span:nth-child(2) { top: 15px; }
.burger-btn span:nth-child(3) { top: 22px; }

/* X animation when open */
.burger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile nav overlay --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--hdr-bg, #8A966C);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__link {
  display: block;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s ease;
}
.mobile-nav.is-open .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}
/* staggered animation */
.mobile-nav__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav__link:nth-child(2) { transition-delay: 0.13s; }
.mobile-nav__link:nth-child(3) { transition-delay: 0.18s; }
.mobile-nav__link:nth-child(4) { transition-delay: 0.23s; }
.mobile-nav__link:nth-child(5) { transition-delay: 0.28s; }
.mobile-nav__link:nth-child(6) { transition-delay: 0.33s; }
.mobile-nav__link:nth-child(7) { transition-delay: 0.38s; }
.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: rgba(255,255,255,0.65);
}
/* CTA inside mobile nav */
.mobile-nav__cta {
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease 0.4s, transform 0.35s ease 0.4s;
}
.mobile-nav.is-open .mobile-nav__cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav__cta .btn-luxury--cta {
  border-color: rgba(255,255,255,0.4);
  color: var(--hdr-bg, #8A966C);
  background: rgba(255,255,255,0.92);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 12px 28px;
}
.mobile-nav__cta .btn-luxury--cta:active {
  background: #fff;
}

@media (max-width: 768px) {
  .burger-btn { display: flex; align-items: center; justify-content: center; }
  .mobile-nav { display: flex; }

  /* --- Compact header on mobile --- */
  :root { --hdr-h: 64px; }
  .site-header__inner {
    padding: 0.8rem 16px !important;
  }
  .header-logo .logo-img--icon {
    height: 36px !important;
    width: 36px !important;
  }

  /* --- Compact map on mobile --- */
  .contacts-hero { min-height: 45vh !important; }

  /* --- Hide footer nav on mobile (already in burger menu) --- */
  .fv2-body > div:nth-child(2) {
    display: none;
  }

  /* --- Fix footer logo overflow --- */
  .fv2-brand__logo {
    max-width: 100%;
    height: auto;
    max-height: 140px;
  }

  /* --- Fix route button truncation --- */
  .fv2-buttons {
    flex-direction: column !important;
  }
  .fv2-btn {
    white-space: normal !important;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contacts-hero { min-height: 40vh !important; }
}
