:root {
  --ink: #253746;
  --charcoal: #1f2d34;
  --text: #22313b;
  --muted: #65716b;
  --soft: #fffaf1;
  --warm: #f2e6d2;
  --sand: #d8c4a4;
  --stone: #c9d8d6;
  --gold: #7a8c3f;
  --deep-gold: #623b2a;
  --sage: #67823a;
  --line: #ddcfba;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  overflow-x: hidden;
}

body.has-booking-open {
  overflow: hidden;
}

#allrecords .t123 {
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

#allrecords .t123 a {
  color: inherit;
}

#allrecords .t123 .button,
#allrecords .t123 .booking-pill,
#allrecords .t123 .card-button,
#allrecords .t123 .carousel-button,
#allrecords .t123 .retreat-arrow,
#allrecords .t123 .drawer-close {
  color: var(--ink);
}

#allrecords .t123 .button-dark {
  color: var(--soft);
}

#allrecords .t123 .hero-categories button {
  color: inherit;
}

#allrecords .t123 .retreat-features {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

#allrecords .t123 .retreat-features li {
  margin: 0;
  padding: 9px 14px;
}

body.inner-page .site-header .hero-nav {
  background: rgba(37, 55, 70, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: block;
  color: var(--soft);
  background: transparent;
}

.hero-nav {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  padding: 0 clamp(20px, 5vw, 76px);
  background: rgba(37, 55, 70, 0.26);
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled .hero-nav,
.site-header.is-open .hero-nav {
  background: rgba(37, 55, 70, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-nav-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 34px;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.brand-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 46px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a,
.site-footer nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 250ms ease, border-color 250ms ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--gold);
  border-color: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: var(--soft);
  border-color: var(--ink);
}

.button-dark:hover {
  background: var(--deep-gold);
  border-color: var(--deep-gold);
}

.button-light {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--soft);
}

.button-light:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.booking-pill {
  min-height: 46px;
  border-radius: 999px;
  background: var(--stone);
  color: var(--ink);
  border-color: var(--stone);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.booking-pill:hover {
  background: var(--soft);
  border-color: var(--soft);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--soft);
  background: var(--ink);
}

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

.hero-slideshow {
  background: var(--ink);
}

.hero-poster,
.hero-video {
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-video {
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-loader {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vw, 52px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(37, 55, 70, 0.54);
  backdrop-filter: blur(8px);
  transition: opacity 250ms ease, visibility 250ms ease;
  transform: translateX(-50%);
}

.hero-loader span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 250, 241, 0.38);
  border-top-color: var(--soft);
  border-radius: 50%;
  animation: heroLoaderSpin 820ms linear infinite;
}

.hero-slideshow.is-ready .hero-loader,
.hero-slideshow.is-failed .hero-loader {
  opacity: 0;
  visibility: hidden;
}

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

.hero-slide {
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.92);
  transform: scale(1.02);
  animation: heroFade 28s infinite;
}

.slide-one {
  animation-delay: 0s;
}

.slide-two {
  animation-delay: 7s;
}

.slide-three {
  animation-delay: 14s;
}

.slide-four {
  animation-delay: 21s;
}

.hero-overlay {
  pointer-events: none;
  background: none;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }

  7% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  32% {
    opacity: 0;
    transform: scale(1.06);
  }

  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-location {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
}

.hero-categories {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  padding: 28px clamp(20px, 7vw, 128px) 32px;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-categories a,
.hero-categories button {
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.68);
}

