@charset "UTF-8";

:root {
  --ink: #132f3f;
  --ink-2: #254653;
  --paper: #f7f2e9;
  --paper-2: #fffdf8;
  --white: #ffffff;
  --sage: #728f7a;
  --sage-dark: #4f6f5d;
  --terra: #c96547;
  --terra-dark: #a84b32;
  --sand: #e7d6bd;
  --line: rgba(19, 47, 63, 0.14);
  --muted: #63747c;
  --shadow: 0 24px 70px rgba(19, 47, 63, 0.14);
  --shadow-soft: 0 10px 34px rgba(19, 47, 63, 0.09);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--terra-dark);
}

:focus-visible {
  outline: 3px solid rgba(201, 101, 71, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  color: #fff;
  background: var(--ink);
}

.section--compact {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--terra-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(40px, 6.3vw, 84px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 58px);
}

h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.section-heading > div:first-child {
  max-width: 790px;
}

.section-heading p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section--ink h2,
.section--ink h3,
.section--ink .eyebrow {
  color: #fff;
}

.section--ink p {
  color: rgba(255, 255, 255, 0.74);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  background: var(--terra);
  box-shadow: 0 10px 24px rgba(169, 72, 45, 0.2);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--terra-dark);
  box-shadow: 0 14px 30px rgba(169, 72, 45, 0.27);
}

.button--light {
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.button--light:hover {
  color: var(--ink);
  background: var(--paper);
}

.button--outline {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
}

.button--outline:hover {
  color: var(--ink);
  border-color: var(--terra);
  background: rgba(201, 101, 71, 0.08);
  box-shadow: none;
}

.button--small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 14px;
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.top-note {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 12px;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(19, 47, 63, 0.1);
  background: rgba(255, 253, 248, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px 13px 20px 13px;
  color: #fff;
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 21px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--terra-dark);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: grid;
  color: var(--ink);
  line-height: 1.05;
  text-align: right;
  text-decoration: none;
}

.header-phone strong {
  font-size: 16px;
}

.header-phone span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.menu-toggle {
  display: none;
}

.booking-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 72px;
  color: #fff;
  background: var(--ink);
}

.booking-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 32, 44, 0.93) 0%, rgba(9, 32, 44, 0.78) 46%, rgba(9, 32, 44, 0.5) 100%),
    var(--hero-image) center 42% / cover no-repeat;
  transform: scale(1.01);
}

.booking-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -52%;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.booking-hero__inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: grid;
  max-width: 840px;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-copy .eyebrow {
  color: #f4b39e;
}

.hero-copy h1 {
  max-width: 920px;
  margin-bottom: 0;
  color: #fff;
}

.hero-copy p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 720;
  backdrop-filter: blur(8px);
}

.booking-shell {
  position: relative;
  z-index: 3;
}

[data-stayget-booking] {
  display: block;
  min-height: 590px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-item {
  min-height: 110px;
  padding: 24px 26px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 70px;
}

.intro-media {
  position: relative;
  min-height: 630px;
}

.intro-media__main {
  width: 82%;
  height: 570px;
  overflow: hidden;
  border-radius: 12px 70px 12px 70px;
  box-shadow: var(--shadow);
}

.intro-media__main img,
.intro-media__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-media__small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 250px;
  overflow: hidden;
  border: 9px solid var(--paper-2);
  border-radius: 40px 12px 40px 12px;
  box-shadow: var(--shadow-soft);
}

.intro-copy p {
  color: var(--muted);
  font-size: 17px;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}

.fact-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--terra);
}

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

.room-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(19, 47, 63, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.room-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  padding: 6px 11px;
  color: #fff;
  background: rgba(19, 47, 63, 0.84);
  font-size: 11px;
  font-weight: 760;
  backdrop-filter: blur(7px);
}

.room-card__body {
  padding: 24px;
}

.room-card h3 {
  min-height: 2.15em;
  margin-bottom: 12px;
  font-size: 26px;
}

.room-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.room-card__facts span {
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--ink-2);
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.room-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.text-link {
  color: var(--terra-dark);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

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

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__body {
  padding: 24px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.split-feature__media {
  min-height: 540px;
}

.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
}

.split-feature__copy p {
  color: var(--muted);
}

.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 28px;
}

.schedule div {
  border-radius: var(--radius-sm);
  padding: 14px;
  background: var(--paper);
  text-align: center;
}

.schedule strong,
.schedule span {
  display: block;
}

.schedule strong {
  color: var(--ink);
  font-size: 13px;
}

.schedule span {
  margin-top: 3px;
  color: var(--terra-dark);
  font-weight: 780;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  min-height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.service-list strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 500;
}

.service-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.masonry-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 120px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-button {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: var(--sand);
  cursor: zoom-in;
}

