@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --sage: #608779;
  --sage-dark: #435a53;
  --gold: #a28651;
  --green-cta: #608779;
  --green-cta-dark: #435a53;
  --section-brown: #624e38;
  --section-brown-soft: rgb(98 78 56 / 0.2);
  --bark: #624e38;
  --ink: #31241f;
  --mist: #cae5db;
  --paper: #ffffff;
  --soft: #f4f1ec;
  --line: #e8e3dc;
  --text: #31241f;
  --muted: #624e38;
  --shadow: 0 30px 80px -24px rgb(49 36 31 / 0.28);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-solid,
.site-header.is-scrolled,
body:not([data-page="home"]) .site-header {
  border-color: var(--line);
  background: rgb(255 255 255 / 0.92);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  border-radius: 14px;
  padding: 5px 0;
  transition:
    background-color 240ms ease,
    padding 240ms ease;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 14px);
  min-width: max-content;
}

.brand-logo {
  width: clamp(142px, 13vw, 190px);
  height: auto;
}

.language-switcher {
  position: relative;
  flex: none;
}

.language-switcher details {
  position: relative;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 52px;
  min-height: 44px;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 6%, transparent);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  list-style: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-switcher details[open] summary {
  border-color: color-mix(in srgb, currentColor 42%, transparent);
  background: color-mix(in srgb, currentColor 12%, transparent);
}

.language-switcher details[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-switcher summary:hover {
  background: color-mix(in srgb, currentColor 12%, transparent);
}

.language-switcher summary:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--sage-dark);
}

.language-options a:focus-visible {
  outline: 3px solid var(--sage-dark);
  outline-offset: 2px;
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  display: grid;
  width: max-content;
  min-width: 190px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 24px 58px -20px rgb(49 36 31 / 0.32);
  padding: 7px;
  color: var(--text);
  list-style: none;
}

.language-options a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  min-height: 44px;
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.language-options a:hover {
  background: var(--soft);
}

.language-options a[aria-current="page"] {
  background: var(--mist);
  color: var(--ink);
}

.language-code {
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-logo-light {
  display: none;
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand {
  background: transparent;
  padding-inline: 0;
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand-logo-dark {
  display: none;
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand-logo-light {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--green-cta);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.site-nav a.is-active {
  color: var(--green-cta);
}

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

.book-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--green-cta);
  color: #fff;
  padding: 13px 20px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.book-link {
  white-space: nowrap;
}

.book-link:hover,
.btn:hover {
  background: var(--green-cta-dark);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--ink);
}

.btn-dark:hover {
  background: var(--bark);
}

.btn-ghost {
  border: 1px solid rgb(255 255 255 / 0.38);
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 0.16);
}

.btn-outline {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--green-cta);
  background: var(--soft);
  color: var(--text);
}

.btn:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
}

.menu-lines {
  display: grid;
  gap: 5px;
  width: 24px;
  margin: 0 auto;
}

.menu-lines span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.page-hero {
  min-height: 70svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  animation: ken 20s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.28), rgb(0 0 0 / 0.46));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(100% - 32px, var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: 128px 0 86px;
}

body[data-page="home"] .hero-content {
  align-items: center;
  justify-content: center;
  padding-block: 120px 80px;
  text-align: center;
}

