/* ============================================================
   BOSHIDAN HOTEL — boshidan.com
   Дизайн по мотивам интерьера: мрамор цвета слоновой кости,
   латунь/золото, глубокий графит, изумрудные диваны лобби.
   Типографика: Playfair Display (заголовки) + Manrope (текст).
   ============================================================ */

:root {
  /* палитра интерьера */
  --deep: #15171c;         /* почти чёрный (шторы, бар) — nav, футер, тёмные секции */
  --deep-2: #1e2127;       /* чуть светлее для карточек на тёмном */
  --ink: #23262c;          /* основной текст */
  --ink-soft: #585c64;     /* вторичный текст */
  --muted: #8e8878;        /* приглушённый тёплый серый */
  --gold: #ab8b52;         /* латунь (столики, люстры) — акцент на светлом */
  --gold-2: #d9bc7d;       /* светлое золото — акцент на тёмном */
  --gold-dim: rgba(171, 139, 82, .35);
  --ivory: #f1ecdf;        /* мрамор — фон чередующихся секций */
  --paper: #faf8f2;        /* фон страницы */
  --card: #ffffff;
  --line: #e5dfcf;         /* тёплые линии */
  --green: #3f5148;        /* изумруд диванов — второстепенный акцент */
  --ok: #3d7a52;
  --err: #b3402e;

  --font-display: 'Playfair Display', 'PT Serif', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 10px 34px rgba(26, 22, 12, .09);
  --shadow-lg: 0 22px 60px rgba(26, 22, 12, .16);
  --wrap: 1180px;
}

/* ---------- base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; text-wrap: balance; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 15px 26px; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.btn--big { padding: 18px 34px; font-size: 13.5px; }
.btn.sm { padding: 10px 16px; font-size: 12px; }
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: #96793f; transform: translateY(-1px); }
.btn--call { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--call:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: #c9c2ae; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--light { background: #fff; color: var(--deep); }
.btn--light:hover { background: var(--gold-2); color: var(--deep); }

/* на светлых секциях кнопка-звонок тёмная */
.section .btn--call, .form-card .btn--call { color: var(--ink); border-color: #c9c2ae; }
.section .btn--call:hover { border-color: var(--gold); color: var(--gold); }
.section--deep .btn--call, .cta-banner .btn--call { color: #fff; border-color: rgba(255,255,255,.55); }
.section--deep .btn--call:hover, .cta-banner .btn--call:hover { color: var(--gold-2); border-color: var(--gold-2); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 0 clamp(18px, 3.5vw, 44px); height: 78px;
  background: linear-gradient(180deg, rgba(14, 15, 19, .82), rgba(14, 15, 19, .55) 70%, transparent);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { background: rgba(17, 19, 24, .97); height: 66px; box-shadow: 0 6px 26px rgba(0, 0, 0, .35); }

.nav__logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.logo-horse { width: 40px; height: 40px; color: var(--gold-2); flex: 0 0 auto; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark b {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: .16em; color: #fff;
}
.nav__wordmark span {
  font-size: 9.5px; font-weight: 700; letter-spacing: .5em; color: var(--gold-2);
  text-transform: uppercase; margin-top: 5px;
}

.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav__links > a {
  color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 0;
  border-bottom: 1px solid transparent; transition: .2s;
}
.nav__links > a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }
.nav__phone { white-space: nowrap; }
.nav__cta {
  border: 1px solid var(--gold-2); color: var(--gold-2) !important;
  padding: 11px 20px !important; border-radius: var(--radius); border-bottom: 1px solid var(--gold-2) !important;
}
.nav__cta:hover { background: var(--gold-2); color: var(--deep) !important; }

.lang-switch { display: inline-flex; gap: 1px; border: 1px solid rgba(255, 255, 255, .28); border-radius: var(--radius); overflow: hidden; }
.lang-switch button {
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .06em;
  border: 0; background: transparent; color: rgba(255, 255, 255, .75);
  padding: 7px 10px; cursor: pointer; transition: .15s;
}
.lang-switch button:hover { color: var(--gold-2); }
.lang-switch button.is-active { background: var(--gold-2); color: var(--deep); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }
.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); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--deep);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 14, 18, .55) 0%, rgba(13, 14, 18, .38) 45%, rgba(13, 14, 18, .78) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 130px 22px 90px; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 26px;
}
.hero__eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold-2); }
.hero__title {
  font-size: clamp(42px, 7vw, 84px); font-weight: 600; color: #fff;
  max-width: 15ch; margin-bottom: 22px; letter-spacing: .01em;
}
.hero__title em { font-style: italic; color: var(--gold-2); }
.hero__lead { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255, 255, 255, .88); max-width: 56ch; margin-bottom: 40px; font-weight: 500; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }
.hero__trust { list-style: none; display: flex; gap: clamp(18px, 3vw, 42px); flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .22); }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; color: rgba(255, 255, 255, .85); }
.hero__trust svg { width: 19px; height: 19px; color: var(--gold-2); }

