:root {
  --bg: #080d0d;
  --card: rgba(15, 22, 21, 0.82);
  --gold: #d8a956;
  --gold-soft: #f2cf8a;
  --cream: #f4ead8;
  --muted: #b9aa93;
  --text: #f7efe2;
  --border: rgba(216, 169, 86, 0.28);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(216, 169, 86, 0.09), transparent 35%),
    radial-gradient(circle at bottom right, rgba(81, 120, 103, 0.12), transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.center { text-align: center; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #070b0b;
  display: grid;
  place-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-mark {
  width: 96px;
  height: 96px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 0;
  transition: 0.35s ease;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(6, 10, 10, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(0,0,0,0.2);
  box-shadow: inset 0 0 22px rgba(216, 169, 86, 0.08);
  flex: 0 0 auto;
}

.brand-icon svg { width: 26px; height: 26px; }

.brand-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
}

.brand-subtitle {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: rgba(247, 239, 226, 0.78);
  font-size: 14px;
}

.menu a { position: relative; transition: color 0.25s ease; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.menu a:hover { color: var(--gold-soft); }
.menu a:hover::after { width: 100%; }

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(0,0,0,0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  font-size: 14px;
}
.phone-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 207, 138, 0.7);
  background: rgba(216, 169, 86, 0.08);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  color: var(--cream);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  width: 18px;
  height: 1px;
  background: var(--cream);
  transition: 0.25s ease;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 45;
  padding: 92px 20px 26px;
  background: rgba(6, 10, 10, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  display: none;
}
.mobile-panel.active { transform: translateY(0); }
.mobile-panel a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
.hero-bg img { height: 100%; filter: saturate(0.9) contrast(1.05); }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5,8,8,0.52), rgba(5,8,8,0.58) 50%, rgba(8,13,13,0.95) 100%),
    radial-gradient(circle at 50% 44%, rgba(216,169,86,0.09), transparent 32%),
    linear-gradient(90deg, rgba(5,8,8,0.9), transparent 35%, transparent 65%, rgba(5,8,8,0.78));
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 190px;
  background: linear-gradient(0deg, var(--bg), transparent);
  z-index: -1;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-content {
  width: 100%;
  padding: 160px 0 105px;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 12vw, 176px);
  line-height: 0.78;
  font-weight: 500;
  letter-spacing: -0.055em;
  color: var(--cream);
  text-shadow: 0 20px 70px rgba(0,0,0,0.65);
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 1s ease 0.25s forwards;
}

.hero-text {
  max-width: 760px;
  margin: 34px auto 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.1;
  color: rgba(247, 239, 226, 0.86);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease 0.65s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f0c471, #c9953d);
  color: #1b1207;
  box-shadow: 0 20px 50px rgba(216, 169, 86, 0.23);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(216, 169, 86, 0.32);
}
.btn-ghost {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(0,0,0,0.18);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(216, 169, 86, 0.08);
  border-color: rgba(242, 207, 138, 0.66);
}

.hero-features {
  width: min(980px, calc(100% - 40px));
  margin: 66px auto 0;
  padding: 18px 26px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(8, 13, 13, 0.64);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease 0.85s forwards;
}
.hero-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(247, 239, 226, 0.84);
  font-size: 14px;
  white-space: nowrap;
}
.hero-feature svg { width: 19px; height: 19px; color: var(--gold); flex: 0 0 auto; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

section { position: relative; padding: 110px 0; }
.section-border { border-top: 1px solid var(--border-soft); }
.section-head { text-align: center; max-width: 850px; margin: 0 auto 56px; }
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 700;
  margin-bottom: 18px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.95;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.035em;
}
.section-text {
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.28;
  color: rgba(247, 239, 226, 0.76);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  min-height: 215px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background:
    linear-gradient(145deg, rgba(216,169,86,0.08), transparent 46%),
    rgba(13, 20, 19, 0.78);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.value-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent, rgba(216,169,86,0.18), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  background: rgba(16, 24, 23, 0.96);
}
.value-card:hover::after { opacity: 1; }
.value-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  color: rgba(216, 169, 86, 0.84);
  line-height: 0.8;
  margin-bottom: 28px;
}
.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cream);
}
.value-card p { color: rgba(247, 239, 226, 0.63); line-height: 1.7; max-width: 280px; }

