/* ============================================================
   Family Pride Inn - стиль по референсу (светлый курорт, золотой акцент,
   антиква в заголовках, острые углы; круглые только аватары)
   ============================================================ */
:root {
  --ink: #1a1918;
  --ink-2: #242220;
  --paper: #fbfaf7;
  --sand: #f3efe8;
  --line: #e3ddd2;
  --text: #3b3733;
  --muted: #6b655d;
  --gold: #946d3b;       /* кнопки: белый текст проходит AA */
  --gold-hover: #7f5c30;
  --gold-light: #cfad7a; /* акцент на тёмном фоне */

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Jost", "Segoe UI", Arial, sans-serif;

  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); margin: 0; line-height: 1.12; }
h2 { font-size: clamp(34px, 3.6vw, 48px); letter-spacing: -0.005em; }
h3 { font-size: 26px; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .15s ease;
}
.btn i { font-size: 18px; }
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-sm { min-height: 42px; padding: 0 20px; font-size: 12px; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: #fff;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-solid {
  background: rgba(26, 25, 24, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; }
.brand span { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: 0.01em; }
.main-nav { display: flex; gap: 19px; margin-left: auto; }
.main-nav a {
  position: relative;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; white-space: nowrap; }
.header-phone i { color: var(--gold-light); font-size: 18px; }
.burger { display: none; background: none; border: 0; color: #fff; font-size: 30px; padding: 4px; line-height: 0; }

.mobile-menu {
  background: var(--ink);
  padding: 12px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 26px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-phone { display: inline-block; margin-top: 20px; color: var(--gold-light); font-size: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92dvh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--ink); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s var(--ease) both; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,16,14,.62) 0%, rgba(17,16,14,.34) 42%, rgba(17,16,14,.72) 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-content { text-align: center; padding-top: var(--header-h); padding-bottom: 90px; }
.hero-pre { font-size: 17px; letter-spacing: 0.04em; margin-bottom: 18px; color: rgba(255,255,255,.9); }
.hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.08;
  margin-bottom: 36px;
}
.hero-content > * { animation: fadeUp 1s var(--ease) both; }
.hero-content > :nth-child(2) { animation-delay: .12s; }
.hero-content > :nth-child(3) { animation-delay: .24s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Booking bar */
.booking-wrap { position: absolute; left: 0; right: 0; bottom: 0; transform: translateY(50%); z-index: 5; }
.booking-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
  background: var(--ink);
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(26, 20, 12, 0.55);
}
.bk-field { display: grid; gap: 6px; border: 1px solid rgba(255,255,255,.16); padding: 9px 14px 8px; }
.bk-field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }
.bk-field input, .bk-field select {
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font: 500 15px/1.3 var(--sans);
  padding: 2px 0;
  color-scheme: dark;
  outline: none;
}
.bk-field select option { color: var(--ink); background: #fff; }
.bk-field:focus-within { border-color: var(--gold-light); }
.booking-bar .btn { min-height: 62px; padding: 0 34px; }
.bk-error { grid-column: 1 / -1; color: #f3b6a0; font-size: 14px; }

/* ---------- About ---------- */
.about { padding-top: 190px; }
.about-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.about-lead { color: var(--muted); max-width: 52ch; }
.about-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: center; }
.collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; aspect-ratio: 1 / 0.92; }
.collage figure { overflow: hidden; min-height: 0; }
.collage img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.collage figure:hover img { transform: scale(1.04); }
.collage-tall { grid-row: span 2; }
.about-side > p { color: var(--muted); margin-bottom: 40px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 28px; margin: 0; }
.facts div { border-top: 1px solid var(--line); padding-top: 18px; }
.facts dt { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; color: var(--ink); margin-bottom: 8px; }
.facts dd { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ---------- Buildings ---------- */
.buildings { background: var(--sand); }
.buildings-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.buildings-head h2 { margin-bottom: 14px; }
.buildings-head p { color: var(--muted); }
.buildings-list { display: grid; gap: 64px; }
.building { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.building:nth-child(even) .building-img { order: 2; }
.building-img { overflow: hidden; aspect-ratio: 16 / 10; }
.building-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.building:hover .building-img img { transform: scale(1.04); }
.building-tag { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--gold); margin-bottom: 2px; }
.building-body h3 { font-size: clamp(34px, 3vw, 42px); margin-bottom: 12px; }
.building-body > p:not(.building-tag) { color: var(--muted); margin-bottom: 22px; }
.building-facts {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-items: center;
}
.building-facts li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: center; }
.building-facts i { font-size: 26px; color: var(--gold); }
.building-facts span { font-size: 13.5px; color: var(--muted); line-height: 1.35; }
.building-facts strong { display: block; font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.building-facts .building-more-cell { display: block; }
.building-more { min-height: 44px; padding: 0 22px; font-size: 12px; }

/* ---------- Parallax ---------- */
.parallax { height: clamp(360px, 48vw, 600px); overflow: hidden; }
.parallax-img {
  width: 100%;
  height: 100%;
  background: url("assets/img/NC1A1202.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

/* ---------- Rooms ---------- */
.rooms-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 52px; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.room-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); }
.room-img { overflow: hidden; aspect-ratio: 4 / 3; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.room-meta { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.room-meta li { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.room-meta i { color: var(--gold); font-size: 17px; }
.room-body h3 { font-size: 30px; margin-bottom: 10px; }
.room-body > p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.room-details { margin-bottom: 22px; }
.room-details summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.room-details summary::-webkit-details-marker { display: none; }
.room-details summary i { transition: transform .3s var(--ease); }
.room-details[open] summary i { transform: rotate(180deg); }
.room-details ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
.room-details li { position: relative; padding-left: 14px; font-size: 14px; color: var(--text); }
.room-details li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 6px; height: 1px; background: var(--gold); }
.room-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.price { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--ink); line-height: 1.1; white-space: nowrap; }
.price span, .price small { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--muted); }
.room-foot .btn { padding: 0 20px; min-height: 46px; font-size: 12px; }

/* ---------- Reviews ---------- */
.reviews { position: relative; color: #fff; padding: 110px 0 300px; isolation: isolate; text-align: center; }
.reviews-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(20,19,17,.80), rgba(20,19,17,.80)),
    url("assets/img/vid-na-more.jpg") center / cover no-repeat;
}
.reviews h2 { color: #fff; margin-bottom: 18px; }
.rating { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 46px; }
.rating strong { color: #fff; font-weight: 500; }
.rating:hover { color: #fff; }
.stars { display: inline-flex; gap: 2px; color: var(--gold-light); font-size: 16px; }

.slider { max-width: 820px; margin: 0 auto; }
.slider-viewport { overflow: hidden; }
.slider-track { display: flex; transition: transform .8s var(--ease); }
.review { flex: 0 0 100%; padding: 0 12px; }
.avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold-light);
  background: var(--ink-2);
  border: 2px solid var(--gold-light);
}
.review figcaption { display: grid; gap: 2px; margin-bottom: 18px; }
.review figcaption strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.review figcaption span { font-size: 13px; color: rgba(255,255,255,.62); letter-spacing: 0.04em; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.86); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.slider-btn {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 18px;
  transition: border-color .3s, background-color .3s;
}
.slider-btn:hover { border-color: var(--gold-light); background: rgba(207,173,122,.12); }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button {
  width: 28px; height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
}
.slider-dots button::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 50%;
  height: 2px;
  background: rgba(255,255,255,.3);
  transition: background-color .3s;
}
.slider-dots button[aria-selected="true"]::before { background: var(--gold-light); }

