/* =============================================
   Гармония & Оазис — landing styles
   Палитра: терракот/вино + кремовый + дерево
   ============================================= */

:root {
  /* Brand */
  --c-wine:        #7d2a25;
  --c-wine-deep:   #5b1e1a;
  --c-wine-soft:   #a64a3f;
  --c-terracotta:  #c4634a;

  /* Neutrals — lighter, cleaner palette */
  --c-cream:       #f6efe2;
  --c-cream-deep:  #ebe1cd;
  --c-sand:        #fbf7ee;
  --c-bg:          #ffffff;
  --c-bg-alt:      #f7f4ee;
  --c-bg-card:     #ffffff;
  --c-surface:     #fafaf7;

  /* Dark / ink */
  --c-wood:        #181513;          /* deep, near-black with warm undertone */
  --c-wood-soft:   #2c2622;
  --c-ink:         #1a1410;
  --c-mute:        #6b6359;
  --c-line:        rgba(26, 20, 16, .08);
  --c-line-strong: rgba(26, 20, 16, .14);

  /* Type */
  --f-serif: "Playfair Display", "Times New Roman", serif;
  --f-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 14px rgba(26, 20, 16, .04), 0 1px 2px rgba(26, 20, 16, .04);
  --shadow-md: 0 10px 30px rgba(26, 20, 16, .07), 0 2px 6px rgba(26, 20, 16, .04);
  --shadow-lg: 0 24px 60px rgba(26, 20, 16, .12), 0 4px 12px rgba(26, 20, 16, .05);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
  overscroll-behavior: none;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* prevent two-finger pinch from pulling page out of bounds */
  touch-action: pan-x pan-y;
}
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  overflow-x: clip;
  overscroll-behavior: none;
  touch-action: pan-x pan-y;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Belt & suspenders: every full-width section clips its own horizontal overflow.
   This kills the “white area on right swipe” bug caused by negative-margin carousels. */
section,
.section,
footer,
.footer,
header,
.nav,
.hero,
.banner {
  overflow-x: clip;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
iframe { max-width: 100%; }

/* Disable text selection on UI chrome (still allow inside paragraphs) */
.nav, .footer__bottom, .guide-bar, .guide-toast, .guide-hint, .splash,
.btn, .nav__cta, .nav__guide, .fab {
  -webkit-user-select: none;
  user-select: none;
}

/* ============== SPLASH (initial loading) ============== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1f1612 0%, #0f0a07 100%);
  color: var(--c-cream);
  transition: opacity .55s ease, visibility .55s ease;
}
.splash.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
  animation: splashRise .7s ease both;
}
@keyframes splashRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash__logo {
  width: 96px; height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.5));
  animation: splashPulse 2.6s ease-in-out infinite;
}
@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: .95; }
  50%      { transform: scale(1.04); opacity: 1; }
}
.splash__title {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .01em;
  margin-top: 6px;
}
.splash__title em { color: var(--c-terracotta); padding: 0 4px; font-style: italic; }
.splash__sub {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, .55);
}
.splash__bar {
  position: relative;
  width: 180px;
  height: 2px;
  margin-top: 18px;
  background: rgba(244, 235, 217, .12);
  border-radius: 2px;
  overflow: hidden;
}
.splash__bar i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--c-terracotta) 50%, transparent);
  animation: splashSlide 1.4s ease-in-out infinite;
}
@keyframes splashSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .splash__logo, .splash__bar i { animation: none; }
}

/* ============== GUIDE HINT (during prelude / sea sounds) ============== */
.guide-hint {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 16, 13, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.guide-hint.is-visible { opacity: 1; pointer-events: auto; }
.guide-hint__card {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: rgba(255, 252, 246, .98);
  color: var(--c-ink);
  border-radius: 24px;
  padding: 36px 32px 30px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(125, 42, 37, .08);
  transform: scale(.95);
  transition: transform .45s cubic-bezier(.2, .9, .25, 1.15);
  isolation: isolate;
}
.guide-hint.is-visible .guide-hint__card { transform: scale(1); }
.guide-hint__waves {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 30px;
  margin-bottom: 16px;
}
.guide-hint__waves i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--c-terracotta), var(--c-wine));
  animation: hintWave 1.4s ease-in-out infinite;
  height: 8px;
}
.guide-hint__waves i:nth-child(1) { animation-delay: .0s; }
.guide-hint__waves i:nth-child(2) { animation-delay: .12s; }
.guide-hint__waves i:nth-child(3) { animation-delay: .24s; }
.guide-hint__waves i:nth-child(4) { animation-delay: .36s; }
.guide-hint__waves i:nth-child(5) { animation-delay: .48s; }
.guide-hint__waves i:nth-child(6) { animation-delay: .36s; }
.guide-hint__waves i:nth-child(7) { animation-delay: .24s; }
.guide-hint__waves i:nth-child(8) { animation-delay: .12s; }
@keyframes hintWave {
  0%, 100% { height: 6px; opacity: .55; }
  50%      { height: 28px; opacity: 1; }
}
.guide-hint__title {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--c-ink);
  line-height: 1.25;
}
.guide-hint__text {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-mute);
}
.guide-hint__meta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 22px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-surface);
}
.guide-hint__meta-label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
}
.guide-hint__meta-value {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-wine);
  letter-spacing: .005em;
}
@media (max-width: 480px) {
  .guide-hint__card { padding: 30px 22px 24px; border-radius: 20px; }
  .guide-hint__title { font-size: 21px; }
  .guide-hint__text  { font-size: 13.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .guide-hint__waves i { animation: none; height: 16px; }
}
.section--reviews,
.section--prices,
.section--contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* Slow phone friendly: turn off heavier blurs on mobile by default */
@media (max-width: 720px) {
  .nav,
  .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero__eyebrow,
  .loc-card__tag { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .section--contact::before,
  .section--contact::after { filter: blur(40px); }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.h1, h1, .h2, h2, .h3, h3 {
  font-family: var(--f-serif);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--c-ink);
  line-height: 1.1;
  margin: 0;
}
.h2, h2 { font-size: clamp(28px, 4vw, 48px); }
.h3, h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; }
.h2 em, h2 em, .h1 em, h1 em, .h3 em, h3 em {
  font-style: italic;
  color: var(--c-wine);
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-wine);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: currentColor;
}
.eyebrow--light { color: var(--c-cream); }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  outline: 0;
  line-height: 1.1;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  /* GPU layer + integer pixel rendering kills sub-pixel “white line” artifacts on rounded edges */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  isolation: isolate;
}
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(125, 42, 37, .35); }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.98); transition-duration: .05s; }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  box-shadow: inset 0 0 0 1px rgba(61, 42, 31, .25);
}
.btn--ghost:hover {
  background: rgba(61, 42, 31, .06);
  box-shadow: inset 0 0 0 1px var(--c-ink);
}
.btn--lg { padding: 18px 36px; font-size: 21px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--c-wine);
  color: #fff;
  box-shadow: 0 10px 24px rgba(125, 42, 37, .28);
}
.btn--primary:hover { background: var(--c-wine-deep); box-shadow: 0 14px 30px rgba(125, 42, 37, .42); }

/* On dark sections */
.section--property-alt .btn--ghost,
.section--contact .btn--ghost,
.hero .btn--ghost {
  color: var(--c-cream);
  box-shadow: inset 0 0 0 1px rgba(244, 235, 217, .35);
}
.section--property-alt .btn--ghost:hover,
.section--contact .btn--ghost:hover,
.hero .btn--ghost:hover {
  background: rgba(244, 235, 217, .12);
  box-shadow: inset 0 0 0 1px var(--c-cream);
}

