:root {
  --ink: #11282d;
  --ink-soft: #53666a;
  --deep: #0b3f4a;
  --deep-2: #075565;
  --sea: #0c8191;
  --sand: #d7b77a;
  --sand-light: #f3e8d2;
  --cream: #f8f5ef;
  --paper: #ffffff;
  --line: rgba(17, 40, 45, 0.13);
  --shadow: 0 24px 70px rgba(13, 46, 53, 0.13);
  --shadow-soft: 0 14px 40px rgba(13, 46, 53, 0.09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(25px, 2.4vw, 34px);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: #fff;
  background: var(--deep);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--deep);
  border-radius: 999px;
  color: #fff;
  background: var(--deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--deep-2);
  box-shadow: 0 12px 30px rgba(11, 63, 74, 0.22);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(12, 129, 145, 0.42);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
}

.button-large {
  min-height: 56px;
  padding-inline: 31px;
  font-size: 15px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.button-light {
  border-color: #fff;
  color: var(--deep);
  background: #fff;
}

.button-light:hover {
  background: var(--sand-light);
}

.button-block {
  width: 100%;
}

.overline,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sea);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.overline::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  background: linear-gradient(to bottom, rgba(5, 36, 44, 0.72), transparent);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 25px rgba(13, 46, 53, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.is-scrolled .brand-mark,
.brand-footer .brand-mark {
  border-color: rgba(215, 183, 122, 0.5);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.72;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--sand);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.15;
}

.header-phone small {
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.12em;
  opacity: 0.7;
  text-transform: uppercase;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 100svh);
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 28, 34, 0.79) 0%, rgba(4, 28, 34, 0.44) 43%, rgba(4, 28, 34, 0.08) 75%),
    linear-gradient(0deg, rgba(4, 28, 34, 0.55) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 96px;
}

.hero-card {
  max-width: 760px;
}

.hero .eyebrow {
  color: #fff;
}

.hero .eyebrow span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: var(--sand-light);
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0;
}

.hero-card > p {
  max-width: 630px;
  margin-bottom: 31px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  opacity: 0.91;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero .button {
  border-color: var(--sand);
  color: var(--ink);
  background: var(--sand);
}

.hero .button:hover {
  background: #e6ca95;
}

.hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: transparent;
}