/* ---------- Highlights ---------- */
.highlights { margin-top: -210px; position: relative; z-index: 2; padding-bottom: 120px; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hl-card { text-align: center; }
.hl-card figure { overflow: hidden; aspect-ratio: 4 / 4.6; margin-bottom: 26px; box-shadow: 0 30px 50px -35px rgba(40,30,18,.5); }
.hl-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hl-card:hover img { transform: scale(1.05); }
.hl-card h3 { margin-bottom: 10px; }
.hl-card p { color: var(--muted); font-size: 15px; max-width: 34ch; margin: 0 auto; }

/* ---------- Services ---------- */
.services { background: var(--sand); }
.services-title { text-align: center; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.services-img { overflow: hidden; aspect-ratio: 4 / 5; }
.services-img img { width: 100%; height: 100%; object-fit: cover; }
.services-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 44px 40px; }
.services-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.services-list i { font-size: 38px; color: var(--gold); line-height: 1; }
.services-list h3 { font-size: 23px; margin-bottom: 6px; }
.services-list p { font-size: 14.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 80px; align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-aside h2 { margin-bottom: 16px; }
.faq-aside > p { color: var(--muted); margin-bottom: 36px; max-width: 34ch; }
.faq-contact { background: var(--ink); color: #fff; padding: 28px 30px; }
.faq-contact p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 8px; }
.faq-contact a { display: block; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.faq-contact a:hover { color: var(--gold-light); }
.faq-contact .faq-mail { font-family: var(--sans); font-size: 15px; margin-top: 6px; color: var(--gold-light); }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 18px;
  transition: transform .35s var(--ease), background-color .3s, color .3s;
}
.faq-list details[open] summary i { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: #fff; }
.faq-list summary:hover { color: var(--gold); }
.faq-a { padding: 0 60px 26px 0; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 100px 0 36px; }
.site-footer h2 { color: #fff; }
.callback { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; padding-bottom: 72px; border-bottom: 1px solid rgba(255,255,255,.1); }
.callback-form label { display: block; font-size: 13px; color: rgba(255,255,255,.72); margin-bottom: 8px; }
.cb-row { display: flex; }
.cb-row input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.2);
  border-right: 0;
  color: #fff;
  font: 400 16px var(--sans);
  outline: none;
}
.cb-row input::placeholder { color: rgba(255,255,255,.5); }
.cb-row input:focus { border-color: var(--gold-light); }
.cb-row input[aria-invalid="true"] { border-color: #e39a82; }
.cb-row .btn { height: 56px; }
.cb-consent { margin-top: 12px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.62); max-width: 56ch; }
.cb-consent a { color: rgba(255,255,255,.88); text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 3px; }
.cb-consent a:hover { color: var(--gold-light); text-decoration-color: currentColor; }
.cb-msg { margin-top: 12px; font-size: 14px; color: var(--gold-light); }

/* Мессенджеры: WhatsApp и Telegram из Phosphor. MAX: белый PNG клиента встроен как data URI и используется маской
   (без отдельного запроса: не зависит от CORS, CDN и регистра имени файла на хостинге), цвет из currentColor */
.messengers-label { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,.62); }
.messengers { display: flex; gap: 10px; margin-top: 12px; }
.messenger {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 24px;
  transition: border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
}
.messenger:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(207,173,122,.08); }
.max-icon {
  width: 24px; height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAACGUlEQVR42mNgIBH8//9fGYjDgLgSiCcCcRcQdwBxLhC7ADE3A7UB0FBFqCV3/xMG34F4CxB7ATEjpRZLAPEcIP7znzxwDojNybXcD4hf/6ccgBzfQlJoABUXAPHf/9QFq4CYjRjLs/7TDiwFYiZ8ljsC8e//tAVVuCznAeIH/2kPfgGxITYHNBFpwCMgLgcZAsSCUKwDjbqzRJqxD91yPiD+SITGuYQKGqB8LJFmOSJrSiNCwxQScpExEH8gYN4yZA07CSg+A8TMJJYjIQTM/AbEnCCFbNDiEx9wILMw20/AXHuQIgMCiq5RUJRHEDC7GKQomICiCRQ4QISA2ROJKfkyKKzQPuExewlIQR4BB3hS6IBveMyeD1KQTsABzhRYLkdMFHjR0AHZBMzOBinSJqAogkzLWYH4NgGzbUAKuaAVBC5QRqYD2ghY/gaIWWCKT+FRuJoMy3OA+B8BB8xB1tCPRyGoTGeFqrMCYh88FksC8SIi6hWQ43SQNQYR0NAKxKVA/APKPw/E1UDsD8Su0Jy0gkCWQwZr0F0uTIM2IL64l8AWfJfpYDnIk0G44m8hHRyQjy/lltLQ4p+gRg+hrONNI8vvA7EFMXnXAocBj0FZD9SQJNHiz9Ccwkls4QHKCV/QmkwzgFgcKs8IxKFAfAxPIQNqWR0A4mQg5iWn+FQC4jhodAjiUQdqipsCcTjUUQHQhigrqZYCAGMPIEjkSfGZAAAAAElFTkSuQmCC") center / contain no-repeat;
  mask: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAACGUlEQVR42mNgIBH8//9fGYjDgLgSiCcCcRcQdwBxLhC7ADE3A7UB0FBFqCV3/xMG34F4CxB7ATEjpRZLAPEcIP7znzxwDojNybXcD4hf/6ccgBzfQlJoABUXAPHf/9QFq4CYjRjLs/7TDiwFYiZ8ljsC8e//tAVVuCznAeIH/2kPfgGxITYHNBFpwCMgLgcZAsSCUKwDjbqzRJqxD91yPiD+SITGuYQKGqB8LJFmOSJrSiNCwxQScpExEH8gYN4yZA07CSg+A8TMJJYjIQTM/AbEnCCFbNDiEx9wILMw20/AXHuQIgMCiq5RUJRHEDC7GKQomICiCRQ4QISA2ROJKfkyKKzQPuExewlIQR4BB3hS6IBveMyeD1KQTsABzhRYLkdMFHjR0AHZBMzOBinSJqAogkzLWYH4NgGzbUAKuaAVBC5QRqYD2ghY/gaIWWCKT+FRuJoMy3OA+B8BB8xB1tCPRyGoTGeFqrMCYh88FksC8SIi6hWQ43SQNQYR0NAKxKVA/APKPw/E1UDsD8Su0Jy0gkCWQwZr0F0uTIM2IL64l8AWfJfpYDnIk0G44m8hHRyQjy/lltLQ4p+gRg+hrONNI8vvA7EFMXnXAocBj0FZD9SQJNHiz9Ccwkls4QHKCV/QmkwzgFgcKs8IxKFAfAxPIQNqWR0A4mQg5iWn+FQC4jhodAjiUQdqipsCcTjUUQHQhigrqZYCAGMPIEjkSfGZAAAAAElFTkSuQmCC") center / contain no-repeat;
}
.messengers-mobile { margin-top: 18px; }
.cb-msg.is-error { color: #f3b6a0; }

.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1.5fr; gap: 56px; padding: 64px 0; }
.brand-footer { color: #fff; margin-bottom: 24px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; font-size: 15px; line-height: 1.5; }
.contact-list i { color: var(--gold-light); font-size: 20px; }
.contact-list a:hover { color: #fff; }
.footer-nav { display: grid; align-content: start; gap: 12px; padding-top: 8px; }
.footer-nav a { font-size: 15px; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-map { min-height: 280px; background: var(--ink-2); }
.footer-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.footer-legal { display: grid; gap: 6px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.55); }
.legal-links { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 10px; }
.legal-links a { color: rgba(255,255,255,.78); text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 4px; }
.legal-links a:hover { color: var(--gold-light); text-decoration-color: currentColor; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.rooms-grid .reveal:nth-child(2), .highlights-grid .reveal:nth-child(2) { transition-delay: .1s; }
.rooms-grid .reveal:nth-child(3), .highlights-grid .reveal:nth-child(3) { transition-delay: .2s; }

/* ---------- Responsive ---------- */
@media (max-width: 1320px) {
  .header-phone { display: none; }
}
@media (max-width: 1180px) {
  .main-nav, .header-actions .btn { display: none; }
  .burger { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .site-header.menu-open { background: var(--ink); }
}
@media (max-width: 1024px) {

  .booking-bar { grid-template-columns: 1fr 1fr; }
  .booking-bar .btn { grid-column: 1 / -1; min-height: 54px; }
  .about { padding-top: 250px; }
  .about-grid, .about-head { grid-template-columns: 1fr; gap: 40px; }
  .building { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-img { aspect-ratio: 16 / 9; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-aside { position: static; }
  .callback { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
  .parallax-img { background-attachment: scroll; }
}
@media (max-width: 767px) {
  .section { padding: 80px 0; }
  .container { padding: 0 18px; }
  .brand span { font-size: 21px; }
  .hero { min-height: 0; padding-bottom: 0; display: block; }
  .hero-content { padding-top: calc(var(--header-h) + 90px); padding-bottom: 110px; }
  .hero h1 { font-size: 38px; }
  .hero h1 br { display: none; }
  .room-foot .btn { flex: 1; }
  .booking-wrap { position: static; transform: none; padding: 0; }
  .booking-bar { grid-template-columns: 1fr; padding: 18px; box-shadow: none; }
  .about { padding-top: 80px; }
  .collage { aspect-ratio: auto; grid-template-rows: auto; }
  .collage-tall { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .collage figure:not(.collage-tall) { aspect-ratio: 1; }
  .facts dt { font-size: 36px; }
  .buildings-head { margin-bottom: 48px; text-align: left; }
  .buildings-list { gap: 56px; }
  .building-facts { gap: 16px 14px; }
  .building-facts strong { font-size: 17px; }
  .building-more { width: 100%; padding: 0 12px; }
  .building { grid-template-columns: 1fr; gap: 24px; }
  .building:nth-child(even) .building-img { order: 0; }
  .rooms-head { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .rooms-grid, .highlights-grid, .services-list { grid-template-columns: 1fr; }
  .room-foot { flex-wrap: wrap; }
  .reviews { padding: 80px 0 240px; }
  .review blockquote { font-size: 16px; }
  .highlights { margin-top: -170px; padding-bottom: 80px; }
  .highlights-grid { gap: 48px; }
  .hl-card figure { aspect-ratio: 4 / 3.4; }
  .services-title { margin-bottom: 40px; }
  .services-list { gap: 30px; }
  .faq-list summary { font-size: 21px; padding: 20px 0; }
  .faq-a { padding-right: 0; }
  .site-footer { padding-top: 72px; }
  .cb-row { flex-direction: column; gap: 10px; }
  .cb-row input { border-right: 1px solid rgba(255,255,255,.2); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .parallax-img { background-attachment: scroll; }
}