/* Hero buttons — elevated style, no white border artifacts */
.hero .btn { font-family: var(--f-serif); }
.hero .btn--primary {
  box-shadow:
    0 12px 30px rgba(125, 42, 37, .45),
    0 2px 0 rgba(0, 0, 0, .04);
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  padding: 14px 0;
}
.nav.is-scrolled {
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(61, 42, 31, .08);
}
.nav.is-menu-open {
  z-index: 300;
  background: rgba(251, 247, 239, .98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(61, 42, 31, .08);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-wine);
  margin-right: auto;
  /* clean rendering on retina/non-retina */
  -webkit-tap-highlight-color: transparent;
}
.nav__logo-img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 56px;
  /* drop shadow + subtle scale to make the icon pop on any background */
  filter: drop-shadow(0 4px 14px rgba(61, 42, 31, .18));
  transition: width .25s ease, height .25s ease, flex-basis .25s ease, filter .25s ease;
}
.nav.is-light:not(.is-scrolled) .nav__logo-img {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35));
}
.nav.is-scrolled .nav__logo-img { width: 48px; height: 48px; flex-basis: 48px; }
@media (max-width: 600px) {
  .nav__logo-img { width: 44px; height: 44px; flex-basis: 44px; }
  .nav.is-scrolled .nav__logo-img { width: 40px; height: 40px; flex-basis: 40px; }
}
.nav__logo-mark { display: inline-flex; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-title {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: .01em;
}
.nav__logo-title em { font-style: italic; color: var(--c-wine); padding: 0 2px; }
.nav.is-light:not(.is-scrolled) .nav__logo-title em { color: var(--c-cream); }
.nav__logo-sub {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 4px;
}
.nav.is-light .nav__logo-title { color: #fff; }
.nav.is-light .nav__logo-sub { color: rgba(255,255,255,.7); }
.nav.is-menu-open .nav__logo-title,
.nav.is-menu-open.is-light .nav__logo-title {
  color: var(--c-ink);
}
.nav.is-menu-open .nav__logo-title em,
.nav.is-menu-open.is-light .nav__logo-title em {
  color: var(--c-wine);
}
.nav.is-menu-open .nav__logo-sub,
.nav.is-menu-open.is-light .nav__logo-sub {
  color: var(--c-mute);
}
.nav.is-menu-open .nav__logo {
  visibility: hidden;
  pointer-events: none;
}

.nav__menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-wine);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.nav__menu a:hover { color: var(--c-wine); }
.nav__menu a:hover::after { transform: scaleX(1); }

.nav.is-light:not(.is-scrolled) .nav__menu a { color: #fff; }
.nav.is-light:not(.is-scrolled) .nav__menu a:hover { color: var(--c-cream); }
.nav.is-light:not(.is-scrolled) .nav__menu a::after { background: var(--c-cream); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--c-wine);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}
.nav__cta:hover { background: var(--c-wine-deep); transform: translateY(-1px) scale(1.03); box-shadow: 0 10px 24px rgba(125, 42, 37, .35); }
.nav__cta:active { transform: translateY(0) scale(.97); }
.nav__guide:hover { transform: translateY(-1px) scale(1.03); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, background .2s ease;
}
.nav.is-light:not(.is-scrolled) .nav__burger span { background: #fff; }
.nav.is-menu-open .nav__burger span,
.nav.is-menu-open.is-light .nav__burger span {
  background: var(--c-ink);
}
.nav.is-menu-open .nav__burger {
  position: fixed;
  z-index: 320;
  top: calc(20px + env(safe-area-inset-top));
  right: 18px;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #fbf7ef;
  padding: calc(92px + env(safe-area-inset-top)) 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 310;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.6,.2,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  color: var(--c-ink);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile a {
  color: var(--c-ink) !important;
  padding: 16px 8px;
  border-bottom: 1px solid var(--c-line);
  font-size: 18px;
  font-family: var(--f-serif);
  font-weight: 500;
}
.mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}
.nav__mobile-cta {
  margin-top: 16px;
  background: var(--c-wine);
  color: #fff !important;
  text-align: center;
  border-radius: 999px;
  border: none !important;
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 600;
}

.nav__mobile { display: none; }
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__mobile { display: flex; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.6s ease, transform 8s ease;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(42, 29, 21, .55) 0%, rgba(42, 29, 21, .25) 35%, rgba(42, 29, 21, .7) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(42, 29, 21, .35) 100%);
}
.hero__content {
  padding: 120px 24px 100px;
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(42, 29, 21, .2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 24px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero__title em {
  font-style: italic;
  color: var(--c-cream);
  font-weight: 400;
}
.hero__lead {
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: .95;
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn { width: 100%; }
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.hero__badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__badge strong {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--c-cream);
}
.hero__badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .75;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scroll 1.8s ease infinite;
}
@keyframes scroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}

@media (max-width: 600px) {
  .hero__badges {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .hero__badge { flex-direction: row; justify-content: space-between; align-items: baseline; }
  .hero__scroll { display: none; }
}

/* ============== SECTION BASE ============== */
.section { padding: 100px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* Subtle gradient instead of busy wave decoration */
.section > .container { position: relative; z-index: 1; }
.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head .h2 { margin-bottom: 16px; }
.section__sub {
  color: var(--c-mute);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* ============== INTRO ============== */
.section--intro {
  background: var(--c-bg);
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}
.section--intro::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 42, 37, .04) 0%, transparent 65%);
  pointer-events: none;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro__text .h2 { margin: 0 0 24px; max-width: 560px; }
.intro__text p { color: var(--c-mute); margin: 0 0 16px; max-width: 540px; }
.intro__text strong { color: var(--c-wine); font-weight: 600; }

.intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat strong {
  font-family: var(--f-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--c-wine);
  line-height: 1;
}
.stat span {
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--c-mute);
}
@media (max-width: 880px) {
  .intro__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== LOCATIONS ============== */
.section--locations {
  background: var(--c-surface);
}
.locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.loc-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease, border-color .3s ease;
  isolation: isolate;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(125, 42, 37, .18); }
.loc-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.loc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.loc-card:hover .loc-card__media img { transform: scale(1.06); }

.loc-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(42, 29, 21, .85);
  color: var(--c-cream);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.loc-card__tag--accent { background: var(--c-wine); color: #fff; }

.loc-card {
  display: flex;
  flex-direction: column;
}
.loc-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  /* keep the heading + address area a fixed minimum so chips align across cards */
}
.loc-card__body .h3 { margin-bottom: 6px; }
.loc-card__addr {
  color: var(--c-mute);
  margin: 0 0 18px;
  font-size: 14px;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}
.loc-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--c-wood);
  padding: 14px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 18px;
  margin-top: auto;
  flex-wrap: nowrap;
}
.loc-card__meta b { color: var(--c-wine); font-size: 14px; font-weight: 700; }
.loc-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  font-size: 13px;
  letter-spacing: .01em;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}