.hero-categories span {
  display: grid;
  place-items: center;
  min-height: 34px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.booking-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(37, 55, 70, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.booking-drawer {
  position: fixed;
  top: 0;
  right: -430px;
  bottom: 0;
  z-index: 80;
  width: min(430px, 100%);
  padding: clamp(28px, 5vw, 44px);
  background: var(--soft);
  color: var(--text);
  box-shadow: -24px 0 60px rgba(22, 20, 18, 0.18);
  overflow-y: auto;
  transition: right 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.has-booking-open .booking-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.booking-drawer.is-open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.booking-drawer h2 {
  margin-bottom: 30px;
  padding-right: 42px;
  font-size: clamp(32px, 5vw, 44px);
}

.booking-form {
  display: grid;
  gap: 20px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form select,
.booking-form input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
  padding: 0 12px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.booking-form select:focus,
.booking-form input:focus {
  outline: none;
  border-color: var(--deep-gold);
}

.booking-form .booking-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.booking-form .booking-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--deep-gold);
}

.booking-form .booking-consent a {
  color: var(--deep-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.drawer-phone {
  color: var(--deep-gold);
  font-weight: 500;
  text-decoration: none;
}

.max-link {
  color: var(--deep-gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 56px) 0;
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.intro p,
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.back-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 34px;
  color: var(--deep-gold);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.back-link::before {
  content: "‹";
  margin-right: 8px;
  font-size: 22px;
  line-height: 0;
  transform: translateY(-1px);
}

.contacts-back-link {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.intro-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.intro-metrics span {
  color: var(--muted);
  font-size: 14px;
}

.intro-metrics strong {
  display: block;
  color: var(--text);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.05;
}

.hotels-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background: var(--soft);
  overflow: hidden;
  scroll-margin-top: 90px;
}

.page-main {
  padding-top: 70px;
}

.tabs {
  display: flex;
  gap: 30px;
  margin: 24px 0 28px;
  overflow-x: auto;
}

.tab {
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 0 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tab.is-active {
  color: var(--deep-gold);
  border-color: currentColor;
}

.hotel-carousel {
  position: relative;
  width: calc(100vw - max(20px, calc((100vw - var(--max)) / 2)));
  margin-top: 22px;
  margin-left: 0;
  margin-right: calc(-1 * max(20px, calc((100vw - var(--max)) / 2)));
  overflow: hidden;
}

.hotel-grid {
  display: flex;
  gap: 32px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) 18px 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.hotel-grid::-webkit-scrollbar {
  display: none;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(22, 20, 18, 0.16);
  transform: translateY(-50%);
  transition: background 250ms ease, transform 250ms ease;
}

.carousel-button:hover {
  background: var(--stone);
  transform: translateY(-50%) scale(1.03);
}

.carousel-button-prev {
  left: 18px;
}

.carousel-button-next {
  right: 18px;
}

.hotel-card {
  position: relative;
  flex: 0 0 clamp(330px, 32vw, 490px);
  min-height: 620px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--ink);
  color: var(--soft);
}

.hotel-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.hotel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.02) 35%, rgba(22, 20, 18, 0.82) 100%),
    linear-gradient(90deg, rgba(22, 20, 18, 0.34), rgba(22, 20, 18, 0.04));
  pointer-events: none;
}

.hotel-card:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.card-body {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 1;
  padding: 0;
}

.card-body h3 {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.card-body p:not(.card-location) {
  min-height: 48px;
  margin: 0 0 24px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 15px;
}

.hotel-card .card-location {
  margin-bottom: 12px;
  color: rgba(255, 253, 248, 0.86);
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 250ms ease, transform 250ms ease;
}

.card-button:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.retreat-section {
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(42px, 6vw, 76px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(460px, 0.95fr);
  min-height: 620px;
  background: var(--ink);
  color: var(--soft);
}

.retreat-gallery {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.retreat-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.retreat-slide.is-active {
  opacity: 1;
}

.retreat-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 250ms ease, transform 250ms ease;
}

.retreat-arrow:hover {
  background: var(--stone);
  transform: translateY(-50%) scale(1.03);
}

.retreat-arrow-prev {
  left: 28px;
}

.retreat-arrow-next {
  right: 28px;
}

.retreat-dots {
  position: absolute;
  left: 38px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.retreat-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.48);
}

.retreat-dots span.is-active {
  background: var(--soft);
}

.retreat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4vw, 56px);
}

.retreat-copy h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.retreat-copy p:not(.section-kicker) {
  max-width: 540px;
  margin: 20px 0 14px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 17px;
  line-height: 1.55;
}

.retreat-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.retreat-features li {
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.9);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.retreat-copy .booking-pill {
  width: fit-content;
}

.service-section {
  width: min(var(--max), calc(100% - 40px));
}

.service-heading {
  display: grid;
  grid-template-columns: minmax(360px, 0.45fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
  margin-bottom: 30px;
}

.service-heading h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.service-heading p {
  max-width: 640px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-link::after {
  content: "›";
  font-size: 24px;
  line-height: 1;
}

.service-visual {
  position: relative;
  height: clamp(240px, 26vw, 340px);
  overflow: hidden;
  background: var(--ink);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.03) 45%, rgba(22, 20, 18, 0.58) 100%),
    linear-gradient(90deg, rgba(22, 20, 18, 0.2), rgba(22, 20, 18, 0.04));
  pointer-events: none;
}

.service-visual-copy {
  position: absolute;
  left: clamp(28px, 5vw, 66px);
  right: clamp(28px, 5vw, 66px);
  bottom: clamp(28px, 5vw, 56px);
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.service-actions {
  display: flex;
  flex: 0 1 520px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.service-actions .card-button {
  min-height: 50px;
  padding: 0 22px;
  white-space: nowrap;
}

.map-section {
  padding-top: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  background: var(--sand);
}

.contacts-section {
  border-top: 1px solid var(--line);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contacts-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--warm);
}

.contacts-grid h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.contacts-grid p {
  min-height: 50px;
  margin: 0 0 18px;
  color: var(--muted);
}

.contacts-grid a {
  color: var(--deep-gold);
  font-weight: 500;
  text-decoration: none;
}

.contact-phone-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.contact-phone-list a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.contact-phone-list .max-link {
  color: var(--deep-gold);
  font-size: 18px;
  font-weight: 700;
  white-space: normal;
}

.contact-email {
  display: block;
  width: fit-content;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.35;
  text-transform: lowercase;
  overflow-wrap: anywhere;
}

.legal-section h1 {
  max-width: 920px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.legal-doc {
  max-width: 980px;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background: var(--soft);
}

.legal-doc h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 36px);
}

.legal-doc p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.62;
}

