:root {
  --forest-950: #0d2a22;
  --forest-900: #173d31;
  --forest-800: #245342;
  --forest-700: #2f654f;
  --forest-100: #e8f0ec;
  --forest-50: #f4f7f5;
  --sand: #cbae79;
  --sand-light: #eadcc3;
  --ink: #18231e;
  --muted: #65716b;
  --line: #dfe6e2;
  --white: #fff;
  --shadow: 0 22px 70px rgba(20, 50, 39, 0.12);
  --shell: min(1180px, calc(100% - 48px));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 82px;
}

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

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

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

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(203, 174, 121, 0.8);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest-900);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    height 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(25, 54, 43, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(16, 39, 31, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

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

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

.brand-copy small {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  white-space: nowrap;
}

.phone-label {
  margin-bottom: 5px;
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.72;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--forest-900);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  background: var(--forest-800);
  border-color: var(--forest-800);
  box-shadow: 0 12px 30px rgba(23, 61, 49, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
}

.site-header.is-scrolled .button-small {
  border-color: var(--forest-900);
  background: var(--forest-900);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest-900);
}

.button-light:hover {
  border-color: var(--sand-light);
  background: var(--sand-light);
  color: var(--forest-950);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 999;
  top: 72px;
  right: 0;
  left: 0;
  min-height: calc(100dvh - 72px);
  padding: 26px 24px 40px;
  background: var(--white);
  color: var(--ink);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.mobile-nav .mobile-phone {
  margin-top: 18px;
  padding: 16px 20px;
  border: 0;
  border-radius: 14px;
  background: var(--forest-900);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.hero {
  position: relative;
  min-height: min(880px, 100svh);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 25, 18, 0.8) 0%, rgba(5, 25, 18, 0.46) 48%, rgba(5, 25, 18, 0.12) 78%),
    linear-gradient(0deg, rgba(5, 21, 16, 0.62) 0%, transparent 42%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -150px;
  bottom: -260px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.hero-content {
  display: flex;
  min-height: min(880px, 100svh);
  padding-top: calc(var(--header-height) + 90px);
  padding-bottom: 106px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-badges {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 12px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-eyebrow,
.eyebrow-light {
  color: var(--sand-light);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 28px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
}

.hero-scroll i::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--white);
  content: "";
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 12px); }
}

.booking-section {
  position: relative;
  z-index: 2;
  padding: 86px 0 64px;
  background:
    radial-gradient(circle at 82% 12%, rgba(203, 174, 121, 0.12), transparent 26%),
    var(--white);
}

.section-intro,
.section-heading {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: end;
  gap: 60px;
}

.section-intro h2,
.section-heading h2,
.story-copy h2,
.wellness-copy h2,
.location-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-intro > p,
.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

#booking-widget {
  min-height: 190px;
}

#booking-widget .sg-booking-shell {
  max-width: none;
  margin: 0;
  border-color: rgba(23, 61, 49, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

#booking-widget .sg-search-button,
#booking-widget .sg-submit-button {
  background: var(--forest-900) !important;
}

.widget-loading,
.widget-error {
  display: flex;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--white);
  color: var(--muted);
  box-shadow: var(--shadow);
}

.widget-loader {
  width: 22px;
  height: 22px;
  border: 2px solid var(--line);
  border-top-color: var(--forest-700);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.widget-error {
  flex-direction: column;
  text-align: center;
}

.widget-error strong {
  color: var(--ink);
  font-size: 20px;
}

.widget-error p {
  margin: 0;
}

.widget-error a {
  color: var(--forest-800);
  font-weight: 700;
}

.noscript-note {
  padding: 18px;
  border-radius: 12px;
  background: #fff2da;
}

.quick-facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.facts-grid article {
  display: flex;
  min-height: 150px;
  padding: 30px 28px;
  align-items: center;
  gap: 17px;
}

.facts-grid article + article {
  border-left: 1px solid var(--line);
}

.fact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--forest-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.facts-grid strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.facts-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 120px 0;
}