.loc-card__chip--primary {
  background: rgba(125, 42, 37, .08);
  border-color: rgba(125, 42, 37, .18);
  color: var(--c-wine);
}
.loc-card__chip--primary b { color: var(--c-wine); font-size: 14px; }
.loc-card__more {
  color: var(--c-wine);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
}
@media (max-width: 760px) {
  /* Horizontal swipe carousel — like stories */
  .locations {
    position: relative;
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    /* full-bleed via padding instead of negative margin to avoid horizontal overflow on body */
    margin: 0;
    padding: 6px 24px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .locations::-webkit-scrollbar { display: none; }
  .loc-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
  .loc-card__addr { min-height: 0; }
}

/* ============== PROPERTY ============== */
.section--property {
  background: var(--c-bg);
}
.section--property-alt {
  background:
    radial-gradient(circle at 80% 0%, rgba(125, 42, 37, .18) 0%, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(125, 42, 37, .1) 0%, transparent 50%),
    var(--c-wood);
  color: var(--c-cream);
}
.section--property-alt .h2,
.section--property-alt .h3 { color: var(--c-cream); }
.section--property-alt .property__addr,
.section--property-alt .property__lead { color: rgba(244, 235, 217, .85); }
.section--property-alt .property__list li { color: #fff; font-weight: 500; }
.section--property-alt .property__list li span { color: var(--c-cream); }
.section--property-alt .gallery { background: rgba(0,0,0,.18); }

/* Check-list (white on dark with accent checkmarks) */
.property__list--check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.property__list--check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}
.property__list--check li .check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-wine);
  color: var(--c-cream);
  margin-top: 2px;
  box-shadow: 0 0 0 2px rgba(244, 235, 217, .12);
}
.section--property-alt .property__list--check li .check {
  background: var(--c-cream);
  color: var(--c-wine);
  box-shadow: 0 0 0 4px rgba(244, 235, 217, .08);
}
@media (max-width: 600px) {
  .property__list--check { grid-template-columns: 1fr; }
}

.property__head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.property__head .h2 { margin-bottom: 16px; }
.property__addr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-mute);
  font-size: 15px;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.property__addr svg { color: var(--c-wine); flex-shrink: 0; }
.property__addr .distance {
  color: var(--c-wine);
  font-weight: 600;
  margin-left: 4px;
}
.property__addr .distance--accent {
  color: var(--c-cream);
  background: var(--c-wine);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.property__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.property__grid--reverse {
  grid-template-columns: 1fr 1.1fr;
}
.property__grid--reverse .property__info { order: 1; }
.property__grid--reverse .gallery { order: 2; }
@media (max-width: 900px) {
  .property__grid,
  .property__grid--reverse { grid-template-columns: 1fr; gap: 32px; }
  .property__grid--reverse .property__info { order: 2; }
  .property__grid--reverse .gallery { order: 1; }
}

.property__lead {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
  color: var(--c-wood-soft);
}
.property__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.property__list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--c-wood-soft);
}
.property__list li span {
  color: var(--c-wine);
  font-weight: 700;
  flex-shrink: 0;
}
.property__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Gallery */
.gallery {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.gallery__main {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.gallery__main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .4s ease;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .gallery__thumbs {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .gallery__thumbs::-webkit-scrollbar { display: none; }
  .gallery__thumb {
    flex: 0 0 22%;
    min-width: 80px;
    scroll-snap-align: start;
  }
}
.gallery__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .25s ease, transform .25s ease;
  padding: 0;
}
.gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__thumb.is-active { border-color: var(--c-wine); }
.gallery__thumb:hover { transform: translateY(-2px); }
.gallery-nav-btn { display: none; }

/* Swipe hint for mobile carousels */
.swipe-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(178px, 44vw);
  margin: 12px auto 0;
  padding: 0;
  pointer-events: none;
  user-select: none;
}
.swipe-hint__arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 30px;
  border: 1px solid rgba(125, 42, 37, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 22px rgba(61, 42, 31, .10);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-wine);
  animation: swipeHint 1.6s ease-in-out infinite;
  will-change: transform, opacity;
}
.swipe-hint__arrow--left { animation-delay: .2s; }
.swipe-hint__arrow--right { animation-delay: 0s; }
@keyframes swipeHint {
  0%, 100% { transform: translateX(0); opacity: .35; }
  50%      { transform: translateX(6px); opacity: 1; }
}
.swipe-hint__arrow--left {
  animation-name: swipeHintLeft;
}
@keyframes swipeHintLeft {
  0%, 100% { transform: translateX(0); opacity: .35; }
  50%      { transform: translateX(-6px); opacity: 1; }
}
.section--property-alt .swipe-hint { color: rgba(244, 235, 217, .7); }
.section--property-alt .swipe-hint__arrow {
  color: var(--c-cream);
  border-color: rgba(244, 235, 217, .24);
  background: rgba(244, 235, 217, .10);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}
@media (max-width: 760px) {
  .swipe-hint {
    position: absolute;
    z-index: 5;
    left: 20px;
    right: 20px;
    top: 50%;
    display: flex;
    width: auto;
    margin: 0;
    transform: translateY(-50%);
  }
  .swipe-hint--center { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .swipe-hint__arrow { animation: none; opacity: .6; }
}

/* Map */
.map {
  margin-top: 64px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--c-line);
}
.map__head .h3 { margin: 0; }
.map__link {
  color: var(--c-wine);
  font-weight: 600;
  font-size: 14px;
}
.map__link:hover { text-decoration: underline; }
.map__embed {
  position: relative;
  background: var(--c-bg-alt);
}
.map__embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ============== DECORATIVE BANNER ============== */
.banner {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}
.banner__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: translateZ(0);
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 13, .5) 0%, rgba(125, 42, 37, .55) 100%);
  z-index: -1;
}
.banner__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.banner__eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, .8);
  font-weight: 600;
}
.banner__quote {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
  margin: 0;
  max-width: 820px;
  letter-spacing: .005em;
}
.banner__sign {
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(244, 235, 217, .7);
  font-weight: 500;
}
@media (max-width: 600px) {
  .banner { height: 320px; }
  .banner__quote { font-size: 20px; }
}