.legal-lead {
  font-weight: 700;
}

.legal-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.requisites-list {
  display: grid;
  margin: 28px 0 0;
  border: 1px solid var(--line);
}

.requisites-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.requisites-list div:last-child {
  border-bottom: 0;
}

.requisites-list dt,
.requisites-list dd {
  margin: 0;
  padding: 14px 16px;
}

.requisites-list dt {
  background: var(--warm);
  color: var(--ink);
  font-weight: 700;
}

.requisites-list dd {
  color: var(--text);
}

.requisites-list a {
  color: var(--deep-gold);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  padding: 44px clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: var(--soft);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(247, 243, 236, 0.68);
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 15px;
}

.footer-contact {
  align-items: center;
  color: rgba(247, 243, 236, 0.84);
}

.footer-contact a {
  color: var(--stone);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero-nav {
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .hero-nav-left {
    gap: 18px;
  }

  .brand-mark {
    width: 52px;
    height: 34px;
  }

  .brand-text {
    display: none;
  }

  .brand-wordmark {
    font-size: 12px;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .main-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 30px 24px;
    background: rgba(5, 5, 5, 0.92);
    color: var(--soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

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

  .booking-pill {
    min-height: 42px;
    padding: 0 16px;
    font-size: 11px;
  }

  .menu-toggle {
    display: grid;
    justify-self: start;
  }

  .hero-categories {
    grid-template-columns: repeat(5, minmax(104px, 1fr));
    overflow-x: auto;
    padding: 22px 20px 24px;
  }

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

  .retreat-section {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .retreat-gallery {
    min-height: 520px;
  }

  .retreat-copy {
    min-height: 360px;
  }

  .retreat-features {
    width: 100%;
    max-width: 540px;
  }

  .service-heading,
  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-categories {
    gap: 12px;
  }

  .hero-categories a {
    font-size: 10px;
  }

  .hero-categories span {
    min-height: 28px;
    font-size: 24px;
  }

  .hero-nav {
    padding: 0 18px;
  }

  .hero-nav-left {
    gap: 14px;
  }

  .menu-toggle {
    width: 34px;
  }

  .brand-mark {
    width: 46px;
    height: 32px;
  }

  .brand-wordmark {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.15;
  }

  .booking-pill {
    padding: 0 12px;
    font-size: 10px;
  }

  .booking-drawer {
    width: 100%;
  }

  .section {
    width: min(100% - 40px, var(--max));
    padding: 30px 0;
  }

  .hotels-section {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hotel-grid {
    gap: 20px;
    padding-left: 0;
    padding-right: 20px;
  }

  .hotel-carousel {
    width: calc(100vw - 20px);
    margin-top: 18px;
    margin-left: 0;
    margin-right: -20px;
  }

  .carousel-button {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }

  .retreat-section {
    width: min(100% - 40px, var(--max));
    margin-top: 42px;
  }

  .retreat-gallery {
    min-height: 420px;
  }

  .retreat-copy {
    padding: 34px 24px 40px;
  }

  .retreat-arrow {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .retreat-arrow-prev {
    left: 18px;
  }

  .retreat-arrow-next {
    right: 18px;
  }

  .retreat-dots {
    left: 24px;
    bottom: 22px;
  }

  .service-heading {
    gap: 18px;
  }

  .service-visual {
    height: 300px;
  }

  .service-visual img {
    height: 100%;
  }

  .service-visual-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-actions {
    flex: 0 1 auto;
    justify-content: flex-start;
  }

  .hotel-card {
    flex-basis: min(82vw, 330px);
    min-height: 500px;
  }

  .hotel-card img {
    min-height: 500px;
  }

  .card-body {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .contacts-grid article {
    min-height: auto;
  }

  .legal-doc {
    padding: 24px 18px;
  }

  .legal-actions {
    justify-content: flex-start;
  }

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

  .site-footer nav,
  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
}