.rooms {
  background:
    radial-gradient(circle at 20% 10%, rgba(216,169,86,0.075), transparent 30%),
    linear-gradient(180deg, rgba(13,20,19,0.55), transparent);
}
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.room-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 280px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 110px rgba(0,0,0,0.52);
  border-color: rgba(242, 207, 138, 0.65);
}
.room-img { position: relative; overflow: hidden; min-height: 280px; }
.room-img img { height: 100%; transition: transform 0.65s ease; }
.room-card:hover .room-img img { transform: scale(1.08); }
.room-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(8,13,13,0.65));
}
.room-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 0.95;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}
.room-card p { color: rgba(247, 239, 226, 0.68); line-height: 1.65; margin-bottom: 22px; }
.price-badge {
  width: fit-content;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--gold-soft);
  background: rgba(216,169,86,0.08);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}
.more-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: fit-content;
}
.more-link span { display: inline-block; transition: transform 0.25s ease; }
.more-link:hover span { transform: translateX(6px); }

.price-wrap {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 24, 23, 0.92), rgba(8, 12, 12, 0.9));
  box-shadow: var(--shadow);
}
.price-table { width: 100%; }
.price-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.15fr) minmax(280px, 2.1fr) minmax(190px, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--border-soft);
}
.price-row:last-child { border-bottom: none; }
.price-cell {
  padding: 22px 26px;
  color: rgba(247, 239, 226, 0.82);
  border-right: 1px solid var(--border-soft);
  line-height: 1.55;
  display: flex;
  align-items: center;
}
.price-row:not(.price-head):nth-child(even) .price-cell {
  background: rgba(255, 255, 255, 0.02);
}
.price-cell:last-child {
  border-right: none;
  color: var(--gold-soft);
  font-weight: 700;
  white-space: nowrap;
  justify-content: flex-end;
  text-align: right;
}
.price-head .price-cell {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(216,169,86,0.055);
}
.price-note {
  text-align: center;
  margin-top: 18px;
  color: rgba(247,239,226,0.62);
  font-size: 14px;
  max-width: 920px;
  margin-inline: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
  gap: 18px;
}
.gallery-tile {
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}
.gallery-tile img { height: 100%; transition: transform 0.7s ease, filter 0.7s ease; }
.gallery-tile:hover img { transform: scale(1.08); filter: brightness(1.08); }
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.64), transparent 55%);
}
.tile-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(8,13,13,0.68);
  border: 1px solid var(--border);
  color: var(--cream);
  backdrop-filter: blur(12px);
  font-size: 14px;
}

.advantages {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(13,20,19,0.72);
}
.advantage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 4px 22px;
  border-right: 1px solid var(--border-soft);
  color: rgba(247,239,226,0.78);
  line-height: 1.35;
}
.advantage:last-child { border-right: none; }
.advantage svg { width: 34px; height: 34px; color: var(--gold); flex: 0 0 auto; }

.contacts {
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216,169,86,0.08), transparent 36%),
    rgba(6, 10, 10, 0.38);
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto 34px;
}
.contact-card {
  min-height: 150px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: rgba(13, 20, 19, 0.72);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--border); }