.hero-inner {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  animation: reveal 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-title-wrap {
  width: 100%;
  max-width: min(900px, 100%);
  min-width: 0;
}

body[data-page="home"] .hero-inner {
  display: grid;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--mist);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.section-eyebrow {
  color: var(--section-brown);
}

.hero-title,
.page-title,
.section-title,
.card-title {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(4.4rem, 12vw, 7.2rem);
  line-height: 0.86;
}

.hero-title span {
  color: var(--mist);
}

.hero-logo {
  width: min(760px, 86vw);
  height: auto;
  margin-top: 24px;
}

.page-title {
  margin-top: 26px;
  max-width: min(900px, 100%);
  font-size: clamp(4rem, 10vw, 8.2rem);
  line-height: 0.9;
}

.hero-copy {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

body[data-page="home"] .hero-copy {
  margin-inline: auto;
}

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

body[data-page="home"] .hero-actions {
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 680px;
  margin-top: 68px;
  border-top: 1px solid rgb(255 255 255 / 0.22);
  padding-top: 28px;
}

.stat-number {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  color: rgb(255 255 255 / 0.78);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section {
  background: var(--paper);
  padding: 112px 0;
}

.section-tight {
  padding: 84px 0;
}

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

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

body[data-page="home"] .section-mist {
  background: var(--paper);
  color: var(--text);
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.45fr);
  gap: 64px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.two-col-loose {
  gap: 80px;
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.02;
}

.section-copy,
.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.75;
}

.section-copy {
  max-width: 720px;
  margin: 30px 0 0;
}

.lead {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.feature-tile {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.feature-tile img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-tile:hover img,
.image-card:hover img,
.gallery-item:hover img {
  transform: scale(1.045);
}

.feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgb(49 36 31 / 0.25) 45%, rgb(49 36 31 / 0.92));
}

.feature-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.tile-number,
.big-number {
  font-weight: 900;
  line-height: 1;
}

.tile-number {
  font-size: 4rem;
  opacity: 0.28;
}

.big-number {
  color: var(--section-brown-soft);
  font-size: clamp(4.8rem, 12vw, 8rem);
}

.card-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1;
}

.feature-content p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 0.85);
  line-height: 1.6;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding: 34px 0;
}

body[data-page="home"] .marquee {
  border-block-color: var(--section-brown);
  background: var(--section-brown);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  color: var(--sage-dark);
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-page="home"] .marquee-group {
  color: #fff;
}

.marquee-group b {
  color: var(--green-cta);
  font-size: 0.7em;
}

body[data-page="home"] .marquee-group b {
  color: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.section-mist .contact-grid {
  align-items: center;
}

.section-mist .section-eyebrow,
.section-mist .section-title,
.section-mist .section-copy {
  color: #fff;
}

body[data-page="home"] .section-mist .section-eyebrow,
body[data-page="home"] .section-mist .section-title,
body[data-page="home"] .section-mist .section-copy {
  color: var(--text);
}

.section-mist .section-copy {
  opacity: 0.86;
}

.contact-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 850px;
  text-align: center;
}

.contact-cta .section-title,
.contact-cta .section-copy {
  margin: 0;
}

.contact-cta .section-copy {
  max-width: 700px;
}

.contact-copy {
  display: grid;
  gap: 24px;
  max-width: 720px;
}

.contact-copy .section-title,
.contact-copy .section-copy {
  margin: 0;
}

.contact-card {
  border: 1px solid color-mix(in srgb, var(--section-brown) 18%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 88%, var(--mist));
  padding: clamp(26px, 4vw, 42px);
  color: var(--text);
}

.contact-card-soft {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
  background: var(--soft);
  border-color: var(--line);
}

.info-list {
  display: grid;
  gap: 22px;
  margin: 0;
}

.info-list > div {
  display: grid;
  gap: 7px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--section-brown) 18%, transparent);
}

