:root {
  --paper: #ffffff;
  --paper-2: #f7f7f5;
  --white: #ffffff;
  --ink: #24211f;
  --muted: #716b62;
  --gold: #bd8e56;
  --gold-dark: #9d7140;
  --line: rgba(79, 65, 48, .18);
  --soft: rgba(255, 255, 255, .86);
  --shadow: 0 18px 46px rgba(75, 55, 34, .12);
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 99px;
  display: grid;
  grid-template-columns: 158px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 25px 25px 0 72px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 8, .82) 0%,
    rgba(10, 9, 8, .76) 34%,
    rgba(10, 9, 8, .58) 70%,
    rgba(10, 9, 8, 0) 100%
  );
}

.site-header.scrolled {
  position: fixed;
  height: 123px;
  background: rgba(251, 247, 239, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.site-header.scrolled .main-nav a,
.site-header.scrolled .phone-link {
  color: var(--ink);
}

.site-header.scrolled .messenger-link {
  border-color: var(--line);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.brand img {
  width: 80px;
  height: auto;
}

.main-nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 28px;
  width: fit-content;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 0;
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a:hover { color: var(--gold-dark); }

.header-actions {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.phone-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 3px;
  background: rgba(10, 9, 8, .32);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.phone-mobile-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-link::before {
  content: none;
  display: none;
}

.phone-link::before {
  content: "☎";
  margin-right: 4px;
  font-size: 12px;
}

.phone-link::before {
  content: none;
  display: none;
}

.messenger-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.messenger-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(10, 9, 8, .42);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.messenger-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .46);
  background: var(--gold);
}

.messenger-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.messenger-link.viber svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-small { min-height: 50px; min-width: 166px; }
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
}
.btn-outline:hover { color: #fff; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  background: linear-gradient(90deg, rgba(20, 18, 15, .58) 0%, rgba(20, 18, 15, .28) 44%, rgba(20, 18, 15, .08) 100%);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: relative;
  z-index: 4;
  width: min(620px, calc(100% - 96px));
  margin-left: max(46px, calc((100vw - 1360px) / 2 + 46px));
  padding-top: 72px;
  color: #fff;
}

.eyebrow {
  display: none;
}

h1, h2, h3 {
  margin: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.14;
}

h1 {
  max-width: 650px;
  font-size: 58px;
}

.hero-panel h1 span {
  display: block;
}

h2 { font-size: 38px; }
h3 { font-size: 20px; font-weight: 500; }

.lead {
  max-width: 440px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 36px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.video-link span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 243, .18);
  color: #fff;
}

.video-link svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.video-link .video-link-icon {
  color: #fff !important;
  background: rgba(0, 0, 0, .42) !important;
  border: 1px solid rgba(255, 255, 255, .26) !important;
}

.video-link .video-link-icon svg,
.video-link .video-link-icon path {
  fill: #fff !important;
  color: #fff !important;
}

.section { padding: 46px 0; }

.section.pools { padding-bottom: 120px; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  gap: 78px;
  align-items: center;
}

.copy p,
.restaurant-card p,
.booking-copy p {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-photo,
.spa-card,
.restaurant-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}

.ornament-title {
  display: block;
  margin: 18px 0 42px;
  text-align: left;
}

.ornament-title h2 {
  max-width: 740px;
  font-size: 44px;
  font-weight: 500;
  text-transform: none;
}

.ornament-title span {
  display: none;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  overflow: visible;
  padding: 0;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 0;
  border-radius: 2px;
  background: #17130f;
  box-shadow: 0 24px 58px rgba(50, 37, 22, .12);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.feature-card:hover img {
  transform: scale(1.035);
}

.icon-badge {
  display: none;
}

.feature-card h3,
.feature-card p {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: 34px;
  width: auto;
  margin: 0;
}

.feature-card h3 {
  bottom: 74px;
  padding: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}

.feature-card p {
  display: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 13, 10, 0) 0%, rgba(16, 13, 10, .42) 42%, rgba(16, 13, 10, .82) 100%);
}

.feature-more {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.feature-more::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 140px 70px;
  align-items: start;
  padding-top: 10px;
}

.experience-card {
  position: relative;
  min-height: 560px;
  overflow: visible;
}

.experience-card:nth-child(even) {
  margin-top: 74px;
}

.experience-card-large {
  min-height: 620px;
}

.experience-card-wide {
  grid-column: 1 / -1;
  min-height: 520px;
  margin-top: 0;
}