.contact-card svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 18px; }
.contact-card p, .contact-card a { color: rgba(247,239,226,0.78); line-height: 1.6; }
.contact-phone {
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  white-space: nowrap;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
}
.footer-logo .brand-icon { width: 44px; height: 44px; }
.footer p { color: rgba(247,239,226,0.44); font-size: 14px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(10px);
}
.modal.active { display: grid; animation: modalBg 0.25s ease; }
@keyframes modalBg { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  width: min(560px, 100%);
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #101817, #070b0b);
  box-shadow: 0 35px 110px rgba(0,0,0,0.7);
  padding: 34px;
  position: relative;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  cursor: pointer;
}
.modal-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--cream);
}
.modal-card p { color: rgba(247,239,226,0.68); line-height: 1.65; margin-bottom: 24px; }
.form-tip {
  padding: 14px 16px;
  border: 1px solid rgba(216, 169, 86, 0.22);
  border-radius: 16px;
  background: rgba(216, 169, 86, 0.06);
  color: rgba(247,239,226,0.84);
  font-size: 14px;
  line-height: 1.5;
}
.form-grid { display: grid; gap: 14px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--cream);
  background: rgba(255,255,255,0.045);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-grid select option { background: #101817; color: var(--cream); }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  border-color: var(--border);
  background: rgba(216,169,86,0.06);
}
.form-grid textarea { min-height: 110px; resize: vertical; }
.form-status {
  min-height: 22px;
  color: rgba(247,239,226,0.78);
  font-size: 14px;
  line-height: 1.45;
}
.form-status.success { color: #bfe8c9; }
.form-status.error { color: #f0b8a8; }

.field-label,
.field-wrap span {
  display: block;
  margin: 0 0 8px;
  color: rgba(247,239,226,0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stay-block {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(216, 169, 86, 0.22);
  border-radius: 20px;
  background: rgba(216, 169, 86, 0.045);
}

.form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stay-hint {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  color: rgba(247,239,226,0.68);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .form-row.two-cols { grid-template-columns: 1fr; }
}

@media (max-width: 1020px) {
  .menu, .phone-btn { display: none; }
  .burger { display: flex; }
  .mobile-panel { display: block; }
  .brand { min-width: auto; }
  .hero-features { grid-template-columns: repeat(2, 1fr); border-radius: 28px; }
  .about-grid, .contacts-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .advantage:nth-child(2) { border-right: none; }
  .price-wrap { overflow: visible; background: transparent; border: none; box-shadow: none; }
  .price-table { display: grid; gap: 14px; }
  .price-row { grid-template-columns: 1fr; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: rgba(10, 15, 15, 0.78); box-shadow: var(--shadow); }
  .price-cell { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 16px 18px; display: block; }
  .price-cell::before { content: attr(data-label); display: block; margin-bottom: 6px; color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
  .price-cell:last-child { border-bottom: none; text-align: left; }
  .price-cell:last-child::before { margin-bottom: 8px; }
  .price-head { display: none; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header { padding: 14px 0; }
  .brand-title { font-size: 22px; }
  .contact-phone { font-size: 22px; }
  .brand-subtitle { display: none; }
  .hero { min-height: 820px; }
  .hero-content { padding: 130px 0 74px; }
  .hero h1 { font-size: clamp(76px, 22vw, 110px); }
  .hero-text { font-size: 27px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: min(360px, 100%); margin-inline: auto; }
  .hero-features { grid-template-columns: 1fr; align-items: start; border-radius: 26px; }
  .hero-feature { justify-content: flex-start; }
  section { padding: 74px 0; }
  .section-head { margin-bottom: 38px; }
  .room-card { grid-template-columns: 1fr; }
  .room-img { min-height: 230px; }
  .room-img::after { background: linear-gradient(0deg, rgba(8,13,13,0.55), transparent 60%); }
  .room-content { padding: 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile { height: 250px; }
  .advantages { grid-template-columns: 1fr; }
  .advantage {
    border-right: none;
    justify-content: flex-start;
    border-bottom: 1px solid var(--border-soft);
    padding: 18px 0;
  }
  .advantage:last-child { border-bottom: none; }
  .modal-card { padding: 28px 20px 22px; }
  .modal-card h3 { font-size: 38px; }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