/* ============== AMENITIES ============== */
.section--amenities {
  background: var(--c-bg);
}
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity {
  background: var(--c-surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--c-line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.amenity:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(125, 42, 37, .22);
}
.amenity__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(125, 42, 37, .08);
  color: var(--c-wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .3s ease, color .3s ease;
}
.amenity:hover .amenity__icon {
  background: var(--c-wine);
  color: var(--c-cream);
}
.amenity h4 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}
.amenity p {
  margin: 0;
  font-size: 14px;
  color: var(--c-mute);
  line-height: 1.55;
}
@media (max-width: 900px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .amenities {
    position: relative;
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    margin: 0;
    padding: 6px 24px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .amenities::-webkit-scrollbar { display: none; }
  .amenity {
    flex: 0 0 62%;
    scroll-snap-align: start;
    text-align: left;
  }
  .amenity__icon { margin-bottom: 12px; }
}

/* ============== INFO CARDS (hotel facts) ============== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(61, 42, 31, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(61, 42, 31, .07);
  border-color: rgba(125, 42, 37, .18);
}
.info-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 42, 37, .08);
  color: var(--c-wine);
  margin-bottom: 4px;
}
.info-card h4 {
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0;
}
.info-card p {
  margin: 0;
  font-size: 14px;
  color: var(--c-mute);
  line-height: 1.5;
}
@media (max-width: 900px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .info-grid { grid-template-columns: 1fr; } }

/* ============== REVIEWS ============== */
.section--reviews {
  background: var(--c-surface);
}
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 10px 22px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.reviews__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f0a93b;
}
.reviews__rating-value {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1;
}
.reviews__rating-source {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--c-mute);
  font-weight: 600;
}
.reviews__embed {
  margin: 36px auto 0;
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.reviews__embed iframe {
  display: block;
  width: 100%;
  border: none;
}
.reviews__embed-link {
  display: block;
  padding: 14px 24px;
  text-align: center;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  color: var(--c-wine);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  transition: background .25s ease;
}
.reviews__embed-link:hover { background: #fff; }
@media (max-width: 600px) {
  .reviews__embed iframe { height: 600px; }
}

/* ============== PRICES ============== */
.section--prices { background: var(--c-bg); }
.prices__from {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 12px 0 14px;
  padding: 10px 22px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.prices__from-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
}
.prices__from-amount {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--c-wine);
  line-height: 1;
}
.prices__from-amount i { font-style: normal; font-size: 20px; opacity: .8; }
.prices {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.price {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price--accent {
  background: var(--c-wine);
  color: #fff;
  border-color: var(--c-wine);
  position: relative;
}
.price--accent::before {
  content: "Хит";
  position: absolute;
  top: -8px; right: 14px;
  background: var(--c-cream);
  color: var(--c-wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.price__season {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
}
.price--accent .price__season { color: var(--c-cream); }
.price__amount {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--c-ink);
}
.price--accent .price__amount { color: #fff; }
.price__amount i { font-style: normal; font-size: 18px; opacity: .7; }
.price__note {
  font-size: 12px;
  color: var(--c-mute);
}
.price--accent .price__note { color: rgba(244, 235, 217, .8); }

.prices__hint {
  margin-top: 32px;
  text-align: center;
  color: var(--c-mute);
  font-size: 14px;
}
.prices__cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) { .prices { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .prices {
    position: relative;
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    margin: 0;
    padding: 6px 24px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .prices::-webkit-scrollbar { display: none; }
  .price {
    flex: 0 0 48%;
    scroll-snap-align: start;
  }
}

/* ============== CONTACT ============== */
.section--contact {
  background:
    linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.section--contact::before,
.section--contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.section--contact::before {
  width: 360px; height: 360px;
  background: rgba(244, 235, 217, .12);
  top: -120px; left: -120px;
}
.section--contact::after {
  width: 460px; height: 460px;
  background: rgba(196, 99, 74, .25);
  bottom: -160px; right: -160px;
}
.section--contact .h2 { color: #fff; }
.section--contact .h3 { color: var(--c-ink); }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact__left p {
  color: rgba(244, 235, 217, .85);
  max-width: 480px;
  font-size: 17px;
  line-height: 1.7;
}
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 28px;
  color: var(--c-cream);
  transition: opacity .25s ease, transform .25s ease;
}
.contact__phone:hover { opacity: .85; transform: translateX(4px); }
.contact__phone svg { color: var(--c-cream); flex-shrink: 0; }
.contact__phone span {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: .01em;
}
.contact__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.contact__meta li {
  font-size: 14px;
  color: rgba(244, 235, 217, .8);
}
.contact__meta strong { color: var(--c-cream); margin-right: 6px; }

.contact__right {
  display: grid;
  gap: 16px;
}
.contact__card {
  background: var(--c-cream);
  color: var(--c-ink);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s ease;
}
.contact__card:hover { transform: translateY(-4px); }
.contact__card .h3 { margin: 0 0 8px; }
.contact__card p {
  margin: 0 0 4px;
  color: var(--c-mute);
}
.contact__dist {
  color: var(--c-wine) !important;
  font-weight: 600;
  margin-bottom: 18px !important;
}
.contact__card--accent {
  background: var(--c-ink);
  color: var(--c-cream);
}
.contact__card--accent .h3 { color: #fff; }
.contact__card--accent p { color: rgba(244, 235, 217, .8); }
.contact__dist--accent { color: var(--c-cream) !important; }

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--c-ink);
  color: rgba(244, 235, 217, .7);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 235, 217, .2), transparent);
}
.footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 99, 74, .18) 0%, transparent 70%);
  pointer-events: none;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 235, 217, .1);
  position: relative;
  z-index: 1;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer__logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  flex: 0 0 64px;
  margin: 0;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
.footer__logo {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo em { font-style: italic; color: var(--c-terracotta); padding: 0 4px; }
.footer__logo-sub {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, .55);
  font-weight: 600;
}
.footer__tag {
  margin: 0;
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
}
.footer__phone {
  display: inline-block;
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--c-cream);
  margin-top: 4px;
  letter-spacing: .005em;
  transition: color .2s ease;
}
.footer__phone:hover { color: var(--c-terracotta); }
.footer__hours {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, .55);
}
.footer__socials {
  display: inline-flex;
  gap: 10px;
  margin-top: 8px;
}
.footer__social {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(244, 235, 217, .08);
  color: var(--c-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.footer__social:hover { background: var(--c-wine); transform: translateY(-2px); }
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h5 {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-cream);
  margin: 0 0 8px;
  font-weight: 600;
}
.footer__col a {
  font-size: 14px;
  color: rgba(244, 235, 217, .7);
  transition: color .2s ease;
  line-height: 1.4;
}
.footer__col a:hover { color: var(--c-cream); }
.footer__col span { font-size: 13px; opacity: .55; line-height: 1.5; }
.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  font-size: 13px;
  opacity: .65;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.footer__bottom-meta { letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.footer__bottom-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__bottom-actions a {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, .65);
  transition: color .2s ease;
}
.footer__bottom-actions a:hover { color: var(--c-cream); }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer { padding: 50px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .footer__phone { font-size: 20px; }
}

/* ============== FAB ============== */
.fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-wine);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(125, 42, 37, .45);
  z-index: 80;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.fab:hover { background: var(--c-wine-deep); }