.experience-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96);
}

.experience-panel {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: -42px;
  z-index: 2;
  max-width: 520px;
  padding: 34px 38px 30px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(35, 26, 17, .10);
  text-align: center;
}

.experience-card-wide .experience-panel {
  left: 50%;
  right: auto;
  width: min(560px, calc(100% - 84px));
  transform: translateX(-50%);
}

.experience-panel::before {
  content: "⌄";
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 18px;
  line-height: 1;
}

.experience-panel h3 {
  font-size: 28px;
  font-weight: 600;
}

.experience-panel p {
  max-width: 430px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.experience-panel a {
  display: none;
}

.experience-panel a::after {
  display: none;
}

.spa-band { padding: 18px 0 34px; }
.spa-card {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  align-items: stretch;
}

.spa-copy {
  padding: 44px 40px;
}

.spa-copy p {
  color: var(--muted);
}

.spa-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.rooms-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}

.section-caption {
  margin-bottom: 34px;
  text-align: left;
}

.section-caption h2 {
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 500;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.room-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(50, 37, 22, .11);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3.05;
  object-fit: cover;
  transition: transform .45s ease;
}

.room-card:hover img {
  transform: scale(1.035);
}

.room-body {
  position: relative;
  min-height: 190px;
  padding: 26px 64px 28px 26px;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.room-body p {
  margin: 16px 0 0;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
}

.room-body a {
  position: absolute;
  right: 26px;
  bottom: 24px;
  font-size: 24px;
}

.rooms-more {
  display: flex;
  width: max-content;
  margin: 28px auto 0;
}

.faq-section {
  padding-top: 26px;
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(79, 65, 48, .14);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(50, 37, 22, .06);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 22px 64px 22px 26px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 142, 86, .45);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.faq-item[open] summary::after {
  content: "-";
  background: rgba(189, 142, 86, .09);
}

.faq-item p {
  margin: 0;
  padding: 0 64px 26px 26px;
  max-width: 920px;
  color: var(--muted);
  line-height: 1.8;
}

.planning-section {
  padding-top: 18px;
  background: #fff;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.planning-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(79, 65, 48, .12);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(50, 37, 22, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.planning-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 142, 86, .34);
  box-shadow: 0 28px 64px rgba(50, 37, 22, .14);
}

.planning-card img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.planning-card:hover img {
  transform: scale(1.035);
}

.planning-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.planning-body strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.planning-body small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.priority-panel {
  position: relative;
  min-height: 100%;
  display: block;
  overflow: hidden;
  padding: 46px;
  border: 0;
  border-radius: 6px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78) 0%, rgba(251, 247, 239, .92) 62%, rgba(244, 238, 227, .88) 100%);
  box-shadow: 0 26px 70px rgba(64, 44, 24, .10);
}

.priority-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), rgba(189, 142, 86, .18));
}

.priority-head {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(79, 65, 48, .12);
}

.priority-head .eyebrow {
  margin-bottom: 10px;
}

