:root {
  --bg: #141312;
  --bg-2: #1b1a18;
  --bg-3: #232120;
  --card: #1b1a18;
  --line: #2c2a27;
  --gold: #C5A059;
  --gold-2: #D4AF37;
  --gold-deep: #8f7340;
  --gold-text: #D4AF37;
  --beige: #C9C2B4;
  --text: #F0EBE1;
  --muted: #C9C2B4;
  --serif: "Cormorant Garamond", "Playfair Display", "Cinzel", Georgia, serif;
  --sans: "Montserrat", "Inter", "Lato", "Segoe UI", Arial, sans-serif;
  --ls: 0.15em;
  --radius: 2px;
  --shadow: 0 18px 60px rgba(0,0,0,.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
}

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

h1, h2, h3, .brand-name, .logo-text {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: var(--ls);
  text-transform: uppercase;
}

/* ============ ШАПКА ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(20,19,18,.92), rgba(20,19,18,.82) 70%, rgba(20,19,18,.0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197,160,89,.14);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 22px 28px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding .3s;
}
.site-header.compact .header-inner { padding: 12px 28px; }
.site-header.compact {
  background: rgba(20,19,18,.93);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}

.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; color: inherit; min-width: 0; flex: 0 1 auto; }
.brand-logo {
  background: transparent !important;
  border: none;
  box-shadow: none;
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-slogan {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold-text);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.2;
}
.brand-name { font-size: 24px; color: var(--gold-text); letter-spacing: .22em; line-height: 1; }
.brand-tag { display: block; font-size: 9px; color: var(--beige); letter-spacing: .28em; text-transform: uppercase; margin-top: 5px; font-family: var(--sans); }

.main-nav { display: flex; gap: 30px; margin-left: auto; flex-wrap: nowrap; }
.main-nav a {
  text-decoration: none;
  color: #CFC8B8;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
.main-nav a:hover { color: var(--gold-text); border-bottom-color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  background: rgba(197,160,89,.10);
  color: var(--gold-text);
  border-radius: var(--radius);
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s, color .3s, box-shadow .3s, transform .15s;
}
.btn:hover {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2));
  color: #141312;
  box-shadow: 0 0 24px rgba(197,160,89,.4), inset 0 0 12px rgba(255,255,255,.15);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2));
  color: #141312;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(197,160,89,.3);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(197,160,89,.5);
  color: #141312;
}
.btn-lg { padding: 16px 42px; font-size: 13px; }
.btn-cta { padding: 11px 24px; font-size: 11px; letter-spacing: .16em; background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2)); color: #141312; border-color: var(--gold); }
.btn-cta:hover { box-shadow: 0 0 24px rgba(197,160,89,.5); color: #141312; }
.btn-wa { border-color: var(--gold); }
.btn-wa:hover { background: linear-gradient(135deg, #25d366, #128c4e); color: #fff; border-color: #25d366; }
.btn-tg { border-color: var(--gold); }
.btn-tg:hover { background: linear-gradient(135deg, #2aabee, #1c7fc0); color: #fff; border-color: #2aabee; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.nav-burger span { width: 26px; height: 1px; background: var(--gold); }

/* ============ HERO (ПЕРВЫЙ ЭКРАН) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px 140px;
  background:
    linear-gradient(180deg, rgba(20,19,18,.45) 0%, rgba(20,19,18,.82) 55%, var(--bg) 100%),
    url('/assets/interior2.jpg') center 40% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,19,18,.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 34px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: .12em;
}
.hero-title .gold { color: var(--gold-text); }
.hero-divider {
  width: 90px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 36px auto;
}
.hero-sub {
  color: var(--beige);
  font-size: 16px;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  color: var(--beige);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  z-index: 2;
}

/* ============ СЕКЦИИ ============ */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid rgba(197,160,89,.1); border-bottom: 1px solid rgba(197,160,89,.1); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head.left { text-align: left; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #C9C2B4;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--text);
  line-height: 1.2;
}
.section-head h2 .accent { color: var(--gold-text); }
.section-divider {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}
.section-head.left .section-divider { margin-left: 0; }
.section-sub { color: var(--muted); max-width: 580px; margin: 18px auto 0; font-size: 15px; }

/* ============ ПОЛОСА БРОНИРОВАНИЯ ============ */
.booking-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  background: var(--card);
  border: 1px solid rgba(197,160,89,.22);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 44px;
}
.booking-field { display: grid; gap: 8px; }
.booking-field label {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--beige);
}
.date-btn, .booking-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
  color: var(--text);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .04em;
  text-align: center;
  cursor: pointer;
  appearance: none;
}
.date-btn.has-date { border-color: var(--gold); color: var(--gold-text); }