@media (max-width: 720px) { .fab { display: inline-flex; } }

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide { transition: opacity .3s ease, transform 0s; }
  .fab { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============== AUDIO GUIDE ============== */

/* Nav button next to "Забронировать" */
.nav__guide {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  background: rgba(125, 42, 37, .08);
  color: var(--c-wine);
  border: 1px solid rgba(125, 42, 37, .22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  isolation: isolate;
}
.nav__guide:hover {
  background: var(--c-wine);
  color: #fff;
  border-color: var(--c-wine);
  transform: translateY(-1px);
}
.nav__guide.is-active {
  background: var(--c-wine);
  color: #fff;
  border-color: var(--c-wine);
}
.nav__guide-pulse { display: none; }
.nav__guide:active { transform: translateY(0) scale(.97); }
.nav.is-light:not(.is-scrolled) .nav__guide {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
}
.nav.is-light:not(.is-scrolled) .nav__guide:hover {
  background: #fff;
  color: var(--c-wine);
  border-color: #fff;
}
@media (max-width: 1100px) {
  .nav__guide-text { display: none; }
  .nav__guide { padding: 10px; }
}
@media (max-width: 960px) {
  .nav__guide { display: none; }
}

/* Mobile menu button */
.nav__mobile-guide {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(125, 42, 37, .35);
  background: rgba(125, 42, 37, .08);
  color: var(--c-wine);
  border-radius: 999px;
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 600;
}
.nav__mobile-guide.is-active { background: var(--c-wine); color: #fff; }

/* Sticky bar with controls */
.guide-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.guide-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.guide-bar__inner {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(20, 16, 13, .94);
  color: var(--c-cream);
  border-radius: 24px;
  padding: 14px 14px 14px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(244, 235, 217, .14);
}
.guide-bar__media {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-wine-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-bar__wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}
.guide-bar__wave i {
  display: block;
  width: 3px;
  background: var(--c-cream);
  border-radius: 4px;
  height: 6px;
  opacity: .55;
}
.guide-bar.is-playing .guide-bar__wave i { animation: guideWave 1.1s ease-in-out infinite; }
.guide-bar.is-playing .guide-bar__wave i:nth-child(1) { animation-delay: .0s; }
.guide-bar.is-playing .guide-bar__wave i:nth-child(2) { animation-delay: .12s; }
.guide-bar.is-playing .guide-bar__wave i:nth-child(3) { animation-delay: .24s; }
.guide-bar.is-playing .guide-bar__wave i:nth-child(4) { animation-delay: .36s; }
.guide-bar.is-playing .guide-bar__wave i:nth-child(5) { animation-delay: .48s; }
@keyframes guideWave {
  0%, 100% { height: 5px; opacity: .5; }
  50%      { height: 17px; opacity: 1; }
}

.guide-bar__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guide-bar__step {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, .55);
}
.guide-bar__title {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.guide-bar__progress {
  position: relative;
  height: 3px;
  background: rgba(244, 235, 217, .15);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.guide-bar__progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-cream) 0%, var(--c-terracotta) 100%);
  transition: width .15s linear;
}

.guide-bar__controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.guide-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px;
  background: rgba(244, 235, 217, .08);
  color: var(--c-cream);
  border: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.guide-bar__btn:hover { background: rgba(244, 235, 217, .18); }
.guide-bar__btn--play {
  width: 44px; height: 44px;
  background: var(--c-cream);
  color: var(--c-wood);
}
.guide-bar__btn--play:hover { background: #fff; transform: scale(1.05); }
.guide-bar__icon-pause { display: none; }
.guide-bar.is-playing .guide-bar__icon-play  { display: none; }
.guide-bar.is-playing .guide-bar__icon-pause { display: block; }

.guide-bar__stop {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--c-wine);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .015em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(125, 42, 37, .45);
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.guide-bar__stop:hover { background: var(--c-wine-deep); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(125, 42, 37, .55); }
.guide-bar__stop:active { transform: translateY(0); }
.guide-bar__stop svg { flex-shrink: 0; }
.guide-bar__stop span { white-space: nowrap; }

/* During the prelude (sea sounds) the bar dims controls so user knows to wait */
.guide-bar.is-prelude .guide-bar__controls { opacity: .4; pointer-events: none; }
.guide-bar.is-prelude .guide-bar__title { font-style: italic; }

@media (max-width: 760px) {
  /* compact two-row mobile player with all controls visible */
  .guide-bar { left: 8px; right: 8px; bottom: 8px; }
  .guide-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "info  close"
      "ctrls ctrls";
    gap: 6px 10px;
    padding: 10px 12px;
    border-radius: 18px;
  }
  .guide-bar__media { display: none; }
  .guide-bar__info {
    grid-area: info;
    min-width: 0;
    gap: 2px;
  }
  .guide-bar__step { font-size: 9.5px; letter-spacing: .18em; }
  .guide-bar__title {
    font-size: 13.5px;
    line-height: 1.25;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .guide-bar__progress { margin-top: 3px; }

  .guide-bar__controls {
    grid-area: ctrls;
    display: inline-flex;
    justify-content: center;
    gap: 14px;
    padding-top: 4px;
  }
  .guide-bar__btn { padding: 6px; }
  .guide-bar__btn--play { width: 40px; height: 40px; }

  /* Stop button collapses to a small X-icon in the upper-right */
  .guide-bar__stop {
    grid-area: close;
    align-self: start;
    padding: 0;
    width: 32px;
    height: 32px;
    min-height: 32px;
    border-radius: 999px;
    background: rgba(244, 235, 217, .12);
    box-shadow: none;
    color: var(--c-cream);
  }
  .guide-bar__stop:hover { background: rgba(244, 235, 217, .22); }
  .guide-bar__stop span { display: none; }
  .guide-bar__stop svg { width: 14px; height: 14px; }
  .guide-bar.is-prelude .guide-bar__controls { display: none; }
  .guide-bar.is-prelude .guide-bar__inner { grid-template-areas: "info close"; }

  /* Soften the section-being-narrated glow so it doesn't look like a hard square */
  [data-narration-track].is-narrating::after {
    box-shadow: none !important;
    animation: none !important;
  }
}

/* When guide is active, lift the FAB so it doesn't overlap the bar */
body.has-guide .fab {
  bottom: 96px;
  transition: bottom .3s ease;
}

/* Highlight the section that's currently being narrated */
[data-narration-track].is-narrating {
  position: relative;
}
[data-narration-track].is-narrating::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(125, 42, 37, .35);
  border-radius: inherit;
  animation: narrateGlow 2.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes narrateGlow {
  0%, 100% { box-shadow: inset 0 0 0 2px rgba(125, 42, 37, .25); }
  50%      { box-shadow: inset 0 0 0 2px rgba(125, 42, 37, .55); }
}

/* Toast / dialog when audio files aren't uploaded yet */
.guide-toast {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(28, 18, 14, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s ease;
}
.guide-toast.is-visible { opacity: 1; }
.guide-toast__card {
  position: relative;
  max-width: 460px;
  width: 100%;
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  transform: translateY(20px) scale(.97);
  transition: transform .25s ease;
}
.guide-toast.is-visible .guide-toast__card { transform: translateY(0) scale(1); }
.guide-toast__close {
  position: absolute;
  top: 12px; right: 14px;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--c-mute);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.guide-toast__close:hover { background: rgba(0,0,0,.05); color: var(--c-ink); }
.guide-toast__icon {
  width: 60px; height: 60px;
  border-radius: 999px;
  margin: 0 auto 16px;
  background: rgba(125, 42, 37, .1);
  color: var(--c-wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.guide-toast h4 {
  margin: 0 0 10px;
  font-family: var(--f-serif);
  font-size: 26px;
  color: var(--c-ink);
  font-weight: 600;
}
.guide-toast p {
  margin: 0 0 22px;
  color: var(--c-mute);
  font-size: 15px;
  line-height: 1.6;
}
.guide-toast__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-toast__actions .btn { width: 100%; }
@media (min-width: 480px) {
  .guide-toast__actions { flex-direction: row; }
  .guide-toast__actions .btn { width: auto; flex: 1; }
}

/* ============================================================
   VIDEO MODAL (видео-обзор)
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.video-modal.is-visible { opacity: 1; pointer-events: auto; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 6, 5, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.video-modal__card {
  position: relative;
  width: min(960px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px;
  background: transparent;
  transform: scale(.97) translateY(10px);
  transition: transform .25s ease;
}
.video-modal.is-visible .video-modal__card { transform: scale(1) translateY(0); }
.video-modal__title {
  margin: 0;
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: .01em;
}
.video-modal__close {
  position: absolute;
  top: -2px;
  right: 4px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.video-modal__close:hover { background: rgba(255, 255, 255, .26); transform: scale(1.05); }
.video-modal__player {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.video-modal__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  background: #000;
  outline: none;
}

/* lock background scroll while modal open */
body.video-open { overflow: hidden; }

/* ============================================================
   FULLSCREEN GALLERY MODAL
   ============================================================ */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.gallery-modal.is-visible { opacity: 1; pointer-events: auto; }
.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 6, 5, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.gallery-modal__card {
  position: relative;
  width: min(1200px, 98vw);
  height: min(90vh, 800px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 20px;
  background: transparent;
  transform: scale(.97) translateY(10px);
  transition: transform .25s ease;
}
.gallery-modal.is-visible .gallery-modal__card { transform: scale(1) translateY(0); }
.gallery-modal__viewer {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 13, .5);
  border-radius: 12px;
  overflow: hidden;
}
.gallery-modal__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gallery-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  z-index: 10;
}
.gallery-modal__close:hover { background: rgba(255, 255, 255, .26); transform: scale(1.05); }
.gallery-modal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
}
.gallery-modal__btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.gallery-modal__btn:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.gallery-modal__counter {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* lock background scroll while modal open */
body.gallery-open { overflow: hidden; }

/* ============================================================
   HERO SPLIT (left copy + right booking card) — Sea House style
   ============================================================ */
.hero--split { min-height: 96svh; align-items: stretch; }
.hero--split .hero__content {
  width: 100%;
  max-width: var(--container);
  text-align: left;
  padding: 110px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero--split .hero__title {
  text-align: left;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.02;
  margin-bottom: 18px;
}
.hero--split .hero__lead { text-align: left; margin: 0 0 28px; max-width: 480px; }
.hero--split .hero__actions { justify-content: flex-start; margin-bottom: 36px; }
.hero--split .hero__badges {
  grid-template-columns: repeat(2, auto);
  display: inline-grid;
  max-width: none;
  margin: 0;
  padding: 18px 22px;
  gap: 28px;
  background: rgba(20, 16, 13, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
}
.hero--split .hero__badge { flex-direction: column; }
.hero--split .hero__badge strong { font-size: clamp(24px, 3vw, 32px); }

/* Booking card */
.hero__booking {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.hero__booking-card {
  background: #fff;
  color: var(--c-ink);
  border-radius: 22px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 30px 80px rgba(20, 16, 13, .35), 0 4px 16px rgba(20, 16, 13, .15);
  border: 1px solid rgba(0,0,0,.04);
}
.hero__booking-title {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--c-ink);
  line-height: 1.15;
}
.hero__booking-sub {
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--c-mute);
  line-height: 1.5;
}
.hero__booking-form { display: flex; flex-direction: column; gap: 12px; }

.booking-field {
  display: block;
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 8px 14px 6px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.booking-field:focus-within {
  border-color: var(--c-wine);
  box-shadow: 0 0 0 3px rgba(125, 42, 37, .12);
}
.booking-field__label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
  margin-bottom: 2px;
}
.booking-field__input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: var(--c-ink);
  font-size: 14.5px;
  padding: 2px 0 4px;
  appearance: none;
  -webkit-appearance: none;
}
.booking-field__input::-webkit-calendar-picker-indicator {
  filter: invert(15%);
  opacity: .6;
  cursor: pointer;
}
.hero__booking-submit {
  margin-top: 4px;
  width: 100%;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 12px;
}
.hero__booking-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--c-mute);
  text-decoration: none;
  text-align: center;
  transition: color .2s ease;
}
.hero__booking-wa:hover { color: var(--c-wine); }
.hero__booking-wa svg { color: #25d366; }

@media (max-width: 960px) {
  .hero--split .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 100px 20px 56px;
  }
  .hero__booking { justify-content: stretch; }
  .hero__booking-card { max-width: none; }
  .hero--split .hero__title { font-size: clamp(34px, 9vw, 56px); }
  .hero--split .hero__badges { padding: 14px 16px; gap: 18px 22px; }
}
@media (max-width: 480px) {
  .hero--split .hero__content { padding: 96px 16px 40px; }
  .hero__booking-card { padding: 22px; border-radius: 18px; }
  .hero__booking-title { font-size: 22px; }
}

/* ============================================================
   FEATURES — «Комфорт, который чувствуется в деталях»
   ============================================================ */
.section--features {
  padding: 56px 0;
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.features__grid {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 48px;
  align-items: center;
}
.features__lead { padding-right: 16px; }
.features__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  margin: 0;
  line-height: 1.1;
  color: var(--c-ink);
}
.features__title em {
  font-style: normal;
  color: var(--c-wine);
}
.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 42, 37, .09);
  color: var(--c-wine);
  margin-bottom: 6px;
}
.feature h4 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .005em;
  margin: 0;
  color: var(--c-ink);
}
.feature p {
  margin: 0;
  font-size: 13px;
  color: var(--c-mute);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .features__grid { grid-template-columns: 1fr; gap: 24px; }
  .features__lead { padding-right: 0; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 720px) {
  .section--features { padding: 40px 0; }
}
@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; gap: 14px; }
  .features__title { font-size: 26px; }
}