.gallery-button:nth-child(7n + 1),
.gallery-button:nth-child(7n + 4) {
  grid-row: span 3;
}

.gallery-button:nth-child(7n + 2),
.gallery-button:nth-child(7n + 5),
.gallery-button:nth-child(7n + 6) {
  grid-row: span 2;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.25s ease;
}

.gallery-button:hover img {
  transform: scale(1.05);
  filter: brightness(0.88);
}

.gallery-button::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(19, 47, 63, 0.72);
  content: "+";
  font-size: 20px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-button:hover::after {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 74px;
  background: rgba(5, 18, 25, 0.95);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1300px, 100%);
  max-height: calc(100vh - 140px);
  border-radius: 14px;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  cursor: pointer;
}

.lightbox__close {
  top: 18px;
  right: 18px;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__prev {
  left: 18px;
}

.lightbox__next {
  right: 18px;
}

.lightbox__caption {
  position: absolute;
  right: 80px;
  bottom: 20px;
  left: 80px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-align: center;
}

.reviews-layout,
.contacts-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: 50px;
}

.reviews-widget {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 780px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.reviews-widget iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.reviews-widget__shield {
  position: absolute;
  z-index: 2;
  inset: 0;
  cursor: default;
}

.external-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 34px;
  border: 1px dashed rgba(19, 47, 63, 0.25);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
}

.external-placeholder > div {
  max-width: 480px;
}

.external-placeholder h3 {
  margin-bottom: 10px;
}

.external-placeholder p {
  color: var(--muted);
}

.map-shell {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e6ebdf;
  box-shadow: var(--shadow-soft);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
  pointer-events: none;
}

.map-shield {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.map-controls {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 8px;
}

.map-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
}

.map-caption {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 700;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 19px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-list span,
.contact-list strong,
.contact-list a {
  display: block;
}

.contact-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list a {
  margin-top: 3px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 740;
  text-decoration: none;
}

.messenger-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.messenger-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.messenger-button:hover {
  color: #fff;
  filter: brightness(0.94);
}

.messenger-button svg {
  width: 20px;
  height: 20px;
}

.messenger-button--tg {
  background: #229ed9;
}

.messenger-button--max {
  background: #6a4df7;
}

.floating-messengers {
  position: fixed;
  z-index: 75;
  right: 18px;
  bottom: 88px;
  display: grid;
  gap: 10px;
}

.floating-messengers a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 28px rgba(19, 47, 63, 0.24);
}

.floating-messengers a:hover {
  transform: translateY(-2px);
  color: #fff;
}

.floating-messengers svg {
  width: 23px;
  height: 23px;
}

.page-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero__image,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  background: linear-gradient(90deg, rgba(9, 30, 42, 0.92), rgba(9, 30, 42, 0.38));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 530px;
  max-width: 900px;
  flex-direction: column;
  justify-content: end;
  padding: 80px 0 64px;
}

.page-hero h1,
.page-hero h2 {
  margin-bottom: 18px;
  color: #fff;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.breadcrumbs a {
  color: inherit;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.room-specs span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 740;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 60px;
}

.room-description p {
  color: var(--muted);
  font-size: 17px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.amenity-grid li {
  position: relative;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 14px 14px 38px;
  color: var(--ink-2);
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.amenity-grid li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--sage);
}

.sticky-card {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
}

.sticky-card h3 {
  margin-bottom: 11px;
}

.sticky-card p {
  color: var(--muted);
  font-size: 14px;
}

.sticky-card .button {
  width: 100%;
  margin-top: 8px;
}

.booking-detail {
  padding: 56px 0;
  background: var(--ink);
}

.booking-detail [data-stayget-booking] {
  min-height: 590px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 850px);
  align-items: start;
  justify-content: center;
  gap: 50px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: #fff;
}

.legal-nav a {
  border-radius: 9px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper);
}

.legal-content {
  min-width: 0;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 62px);
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 30px;
}

.legal-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 23px;
}

.legal-content p,
.legal-content li {
  color: #475d67;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-callout {
  margin: 28px 0;
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  background: var(--paper);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 34%;
  color: var(--ink);
  background: var(--paper);
}

.faq-list {
  display: grid;
  max-width: 960px;
  gap: 10px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.faq-item summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  color: var(--ink);
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  content: "+";
  color: var(--terra-dark);
  font-size: 25px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  padding: 64px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  background: #0e2735;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1.05fr;
  gap: 44px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: #fff;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span {
  color: #fff;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 19px;
}

.footer-bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 26px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 11px;
}