/* ---------- strip (факты) ---------- */
.strip { background: var(--deep); color: #cfc8b8; border-top: 1px solid rgba(217, 188, 125, .25); }
.strip__inner { max-width: var(--wrap); margin: 0 auto; padding: 34px 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.strip__item b { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--gold-2); line-height: 1.1; }
.strip__item span { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: #a49d8c; }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 8vw, 110px) 0; background: var(--paper); }
.section--alt { background: var(--ivory); }
.section--deep { background: var(--deep); color: #d9d3c4; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--gold-dim); }
.section--deep .eyebrow { color: var(--gold-2); }
.section__title { font-size: clamp(30px, 4.2vw, 46px); color: var(--ink); }
.section__title em { font-style: italic; color: var(--gold); }
.section--deep .section__title { color: #fff; }
.section--deep .section__title em { color: var(--gold-2); }
.section__sub { font-size: 16.5px; color: var(--ink-soft); margin-top: 14px; max-width: 60ch; margin-inline: auto; }
.section--deep .section__sub { color: #b4ad9c; }

/* ---------- room cards ---------- */
.room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 980px; margin: 0 auto; }
.room-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); color: var(--ink); transition: transform .25s ease, box-shadow .25s ease;
}
a.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--ink); }
.room-card__img { display: block; aspect-ratio: 16 / 10; background: var(--ivory); position: relative; overflow: hidden; }
.room-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
a.room-card:hover .room-card__img img, .room-card:hover .room-card__img img { transform: scale(1.045); }
.room-card__img.is-ph::after { content: '🛏'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 54px; opacity: .45; }
.room-card__body { display: flex; flex-direction: column; gap: 10px; padding: 26px 28px 30px; }
.room-card__body h3 { font-size: 25px; font-weight: 600; }
.room-card__body p { color: var(--ink-soft); font-size: 14.5px; }
.room-card__feat { font-size: 12.5px !important; color: var(--muted) !important; letter-spacing: .03em; }
.room-card__price { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--font-display); }
.room-card__price b { font-size: 34px; font-weight: 600; color: var(--gold); }
.room-card__price span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-family: var(--font-body); }
.room-card--vip { border-color: var(--gold-dim); position: relative; }
.room-card--vip::before {
  content: 'VIP'; position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--gold); color: #fff; font-family: var(--font-body); font-size: 11px;
  font-weight: 800; letter-spacing: .22em; padding: 6px 12px; border-radius: 2px;
}
.room-card .btn { align-self: flex-start; margin-top: 10px; }
.svc-card__cta { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* ---------- features (удобства) ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature__ico {
  flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center;
  border: 1px solid var(--gold-dim); border-radius: 50%; color: var(--gold); background: #fff;
}
.feature__ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 18.5px; margin-bottom: 5px; }
.feature p { font-size: 14px; color: var(--ink-soft); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; background: var(--deep-2); }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work-item:hover img { transform: scale(1.05); }
.work-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 14, 18, .82) 0%, rgba(13, 14, 18, .1) 45%, transparent 70%); }
.work-item__cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(14, 15, 19, .72); color: var(--gold-2); backdrop-filter: blur(4px);
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px; border: 1px solid rgba(217, 188, 125, .35);
}
.work-item__cap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; }
.work-item__cap b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 17.5px; }
.work-item__cap span { font-size: 12px; letter-spacing: .08em; color: rgba(255, 255, 255, .72); text-transform: uppercase; }

/* ---------- videos ---------- */
.videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--deep); border: 1px solid var(--line); }
.video-card video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.video-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; pointer-events: none;
  background: rgba(14, 15, 19, .72); color: var(--gold-2);
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px; border: 1px solid rgba(217, 188, 125, .35);
}