.section-soft {
  background: var(--forest-50);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(56px, 7vw, 110px);
}

.story-media {
  position: relative;
  padding: 0 40px 42px 0;
}

.story-media::before {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 68%;
  border-radius: var(--radius-xl);
  background: var(--forest-100);
  content: "";
}

.story-media img {
  width: 100%;
  min-height: 580px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.story-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 190px;
  height: 150px;
  padding: 24px;
  border: 8px solid var(--white);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--forest-900);
  color: var(--white);
}

.story-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.story-card span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.lead-copy {
  margin: 28px 0 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.story-copy > p:not(.eyebrow):not(.lead-copy) {
  color: var(--muted);
}

.detail-list {
  display: grid;
  margin: 34px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.detail-list div {
  display: flex;
  padding: 0 20px;
  flex-direction: column;
}

.detail-list div:first-child {
  padding-left: 0;
}

.detail-list div + div {
  border-left: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-list strong {
  margin-top: 4px;
  font-size: 15px;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover {
  box-shadow: 0 22px 55px rgba(22, 50, 40, 0.12);
  transform: translateY(-5px);
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #dce5e1;
  cursor: zoom-in;
}

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

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

.image-button > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(13, 42, 34, 0.76);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}

.image-button:hover > span,
.image-button:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.room-card-body {
  padding: 27px 28px 30px;
}

.room-type {
  margin: 0 0 8px;
  color: var(--forest-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-card h3 {
  min-height: 58px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.18;
}

.room-card ul {
  display: flex;
  margin: 22px 0 24px;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.room-card li {
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--forest-50);
  color: var(--muted);
  font-size: 11px;
}

.card-link {
  display: flex;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  color: var(--forest-900);
  font-size: 13px;
  font-weight: 750;
}

.card-link span {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.rooms-note {
  display: flex;
  margin-top: 28px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255, 255, 255, 0.7);
}

.rooms-note p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.wellness {
  position: relative;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--white);
}

.wellness::before {
  position: absolute;
  top: -240px;
  left: -220px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.wellness-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.wellness-copy {
  position: relative;
  z-index: 1;
}

.wellness-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.check-list {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 31px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 15px;
  height: 8px;
  border-bottom: 1.5px solid var(--sand-light);
  border-left: 1.5px solid var(--sand-light);
  content: "";
  transform: rotate(-45deg);
}

.wellness-images {
  position: relative;
  min-height: 650px;
}

.wellness-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 82%;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.wellness-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46%;
  height: 45%;
  border: 10px solid var(--forest-950);
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.compact-heading {
  grid-template-columns: 1fr;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.experience-grid article {
  min-height: 280px;
  padding: 34px 30px;
  background: var(--white);
}

.experience-grid article > span {
  display: block;
  margin-bottom: 52px;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.experience-grid h3 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
}

.location-media {
  position: relative;
  min-height: 560px;
}

.location-media img {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.location-pin {
  position: absolute;
  right: 12%;
  bottom: 13%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: var(--forest-900);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.location-pin span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.address {
  margin: 27px 0;
  color: var(--muted);
  font-size: 18px;
}

.route-list {
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.route-list div {
  display: flex;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}

.route-list strong {
  font-size: 14px;
}

.route-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--forest-800);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  right: -80px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(36px, 4.2vw, 56px);
}

.final-cta p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.final-cta .button {
  min-width: 190px;
}

.site-footer {
  padding: 74px 0 24px;
  background: #091f19;
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 1.6fr 1fr 0.7fr 1fr;
  gap: 48px;
}

.brand-footer {
  color: var(--white);
}

.footer-note {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-label {
  margin-bottom: 7px;
  color: var(--sand-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.floating-call {
  position: fixed;
  z-index: 700;
  right: 18px;
  bottom: 18px;
  display: none;
  height: 52px;
  padding: 0 18px 0 10px;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  background: var(--forest-900);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(10, 37, 28, 0.3);
  font-size: 13px;
}

.floating-call > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  padding: 5vw;
  place-items: center;
  background: rgba(5, 17, 13, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.legal-page {
  background: var(--forest-50);
}

.legal-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-content {
  max-width: 860px;
  padding-top: 86px;
  padding-bottom: 100px;
}

.legal-content h1 {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--forest-800);
  font-weight: 700;
}

.legal-date {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@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;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .facts-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .room-card:last-child {
    grid-column: 1 / -1;
  }

  .room-card:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .room-card:last-child .image-button {
    height: 100%;
    min-height: 360px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 32px, 1180px);
    --header-height: 72px;
  }

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

  .hero {
    min-height: 780px;
  }

  .hero-content {
    min-height: 780px;
    padding-top: 130px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 25, 18, 0.78), rgba(5, 25, 18, 0.28)),
      linear-gradient(0deg, rgba(5, 21, 16, 0.66), transparent 55%);
  }

  .hero-actions,
  .final-cta-inner,
  .rooms-note {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    width: min(100%, 420px);
  }

  .text-link-light {
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .booking-section {
    padding-top: 70px;
  }

  .section-intro,
  .section-heading,
  .story-grid,
  .wellness-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-intro,
  .section-heading {
    margin-bottom: 26px;
  }

  .section {
    padding: 82px 0;
  }

  .story-media img,
  .location-media,
  .location-media img {
    min-height: 0;
    height: 480px;
  }

  .story-grid {
    gap: 50px;
  }

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

  .room-card:last-child {
    display: block;
    grid-column: auto;
  }

  .room-card:last-child .image-button {
    height: 300px;
    min-height: 0;
  }

  .wellness-grid {
    gap: 54px;
  }

  .wellness-images {
    min-height: 560px;
  }

  .final-cta-inner {
    gap: 30px;
  }

  .final-cta .button {
    align-self: flex-start;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

  .floating-call {
    display: flex;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-xl: 24px;
    --radius-lg: 20px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

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

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

  .hero {
    min-height: 720px;
  }

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

  .hero-content {
    min-height: 720px;
    padding-top: 120px;
    padding-bottom: 72px;
  }

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

  .hero-badges span {
    padding: 6px 10px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    margin: 23px 0 28px;
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .booking-section {
    padding: 60px 0 44px;
  }

  .section-intro h2,
  .section-heading h2,
  .story-copy h2,
  .wellness-copy h2,
  .location-copy h2,
  .final-cta h2 {
    font-size: 38px;
  }

  #booking-widget .sg-booking-shell {
    padding: 18px !important;
    border-radius: 18px !important;
  }

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

  .facts-grid article {
    min-height: 112px;
    padding: 22px 12px;
  }

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

  .section {
    padding: 68px 0;
  }

  .story-media {
    padding: 0 22px 26px 0;
  }

  .story-media img {
    height: 430px;
  }

  .story-card {
    width: 156px;
    height: 122px;
    padding: 18px;
    border-width: 6px;
  }

  .story-card strong {
    font-size: 31px;
  }

  .lead-copy {
    font-size: 18px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .detail-list div,
  .detail-list div:first-child {
    padding: 10px 0;
  }

  .detail-list div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .image-button,
  .room-card:last-child .image-button {
    height: 245px;
  }

  .room-card-body {
    padding: 24px 22px 26px;
  }

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

  .rooms-note {
    padding: 22px;
  }

  .wellness-images {
    min-height: 440px;
  }

  .wellness-main {
    width: 92%;
    height: 82%;
  }

  .wellness-small {
    width: 54%;
  }

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

  .experience-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .experience-grid article > span {
    margin-bottom: 28px;
  }

  .location-media,
  .location-media img {
    height: 400px;
  }

  .contact-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-row .text-link {
    justify-content: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .legal-header .text-link {
    font-size: 0;
  }

  .legal-header .text-link::before {
    content: "← Назад";
    font-size: 14px;
  }

  .legal-content {
    padding-top: 56px;
    padding-bottom: 72px;
  }
}


/* COOKIE CONSENT 20260730 */
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 22px 24px;
  gap: 28px;
  color: #173d31;
  background: #ffffff;
  border: 1px solid rgba(23, 61, 49, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(16, 37, 31, 0.22);
}

.cookie-banner__copy {
  max-width: 720px;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.cookie-banner__copy p {
  margin: 0;
  color: #53645e;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner__copy a {
  color: #173d31;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button--primary {
  color: #ffffff;
  background: #173d31;
  border: 1px solid #173d31;
}

.cookie-button--secondary {
  color: #173d31;
  background: #ffffff;
  border: 1px solid rgba(23, 61, 49, 0.28);
}

.cookie-settings-link {
  width: fit-content;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-grid .cookie-settings-link {
  color: rgba(255, 255, 255, 0.72);
}

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

.legal-cookie-settings {
  color: #173d31;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-banner__inner {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-radius: 16px;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-button {
    width: 100%;
  }
}


/* NON-CLICKABLE YANDEX REVIEWS 20260730 */
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
}

.reviews-copy {
  position: sticky;
  top: 120px;
  padding-top: 26px;
}

.reviews-copy h2 {
  max-width: 520px;
  margin: 12px 0 24px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.reviews-note {
  max-width: 430px;
  margin-top: 28px;
  padding-top: 20px;
  color: #687770;
  border-top: 1px solid rgba(23, 61, 49, 0.14);
  font-size: 14px;
  line-height: 1.55;
}

.reviews-widget {
  position: relative;
  width: min(560px, 100%);
  height: 800px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 61, 49, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(16, 37, 31, 0.12);
}

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

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

@media (max-width: 860px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .reviews-copy {
    position: static;
    padding-top: 0;
  }

  .reviews-copy h2 {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .reviews-widget {
    height: 720px;
    border-radius: 16px;
  }

  .reviews-copy h2 {
    font-size: 38px;
  }
}


/* TELEGRAM AND MAX CONTACTS 20260730 */
.floating-contact-stack {
  position: fixed;
  z-index: 700;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.floating-contact-stack .floating-call {
  position: static;
  right: auto;
  bottom: auto;
  display: none;
}

.floating-messenger {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px 0 9px;
  gap: 10px;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(10, 37, 28, 0.24);
  font-size: 13px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-messenger:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(10, 37, 28, 0.3);
}

.floating-messenger__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.floating-messenger--telegram {
  background: #229ed9;
}

.floating-messenger--max {
  background: linear-gradient(135deg, #7458ff, #4059e9);
}

.footer-messenger {
  position: relative;
  padding-left: 18px;
}

.footer-messenger::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.footer-messenger--telegram::before {
  background: #229ed9;
}

.footer-messenger--max::before {
  background: #7458ff;
}

@media (max-width: 960px) {
  .floating-contact-stack .floating-call {
    display: flex;
  }
}

@media (max-width: 560px) {
  .floating-contact-stack {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .floating-messenger,
  .floating-contact-stack .floating-call {
    min-height: 48px;
    height: 48px;
    padding-right: 14px;
  }

  .floating-messenger__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .floating-messenger strong {
    font-size: 12px;
  }
}


/* NON-CLICKABLE YANDEX MAP 20260730 */
.location-map {
  position: relative;
  overflow: hidden;
  background: #e8ede9;
  border: 1px solid rgba(23, 61, 49, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(16, 37, 31, 0.12);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  pointer-events: auto;
}

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

.location-map-note {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  color: #5e6e67;
  background: rgba(23, 61, 49, 0.06);
  border: 1px solid rgba(23, 61, 49, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 560px) {
  .location-map {
    height: 390px;
  }

  .location-map-note {
    justify-content: center;
    width: 100%;
  }
}


/* INTERACTIVE SANDBOXED MAP 20260730 */
.location-map-brand-shield {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 190px;
  height: 48px;
  background: transparent;
  cursor: default;
}

/* Старый полный защитный слой больше не используется */
.location-map-shield {
  display: none !important;
}