.footer-bottom p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  max-width: 1040px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 20px;
  color: #fff;
  background: rgba(14, 39, 53, 0.97);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.cookie-banner.is-visible {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.cookie-banner a {
  color: #fff;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.cookie-actions button[data-cookie-accept] {
  border-color: var(--terra);
  background: var(--terra);
}

.cookie-modal {
  position: fixed;
  z-index: 700;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 21, 29, 0.72);
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__panel {
  width: min(590px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-modal__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 35px;
}

.cookie-modal p {
  color: var(--muted);
  font-size: 13px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.cookie-option strong {
  display: block;
}

.cookie-option span {
  color: var(--muted);
  font-size: 12px;
}

.switch {
  position: relative;
  width: 48px;
  height: 28px;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d8dddf;
  cursor: pointer;
  transition: background 0.2s ease;
}

.switch i::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.switch input:checked + i {
  background: var(--sage-dark);
}

.switch input:checked + i::after {
  transform: translateX(20px);
}

.switch input:disabled + i {
  opacity: 0.75;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 42px;
  color: var(--muted);
  background: var(--paper);
  text-align: center;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .nav-list {
    gap: 14px;
  }

  .nav-list a {
    font-size: 12px;
  }

  .header-phone span,
  .header-contact .button {
    display: none;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(390px, 88vw);
    padding: 96px 28px 28px;
    background: var(--paper-2);
    box-shadow: -24px 0 60px rgba(19, 47, 63, 0.2);
    transform: translateX(110%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: none;
  }

  .nav-list {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--line);
  }

  .nav-list a {
    display: block;
    padding: 15px 0;
    font-size: 17px;
  }

  .menu-toggle {
    position: relative;
    z-index: 101;
    display: inline-grid;
  }

  .header-phone {
    display: none;
  }

  .booking-hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 11vw, 67px);
  }

  [data-stayget-booking] {
    min-height: 720px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .intro-grid,
  .split-feature,
  .reviews-layout,
  .contacts-layout,
  .room-detail-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 48px;
  }

  .intro-media {
    min-height: 560px;
  }

  .intro-media__main {
    height: 510px;
  }

  .split-feature__media {
    min-height: 400px;
  }

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

  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .sticky-card,
  .legal-nav {
    position: static;
  }

  .legal-nav {
    display: flex;
    overflow-x: auto;
    gap: 5px;
  }

  .legal-nav a {
    flex: 0 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid .footer-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 22px, var(--container));
  }

  .top-note {
    font-size: 10px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    display: none;
  }

  .booking-hero {
    padding-bottom: 58px;
  }

  .booking-hero::before {
    background:
      linear-gradient(180deg, rgba(9, 32, 44, 0.86), rgba(9, 32, 44, 0.72)),
      var(--hero-image) 62% center / cover no-repeat;
  }

  .hero-copy {
    margin-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: 41px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  [data-stayget-booking],
  .booking-detail [data-stayget-booking] {
    min-height: 790px;
  }

  .trust-strip {
    margin-top: -24px;
  }

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

  .trust-item {
    min-height: auto;
    padding: 18px 20px;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading .button {
    margin-top: 16px;
  }

  .intro-media {
    min-height: 410px;
  }

  .intro-media__main {
    width: 88%;
    height: 370px;
    border-radius: 8px 40px 8px 40px;
  }

  .intro-media__small {
    width: 48%;
    height: 160px;
    border-width: 6px;
  }

  .fact-list,
  .room-grid,
  .feature-grid,
  .service-list,
  .amenity-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-card h3 {
    min-height: auto;
  }

  .split-feature {
    border-radius: 24px;
  }

  .split-feature__media {
    min-height: 300px;
  }

  .split-feature__copy {
    padding: 30px 24px;
  }

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

  .masonry-gallery {
    grid-auto-rows: 90px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-button:nth-child(n) {
    grid-row: span 2;
  }

  .gallery-button:nth-child(5n + 1) {
    grid-row: span 3;
  }

  .lightbox {
    padding: 60px 12px;
  }

  .lightbox__prev,
  .lightbox__next {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox__caption {
    right: 70px;
    bottom: 30px;
    left: 70px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .reviews-widget {
    height: 680px;
  }

  .page-hero,
  .page-hero__content {
    min-height: 460px;
  }

  .page-hero__content {
    padding: 68px 0 44px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .legal-content h1 {
    font-size: 38px;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    border-bottom: 0;
  }

  .footer-grid .footer-col:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .cookie-banner.is-visible {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions button:first-child {
    grid-column: 1 / -1;
  }

  .cookie-modal__panel {
    padding: 24px 20px;
  }

  .floating-messengers {
    right: 12px;
    bottom: 78px;
  }

  .floating-messengers a {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .top-note,
  .site-header,
  .booking-detail,
  .floating-messengers,
  .cookie-banner,
  .cookie-modal,
  .site-footer,
  .button,
  .legal-nav {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 20px 0;
  }

  .legal-layout {
    display: block;
  }
}