.info-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dt,
.field label {
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.info-list dd {
  margin: 0;
  font-size: clamp(1.12rem, 2.2vw, 1.48rem);
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 32px;
  box-shadow: 0 16px 50px -36px rgb(49 36 31 / 0.28);
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.school-summary-grid .card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.school-card-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.school-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(32px, 5vw, 56px);
}

.school-price-card {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 16px 50px -38px rgb(49 36 31 / 0.32);
}

.school-price-card-featured {
  border-color: color-mix(in srgb, var(--green-cta) 45%, var(--line));
  background: color-mix(in srgb, var(--mist) 28%, var(--paper));
}

.school-price-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.school-price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.school-price {
  color: var(--section-brown) !important;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.05 !important;
}

.school-price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-price-details {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-price-details li {
  display: grid;
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.school-price-details b {
  color: var(--green-cta);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.school-price-details span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.number-card .number {
  color: var(--green-cta);
  font-size: clamp(3.2rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.number-card .label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--soft) 82%, #fff);
}

.image-card.tall {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.image-card.wide {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.accommodation-list {
  display: grid;
  gap: clamp(58px, 8vw, 104px);
}

.accommodation-intro {
  max-width: 850px;
}

.stay-unit {
  display: grid;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.stay-unit-head {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 32px);
}

.stay-unit-number {
  flex: 0 0 auto;
  color: var(--section-brown);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.85;
}

.stay-unit-head h3 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.stay-unit-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(24px, 4vw, 42px);
}

.stay-unit-card-plain {
  grid-template-columns: 1fr;
}

.bed-count {
  display: grid;
  gap: 6px;
}

.bed-count strong {
  color: var(--green-cta);
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.85;
}

.bed-count span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.stay-unit-card p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.75;
}

.stay-slider {
  display: grid;
  gap: 14px;
  --stay-visible-slides: 1;
  --stay-slide-gap: 0px;
}

.stay-slider-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 26px 70px -34px rgb(49 36 31 / 0.5);
}

.stay-slider-track {
  display: flex;
  gap: var(--stay-slide-gap);
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.stay-slide {
  flex: 0 0 100%;
  min-width: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.stay-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 760px) {
  .stay-slider {
    --stay-visible-slides: 3;
    --stay-slide-gap: 16px;
  }

  .stay-slide {
    flex-basis: calc((100% - 32px) / 3);
    cursor: pointer;
  }
}

.stay-slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(255 255 255 / 0.76);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.88);
  color: var(--ink);
  box-shadow: 0 18px 42px -20px rgb(49 36 31 / 0.62);
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.stay-slider-button:hover,
.stay-slider-button:focus-visible {
  background: var(--green-cta);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.stay-slider-button span {
  display: block;
  margin-top: -3px;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.stay-slider-button.is-prev {
  left: 18px;
}

.stay-slider-button.is-next {
  right: 18px;
}

.stay-slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.stay-slider-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.stay-slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.stay-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--section-brown) 20%, transparent);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.stay-slider-dot:hover,
.stay-slider-dot:focus-visible {
  background: color-mix(in srgb, var(--green-cta) 72%, var(--paper));
  transform: scale(1.2);
}

.stay-slider-dot.is-active,
.stay-slider-dot[aria-current="true"] {
  width: 24px;
  background: var(--green-cta);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.check-list b {
  color: var(--section-brown);
  font-size: 14px;
}

.story-stack {
  display: grid;
  gap: 118px;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: center;
}

.story-row:nth-child(even) .image-card {
  order: 2;
}

.story-row p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-row .image-card img {
  object-fit: cover;
}

.surroundings {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}

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

.surroundings-strip article {
  display: grid;
  gap: 10px;
  border-radius: var(--radius);
  background: var(--section-brown);
  color: #fff;
  padding: clamp(20px, 3vw, 28px);
}

.surroundings-strip strong {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.surroundings-strip span {
  color: rgb(255 255 255 / 0.82);
  line-height: 1.55;
}

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

.activity-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.activity-card-text-only,
.activity-card:nth-child(even).activity-card-text-only {
  grid-template-columns: 1fr;
}

.activity-card .activity-image {
  order: 1;
}

.activity-card .activity-content {
  order: 2;
}

.activity-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.64fr) minmax(220px, 0.36fr);
}

.activity-card:nth-child(even) .activity-content {
  order: 1;
}

.activity-card:nth-child(even) .activity-image {
  order: 2;
}

.activity-card-text-only .activity-content,
.activity-card:nth-child(even).activity-card-text-only .activity-content {
  order: 1;
}

.activity-image {
  min-height: 100%;
  background: var(--soft);
}

.activity-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.activity-content {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.activity-number {
  color: var(--section-brown);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 0.9;
}

.activity-label {
  width: fit-content;
  border-radius: 999px;
  background: var(--mist);
  color: var(--section-brown);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.activity-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.activity-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.activity-card ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.service-split-list {
  display: grid;
  gap: clamp(64px, 9vw, 116px);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.service-split:nth-child(even) .service-split-copy {
  order: 2;
}

.service-split-copy {
  display: grid;
  gap: 18px;
}

.service-number {
  color: var(--section-brown);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.service-split h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-split p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.75;
}

.service-cta {
  justify-self: start;
  margin-top: 12px;
}

.service-image {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.service-image-3x2 {
  aspect-ratio: 3 / 2;
}

.service-image-slider {
  display: block;
  --stay-visible-slides: 1;
  --stay-slide-gap: 0px;
}

.service-image-slider .stay-slider-frame {
  height: 100%;
  border-radius: inherit;
  box-shadow: none;
}

.service-image-slider .stay-slider-track {
  height: 100%;
}

.service-image-slider .stay-slide {
  flex-basis: 100%;
  height: 100%;
  aspect-ratio: auto;
  cursor: default;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 22px;
}

.album-stack {
  display: grid;
  gap: clamp(54px, 8vw, 94px);
}

.gallery-status {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.gallery-album {
  display: grid;
  gap: 24px;
}

.album-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.album-header h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.album-toggle {
  flex: 0 0 auto;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-album:not(.is-expanded) .album-grid .gallery-item:nth-child(n+5) {
  display: none;
}

.gallery-item {
  overflow: hidden;
  margin: 0 0 22px;
  break-inside: avoid;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery-item img {
  height: auto;
}

.album-grid .gallery-item {
  margin: 0;
  min-height: 210px;
  aspect-ratio: 1 / 1;
}

.album-grid .gallery-item:nth-child(4n+1) {
  aspect-ratio: 4 / 3;
}

.album-grid .gallery-item:nth-child(6n+3) {
  aspect-ratio: 3 / 4;
}

.album-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(28px, 5vw, 48px);
}

.contact-form .field:nth-of-type(3),
.contact-form .field:nth-of-type(4),
.contact-form .form-status,
.contact-form .form-privacy {
  grid-column: 1 / -1;
}

.contact-form .btn {
  justify-self: start;
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 8px 0 14px;
  color: var(--text);
  font-size: 1.08rem;
  outline: 0;
  transition: border-color 160ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green-cta);
}

.form-status {
  min-height: 20px;
  margin: -12px 0 0;
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #a3392f;
}

.form-privacy {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.55;
}

.form-privacy a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map {
  margin-top: clamp(32px, 5vw, 56px);
}

.map-consent {
  position: relative;
  overflow: hidden;
  min-height: min(62vw, 520px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.map-consent iframe {
  display: block;
  width: 100%;
  min-height: min(62vw, 520px);
  border: 0;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--soft) 88%, #fff);
  padding: 24px;
}

.map-consent.is-loaded .map-placeholder,
.map-placeholder[hidden] {
  display: none;
}

.map-placeholder > div {
  display: grid;
  justify-items: start;
  gap: 16px;
  max-width: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(24px, 4vw, 38px);
}

.map-placeholder h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.map-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 36px), 1040px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 94%, #fff);
  box-shadow: var(--shadow);
  padding: 18px;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-more {
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: clamp(24px, 4vw, 34px);
}

.legal-translation-note {
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  padding: 18px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.65;
}

.legal-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-content {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.legal-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.legal-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.legal-block h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-block p {
  margin: 0 0 14px;
}

.legal-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-block a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.route-map {
  background: var(--paper);
  padding: clamp(56px, 7vw, 96px) 0;
}

.route-map-trigger {
  display: block;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
}

.route-map-trigger img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.map-lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: clamp(16px, 3vw, 32px);
  border: 0;
  background: transparent;
  overflow: hidden;
}

.map-lightbox[open] {
  display: grid;
  place-items: center;
}

.map-lightbox::backdrop {
  background: rgb(20 14 10 / 0.84);
  backdrop-filter: blur(10px);
}

.map-lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgb(0 0 0 / 0.34);
}

.map-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 50%;
  background: rgb(49 36 31 / 0.72);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.map-lightbox-close:hover {
  background: rgb(49 36 31 / 0.92);
}

body.map-lightbox-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.45fr) minmax(260px, 0.9fr);
  gap: 48px;
  padding: 72px 0;
}

.footer-logo {
  width: min(260px, 80vw);
  height: auto;
}

.footer-copy,
.footer-contact,
.footer-links a {
  color: rgb(255 255 255 / 0.72);
}

.footer-copy {
  max-width: 330px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--mist);
}

.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
  line-height: 1.55;
}

.footer-legals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-legals a {
  color: rgb(255 255 255 / 0.58);
}

.footer-legals a:hover {
  color: var(--mist);
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: 24px 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-bottom a {
  color: var(--mist);
}

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

.footer-glow {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgb(96 135 121 / 0.35);
  filter: blur(55px);
  pointer-events: none;
}

.stack {
  display: grid;
  gap: 22px;
}

.mt-40 {
  margin-top: 40px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ken {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

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

@media (max-width: 1120px) {
  .site-nav,
  .book-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    max-height: calc(100dvh - 102px);
    border-top: 1px solid var(--line);
    background: var(--paper);
    color: var(--text);
    padding: 18px 16px 28px;
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.15rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }
}

html[lang="ru"] .nav-shell {
  width: min(100% - 32px, 1420px);
}

@media (max-width: 1420px) {
  html[lang="ru"] .site-nav,
  html[lang="ru"] .book-link {
    display: none;
  }

  html[lang="ru"] .menu-toggle {
    display: grid;
    place-items: center;
  }

  html[lang="ru"] .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    max-height: calc(100dvh - 102px);
    border-top: 1px solid var(--line);
    background: var(--paper);
    color: var(--text);
    padding: 18px 16px 28px;
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  html[lang="ru"] .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  html[lang="ru"] .site-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.15rem;
    letter-spacing: 0;
    text-transform: none;
  }

  html[lang="ru"] .site-nav a::after {
    display: none;
  }
}

@media (max-width: 1040px) {
  .split,
  .two-col,
  .legal-layout,
  .story-row,
  .service-split,
  .contact-grid,
  .contact-form,
  .activity-card,
  .surroundings-strip,
  .surroundings-grid {
    grid-template-columns: 1fr;
  }

  .story-row:nth-child(even) .image-card {
    order: 0;
  }

  .feature-grid,
  .album-grid,
  .school-price-grid {
    grid-template-columns: 1fr;
  }

  .service-split:nth-child(even) .service-split-copy {
    order: 0;
  }

  .legal-aside {
    position: static;
  }

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

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

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

@media (max-width: 720px) {
  .nav-shell {
    width: min(100% - 24px, var(--max));
    padding: 14px 0;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding-bottom: 52px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
  }

  .page-title {
    font-size: clamp(2.6rem, 13vw, 5.2rem);
    line-height: 0.92;
  }

  .eyebrow {
    align-items: flex-start;
    letter-spacing: 0.22em;
  }

  body[data-page="home"] .hero-actions {
    margin-top: 72px;
  }

  .hero-actions,
  .hero-stats,
  .cards {
    grid-template-columns: 1fr;
  }

  .stay-unit-head,
  .album-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .stay-unit-card,
  .activity-card {
    grid-template-columns: 1fr;
  }

  .activity-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .activity-card .activity-image,
  .activity-card:nth-child(even) .activity-image {
    order: 1;
  }

  .activity-card .activity-content,
  .activity-card:nth-child(even) .activity-content {
    order: 2;
    padding: 24px;
  }

  .activity-image img {
    min-height: 240px;
  }

  .stay-slider-button {
    width: 42px;
    height: 42px;
  }

  .stay-slider-button.is-prev {
    left: 12px;
  }

  .stay-slider-button.is-next {
    right: 12px;
  }

  .stay-slider-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stay-slider-dots {
    justify-content: flex-start;
  }

  .accommodation-list .stay-slider-frame {
    aspect-ratio: 3 / 2;
  }

  .accommodation-list .stay-slider-track,
  .accommodation-list .stay-slide {
    height: 100%;
  }

  .accommodation-list .stay-slide {
    aspect-ratio: auto;
    flex-basis: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 18px;
    margin-top: 44px;
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 62px 0;
  }

  .feature-tile {
    min-height: 410px;
  }

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

  .image-card.tall,
  .image-card.wide {
    min-height: 0;
  }

  .image-card.spomalit-card {
    aspect-ratio: 3 / 2;
  }

  .story-stack {
    gap: 78px;
  }

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

  .cookie-actions .btn,
  .map-placeholder .btn {
    width: 100%;
  }
}