/* ============================================================
   CTA BANNER — «Отдых, который останется с вами»
   ============================================================ */
.banner--cta { height: auto; min-height: 380px; padding: 80px 0; align-items: center; }
.banner--cta .banner__overlay {
  background:
    linear-gradient(90deg, rgba(20, 16, 13, .78) 0%, rgba(20, 16, 13, .55) 50%, rgba(20, 16, 13, .25) 100%);
}
.banner__inner--cta {
  text-align: left;
  align-items: flex-start;
  gap: 0;
}
.banner__copy {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.banner__title {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  letter-spacing: -.005em;
}
.banner__lead {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin: 0;
  max-width: 480px;
}
.banner__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.btn--cream {
  background: #fff;
  color: var(--c-ink);
}
.btn--cream:hover { background: var(--c-cream); color: var(--c-ink); }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
  color: #fff;
}
@media (max-width: 600px) {
  .banner--cta { padding: 60px 0; min-height: 320px; }
  .banner__cta { flex-direction: column; align-items: stretch; }
  .banner__cta .btn { width: 100%; }
}

/* ============================================================
   FOOTER — extras (phone lines)
   ============================================================ */
.footer__phone-line { font-weight: 500; }

/* Optical alignment for star glyph in hero rating badge */
.hero__badge-star {
  display: inline-block;
  font-size: .82em;
  color: var(--c-cream);
  transform: translateY(.12em);
  line-height: 1;
}

/* Booking form: status message + busy state + honeypot */
.booking-field__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero__booking-submit { position: relative; }
.hero__booking-submit-label { transition: opacity .2s ease; }
.hero__booking-submit-spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: bookingSpin .85s linear infinite;
}
.hero__booking-submit.is-busy { cursor: wait; }
.hero__booking-submit.is-busy .hero__booking-submit-label { opacity: 0; }
.hero__booking-submit.is-busy .hero__booking-submit-spinner { opacity: 1; }
.hero__booking-submit:disabled { opacity: .85; cursor: not-allowed; }
@keyframes bookingSpin { to { transform: rotate(360deg); } }

.hero__booking-status {
  margin: 4px 0 0;
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.45;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, .04);
  color: var(--c-ink);
}
.hero__booking-status.is-info {
  background: rgba(125, 42, 37, .07);
  border-color: rgba(125, 42, 37, .18);
  color: var(--c-wine);
}
.hero__booking-status.is-ok {
  background: rgba(46, 125, 50, .08);
  border-color: rgba(46, 125, 50, .25);
  color: #2e7d32;
}
.hero__booking-status.is-err {
  background: rgba(178, 34, 34, .08);
  border-color: rgba(178, 34, 34, .28);
  color: #b22222;
}

/* ============== HARD-FIX: hidden attribute must always win ============== */
/* Several overlay components (.guide-toast, .guide-bar, .guide-hint) use
   `display: flex` and `position: fixed; inset: 0;` so the HTML `hidden`
   attribute alone wasn't enough — the invisible overlay was still capturing
   clicks across the whole viewport, blocking every button on the page. */
[hidden] { display: none !important; }

/* ============== Block horizontal page panning / overscroll ============== */
/* Users could pull the page sideways on mobile (especially with two fingers)
   and break the layout. Lock horizontal panning at the document level and
   re-enable it explicitly only inside swipeable carousels. */
html, body {
  overflow-x: clip;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}
[data-swipeable] {
  position: relative;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
}
@media (max-width: 760px) {
  [data-swipeable].has-swipe-overflow::before {
    content: "";
    position: absolute;
    z-index: 8;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 58px;
    border-radius: 0 16px 16px 0;
    background: none;
    pointer-events: none;
  }
  [data-swipeable].has-swipe-overflow::after {
    content: "›";
    position: absolute;
    z-index: 9;
    top: 50%;
    right: 16px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    box-shadow: none;
    color: rgba(255, 255, 255, .6);
    font-family: var(--f-sans);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: auto;
    cursor: pointer;
  }
  .section--property-alt [data-swipeable].has-swipe-overflow::before,
  .gallery__rail.has-swipe-overflow::before {
    background: none;
  }
  .gallery__rail.has-swipe-overflow::after {
    display: none;
  }
  .locations.has-swipe-overflow::before,
  .locations.has-swipe-overflow::after {
    display: none;
  }
}

/* ============================================================
   MOBILE REDESIGN (≤760px)
   Desktop is untouched — every rule below is gated by media.
   ============================================================ */