.hero .button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 52px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-meta b {
  color: var(--sand-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.booking-section {
  position: relative;
  z-index: 2;
  padding: 84px 0 72px;
  background: var(--cream);
}

.booking-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 36px;
}

.booking-heading h2 {
  margin-top: 14px;
}

.booking-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 17px;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  overflow: hidden;
  border: 1px solid rgba(11, 63, 74, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

#booking-widget {
  min-width: 0;
  min-height: 230px;
  padding: 28px;
}

.widget-loading {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.loader {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(11, 63, 74, 0.14);
  border-top-color: var(--sea);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.booking-help {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #fff;
  background: var(--deep);
}

.booking-help span {
  margin-bottom: 8px;
  color: var(--sand-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-help a {
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.booking-help small {
  opacity: 0.68;
}

.booking-note {
  margin: 17px 10px 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.intro-section {
  padding: 120px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.section-heading .overline + h2 {
  margin-top: 16px;
}

.intro-copy {
  padding-top: 23px;
  color: var(--ink-soft);
  font-size: 17px;
}

.intro-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 68px;
}

.fact-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.fact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--sand-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.fact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.fact-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.rooms-section {
  padding: 120px 0;
  background: var(--cream);
}

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

.section-heading-row > div {
  max-width: 800px;
}

.text-link {
  flex: none;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(11, 63, 74, 0.25);
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
}

.text-link span {
  margin-left: 9px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.room-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.room-card > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.room-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.25fr 0.75fr;
}

.room-card-wide > img {
  height: 100%;
  min-height: 380px;
}

.room-card-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px;
}

.room-card-body h3 {
  margin: 7px 0 13px;
}

.room-card-body p {
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.room-kicker {
  color: var(--sea);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-card-body > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--sand);
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
}

.leisure-section {
  padding: 120px 0;
  color: #fff;
  background: var(--deep);
}

.centered {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.centered .overline {
  color: var(--sand);
}

.centered .overline::before {
  display: none;
}

.centered h2 {
  margin-top: 15px;
}

.centered p {
  max-width: 650px;
  margin: 19px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.leisure-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 300px 300px;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.feature-card-large {
  grid-row: 1 / 3;
}

.feature-card-wide {
  grid-column: 2;
}

.feature-card img,
.feature-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-card img {
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.feature-gradient {
  background: linear-gradient(0deg, rgba(3, 27, 33, 0.8), rgba(3, 27, 33, 0.05) 70%);
}

.feature-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.feature-card-large .feature-content {
  padding: 40px;
}

.feature-content span {
  color: var(--sand-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-content h3 {
  margin: 7px 0 0;
}

.feature-card-large h3 {
  font-size: clamp(32px, 4vw, 48px);
}

.feature-content p {
  max-width: 500px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.reviews-section {
  padding: 120px 0;
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.reviews-copy {
  position: sticky;
  top: 110px;
  padding-top: 28px;
}

.reviews-copy h2 {
  margin: 16px 0 24px;
}

.reviews-copy > p {
  color: var(--ink-soft);
  font-size: 16px;
}

.rating-card {
  display: flex;
  margin-top: 35px;
  padding: 25px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.rating-stars {
  margin-bottom: 11px;
  color: #f0a500;
  letter-spacing: 0.12em;
}

.rating-card small {
  margin-top: 4px;
  color: var(--ink-soft);
}

.reviews-frame-wrap {
  position: relative;
  height: 720px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.reviews-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.reviews-frame-wrap::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
}

.contacts-section {
  padding: 120px 0;
}

.contacts-section .section-heading {
  margin-bottom: 42px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 45px;
}

.contact-item {
  display: flex;
  padding: 0 0 25px;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.contact-item + .contact-item {
  padding-top: 25px;
}

.contact-item small {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--sea);
}

.messenger-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 26px 0;
}

.messenger {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 750;
}

.messenger span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sea);
  font-size: 12px;
}

.messenger-max span {
  background: #6f4dff;
}

.messenger:hover {
  border-color: var(--sea);
}

.map-frame-wrap {
  min-height: 600px;
  background: #e8ece9;
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
}

.final-cta {
  padding: 78px 0;
  color: #fff;
  background: var(--sea);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .overline {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta h2 {
  margin-top: 11px;
}

.site-footer {
  padding: 68px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  background: #062f38;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.brand-footer {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact a {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 25px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}

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

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  cursor: pointer;
}

.footer-bottom .disclaimer {
  max-width: 710px;
  text-align: right;
}

.floating-messengers {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.floating-button:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-max {
  background: #6f4dff;
}

.floating-tg {
  background: #27a7e7;
}

.mobile-booking-bar {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 18px;
  bottom: 18px;
  left: 18px;
  transform: translateY(130%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 20px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  color: #fff;
  background: rgba(6, 47, 56, 0.97);
  box-shadow: 0 18px 55px rgba(4, 28, 34, 0.32);
  backdrop-filter: blur(18px);
}

.cookie-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.cookie-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.cookie-copy a {
  color: #fff;
  text-decoration: underline;
}

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

.cookie-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button-primary {
  border-color: var(--sand);
  color: var(--ink);
  background: var(--sand);
}

/* Legal pages */
.legal-page {
  color: var(--ink);
  background: var(--cream);
}

.legal-header {
  position: static;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 20px rgba(13, 46, 53, 0.07);
}

.legal-header .brand-mark {
  border-color: rgba(215, 183, 122, 0.5);
}

.legal-back {
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
}

.legal-main {
  padding: 75px 0 110px;
}

.legal-document {
  max-width: 880px;
  margin: 0 auto;
  padding: 58px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.legal-document h1 {
  margin: 14px 0 28px;
  font-size: clamp(38px, 5vw, 58px);
}

.legal-document h2 {
  margin: 42px 0 16px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: 0;
}

.legal-document h3 {
  margin: 28px 0 12px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 750;
}

.legal-document p,
.legal-document li {
  color: #41575c;
}

.legal-document a {
  color: var(--sea);
  text-decoration: underline;
}

.legal-document code {
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--deep);
  background: var(--sand-light);
}

.legal-document ul,
.legal-document ol {
  padding-left: 24px;
}

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

.legal-note {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--sand);
  border-radius: 0 12px 12px 0;
  background: var(--cream);
}

.legal-date {
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .header-phone {
    display: none;
  }

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

  .room-card > img {
    height: 290px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

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

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    padding: 35px 25px;
    transform: translateX(100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: var(--ink);
    background: #fff;
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }

  .main-nav a {
    width: 100%;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero {
    min-height: 790px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .booking-heading,
  .intro-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-help {
    min-height: 160px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .room-card-wide {
    grid-template-columns: 1fr;
  }

  .room-card-wide > img {
    height: 330px;
    min-height: 0;
  }

  .leisure-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 260px;
  }

  .feature-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .reviews-copy {
    position: static;
  }

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

  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 480px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom .disclaimer {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 37px;
  }

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

  .brand-mark {
    width: 39px;
    height: 39px;
    font-size: 24px;
  }

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

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 745px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 28, 34, 0.76), rgba(4, 28, 34, 0.16)),
      linear-gradient(0deg, rgba(4, 28, 34, 0.73), transparent 55%);
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 45px;
  }

  .hero h1 {
    margin: 18px 0;
  }

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

  .hero-actions .button {
    flex: 1;
    min-width: 140px;
    padding-inline: 17px;
  }

  .hero-meta {
    gap: 14px;
    margin-top: 34px;
  }

  .hero-meta span {
    width: calc(50% - 8px);
  }

  .hero-meta span:last-child {
    width: 100%;
  }

  .booking-section,
  .intro-section,
  .rooms-section,
  .leisure-section,
  .reviews-section,
  .contacts-section {
    padding: 78px 0;
  }

  .booking-heading {
    margin-bottom: 26px;
  }

  .booking-heading > p {
    font-size: 15px;
  }

  .booking-shell {
    border-radius: 19px;
  }

  #booking-widget {
    min-height: 260px;
    padding: 18px 12px;
  }

  .booking-help {
    padding: 25px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .fact-card {
    min-height: 0;
  }

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

  .section-heading-row .text-link {
    display: inline-block;
    margin-top: 21px;
  }

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

  .room-card-wide {
    grid-column: auto;
  }

  .room-card > img,
  .room-card-wide > img {
    height: 240px;
  }

  .room-card-body {
    min-height: 245px;
    padding: 25px;
  }

  .leisure-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 330px);
  }

  .feature-card-large,
  .feature-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card-large .feature-content,
  .feature-content {
    padding: 25px;
  }

  .reviews-frame-wrap {
    height: 650px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-item strong,
  .contact-item a {
    font-size: 20px;
  }

  .messenger-row {
    grid-template-columns: 1fr;
  }

  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 420px;
  }

  .final-cta {
    padding: 55px 0;
  }

  .final-cta-inner {
    display: block;
  }

  .final-cta .button {
    width: 100%;
    margin-top: 28px;
  }

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

  .footer-links {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .floating-button {
    width: 48px;
    height: 48px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    padding: 10px 18px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--deep);
    box-shadow: 0 -7px 25px rgba(3, 27, 33, 0.18);
  }

  .mobile-booking-bar span {
    font-size: 11px;
    opacity: 0.68;
  }

  .mobile-booking-bar strong {
    color: var(--sand-light);
    font-size: 13px;
  }

  .cookie-banner {
    right: 8px;
    bottom: 72px;
    left: 8px;
  }

  .cookie-banner-inner {
    padding: 17px;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

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

  .cookie-button {
    padding-inline: 10px;
  }

  .legal-main {
    padding: 30px 0 75px;
  }

  .legal-document {
    padding: 30px 21px;
    border-radius: 18px;
  }

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

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

/* ZHEM BOOKING BUTTON FIX START */
#booking-widget,
#booking-widget * {
    box-sizing: border-box;
}

#booking-widget .sg-search-grid,
#booking-widget .sg-search-grid > div {
    min-width: 0 !important;
    max-width: 100% !important;
}

#booking-widget .sg-search-grid .sg-search-button-wrap {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding-right: 8px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

#booking-widget .sg-search-grid #sg-search,
#booking-widget .sg-search-grid .sg-search-button {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

@media (max-width: 1050px) {
    #booking-widget .sg-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    #booking-widget .sg-search-grid .sg-search-button-wrap {
        grid-column: 1 / -1 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 600px) {
    #booking-widget .sg-search-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
}
/* ZHEM BOOKING BUTTON FIX END */

/* ZHEM MOBILE MENU OPAQUE START */
@media (max-width: 900px) {
    body.menu-open::before {
        content: "";
        position: fixed;
        z-index: 95;
        inset: 0;
        background: #ffffff;
    }

    body.menu-open .site-header,
    body.menu-open .site-header.is-scrolled {
        color: var(--ink) !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 4px 20px rgba(13, 46, 53, 0.08) !important;
    }

    body.menu-open .main-nav,
    body.menu-open .main-nav.is-open {
        position: fixed !important;
        z-index: 110 !important;
        top: var(--header-height) !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        width: 100vw !important;
        height: calc(100dvh - var(--header-height)) !important;
        padding: 30px 25px 90px !important;
        transform: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        color: var(--ink) !important;
        background: #ffffff !important;
        overscroll-behavior: contain;
    }

    body.menu-open .main-nav a {
        display: block !important;
        width: 100% !important;
        padding: 18px 4px !important;
        border-bottom: 1px solid var(--line) !important;
        color: var(--ink) !important;
        background: #ffffff !important;
        opacity: 1 !important;
    }
}
/* ZHEM MOBILE MENU OPAQUE END */

/* ZHEM DESKTOP BUTTON SIZE START */
@media (min-width: 1051px) {
    #booking-widget .sg-search-grid .sg-search-button-wrap {
        display: flex !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    #booking-widget .sg-search-grid #sg-search,
    #booking-widget .sg-search-grid .sg-search-button {
        width: min(160px, 100%) !important;
        max-width: 160px !important;
        min-width: 0 !important;
        margin: 0 !important;
        flex: none !important;
        box-sizing: border-box !important;
    }
}
/* ZHEM DESKTOP BUTTON SIZE END */

/* ZHEM NONCLICKABLE MAP START */
.zhem-map-host {
    position: relative !important;
    overflow: hidden !important;
}

#zhem-yandex-map {
    display: block;
    width: 100% !important;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.zhem-map-zoom {
    position: absolute;
    z-index: 20;
    top: 50%;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transform: translateY(-50%);
    overflow: hidden;
    border: 1px solid rgba(16, 47, 52, 0.16);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(16, 47, 52, 0.18);
}

.zhem-map-zoom button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: #ffffff;
    color: #15383d;
    font: 500 28px/42px Arial, sans-serif;
    cursor: pointer;
}

.zhem-map-zoom button:hover {
    background: #f1f5f3;
}

.zhem-map-zoom button + button {
    border-top: 1px solid #e1e7e4;
}

@media (max-width: 720px) {
    .zhem-map-zoom {
        right: 10px;
    }

    .zhem-map-zoom button {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
/* ZHEM NONCLICKABLE MAP END */

/* ZHEM FLOATING PHONE START */
.floating-phone-button {
    background: #23735d !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.floating-phone-button:hover {
    background: #195b49 !important;
    transform: translateY(-2px);
}

.floating-phone-button svg {
    display: block;
    width: 23px;
    height: 23px;
    fill: currentColor;
}
/* ZHEM FLOATING PHONE END */