/* ============ КАРТОЧКИ КВАРТИР ============ */
.apt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; }
.card {
  background: var(--card);
  border: 1px solid rgba(197,160,89,.14);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(197,160,89,.4); box-shadow: var(--shadow); }

.gallery { position: relative; background: #0a0a09; height: 250px; overflow: hidden; }
.gallery-track { display: flex; height: 100%; transition: transform .35s ease; }
.gallery-slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(197,160,89,.5);
  background: rgba(20,19,18,.55);
  color: var(--gold-text); font-size: 18px; line-height: 1;
  cursor: pointer; z-index: 3; transition: background .2s;
}
.gallery-arrow:hover { background: var(--gold); color: #141312; }
.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }
.gallery-badge {
  position: absolute; bottom: 12px; right: 14px;
  background: rgba(20,19,18,.7); color: var(--gold-text);
  border: 1px solid rgba(197,160,89,.3);
  font-size: 11px; letter-spacing: .12em;
  padding: 4px 12px; z-index: 3;
}
.gallery-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 7px; z-index: 3; }
.gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); transition: all .25s; }
.gallery-dot.on { background: var(--gold); width: 22px; border-radius: 3px; }
.no-photo {
  width: 100%; height: 250px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(160deg, #1a1917, #232120);
  color: var(--beige); font-size: 13px; letter-spacing: .1em; text-align: center; padding: 16px;
}

.card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.card-title { font-size: 19px; color: var(--text); letter-spacing: .14em; }
.card-addr { color: var(--muted); font-size: 12.5px; margin: 8px 0 14px; line-height: 1.6; letter-spacing: .04em; }
.card-price { font-size: 19px; font-weight: 400; color: var(--text); white-space: nowrap; font-family: var(--serif); }
.card-price .per { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.status-pill {
  display: inline-block;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 16px;
  border: 1px solid rgba(74,166,97,.4);
  color: #7fc98d; background: rgba(74,166,97,.08);
}
.status-unknown { border-color: var(--line); color: var(--muted); background: transparent; }

.amenities { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 6px; }
.amenity {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  font-size: 13px; font-weight: 400; color: var(--text);
  padding: 8px 14px; letter-spacing: .03em;
}
.am-icon { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.pet-note { font-size: 12px; letter-spacing: .06em; color: #E8D9B5; border: 1px solid rgba(197,160,89,.25); padding: 8px 12px; margin: 10px 0 2px; }
.card-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.link-btn {
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius);
  transition: all .22s;
}
.link-btn::after { content: "↗"; font-size: 13px; opacity: .75; }
.link-btn.avito {
  border: 1px solid rgba(208,90,43,.55);
  color: #f2b08e;
  background: rgba(208,90,43,.08);
}
.link-btn.avito:hover { background: #d05a2b; color: #fff; border-color: #d05a2b; box-shadow: 0 4px 16px rgba(208,90,43,.35); }
.link-btn.cian {
  border: 1px solid rgba(45,106,214,.55);
  color: #a6c6f7;
  background: rgba(45,106,214,.08);
}
.link-btn.cian:hover { background: #2d6ad6; color: #fff; border-color: #2d6ad6; box-shadow: 0 4px 16px rgba(45,106,214,.35); }
.link-btn.sut {
  border: 1px solid rgba(14,159,110,.55);
  color: #8fd8b5;
  background: rgba(14,159,110,.08);
}
.link-btn.sut:hover { background: #0e9f6e; color: #fff; border-color: #0e9f6e; box-shadow: 0 4px 16px rgba(14,159,110,.35); }

.description { margin-top: 18px; font-size: 13px; color: var(--muted); line-height: 1.75; border-top: 1px solid rgba(197,160,89,.14); padding-top: 16px; }
.description summary { cursor: pointer; color: #C9C2B4; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; list-style: none; }
.description summary::-webkit-details-marker { display: none; }
.description summary::after { content: " —"; color: var(--gold); }
.book-btn {
  margin-top: 20px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-text);
  font-family: var(--sans);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  padding: 15px; cursor: pointer;
  transition: all .3s;
}
.book-btn:hover { background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2)); color: #141312; }

.loader, .empty { text-align: center; color: var(--muted); padding: 50px 10px; grid-column: 1 / -1; letter-spacing: .1em; }

/* ============ ПРАВИЛА ============ */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.rule-card {
  background: var(--card);
  border: 1px solid rgba(197,160,89,.14);
  padding: 32px;
  transition: border-color .3s;
}
.rule-card:hover { border-color: rgba(197,160,89,.4); }
.rule-card h3 { font-size: 16px; color: var(--text); letter-spacing: .16em; margin-bottom: 18px; }
.rule-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; font-weight: 300; }
.rule-list { list-style: none; display: grid; gap: 10px; font-size: 13.5px; color: var(--beige); font-weight: 300; }
.rule-list li { padding-left: 16px; position: relative; }
.rule-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.rule-note { font-size: 12px; color: #E8D9B5; margin-top: 16px; letter-spacing: .05em; }
.rule-card-bad h3 { color: #c0706a; }

/* ============ О НАС ============ */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-text p { color: var(--beige); margin-bottom: 16px; font-size: 15px; font-weight: 300; line-height: 1.8; }
.about-list { list-style: none; display: grid; gap: 12px; margin-top: 26px; }
.about-list li {
  font-size: 14px; color: var(--beige);
  border-bottom: 1px solid rgba(197,160,89,.12);
  padding: 14px 4px; font-weight: 300;
}
.about-list li b { color: var(--gold-text); font-weight: 400; }
.about-side { display: grid; gap: 22px; }
.info-card { background: var(--card); border: 1px solid rgba(197,160,89,.14); padding: 30px; }
.info-card h3 { font-size: 15px; color: var(--text); letter-spacing: .16em; margin-bottom: 16px; }
.geo-list { list-style: none; display: grid; gap: 12px; font-size: 13.5px; color: var(--beige); font-weight: 300; }
.geo-list li { border-bottom: 1px solid rgba(197,160,89,.1); padding-bottom: 10px; }
.info-text { font-size: 13.5px; color: var(--muted); font-weight: 300; line-height: 1.8; }

/* ============ ОТЗЫВЫ ============ */
.reviews-empty { text-align: center; color: var(--muted); padding: 24px 0; letter-spacing: .08em; }
.review-item {
  background: var(--card); border: 1px solid rgba(197,160,89,.14);
  padding: 24px 28px; margin-bottom: 14px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.review-item b { font-family: var(--serif); color: var(--text); font-size: 15px; letter-spacing: .1em; }
.review-item p { color: var(--muted); font-size: 13.5px; margin-top: 6px; font-weight: 300; }
.review-form {
  background: var(--card); border: 1px solid rgba(197,160,89,.14);
  padding: 32px; max-width: 700px; margin: 28px auto 0;
}
.review-form h3 { font-size: 16px; color: var(--text); letter-spacing: .16em; margin-bottom: 20px; }
.review-row { display: flex; gap: 12px; flex-wrap: wrap; }
.review-row input {
  flex: 1; min-width: 180px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--bg-3); color: var(--text);
  font-size: 14px; font-weight: 300; font-family: var(--sans);
}
.review-row input:focus { outline: none; border-color: var(--gold); }
.review-hint { font-size: 12px; color: #E8D9B5; margin-top: 12px; min-height: 18px; letter-spacing: .06em; }

/* ============ КОНТАКТЫ ============ */
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.contact-card { background: var(--card); border: 1px solid rgba(197,160,89,.14); padding: 38px; }
.contact-card h3 { font-size: 18px; color: var(--text); letter-spacing: .16em; margin-bottom: 12px; }
.contact-desc { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; font-weight: 300; }
.phone-big {
  display: block; font-size: 28px; font-weight: 400;
  color: var(--text); text-decoration: none; margin-bottom: 24px;
  font-family: var(--serif); letter-spacing: .06em;
  transition: color .2s;
}
.phone-big:hover { color: var(--gold-text); }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-btns .btn { flex: 1; min-width: 130px; }
.req-list { list-style: none; display: grid; gap: 14px; font-size: 14.5px; color: var(--beige); font-weight: 300; }
.req-list a { color: var(--gold-text); text-decoration: none; }
.qr-row { margin-top: 30px; }
.qr-box { display: inline-block; text-align: center; }
.qr-box canvas { border: 1px solid rgba(197,160,89,.3); padding: 8px; background: #fff; }
.qr-box small { display: block; margin-top: 10px; color: var(--muted); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.map-wrap { margin-top: 30px; border: 1px solid rgba(197,160,89,.14); }
.map-wrap iframe { display: block; filter: grayscale(.3) contrast(1.05); }

/* ============ ПОДВАЛ ============ */
.site-footer { background: #0e0d0c; color: var(--muted); text-align: center; padding: 40px 0; font-size: 13px; font-weight: 300; border-top: 1px solid rgba(197,160,89,.12); }
.site-footer a { color: var(--gold-text); text-decoration: none; }
.site-footer p { margin: 6px 0; letter-spacing: .06em; }
.footer-gold-line { width: 64px; height: 1px; background: var(--gold); margin: 0 auto 20px; }

/* ============ КАЛЕНДАРЬ ============ */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-nav { border: 1px solid var(--line); background: var(--bg-3); color: var(--gold-text); font-size: 16px; padding: 8px 14px; cursor: pointer; }
.cal-title { font-family: var(--serif); font-weight: 400; font-size: 16px; color: var(--text); letter-spacing: .12em; text-transform: uppercase; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 6px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day { border: none; background: transparent; aspect-ratio: 1; font-size: 14px; cursor: pointer; color: var(--text); font-family: var(--sans); font-weight: 300; }
.cal-day.empty { background: transparent; pointer-events: none; }
.cal-day.disabled { color: #4a4742; cursor: default; }
.cal-day:hover:not(.disabled) { background: var(--bg-3); }
.cal-day.range { background: rgba(197,160,89,.12); }
.cal-day.sel-in, .cal-day.sel-out { background: var(--gold); color: #141312; font-weight: 500; }

/* ============ МОДАЛКИ ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(12,11,10,.7);
  display: none; align-items: flex-end; z-index: 200;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-2);
  width: 100%;
  border-top: 1px solid rgba(197,160,89,.25);
  padding: 28px 24px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  animation: slideup .28s ease;
}
@keyframes slideup { from { transform: translateY(30px); opacity: .6; } to { transform: none; opacity: 1; } }
.modal h3 { font-family: var(--serif); color: var(--text); margin-bottom: 10px; font-size: 18px; letter-spacing: .14em; }
.modal .field { margin-bottom: 14px; }
.modal .field label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.modal input[type="tel"] {
  width: 100%; padding: 14px;
  border: 1px solid var(--line); background: var(--bg-3); color: var(--text);
  font-size: 15px; font-weight: 300; font-family: var(--sans);
}
.modal input[type="tel"]:focus { outline: none; border-color: var(--gold); }
.modal-actions { display: flex; gap: 12px; margin-top: 18px; }
.modal-actions .btn { flex: 1; }
.btn-ghost { border-color: var(--line); color: var(--muted); }
.btn-ghost:hover { background: var(--bg-3); color: var(--text); box-shadow: none; }
.btn-filled { background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-2)); color: #141312; border-color: var(--gold); }
.btn-filled:hover { box-shadow: 0 0 26px rgba(197,160,89,.5); }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--muted); line-height: 1.6; margin: 16px 0 0; cursor: pointer; font-weight: 300; }
.consent input { margin-top: 4px; accent-color: var(--gold); }
.consent a { color: var(--gold-text); text-decoration: underline; }

/* ============ ЛАЙТБОКС ============ */
.lightbox { position: fixed; inset: 0; background: rgba(6,6,5,.96); display: none; align-items: center; justify-content: center; z-index: 220; flex-direction: column; }
.lightbox.open { display: flex; }
.lb-img { max-width: 100%; max-height: 78vh; object-fit: contain; }
.lb-close { position: absolute; top: 16px; right: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(197,160,89,.4); color: var(--gold-text); width: 40px; height: 40px; font-size: 16px; cursor: pointer; z-index: 2; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 1px solid rgba(197,160,89,.4); color: var(--gold-text); width: 46px; height: 46px; font-size: 22px; cursor: pointer; z-index: 2; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter { margin-top: 16px; color: var(--muted); font-size: 13px; letter-spacing: .16em; }

.hidden { display: none !important; }

/* ============ АДАПТИВ ============ */
@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(20,19,18,.97);
    flex-direction: column; padding: 24px 28px;
    border-bottom: 1px solid rgba(197,160,89,.2);
    gap: 20px;
  }
  .main-nav.open { display: flex; }
  .nav-burger { display: flex; }
  .btn-cta { display: none; }
  .booking-strip { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 140px 20px 110px; }
  .section { padding: 80px 0; }
}
@media (max-width: 560px) {
  .booking-strip { grid-template-columns: 1fr; }
  .review-row { flex-direction: column; }
  .apt-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .header-inner { padding: 16px 20px; }
  .brand-name { font-size: 19px; }
  .brand-slogan {
    white-space: normal;
    font-size: 15px;
    letter-spacing: .08em;
    line-height: 1.25;
  }
}