/* Spoiler-button + mobile audio guide pill: defaults (hidden on desktop) */
.hero__booking-toggle { display: none; }
.hero__guide-mobile { display: none; }

@media (max-width: 760px) {
  /* ---------- Page-level hygiene ---------- */
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body, .container { overflow-x: clip; }
  .container { padding-left: 18px; padding-right: 18px; }
  /* Default: never split words mid-syllable on Russian copy. Words only
     break on whitespace/hyphens. This prevents ugly "Кондицио-нер" etc. */
  h1, h2, h3, h4, h5, p, a, span, li, label, button {
    hyphens: manual;
    -webkit-hyphens: manual;
    word-break: normal;
    overflow-wrap: break-word; /* fall back only when a single word truly can't fit */
  }
  /* Long-form prose paragraphs (intro / property / amenity descriptions):
     allow soft hyphenation when needed so right edge stays clean. */
  .intro__text p,
  .property__lead,
  .amenity p,
  .feature p,
  .info-card p,
  .section__sub {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
  }
  img, iframe, video { max-width: 100%; height: auto; }

  /* ---------- Top nav: trim chrome on mobile ---------- */
  .nav { padding: 10px 0; }
  .nav__guide { display: none; }
  .nav__cta {
    padding: 9px 14px !important;
    font-size: 13px !important;
    gap: 6px !important;
  }
  .nav__cta svg { width: 14px; height: 14px; }
  .nav__logo { font-size: 17px; }
  .nav__logo small { display: none; }

  /* ---------- HERO ---------- */
  .hero {
    min-height: auto;       /* let content + a bit of breathing room define the height */
    padding-top: 80px;
    padding-bottom: 28px;
  }
  .hero__media,
  .hero__slide { background-position: 30% 60%; } /* keep the action centred lower */
  .hero__content { gap: 12px; align-items: stretch; }
  .hero__copy { padding: 0; }
  .hero__eyebrow {
    font-size: 9.5px;
    letter-spacing: .2em;
    padding: 5px 11px;
  }
  .hero__title {
    font-size: clamp(24px, 7.6vw, 32px);
    line-height: 1.08;
    margin: 12px 0 10px;
    letter-spacing: -.4px;
  }
  .hero__lead {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: none;
  }
  .hero__actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    min-height: 44px;
  }

  /* Mobile audiogide pill — sits just under hero CTAs */
  .hero__guide-mobile {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 10px 0 2px;
    padding: 7px 13px;
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--c-cream);
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background .2s ease, border-color .2s ease;
  }
  .hero__guide-mobile:active { transform: scale(.97); }
  .hero__guide-mobile.is-active {
    background: var(--c-wine);
    border-color: var(--c-wine);
    color: #fff;
  }
  .hero__guide-mobile svg { flex: 0 0 auto; }

  /* Stat badges */
  .hero__badges {
    margin-top: 16px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero__badge {
    flex: 1 1 calc(50% - 4px);
    padding: 8px 10px;
    border-radius: 12px;
  }
  .hero__badge strong {
    font-size: 16px;
    line-height: 1.05;
  }
  .hero__badge span {
    font-size: 9.5px;
    letter-spacing: .12em;
  }

  /* ---------- Booking spoiler (mobile) ---------- */
  .hero__booking {
    display: block;
    padding: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 0;
  }
  .hero__booking-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 13px 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .96);
    color: var(--c-ink);
    font-family: var(--f-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.1px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    -webkit-tap-highlight-color: transparent;
    transition: background .2s ease, border-radius .25s ease;
  }
  .hero__booking-toggle:active { transform: scale(.99); }
  .hero__booking-toggle-icon {
    flex: 0 0 auto;
    color: var(--c-wine);
  }
  .hero__booking-toggle-text { flex: 1 1 auto; }
  .hero__booking-toggle-chevron {
    flex: 0 0 auto;
    color: var(--c-mute);
    transition: transform .25s ease;
  }
  .hero__booking-toggle.is-open {
    border-radius: 18px 18px 0 0;
    background: #fff;
  }
  .hero__booking-toggle.is-open .hero__booking-toggle-chevron {
    transform: rotate(180deg);
  }

  .hero__booking-card {
    display: none;
    border-radius: 0 0 18px 18px;
    margin-top: -1px;
    padding: 18px 20px 22px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-top: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  }
  .hero__booking-card.is-open { display: block; }
  .hero__booking-card .hero__booking-title { display: none; }
  .hero__booking-card .hero__booking-sub {
    font-size: 13px;
    margin: 0 0 14px;
    color: var(--c-mute);
  }
  .booking-field { margin-bottom: 10px; }
  .booking-field__label { font-size: 10.5px; letter-spacing: .14em; }
  .booking-field__input {
    padding: 12px 14px;
    font-size: 16px; /* avoid iOS zoom on focus */
    min-height: 46px;
  }
  .hero__booking-submit {
    margin-top: 6px;
    padding: 14px 18px;
    font-size: 15px;
    min-height: 48px;
  }
  .hero__booking-wa { font-size: 13px; }

  /* ---------- Sections: tighter spacing ---------- */
  .section { padding: 44px 0; }
  .section__head { margin-bottom: 24px; }
  .section__head .h2,
  .h2,
  .property__head .h2 {
    font-size: clamp(21px, 5.8vw, 26px) !important;
    line-height: 1.12;
    letter-spacing: -.2px;
    margin-bottom: 10px !important;
  }
  .section__sub, .property__lead { font-size: 13.5px; line-height: 1.55; }
  .eyebrow { font-size: 9.5px; letter-spacing: .2em; margin-bottom: 8px; }

  /* ---------- Property head & info ---------- */
  .property__head { padding: 0; }
  .property__addr {
    font-size: 13px;
    line-height: 1.45;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .property__list li { font-size: 14px; line-height: 1.5; }
  .property__cta { flex-direction: column; gap: 10px; }
  .property__cta .btn { width: 100%; justify-content: center; min-height: 48px; }

  /* ---------- Mobile-friendly gallery rail (inserted by JS) ---------- */
  .gallery--mobile .gallery__main,
  .gallery--mobile .gallery__thumbs { display: none !important; }
  .property__grid,
  .property__grid > * { min-width: 0; }
  .gallery {
    padding: 8px;
    border-radius: 18px;
    min-width: 0;
    max-width: 100%;
  }
  .gallery__rail {
    min-width: 0;
    max-width: 100%;
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 12px;
    position: relative;
  }
  .gallery__rail::-webkit-scrollbar { display: none; }
  
  /* Gallery container with floating nav buttons */
  .gallery-container {
    position: relative;
    width: 100%;
  }
  .gallery-nav-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    background: rgba(33, 25, 22, .58);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .26);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .gallery-nav-btn--prev { left: 16px; }
  .gallery-nav-btn--next { right: 16px; }
  .gallery-nav-btn:hover {
    background: rgba(33, 25, 22, .72);
    border-color: rgba(255, 255, 255, .7);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
    transform: translateY(-50%) scale(1.04);
  }
  .gallery-nav-btn:active {
    transform: translateY(-50%) scale(.96);
  }
  .gallery-nav-btn svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .28));
  }
  .gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    position: relative;
    background: var(--c-bg-alt);
  }
  .gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .gallery__counter {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 5px 11px;
    background: none;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    border-radius: 999px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .gallery__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 0;
  }
  .gallery__dot {
    width: 6px; height: 6px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, .18);
    transition: background .25s ease, width .25s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .gallery__dot.is-active {
    background: var(--c-wine);
    width: 22px;
  }
  .gallery__dots-hint {
    display: block;
    margin-top: 8px;
    font-size: 11.5px;
    text-align: center;
    color: var(--c-mute);
    letter-spacing: .04em;
  }

  /* ---------- Cards everywhere a touch denser ---------- */
  .feature { padding: 18px 16px; border-radius: 14px; }
  .feature h3 { font-size: 15px; margin-bottom: 6px; }
  .feature p { font-size: 12.5px; line-height: 1.45; }

  /* Amenities: snap carousel — slightly wider cards so titles like
     "Кондиционер"/"Парковка" fit on one line, but keep an edge of the
     next card visible as a swipe affordance. */
  .amenities { gap: 10px; padding: 4px 16px 16px; }
  .amenity {
    flex: 0 0 78%;
    padding: 18px 16px;
    border-radius: 14px;
  }
  .amenity__icon { width: 44px; height: 44px; margin-bottom: 10px; }
  .amenity h4 {
    font-size: 16.5px;
    margin: 0 0 4px;
    line-height: 1.2;
  }
  .amenity p { font-size: 13px; line-height: 1.45; }
  @media (max-width: 380px) {
    .amenity { flex: 0 0 82%; padding: 16px 14px; }
    .amenity h4 { font-size: 15.5px; }
  }

  .info-grid { gap: 8px; }
  .info-card {
    padding: 14px;
    border-radius: 14px;
  }
  .info-card h4 { font-size: 13.5px; }
  .info-card p { font-size: 12.5px; }

  .price-card { padding: 18px 14px; border-radius: 16px; }
  .price-card h3 { font-size: 17px; }
  .price-card .price-card__amount { font-size: 24px; }
  .prices__from { gap: 6px; }
  .prices__price { font-size: 26px; }

  /* ---------- Reviews ---------- */
  .reviews__rating {
    padding: 7px 14px;
    gap: 8px;
  }
  .reviews__rating-value { font-size: 17px; }
  .reviews__rating-source {
    font-size: 8.5px;
    letter-spacing: .14em;
  }
  .reviews__embed { margin-top: 18px; border-radius: 14px; }
  .reviews__embed iframe { height: 480px; }

  /* ---------- Contact / Footer ---------- */
  .contact__grid { gap: 14px; }
  .contact-card { padding: 16px 14px; border-radius: 14px; }
  .contact-card h3 { font-size: 15px; margin-bottom: 6px; }
  .contact-card a, .contact-card p { font-size: 13px; word-break: normal; overflow-wrap: break-word; line-height: 1.45; }
  .footer { padding: 32px 0 20px; }
  .footer__grid { gap: 22px; }
  .footer h4 { font-size: 12px; letter-spacing: .14em; margin-bottom: 8px; }
  .footer a, .footer p, .footer li { font-size: 12.5px; }

  /* ---------- CTA Banner ---------- */
  .banner--cta { padding: 0; min-height: auto; }
  .banner--cta .banner__inner--cta { padding: 44px 18px; }
  .banner--cta h2 { font-size: clamp(22px, 6.4vw, 28px); }
  .banner--cta p { font-size: 13.5px; max-width: none; }
  .banner__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
  }
  .banner__cta .btn,
  .banner--cta .btn,
  .banner--cta .btn--lg {
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 14px;
    box-sizing: border-box;
  }

  /* ---------- Intro section: prevent horizontal overflow ---------- */
  #about,
  .section--intro,
  .intro__grid,
  .intro__text,
  .intro__text > * { min-width: 0; max-width: 100%; }
  .intro__text .h2,
  .intro__text p { max-width: 100%; }
  .intro__text p {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  /* ---------- Intro stats ---------- */
  .intro-stats, .intro__stats { gap: 8px; padding: 0; border-radius: 14px; }
  .intro__stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat { padding: 14px 12px; }
  .stat strong { font-size: 22px; }
  .stat span { font-size: 11px; }

  /* ---------- Locations cards: smaller media on phone ---------- */
  .loc-card__media { aspect-ratio: 16 / 9; height: auto; }
  .loc-card__media img { height: 100%; }
  .loc-card { border-radius: 16px; flex: 0 0 84%; }
  .loc-card__body { padding: 14px 14px 16px; }
  .loc-card__meta { padding: 10px 0; margin-bottom: 12px; gap: 6px; }
  .loc-card__body .h3 { font-size: 18px; }
  .loc-card__addr { font-size: 12.5px; }
  .loc-card__tag {
    font-size: 10.5px;
    padding: 4px 10px;
    letter-spacing: .04em;
    line-height: 1.15;
  }
  .loc-card__chip,
  .loc-card__chip--primary { font-size: 11.5px; padding: 4px 9px; }
  .loc-card__more { font-size: 13px; }
  .section--locations { padding-bottom: 22px; }
  .section--locations + .section--property { padding-top: 32px; }

  /* ---------- Mobile contrast pass: cool-grey backdrop on alternating
     sections so cream cards POP instead of dissolving into the page.
     Cards become pure white with a slightly stronger border + shadow,
     so the eye instantly reads "card on a surface". ---------- */
  .section--amenities,
  .section--prices {
    background: #e9e7e1;            /* warm grey-cream, contrasts cream cards */
  }
  .section--intro {
    background: #f4f1ea;            /* very subtle cream-grey on intro */
  }
  .section--amenities .amenity,
  .section--prices .price {
    background: #ffffff;
    border: 1px solid rgba(26, 20, 16, .10);
    box-shadow: 0 4px 14px rgba(61, 42, 31, .07);
  }
  .section--prices .price--accent {
    background: var(--c-wine);
    border-color: var(--c-wine);
    color: #fff;
  }
  .section--amenities .amenity__icon {
    background: rgba(125, 42, 37, .10);  /* slightly punchier wine tint */
  }

  /* ---------- Swipe-hint arrows: bigger, more obvious, gently pulsing.
     The user said "blinking arrows but not painful for the eyes" — so
     soft opacity sweep + small horizontal nudge, never harsh flashes. */
  .swipe-hint {
    margin-top: 14px;
    gap: 18px;
    opacity: .9;
  }
  .swipe-hint__arrow {
    width: 44px;
    height: 32px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--c-wine);
  }
  /* On dark wine section (Оазис), keep arrows cream so they read on dark */
  .section--property-alt .swipe-hint { color: rgba(244, 235, 217, .9); opacity: 1; }
  .section--property-alt .swipe-hint__arrow {
    color: var(--c-cream);
    border-color: rgba(244, 235, 217, .24);
    background: rgba(244, 235, 217, .10);
  }
}