/* ---------- location / coverage ---------- */
.coverage { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.coverage__card {
  background: var(--deep-2); border: 1px solid rgba(217, 188, 125, .3); border-radius: var(--radius-lg);
  padding: 34px 32px; text-align: center; box-shadow: var(--shadow-lg);
}
.coverage__card h3 { color: #fff; font-size: 23px; }
.coverage__card .big { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 32px); font-weight: 600; color: var(--gold-2); letter-spacing: .02em; }
.map-embed { margin-top: 44px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(217, 188, 125, .25); box-shadow: var(--shadow-lg); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; filter: saturate(.85); }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; padding: 22px 4px;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-body); font-size: 22px; font-weight: 400; color: var(--gold); transition: transform .25s; flex: 0 0 auto; }
.faq details[open] summary { color: var(--gold); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 4px 22px; color: var(--ink-soft); max-width: 65ch; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow); }
.review__stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; margin-bottom: 14px; }
.review__text { font-family: var(--font-display); font-style: italic; font-size: 16.5px; color: var(--ink); margin-bottom: 18px; }
.review__who { display: flex; gap: 12px; align-items: center; }
.review__ava { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; background: var(--green); flex: 0 0 auto; }
.review__name { font-weight: 700; font-size: 14.5px; }
.review__src { font-size: 12.5px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(120deg, #17191f 0%, #23262e 55%, #1a1c22 100%);
  border: 1px solid rgba(217, 188, 125, .3); border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) 26px;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; width: 220px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  left: 50%; transform: translateX(-50%);
}
.cta-banner::before { top: 26px; } .cta-banner::after { bottom: 26px; }
.cta-banner h2 { font-size: clamp(28px, 3.6vw, 42px); color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #b9b29f; max-width: 52ch; margin: 0 auto 30px; }
.cta-banner__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--deep); color: #a9a291; padding: clamp(56px, 7vw, 80px) 0 30px; border-top: 1px solid rgba(217, 188, 125, .22); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); padding-bottom: 44px; }
.footer__logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo .logo-horse { width: 44px; height: 44px; }
.footer__logo .nav__wordmark b { font-size: 22px; }
.footer__top p { font-size: 14px; max-width: 34ch; }
.footer__col h4 { color: var(--gold-2); font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; font-size: 14.5px; padding: 5px 0; color: #a9a291; transition: .2s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__social { display: flex; gap: 10px; padding-bottom: 26px; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; color: #cfc8b8; transition: .2s; }
.footer__social a:hover { border-color: var(--gold-2); color: var(--gold-2); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #7d7767; }
.footer__bottom a { color: inherit; } .footer__bottom a:hover { color: var(--gold-2); }

/* ---------- pagehead (внутренние страницы) ---------- */
.pagehead { position: relative; padding: 170px 0 80px; text-align: center; color: #fff; overflow: hidden; background: var(--deep); }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; background: url('../assets/ig/staircase.jpg') center 30% / cover no-repeat; }
.pagehead__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13, 14, 18, .8), rgba(13, 14, 18, .82)); }
.pagehead > .wrap { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 600; color: #fff; }
.pagehead h1::after { content: ''; display: block; width: 64px; height: 1px; background: var(--gold-2); margin: 22px auto 0; }
.pagehead p { font-size: 17px; color: rgba(255, 255, 255, .82); margin-top: 18px; max-width: 62ch; margin-inline: auto; }

/* ---------- gallery filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.filter {
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 20px; border: 1px solid #c9c2ae; background: transparent; color: var(--ink-soft);
  border-radius: var(--radius); cursor: pointer; transition: .18s;
}
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.is-active { background: var(--deep); border-color: var(--deep); color: var(--gold-2); }

/* ---------- services detail ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(40px, 6vw, 64px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail:nth-child(even) .svc-detail__media { order: 2; }
.svc-detail__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; position: relative; background: var(--ivory); }
.svc-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail__media.is-ph::after { content: '📷'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 46px; opacity: .45; }
.svc-detail h2 { font-size: clamp(26px, 3.4vw, 38px); }
.svc-detail .eyebrow { margin-bottom: 12px; }
.svc-detail p { color: var(--ink-soft); margin: 16px 0; max-width: 56ch; }

/* ---------- booking page ---------- */
.estimate { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.estimate__aside h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.estimate__aside { position: sticky; top: 100px; }
.lead-list { list-style: none; display: grid; gap: 18px; margin-top: 22px; }
.lead-list li { display: flex; gap: 14px; align-items: flex-start; }
.lead-list svg { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.lead-list b { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.lead-list b + span, .lead-list span span { font-size: 14px; color: var(--ink-soft); }
.contactbox { margin-top: 30px; padding: 24px; background: var(--deep-2); border: 1px solid rgba(217, 188, 125, .3); border-radius: var(--radius-lg); color: #b9b29f; }
.contactbox a { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--gold-2); }

.form-card { background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 40px); }
.form-card label { display: block; margin-bottom: 16px; }
.form-card label > span { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 14px; border: 1px solid #d5cfbd; border-radius: var(--radius); background: #fdfcf9;
  transition: border-color .2s;
}
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { font-size: 14px; margin-top: 14px; min-height: 18px; font-weight: 600; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: var(--err); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 16px; }
.chip-btn {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 11px 18px;
  border-radius: var(--radius); border: 1px solid #d5cfbd; background: #fdfcf9; color: var(--ink-soft);
  cursor: pointer; transition: .15s;
}
.chip-btn:hover { border-color: var(--gold); color: var(--gold); }
.chip-btn.is-active { background: var(--deep); border-color: var(--deep); color: var(--gold-2); }

/* ---------- prose (privacy/terms) ---------- */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { font-size: 25px; margin: 36px 0 12px; }
.prose h2::after { content: ''; display: block; width: 42px; height: 1px; background: var(--gold); margin-top: 10px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 10px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 90; display: none; }
.lb.is-open { display: block; }
.lb__back { position: absolute; inset: 0; background: rgba(10, 11, 14, .9); }
.lb__box {
  position: relative; z-index: 1; max-width: min(920px, 92vw); max-height: 88vh; margin: 5vh auto 0;
  background: var(--deep-2); border: 1px solid rgba(217, 188, 125, .3); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
}
.lb__box img { max-height: 58vh; object-fit: contain; background: #000; width: 100%; }
.lb__box figcaption { padding: 20px 24px 26px; color: #d9d3c4; }
.lb__cat { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.lb__box h3 { color: #fff; font-size: 22px; margin: 6px 0 2px; }
.lb__loc { font-size: 13px; color: #9a937f; }
.lb__desc { margin-top: 8px; font-size: 14.5px; }
.lb__cta { margin-top: 16px; background: var(--gold); color: #fff; align-self: flex-start; }
.lb__x {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); background: rgba(14, 15, 19, .6);
  color: #fff; font-size: 17px; cursor: pointer;
}

/* ---------- announcement bar ---------- */
.announce-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 70; background: var(--gold); color: #fff; }
.announce-bar__in { max-width: var(--wrap); margin: 0 auto; padding: 10px 46px 10px 22px; text-align: center; font-size: 14px; font-weight: 600; position: relative; }
.announce-bar a { color: #fff; text-decoration: underline; }
.announce-bar__x { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: #fff; font-size: 16px; cursor: pointer; padding: 6px; }

/* ---------- mobile sticky bar ---------- */
.mobilebar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: rgba(17, 19, 24, .97); border-top: 1px solid rgba(217, 188, 125, .3); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); }
.mobilebar__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; }
.mobilebar .btn { width: 100%; padding: 14px 10px; font-size: 12px; }
.mobilebar .btn--call { color: #fff; border-color: rgba(255, 255, 255, .45); }
.mobilebar .btn--primary { background: var(--gold); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- pagehead slideshow (legacy hooks) ---------- */
.pagehead__bg .bgslide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.6s ease; }
.pagehead__bg .bgslide.is-on { opacity: 1; }

/* ============ chat widget («Жана») ============ */
.ppchat-launch {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  display: flex; align-items: center; gap: 12px; background: none; border: 0; cursor: pointer;
  transition: transform .2s;
}
.ppchat-launch:hover { transform: translateY(-2px); }
.ppchat-launch.is-hidden { display: none; }
.ppchat-launch__label { display: flex; flex-direction: column; align-items: flex-end; background: rgba(17, 19, 24, .95); border: 1px solid rgba(217, 188, 125, .35); padding: 9px 14px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.ppchat-launch__label b { color: #fff; font-size: 14px; font-family: var(--font-display); letter-spacing: .04em; }
.ppchat-launch__label i { font-style: normal; font-size: 11px; color: var(--gold-2); display: flex; align-items: center; gap: 5px; }
.ppchat-launch__live { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.ppchat-launch__ava-wrap { position: relative; width: 62px; height: 62px; }
.ppchat-launch__ava { width: 62px; height: 62px; border-radius: 50%; border: 2px solid var(--gold-2); object-fit: cover; }
.ppchat-launch__ring { position: absolute; inset: -5px; border: 1px solid rgba(217, 188, 125, .55); border-radius: 50%; animation: chatring 2.6s ease-out infinite; }
.ppchat-launch__ring--2 { animation-delay: 1.3s; }
@keyframes chatring { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }
.ppchat-launch__dot { position: absolute; right: 2px; bottom: 4px; width: 13px; height: 13px; background: #4ade80; border: 2px solid #fff; border-radius: 50%; }
@media (prefers-reduced-motion: reduce) { .ppchat-launch__ring { animation: none; opacity: 0; } }

.ppchat-teaser {
  position: fixed; right: 20px; bottom: 100px; z-index: 79; max-width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 14px 16px; display: none; gap: 10px; cursor: pointer;
}
.ppchat-teaser.is-show { display: flex; }
.ppchat-teaser__ava { width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto; }
.ppchat-teaser__body b { font-size: 13px; display: block; margin-bottom: 3px; }
.ppchat-teaser__body p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.ppchat-teaser__x { position: absolute; top: 4px; right: 8px; border: 0; background: none; font-size: 15px; color: var(--muted); cursor: pointer; }

.ppchat-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 81;
  width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100svh - 60px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35); display: none; flex-direction: column; overflow: hidden;
}
.ppchat-panel.is-open { display: flex; }
.ppchat-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--deep); color: #fff; }
.ppchat-head__ava { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold-2); }
.ppchat-head__t b { display: block; font-family: var(--font-display); font-size: 16px; }
.ppchat-head__t span { font-size: 12px; color: var(--gold-2); }
.ppchat-close { margin-left: auto; background: none; border: 0; color: #fff; font-size: 16px; cursor: pointer; padding: 8px; }
.ppchat-log { flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; background: var(--paper); }
.ppchat-msg { max-width: 82%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.ppchat-msg.me { align-self: flex-end; background: var(--deep); color: #fff; border-bottom-right-radius: 3px; }
.ppchat-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 3px; }
.ppchat-row { display: flex; gap: 8px; align-items: flex-end; }
.ppchat-row__ava { width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto; }
.ppchat-typing { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; display: flex; gap: 4px; }
.ppchat-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: typing 1.2s infinite; }
.ppchat-typing i:nth-child(2) { animation-delay: .2s; } .ppchat-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
.ppchat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 10px; background: var(--paper); }
.ppchat-quick button { font-size: 12.5px; font-weight: 600; border: 1px solid var(--gold-dim); color: var(--gold); background: #fff; border-radius: 100px; padding: 8px 13px; cursor: pointer; }
.ppchat-quick button:hover { background: var(--gold); color: #fff; }
.ppchat-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: #fff; }
.ppchat-form input { flex: 1; border: 1px solid #d5cfbd; border-radius: var(--radius); padding: 11px 13px; font-size: 14px; font-family: var(--font-body); }
.ppchat-form input:focus { outline: none; border-color: var(--gold); }
.ppchat-form button { width: 44px; border: 0; border-radius: var(--radius); background: var(--gold); color: #fff; font-size: 17px; cursor: pointer; }

/* ============ responsive ============ */
@media (max-width: 1020px) {
  .coverage { grid-template-columns: 1fr; }
  .estimate { grid-template-columns: 1fr; }
  .estimate__aside { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
    background: var(--deep); flex-direction: column; align-items: flex-start;
    padding: 96px 30px 30px; gap: 6px; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
  }
  .nav__links.is-open { transform: none; }
  .nav__links > a { font-size: 15px; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav__cta { margin-top: 12px; text-align: center; width: 100%; }
  .lang-switch { margin-top: 18px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) .svc-detail__media { order: 0; }
}
@media (max-width: 760px) {
  .hero__inner { padding: 120px 22px 120px; }
  .hero__actions .btn { width: 100%; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .room-grid { grid-template-columns: 1fr; }
  .videos { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .mobilebar { display: block; }
  body { padding-bottom: 76px; }
  .ppchat-launch { bottom: 88px; }
  .ppchat-panel { bottom: 84px; height: min(520px, calc(100svh - 120px)); }
  .ppchat-teaser { bottom: 166px; }
  .nav__phone { display: none; }
  .footer__bottom { justify-content: center; text-align: center; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .strip__item b { font-size: 30px; }
}