.priority-head h2 {
  max-width: 430px;
  font-size: 34px;
  font-weight: 600;
  text-transform: uppercase;
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.service-group h3 {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.service-icons span {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 15px 16px;
  border: 1px solid rgba(79, 65, 48, .10);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
  color: var(--gold-dark);
  font-size: 22px;
  box-shadow: 0 10px 26px rgba(64, 44, 24, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.service-icons span:hover {
  transform: translateY(-2px);
  border-color: rgba(189, 142, 86, .35);
  box-shadow: 0 16px 34px rgba(64, 44, 24, .10);
}

.service-icons small {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.restaurant-card {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 28px;
  padding: 28px;
  align-items: center;
}

.restaurant-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.gallery .eyebrow { margin-left: 4px; }

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.gallery-strip button {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  transition: transform .28s ease;
}

.gallery-strip button:hover img { transform: scale(1.04); }

.booking {
  padding: 60px 0 64px;
}

.booking-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 520px) 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f7f7f5;
}

.booking-card::before {
  display: none;
}

.booking-copy,
.booking-form {
  position: relative;
  z-index: 2;
}

.contact-copy {
  padding: 74px 64px;
}

.contact-copy h2 {
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  font-size: 48px;
  font-weight: 600;
}

.contact-list {
  display: grid;
  gap: 30px;
  margin-bottom: 42px;
}

.contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  align-items: start;
}

.contact-icon {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.contact-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.contact-item small {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-map {
  position: relative;
  min-height: 480px;
  background: #e9e9e6;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(1) contrast(.92) brightness(1.04);
}

.map-route {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 15px 22px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-form { display: grid; gap: 12px; }
.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
input,
textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}
input:focus,
textarea:focus {
  outline: 2px solid rgba(189, 142, 86, .2);
  border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp { position: absolute; left: -9999px; }
.form-note {
  margin: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  background: #f7f0e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1.2fr .8fr .6fr;
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  width: 150px;
}

.footer p,
.footer a,
.footer span,
.footer address {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.footer address,
.footer nav {
  display: grid;
  gap: 12px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials span {
  flex: 0 0 100%;
  text-transform: uppercase;
  font-weight: 800;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}

.mobile-bar {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100vw;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-bar a {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.lightbox {
  width: min(1000px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop { background: rgba(0, 0, 0, .78); }
.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox button {
  position: absolute;
  top: -48px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}

.floating-chat {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.floating-chat-list {
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .22s ease, transform .22s ease;
}

.floating-chat.open .floating-chat-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-chat-link,
.floating-chat-toggle {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 34px rgba(24, 19, 14, .18);
}

.floating-chat-link {
  transform: scale(.88);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-chat.open .floating-chat-link {
  transform: scale(1);
}

.floating-chat-link:hover,
.floating-chat-toggle:hover {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 18px 40px rgba(24, 19, 14, .24);
}

.floating-chat-link.whatsapp { background: #37d567; }
.floating-chat-link.viber { background: #665cac; }
.floating-chat-link.telegram { background: #2aa7df; }

.floating-chat-toggle {
  background: #16d483;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.floating-chat.open .floating-chat-toggle {
  background: #ff6666;
}

.floating-chat svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  display: block;
}

.floating-chat-link.viber svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chat .close-icon {
  display: none;
}

.floating-chat.open .chat-icon {
  display: none;
}

.floating-chat.open .close-icon {
  display: block;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 108px 1fr auto;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-nav {
    gap: 14px;
    font-size: 12px;
    letter-spacing: .01em;
  }

  .phone-links,
  .messenger-links { display: none; }
  h1 { font-size: 48px; }
  .rooms-layout { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .priority-panel {
    text-align: left;
  }

  .priority-head {
    align-items: start;
    flex-direction: column;
  }

  .services-columns {
    grid-template-columns: 1fr;
  }

  .service-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-actions .btn-small {
    display: none;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }
}

@media (max-width: 860px) {
  .container { width: calc(100% - 30px); }

  /* ─── ХЕДЕР ──────────────────────────────────────────── */
  .site-header {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    height: auto;
    gap: 0;
    padding: 0;
    top: 0; left: 0; right: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 9, 8, .88) 0%,
      rgba(10, 9, 8, .70) 60%,
      rgba(10, 9, 8, .10) 100%
    );
    border-bottom: none;
    backdrop-filter: none;
    color: #fff;
  }

  /* Рядок 1: лого — повна ширина */
  .site-header > .brand {
    order: 1;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    padding: 10px 16px 4px;
  }

  .brand img { width: 52px; height: 52px; object-fit: contain; }

  /* Рядок 2: телефон + месенджери + бургер — повна ширина */
  .site-header > .header-actions {
    order: 2;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px 10px;
    min-height: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  /* Примусово показуємо телефон і месенджери (перебиваємо 1160px hide) */
  .site-header > .header-actions .phone-links {
    display: flex !important;
  }
  .site-header > .header-actions .messenger-links {
    display: flex !important;
  }

  .site-header > .header-actions .phone-link {
    font-size: 13px;
    color: #fff;
  }

  .site-header > .header-actions .phone-mobile-icon {
    stroke: #fff;
  }

  .site-header > .header-actions .messenger-link {
    width: 28px;
    height: 28px;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(10, 9, 8, .32);
    color: #fff;
  }

  .header-actions .btn-small { display: none; }

  /* Бургер — в кінці рядка 2, білий */
  .menu-toggle {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(10, 9, 8, .32);
  }

  .menu-toggle span { background: #fff; }

  /* nav-дропдаун */
  .site-header > .main-nav {
    order: 3;
    flex: 0 0 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .main-nav {
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.open .main-nav { display: flex; }

  .site-header .main-nav a {
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    white-space: normal;
  }
  .site-header .main-nav a:last-child { border-bottom: 0; }

  /* ─── HERO ───────────────────────────────────────────── */
  .hero {
    min-height: 690px;
    align-items: end;
  }

  .hero::before {
    width: 100%;
    background: linear-gradient(0deg, rgba(20, 18, 15, .78) 0%, rgba(20, 18, 15, .46) 48%, rgba(20, 18, 15, .18) 100%);
  }

  .hero-image {
    width: 100%;
    height: 100%;
    inset: 0;
    object-position: center top;
  }

  .hero-panel {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 140px 0 44px;
  }

  .hero-panel,
  .copy,
  .booking-copy,
  .restaurant-card,
  .room-body {
    min-width: 0;
  }

  h1,
  h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .section { padding: 38px 0; }

  .about-grid,
  .spa-card,
  .restaurant-card,
  .booking-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .room-grid,
  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .experience-card,
  .experience-card-large,
  .experience-card-wide {
    grid-column: auto;
    min-height: 500px;
    margin-top: 0;
  }
  .experience-card:nth-child(even) {
    margin-top: 0;
  }
  .experience-card-wide .experience-panel {
    left: 32px;
    right: 32px;
    width: auto;
    transform: none;
  }

  .booking-card { padding: 28px 22px; }
  .contact-card { padding: 0; }
  .contact-copy { padding: 44px 28px; }
  .contact-copy h2 {
    margin-bottom: 26px;
    padding-bottom: 24px;
    font-size: 38px;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 390px;
  }
  /* Mobile header: one visible row, no sticky behavior */
  .site-header,
  .site-header.scrolled {
    position: absolute;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    height: 76px;
    gap: 10px;
    padding: 8px 14px;
    color: #fff;
    background: linear-gradient(
      180deg,
      rgba(10, 9, 8, .86) 0%,
      rgba(10, 9, 8, .62) 68%,
      rgba(10, 9, 8, 0) 100%
    );
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header > .brand {
    order: 1;
    flex: initial;
    grid-column: 1;
    padding: 0;
  }

  .site-header .brand img {
    width: 62px;
    height: auto;
  }

  .site-header > .header-actions {
    order: 3;
    flex: initial;
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
    min-height: 0;
  }

  .site-header > .header-actions .phone-links {
    display: flex !important;
    position: absolute;
    left: 88px;
    right: 66px;
    top: 18px;
    justify-content: center;
    min-width: 0;
    padding: 8px 8px;
    background: rgba(10, 9, 8, .34);
  }

  .site-header > .header-actions .phone-link {
    gap: 5px;
    font-size: 12px;
    color: #fff;
  }

  .site-header > .header-actions .messenger-links {
    display: none !important;
  }

  .site-header .menu-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    margin-left: 0;
  }

  .site-header > .main-nav {
    order: 2;
    flex: initial;
    grid-column: 1 / -1;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
  }

  .site-header.scrolled .main-nav a,
  .site-header.scrolled .phone-link {
    color: inherit;
  }

  .site-header.scrolled .messenger-link {
    color: #fff;
  }

  .hero-panel {
    padding-top: 96px;
  }
  .mobile-bar { display: grid; }
  .footer { padding-bottom: 86px; }
}

@media (max-width: 520px) {
  body,
  .site-header,
  main,
  .hero,
  .section,
  .footer,
  .mobile-bar {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    height: 66px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    padding: 7px 12px;
  }
  .site-header .brand img { width: 54px; }
  .site-header > .header-actions .phone-links {
    left: 72px;
    right: 62px;
    top: 15px;
    padding: 7px 6px;
  }
  .site-header > .header-actions .phone-link {
    font-size: 11px;
  }
  .site-header .phone-mobile-icon {
    width: 13px;
    height: 13px;
  }
  .site-header .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .main-nav {
    top: 66px;
    left: 12px;
    right: 12px;
  }
  h1 { font-size: 31px; }
  h2 { font-size: 24px; }
  .lead { font-size: 15px; }
  .hero {
    min-height: 640px;
  }
  .hero-panel {
    width: calc(100% - 32px);
    padding: 96px 0 34px;
  }
  .hero-panel h1,
  .hero-panel .lead,
  .copy h2,
  .copy p {
    max-width: 100%;
  }
  .mobile-bar a { font-size: 12px; }
  .mobile-bar {
    display: grid;
  }
  .mobile-bar a {
    flex: 0 0 calc(100vw / 3);
    min-width: 0;
    padding: 0 4px;
    white-space: nowrap;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }
  .hero-actions .btn {
    width: min(100%, 220px);
  }
  .video-link {
    max-width: 100%;
    gap: 12px;
    font-size: 11px;
    line-height: 1.35;
  }
  .video-link span {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }
  .feature-grid,
  .room-grid,
  .gallery-strip,
  .form-row,
  .services-columns {
    grid-template-columns: 1fr;
  }
  .service-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .priority-panel {
    padding: 28px 20px;
  }
  .priority-head {
    gap: 18px;
    margin-bottom: 26px;
    padding-bottom: 22px;
  }
  .priority-head h2 {
    font-size: 22px;
  }
  .service-icons span {
    min-height: 58px;
  }
  .section-caption {
    text-align: left;
  }
  .section-caption h2 {
    max-width: 320px;
    font-size: 22px;
    line-height: 1.22;
    text-wrap: balance;
  }
  .room-card img {
    aspect-ratio: 4 / 3;
  }
  .room-body {
    min-height: 160px;
    padding: 20px 48px 22px 20px;
  }
  .room-body h3 {
    font-size: 17px;
    line-height: 1.25;
  }
  .room-meta {
    gap: 9px;
    font-size: 11px;
  }
  .rooms-more {
    width: 100%;
    max-width: 260px;
    margin-top: 22px;
    min-height: 44px;
    font-size: 11px;
  }
  .booking {
    padding: 36px 0 42px;
  }
  .contact-copy {
    padding: 34px 22px;
  }
  .contact-copy h2 {
    font-size: 32px;
  }
  .contact-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-item p,
  .contact-item a {
    font-size: 15px;
  }
  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-card {
    min-height: 390px;
  }
  .experience-grid {
    gap: 100px;
  }
  .experience-card,
  .experience-card-large,
  .experience-card-wide {
    min-height: 360px;
  }
  .experience-panel,
  .experience-card-wide .experience-panel {
    left: 18px;
    right: 18px;
    bottom: -34px;
    width: auto;
    padding: 26px 22px 24px;
  }
  .experience-panel h3 {
    font-size: 22px;
  }
  .experience-panel p {
    font-size: 14px;
  }
  .feature-card img {
    height: 100%;
  }
  .feature-card::after {
    height: 62%;
  }
  .feature-card h3,
  .feature-card p {
    left: 22px;
    right: 22px;
    width: auto;
    margin: 0;
  }
  .feature-card h3 {
    bottom: 68px;
    font-size: 25px;
  }
  .feature-more {
    right: 22px;
    bottom: 24px;
  }
  .ornament-title {
    display: block;
    margin-top: 6px;
  }
  .ornament-title span { display: none; }
  .ornament-title h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 21px;
    overflow-wrap: anywhere;
  }
  .about-grid { gap: 28px; }
  .spa-copy { padding: 28px 22px; }
  .floating-chat {
    right: 14px;
    bottom: 76px;
    gap: 9px;
  }
  .floating-chat-list { gap: 8px; }
  .floating-chat-link,
  .floating-chat-toggle {
    width: 52px;
    height: 52px;
  }
  .floating-chat svg { width: 27px; height: 27px; }
  .floating-chat-link.viber svg { width: 29px; height: 29px; }
}

@media (max-width: 380px) {
  h1 { font-size: 28px; }
  .hero { min-height: 610px; }
  .section-caption h2 {
    max-width: 280px;
    font-size: 19px;
  }
  .priority-head h2,
  .contact-copy h2 { font-size: 28px; }
}

@media (max-width: 860px) {
  .site-header .header-actions {
    display: flex !important;
    visibility: visible;
  }

  .site-header .menu-toggle {
    display: block !important;
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 14px;
    right: 12px;
    z-index: 5;
  }
}

@media (max-width: 860px) {
  .site-header .phone-links .menu-toggle {
    display: grid !important;
    position: fixed !important;
    top: 28px !important;
    right: 18px !important;
    z-index: 2147483000 !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 10px !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .site-header > .mobile-burger {
    position: fixed !important;
    top: 16px !important;
    right: 12px !important;
    z-index: 2147483000 !important;
    display: grid !important;
    place-items: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .48) !important;
    border-radius: 0 !important;
    background: rgba(10, 9, 8, .58) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .site-header > .mobile-burger span {
    display: block !important;
    width: 19px !important;
    height: 2px !important;
    margin: 2px 0 !important;
    background: #fff !important;
  }

  body.mobile-menu-open .site-header > .mobile-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.mobile-menu-open .site-header > .mobile-burger span:nth-child(2) {
    opacity: 0;
  }

  body.mobile-menu-open .site-header > .mobile-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header > .mobile-menu-panel {
    position: fixed !important;
    top: 66px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 2147482999 !important;
    display: none !important;
    flex-direction: column !important;
    padding: 8px !important;
    border: 1px solid rgba(188, 143, 82, .22) !important;
    background: rgba(255, 252, 247, .98) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .26) !important;
  }

  body.mobile-menu-open .site-header > .mobile-menu-panel {
    display: flex !important;
  }

  .site-header > .mobile-menu-panel a {
    padding: 14px 16px !important;
    border-bottom: 1px solid rgba(188, 143, 82, .18) !important;
    color: #24211f !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
  }

  .site-header > .mobile-menu-panel a:last-child {
    border-bottom: 0 !important;
  }
}

@media (min-width: 861px) {
  .site-header > .mobile-burger,
  .site-header > .mobile-menu-panel {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 560px !important;
    align-items: center !important;
  }

  .hero-panel {
    padding: 58px 0 24px !important;
    transform: translateY(-42px) !important;
  }

  .hero-actions {
    margin-top: 18px !important;
    gap: 10px !important;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 540px !important;
  }

  .hero-panel {
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-header.scrolled {
    height: 170px !important;
    padding: 0 !important;
    background: linear-gradient(180deg, rgba(3, 4, 4, .86) 0%, rgba(3, 4, 4, .56) 58%, rgba(3, 4, 4, 0) 100%) !important;
  }

  .site-header .brand {
    position: fixed !important;
    top: 28px !important;
    left: 22px !important;
    z-index: 1005 !important;
  }

  .site-header .brand img {
    width: 82px !important;
    height: auto !important;
  }

  .site-header > .header-actions .phone-links {
    left: 112px !important;
    right: 72px !important;
    top: 28px !important;
    justify-content: center !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .site-header > .header-actions .phone-link {
    gap: 8px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
  }

  .site-header .phone-mobile-icon {
    width: 19px !important;
    height: 19px !important;
    stroke-width: 2.4px !important;
  }

  .site-header > .header-actions .messenger-links {
    display: none !important;
  }

  .site-header > .header-actions .messenger-link {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-color: rgba(255, 255, 255, .58) !important;
    border-radius: 50% !important;
    background: rgba(10, 9, 8, .18) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22) !important;
  }

  .site-header > .header-actions .messenger-link svg {
    width: 25px !important;
    height: 25px !important;
  }

  .mobile-burger {
    top: 30px !important;
    right: 18px !important;
    width: 48px !important;
    height: 48px !important;
    border-color: rgba(218, 181, 113, .72) !important;
    border-radius: 10px !important;
    background: rgba(8, 8, 8, .24) !important;
  }

  .mobile-burger span {
    width: 22px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    border-radius: 4px !important;
    background: #fff !important;
  }

  .hero {
    min-height: 720px !important;
    align-items: end !important;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 4, 4, .82) 0%, rgba(3, 4, 4, .48) 48%, rgba(3, 4, 4, .2) 100%),
      linear-gradient(0deg, rgba(3, 4, 4, .82) 0%, rgba(3, 4, 4, .28) 48%, rgba(3, 4, 4, .72) 100%) !important;
  }

  .hero-image {
    object-position: 52% center !important;
    filter: saturate(1.05) contrast(1.05) brightness(.86) !important;
  }

  .hero-panel {
    width: calc(100% - 44px) !important;
    margin: 0 auto !important;
    padding: 0 0 52px !important;
    transform: none !important;
  }

  .hero-panel h1 {
    max-width: 100% !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 40px !important;
    line-height: 1.14 !important;
    font-weight: 400 !important;
    color: #fff !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .38);
  }

  .hero-panel h1 .hero-gold {
    color: #d9bd7c !important;
  }

  .hero-panel h1 span:last-child {
    font-size: 35px !important;
    white-space: nowrap !important;
  }

  .hero-panel .lead {
    max-width: 310px !important;
    margin-top: 24px !important;
    padding-top: 22px !important;
    border-top: 2px solid rgba(218, 181, 113, .85);
    color: rgba(255, 255, 255, .94) !important;
    font-size: 20px !important;
    line-height: 1.48 !important;
  }

  .hero-actions {
    width: 100% !important;
    margin-top: 26px !important;
    gap: 14px !important;
  }

  .hero-actions .btn {
    width: min(100%, 342px) !important;
    min-height: 72px !important;
    justify-content: space-between !important;
    padding: 0 26px !important;
    border: 0 !important;
    border-radius: 13px !important;
    background: linear-gradient(135deg, #f4d087 0%, #b9813f 100%) !important;
    color: #111 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .22) !important;
  }

  .hero-actions .btn::after {
    content: "→";
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
  }

  .video-link {
    width: min(100%, 342px) !important;
    min-height: 70px !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    padding: 10px 18px !important;
    border: 1px solid rgba(218, 181, 113, .76) !important;
    border-radius: 12px !important;
    background: rgba(8, 8, 8, .34) !important;
    color: #fff !important;
    font-size: 13px !important;
    letter-spacing: .06em !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .2) !important;
  }

  .video-link::after {
    content: none !important;
    display: none !important;
  }

  .video-link span {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    background: rgba(218, 181, 113, .18) !important;
    color: #fff !important;
    border: 1px solid rgba(218, 181, 113, .35) !important;
  }
}

@media (max-width: 520px) {
  .mobile-burger,
  body > .mobile-burger {
    position: fixed !important;
    top: 30px !important;
    right: 18px !important;
    z-index: 2147483000 !important;
    display: grid !important;
    place-items: center !important;
    width: 62px !important;
    height: 62px !important;
    padding: 0 !important;
    border: 1px solid rgba(218, 181, 113, .78) !important;
    border-radius: 14px !important;
    background: rgba(8, 8, 8, .24) !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .mobile-burger span,
  body > .mobile-burger span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    margin: 3px 0 !important;
    border-radius: 4px !important;
    background: #fff !important;
  }
}

@media (min-width: 521px) {
  body > .mobile-burger {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .site-header .brand img {
    width: 76px !important;
  }

  .site-header > .header-actions .phone-links {
    left: 104px !important;
  }

  .site-header > .header-actions .phone-link {
    font-size: 14px !important;
  }

  .site-header > .header-actions .messenger-links {
    display: none !important;
  }

  .site-header > .header-actions .messenger-link {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .mobile-burger {
    width: 46px !important;
    height: 46px !important;
  }

  .hero-panel h1 {
    font-size: 35px !important;
  }

  .hero-panel h1 span:last-child {
    font-size: 30px !important;
  }

  .hero-panel .lead {
    font-size: 18px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand img {
    width: 82px !important;
  }

  .site-header > .header-actions .messenger-links {
    display: none !important;
  }

  .mobile-burger,
  body > .mobile-burger {
    top: 28px !important;
    right: 18px !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 10px !important;
  }

  .mobile-burger span,
  body > .mobile-burger span {
    width: 22px !important;
    height: 2px !important;
    margin: 3px 0 !important;
  }
}

@media (max-width: 380px) {
  .site-header .brand img {
    width: 74px !important;
  }

  .mobile-burger,
  body > .mobile-burger {
    width: 44px !important;
    height: 44px !important;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-header.scrolled {
    position: absolute !important;
  }

  .site-header .brand {
    position: absolute !important;
    top: 28px !important;
    left: 22px !important;
    z-index: 1005 !important;
  }
}

[data-mobile-burger] {
  display: none !important;
}

@media (max-width: 860px) {
  [data-mobile-burger] {
    position: fixed !important;
    top: 28px !important;
    right: 18px !important;
    z-index: 2147483000 !important;
    display: grid !important;
    place-items: center !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border: 1px solid rgba(218, 181, 113, .78) !important;
    border-radius: 10px !important;
    background: rgba(8, 8, 8, .34) !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  [data-mobile-burger] span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    border-radius: 4px !important;
    background: #fff !important;
  }
}

@media (min-width: 861px) {
  [data-mobile-burger] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 560px !important;
    align-items: center !important;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(20, 18, 15, .78) 0%, rgba(20, 18, 15, .46) 48%, rgba(20, 18, 15, .18) 100%) !important;
  }

  .hero-image {
    filter: none !important;
  }

  .hero-panel {
    width: calc(100% - 32px) !important;
    padding: 132px 0 24px !important;
    transform: none !important;
  }

  .hero-panel h1 {
    max-width: 100% !important;
    font-family: Montserrat, Arial, Helvetica, sans-serif !important;
    font-size: 28px !important;
    line-height: 1.16 !important;
    font-weight: 400 !important;
    color: #fff !important;
    text-shadow: none !important;
  }

  .hero-panel h1 span,
  .hero-panel h1 .hero-gold,
  .hero-panel h1 span:last-child {
    color: #fff !important;
    font-size: inherit !important;
    white-space: normal !important;
  }

  .hero-panel .lead {
    max-width: 100% !important;
    margin: 18px 0 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  .hero-actions {
    align-items: flex-start !important;
    flex-direction: column !important;
    width: auto !important;
    margin-top: 24px !important;
    gap: 14px !important;
  }

  .hero-actions .btn {
    width: min(100%, 220px) !important;
    min-height: 48px !important;
    justify-content: center !important;
    padding: 14px 28px !important;
    border: 1px solid var(--gold) !important;
    border-radius: 2px !important;
    background: var(--gold) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    box-shadow: none !important;
  }

  .hero-actions .btn::after,
  .video-link::after {
    content: none !important;
  }

  .video-link {
    width: auto !important;
    min-height: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    gap: 12px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    box-shadow: none !important;
  }

  .video-link span {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    background: rgba(255, 255, 255, .1) !important;
    border: 0 !important;
    color: #fff !important;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 540px !important;
  }

  .hero-panel {
    transform: translateY(-48px) !important;
  }

  .hero-panel h1 {
    font-size: 28px !important;
  }
}

@media (max-width: 860px) {
  body > [data-mobile-burger] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    overflow: hidden !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  body > [data-mobile-burger]::before,
  body > [data-mobile-burger]::after {
    content: none !important;
    display: none !important;
  }

  body > [data-mobile-burger] span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    flex: 0 0 3px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: transparent !important;
    transform-origin: center !important;
    transition: transform .22s ease, opacity .18s ease !important;
  }

  body.mobile-menu-open > [data-mobile-burger] span:nth-child(1) {
    transform: translateY(10px) rotate(45deg) !important;
  }

  body.mobile-menu-open > [data-mobile-burger] span:nth-child(2) {
    opacity: 0 !important;
  }

  body.mobile-menu-open > [data-mobile-burger] span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg) !important;
  }
}

@media (max-width: 860px) {
  .faq-section {
    padding-top: 14px;
  }

  .planning-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .planning-card img {
    aspect-ratio: 16 / 9;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 20px 58px 20px 22px;
    font-size: 17px;
  }

  .faq-item summary::after {
    right: 20px;
    width: 30px;
    height: 30px;
  }

  .faq-item p {
    padding: 0 52px 22px 22px;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .faq-list {
    gap: 10px;
  }

  .planning-section {
    padding-top: 8px;
  }

  .planning-body {
    padding: 20px 18px;
  }

  .planning-body strong {
    font-size: 19px;
  }

  .faq-item summary {
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .faq-item summary::after {
    right: 16px;
  }

  .faq-item p {
    padding: 0 18px 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    align-items: flex-start !important;
    min-height: 640px !important;
  }

  .hero-panel {
    padding-top: 132px !important;
    transform: none !important;
  }

  .hero-panel h1 {
    font-size: 28px !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 380px) {
  .hero-panel {
    padding-top: 126px !important;
    transform: none !important;
  }

  .hero-panel h1 {
    font-size: 26px !important;
  }
}

.experience-card,
.experience-card-large,
.experience-card-wide {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border-radius: 2px !important;
  background: #fff !important;
  box-shadow: 0 22px 54px rgba(50, 37, 22, .08) !important;
}

.experience-card img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 11 !important;
  object-fit: cover !important;
}

.experience-card-wide img {
  aspect-ratio: 16 / 7 !important;
}

.experience-panel,
.experience-card-wide .experience-panel {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: none !important;
  transform: none !important;
  padding: 30px 34px 32px !important;
  box-shadow: none !important;
}

.experience-panel::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 860px) {
  .experience-grid {
    gap: 28px !important;
  }

  .experience-card,
  .experience-card-large,
  .experience-card-wide {
    margin-top: 0 !important;
  }

  .experience-card-wide img {
    aspect-ratio: 16 / 10 !important;
  }

  .experience-panel,
  .experience-card-wide .experience-panel {
    padding: 26px 22px 28px !important;
  }
}