/* Lively but soft pulse for the swipe-hint arrows (defined at top level so
   it works in every browser; the original 6px / .35 keyframes are replaced
   by these slightly stronger values). */
@keyframes swipeHint {
  0%, 100% { transform: translateX(0); opacity: .45; }
  50%      { transform: translateX(8px); opacity: 1; }
}
@keyframes swipeHintLeft {
  0%, 100% { transform: translateX(0); opacity: .45; }
  50%      { transform: translateX(-8px); opacity: 1; }
}

/* ---------- Tighter still under 380px ---------- */
@media (max-width: 380px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero__title { font-size: 23px; }
  .hero__lead { font-size: 13px; }
  .hero__badge { padding: 7px 9px; }
  .hero__badge strong { font-size: 15px; }
  .hero__badge span { font-size: 9px; }
  .section__head .h2, .h2, .property__head .h2 { font-size: 20px !important; }
  .feature h3 { font-size: 14px; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 8px 10px !important; }
  .nav__logo { font-size: 15px; }
  .price-card { padding: 14px 12px; }
  .price-card h3 { font-size: 15px; }
  .price-card .price-card__amount, .prices__price { font-size: 22px; }
  .contact-card { padding: 14px 12px; }
  .contact-card h3 { font-size: 14px; }
}
