:root {
  --blue: #0d478f;
  --blue-deep: #062d5c;
  --blue-dark: #031d3b;
  --blue-light: #2a6bb9;
  --sky: #8fc3ea;
  --ice: #d9ebf8;
  --graphite: #30343a;
  --ink: #111820;
  --muted: #67717b;
  --sand: #edf2f6;
  --paper: #f8fafc;
  --white: #fff;
  --line: rgba(17, 24, 32, .17);
  --line-light: rgba(255, 255, 255, .25);
  --shell: 1440px;
  --side: clamp(20px, 4vw, 64px);
  --section: clamp(88px, 11vw, 170px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

::selection { color: var(--white); background: var(--blue); }

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--side);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-110%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--sky);
}

.home-preloader { position: fixed; z-index: 20000; inset: 0; display: grid; place-items: center; color: var(--white); background: var(--blue-dark); opacity: 1; visibility: visible; transition: opacity .65s var(--ease), visibility .65s; }
.home-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.home-preloader__content { display: grid; width: min(310px, 68vw); justify-items: center; gap: 20px; text-align: center; }
.home-preloader__content img { width: min(260px, 60vw); max-height: 150px; object-fit: contain; }
.home-preloader__content span { color: rgba(255, 255, 255, .62); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.home-preloader__content i { position: relative; display: block; width: 100%; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .18); }
.home-preloader__content i::after { position: absolute; inset: 0; background: var(--sky); content: ""; transform: translateX(-100%); animation: preloader-line 1.15s var(--ease) infinite; }
.no-js .home-preloader { display: none; }
.has-preloader { overflow: hidden; }
@keyframes preloader-line { 55% { transform: translateX(0); } 100% { transform: translateX(100%); } }

.utility-bar {
  position: relative;
  z-index: 102;
  color: rgba(255, 255, 255, .78);
  background: var(--blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
}

.utility-bar a { transition: color .25s ease; }
.utility-bar a:hover { color: var(--white); }
.utility-bar__contacts { display: flex; gap: 28px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(248, 250, 252, .97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled { box-shadow: 0 12px 45px rgba(3, 29, 59, .08); }

.site-header__inner {
  display: grid;
  min-height: 88px;
  grid-template-columns: 190px minmax(0, 1fr) 292px;
  align-items: center;
  gap: 22px;
}

.site-logo { display: inline-flex; width: 180px; height: 74px; align-items: center; }
.site-logo img { width: 100%; max-height: 72px; object-fit: contain; object-position: left center; }

.primary-nav { justify-self: center; }
.primary-nav > ul { display: flex; align-items: stretch; gap: clamp(16px, 2.1vw, 37px); margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; display: flex; align-items: center; min-height: 88px; }
.nav-item > a { position: relative; font-size: 13px; font-weight: 700; letter-spacing: .035em; white-space: nowrap; }
.nav-item > a::after {
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: right .35s var(--ease);
}

.nav-item:hover > a::after, .nav-item:focus-within > a::after, .nav-item.is-active > a::after { right: 0; }

.submenu-toggle {
  width: 24px;
  height: 34px;
  padding: 0;
  background: none;
  border: 0;
  font-size: 11px;
  cursor: pointer;
  transition: transform .3s ease;
}

.nav-item.is-open .submenu-toggle { transform: rotate(180deg); }

.submenu {
  position: fixed;
  z-index: 10;
  top: var(--submenu-top, 123px);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(210px, .38fr) 1fr;
  gap: 70px;
  padding: 42px max(var(--side), calc((100vw - var(--shell)) / 2 + var(--side))) 50px;
  color: var(--white);
  background: var(--blue-dark);
  border-top: 1px solid rgba(255, 255, 255, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px);
  transition: opacity .3s ease, transform .45s var(--ease);
}

.nav-item:hover .submenu, .nav-item:focus-within .submenu, .nav-item.is-open .submenu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.submenu__label { color: rgba(255, 255, 255, .9); font-family: Georgia, serif; font-size: 35px; line-height: 1.15; }
.submenu ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 30px; margin: 0; padding: 0; list-style: none; }
.submenu li { border-top: 1px solid rgba(255, 255, 255, .17); }
.submenu li:nth-child(-n + 3) { border-top-color: transparent; }
.submenu a { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 15px; color: rgba(255, 255, 255, .82); font-size: 13px; transition: color .2s ease, padding .25s ease; }
.submenu a:hover { padding-left: 8px; color: var(--white); }
.submenu i { color: var(--sky); font-style: normal; }
.mobile-cafe-order { display: none; }
.header-actions { display: grid; grid-template-columns: 104px minmax(0, 1fr); align-items: center; gap: 7px; }
.header-cafe { display: flex; min-height: 40px; align-items: center; justify-content: space-between; gap: 8px; padding: 0 11px; color: var(--white); background: #d54b57; font-size: 9px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; transition: background .25s ease; }
.header-cafe:hover { background: #bd3443; }
.header-cafe i { font-style: normal; font-size: 14px; }

.header-booking {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s ease;
}

.header-booking:hover { background: var(--blue-deep); }
.header-booking i { color: var(--white); font-style: normal; font-size: 18px; }
.menu-toggle { display: none; }

.home-hero {
  position: relative;
  min-height: calc(100svh - 123px);
  color: var(--white);
  background: var(--blue-dark);
  overflow: hidden;
}

.home-hero__media, .home-hero__veil { position: absolute; inset: 0; }
.home-hero__media { top: -6%; bottom: -6%; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__veil { background: transparent; pointer-events: none; }

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 123px);
  flex-direction: column;
  justify-content: center;
  padding-top: 75px;
  padding-bottom: 100px;
}

.home-hero__copy-panel {
  width: fit-content;
  max-width: min(1180px, calc(100vw - var(--side) * 2));
  padding-left: clamp(18px, 2vw, 30px);
  border-left: 3px solid rgba(255, 255, 255, .78);
}

.home-hero__copy-panel > .eyebrow { display: table; padding: 9px 12px; background: rgba(3, 29, 59, .42); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }

.eyebrow {
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow--blue { color: var(--blue); }

.display-title {
  max-width: 1120px;
  margin: 22px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7.4vw, 118px);
  font-weight: 400;
  letter-spacing: .008em;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.display-title > span { display: table; width: fit-content; margin-top: 3px; padding: 0 .11em .06em; background: rgba(3, 29, 59, .4); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }

.display-title em { color: var(--ice); font-weight: 400; letter-spacing: .012em; }
.home-hero__bottom { display: flex; width: fit-content; max-width: 820px; align-items: flex-end; justify-content: space-between; gap: 45px; padding: 17px 19px; background: rgba(3, 29, 59, .4); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }
.home-hero__bottom p { max-width: 470px; color: rgba(255, 255, 255, .94); font-size: 17px; text-shadow: 0 1px 10px rgba(0, 0, 0, .38); }
.home-hero__bottom p a { border-bottom: 1px solid rgba(255, 255, 255, .7); }
.hero-index { position: absolute; z-index: 2; right: var(--side); bottom: 42px; color: rgba(255, 255, 255, .55); font-size: 10px; font-weight: 700; letter-spacing: .16em; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 30px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.scroll-cue span { width: 52px; height: 1px; background: rgba(255, 255, 255, .45); }

.booking-strip { position: relative; z-index: 5; color: var(--white); background: var(--blue); }
.booking-strip__grid { display: grid; min-height: 112px; grid-template-columns: .7fr .7fr 1.4fr 1.1fr; padding-block: 0; }
.booking-strip__grid > div { display: flex; flex-direction: column; justify-content: center; padding: 18px 30px; border-left: 1px solid rgba(255, 255, 255, .2); }
.booking-strip small { margin-bottom: 7px; color: rgba(255, 255, 255, .62); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.booking-strip strong, .booking-strip a { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.booking-strip__action { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 30px; color: var(--blue-dark); background: var(--ice); border-left: 1px solid rgba(255, 255, 255, .2); font-family: inherit !important; font-size: 12px !important; font-weight: 800 !important; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease; }
.booking-strip__action:hover { background: #badbf3; }
.booking-strip__action span { font-size: 21px; }

.booking-engine { padding: 58px 0 70px; background: #eef3f7; border-bottom: 1px solid var(--line); }
.booking-engine__head { display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: end; margin-bottom: 28px; }
.booking-engine__head h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(32px, 4vw, 58px); font-weight: 400; line-height: 1; }
.booking-engine__head > p { max-width: 440px; margin: 0; color: var(--muted); line-height: 1.7; }
.booking-engine__form { min-height: 116px; padding: 22px; background: var(--white); border: 1px solid rgba(13, 71, 143, .17); }
.booking-engine__fallback { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 22px; color: var(--muted); }
.booking-engine__fallback .button { flex: 0 0 auto; }
#tl-search-form:has(iframe) > .booking-engine__fallback,
#tl-search-form:has([class*="tl-"]) > .booking-engine__fallback { display: none; }

.section { padding-block: var(--section); }
.section-number { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.split-intro { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .72fr); gap: clamp(28px, 7vw, 120px); align-items: start; }
.split-intro h2, .section-head h2, .story-grid h2, .food-feature h2, .details-grid h2, .cafe-lead h2, .contacts-title h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 5.3vw, 82px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.split-intro__copy { padding-top: 33px; }
.split-intro__copy p { margin-bottom: 32px; color: var(--muted); font-size: 18px; line-height: 1.7; }

.text-link { display: inline-flex; align-items: center; gap: 35px; padding-bottom: 9px; color: var(--blue); border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.text-link span { font-size: 18px; transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(4px, -4px); }
.text-link--light { color: var(--white); }

.editorial-media { position: relative; display: grid; min-height: min(59vw, 720px); grid-template-columns: minmax(0, 1fr) 180px; align-items: end; gap: clamp(24px, 4vw, 62px); margin-top: clamp(55px, 8vw, 120px); }
.editorial-media__frame { position: relative; height: min(55vw, 680px); margin-left: clamp(0px, 5vw, 75px); overflow: visible; }
.editorial-media__frame::before { position: absolute; z-index: -1; top: -26px; right: 28px; bottom: 26px; left: -28px; border: 1px solid rgba(13, 71, 143, .45); content: ""; }
.editorial-media__frame::after { position: absolute; right: -18px; bottom: -18px; width: 52%; height: 42%; background: var(--ice); content: ""; z-index: -1; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.js .editorial-media.reveal img { transform: scale(1.035); transition: transform 1.25s var(--ease); }
.js .editorial-media.reveal.is-visible img { transform: scale(1); }
.editorial-media__caption { display: grid; gap: 24px; padding-bottom: 20px; color: var(--muted); }
.editorial-media__caption::before { width: 1px; height: 90px; background: var(--blue); content: ""; }
.editorial-media__caption span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.editorial-media__caption p { font-family: Georgia, serif; font-size: 23px; line-height: 1.25; }

.facts-band { color: var(--white); background: var(--blue-dark); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { display: flex; min-height: 180px; align-items: flex-end; gap: 16px; padding: 35px 25px; border-left: 1px solid rgba(255, 255, 255, .17); }
.fact:last-child { border-right: 1px solid rgba(255, 255, 255, .17); }
.fact strong { font-family: Georgia, serif; font-size: clamp(52px, 5vw, 80px); font-weight: 400; line-height: .8; }
.fact span { color: rgba(255, 255, 255, .62); font-size: 10px; font-weight: 700; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: clamp(45px, 7vw, 95px); }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 70px 24px; }
.cards-grid--rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 75px 32px; }
.cards-grid--services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 58px 28px; }
.record-card__media { position: relative; display: block; height: clamp(290px, 34vw, 520px); overflow: hidden; background: #d8dadd; }
.cards-grid--services .record-card__media { height: auto; aspect-ratio: 3 / 2; }
.cards-grid--rooms .record-card:nth-child(even) { margin-top: 90px; }
.record-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.record-card:hover .record-card__media img { transform: scale(1.035); }
.record-card__index { position: absolute; top: 0; left: 0; padding: 13px 15px; color: var(--white); background: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.record-card__body { position: relative; padding: 25px 55px 0 0; border-top: 1px solid transparent; }
.record-card h3 { max-width: 600px; margin: 0; font-family: Georgia, serif; font-size: clamp(25px, 2.3vw, 37px); font-weight: 400; letter-spacing: -.025em; line-height: 1.15; }
.record-card h3 a { transition: color .25s ease; }
.record-card h3 a:hover { color: var(--blue); }
.record-card__body > p { margin-top: 16px; color: var(--muted); }
.record-card__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 17px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.record-card__meta span + span::before { margin-right: 20px; color: var(--blue); content: "/"; }
.card-arrow { position: absolute; top: 22px; right: 0; display: grid; width: 40px; height: 40px; place-items: center; color: var(--blue); border: 1px solid var(--line); font-size: 20px; transition: color .25s ease, background .25s ease; }
.card-arrow:hover { color: var(--white); background: var(--blue); }

.marquee { padding: 25px 0; color: var(--blue-dark); background: var(--ice); overflow: hidden; }
.marquee__track { display: flex; width: max-content; align-items: center; gap: 36px; animation: marquee 35s linear infinite; }
.marquee span { font-family: Georgia, serif; font-size: clamp(28px, 3.5vw, 54px); white-space: nowrap; }
.marquee i { font-style: normal; font-size: 19px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.services-section { position: relative; color: var(--ink); background: var(--paper); overflow: hidden; }
.services-section .section-head .eyebrow { color: var(--blue); }
.services-section { padding-top: clamp(72px, 7vw, 105px); }
.services-section .section-head { margin-bottom: clamp(42px, 5vw, 68px); }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(48px, 7vw, 105px) 30px; }
.experience-card { min-width: 0; }
.experience-card:nth-child(even) { margin-top: clamp(45px, 7vw, 100px); }
.experience-card__media { display: block; height: clamp(330px, 36vw, 530px); background: #dfe5e9; overflow: hidden; }
.experience-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
.experience-card:hover .experience-card__media img { transform: scale(1.025); }
.experience-card__body { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 42px; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.experience-card__body h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(28px, 3vw, 43px); font-weight: 400; letter-spacing: -.025em; line-height: 1.08; }
.experience-card__body h3 a { transition: color .25s ease; }
.experience-card__body h3 a:hover { color: var(--blue); }
.experience-card__body p { grid-column: 1; max-width: 560px; margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
.experience-card__arrow { display: grid; grid-column: 3; grid-row: 1 / span 2; width: 42px; height: 42px; place-items: center; color: var(--blue); border: 1px solid var(--line); font-size: 21px; transition: color .25s ease, background .25s ease, transform .25s ease; }
.experience-card__arrow:hover { color: var(--white); background: var(--blue); transform: translate(3px, -3px); }
.service-lines { position: relative; }
.service-line { position: relative; display: grid; min-height: 112px; grid-template-columns: 90px 1fr 60px; align-items: center; border-top: 1px solid rgba(255, 255, 255, .2); }
.service-line:last-child { border-bottom: 1px solid rgba(255, 255, 255, .2); }
.service-line__index { color: rgba(255, 255, 255, .38); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.service-line__title { font-family: Georgia, serif; font-size: clamp(26px, 3.1vw, 47px); line-height: 1.08; transition: color .25s ease, transform .4s var(--ease); }
.service-line__arrow { justify-self: end; color: var(--sky); font-size: 25px; transition: transform .4s var(--ease); }
.service-line:hover .service-line__title { color: var(--sky); transform: translateX(10px); }
.service-line:hover .service-line__arrow { transform: translate(5px, -5px); }
.service-line__preview { position: absolute; z-index: 3; right: 110px; bottom: 16px; width: 240px; height: 170px; opacity: 0; pointer-events: none; transform: translateY(18px) rotate(2deg); transition: opacity .3s ease, transform .5s var(--ease); }
.service-line__preview img { width: 100%; height: 100%; object-fit: cover; }
.service-line:hover .service-line__preview { opacity: 1; transform: translateY(0) rotate(-2deg); }

.food-feature { background: var(--sand); }
.food-feature__grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: stretch; }
.food-feature__media { min-height: 690px; overflow: hidden; }
.food-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.food-feature__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(45px, 7vw, 105px); color: var(--white); background: var(--blue); }
.food-feature__content .section-number, .food-feature__content .eyebrow { color: var(--ice); }
.food-feature__content p:not(.eyebrow) { max-width: 480px; margin: 32px 0 38px; color: rgba(255, 255, 255, .72); font-size: 17px; }

.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 35px; padding: 0 22px; border: 0; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: color .25s ease, background .25s ease; }
.button span, .button b { font-size: 19px; font-weight: 400; transition: transform .3s var(--ease); }
.button:hover span, .button:hover b { transform: translate(4px, -4px); }
.button--blue { color: var(--white); background: var(--blue); }
.button--blue:hover { background: var(--blue-deep); }
.button--light { color: var(--blue-dark); background: var(--white); }
.button--light:hover { background: var(--ice); }

.nearby-section { background: var(--paper); }
.landscape-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 25px; align-items: start; }
.landscape-card:nth-child(2) { margin-top: 120px; }
.landscape-card:nth-child(3) { margin-top: 220px; }
.landscape-card__media { display: block; height: 520px; overflow: hidden; }
.landscape-card:not(:first-child) .landscape-card__media { height: 350px; }
.landscape-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.landscape-card:hover img { transform: scale(1.04); }
.landscape-card > div { padding-top: 22px; }
.landscape-card span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.landscape-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(22px, 2.2vw, 34px); font-weight: 400; line-height: 1.13; }
.landscape-card h3 a:hover { color: var(--blue); }

.news-section { background: var(--sand); }
.home-news-slider { overflow: hidden; }
.news-slider { position: relative; }
.news-slider__viewport { overflow-x: auto; padding-bottom: 12px; scroll-behavior: smooth; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.news-slider__viewport::-webkit-scrollbar { display: none; }
.news-slider__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 30px) / 2); gap: 30px; }
.news-slider__track .news-card { min-width: 0; scroll-snap-align: start; }
.news-slider__arrow { position: absolute; z-index: 3; top: 135px; display: grid; width: 48px; height: 48px; place-items: center; color: var(--blue-dark); background: rgba(255, 255, 255, .94); border: 1px solid var(--line); box-shadow: 0 12px 35px rgba(3, 29, 59, .13); cursor: pointer; transition: color .25s ease, background .25s ease, transform .25s ease; }
.news-slider__arrow:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); }
.news-slider__arrow--prev { left: 12px; }
.news-slider__arrow--next { right: 12px; }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.news-grid--archive { gap: 85px 30px; }
.news-card__media { position: relative; display: grid; height: 290px; margin-bottom: 23px; gap: 3px; overflow: hidden; background: #d8dadd; }
.news-card__media--1 { grid-template-columns: 1fr; }
.news-card__media--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-card__media--3 { grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, minmax(0, 1fr)); }
.news-card__media--3 .news-card__media-item:first-child { grid-row: 1 / 3; }
.news-card__media--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }
.news-card__media-item { display: block; min-width: 0; min-height: 0; overflow: hidden; background: var(--blue-dark); }
.news-card__media img, .news-card__media iframe { width: 100%; height: 100%; border: 0; object-fit: cover; }
.news-card__media img { transition: transform .8s var(--ease); }
.news-card__media-item--video { position: relative; }
.news-card__media-count { position: absolute; z-index: 2; right: 10px; bottom: 10px; display: grid; min-width: 42px; height: 42px; place-items: center; padding-inline: 10px; color: var(--white); background: rgba(3, 29, 59, .88); font-size: 12px; font-weight: 800; }
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__meta { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-card h3 { margin: 11px 0 14px; font-family: Georgia, serif; font-size: 26px; font-weight: 400; line-height: 1.15; }
.news-card h3 a:hover { color: var(--blue); }
.news-card > p { margin-bottom: 23px; color: var(--muted); }
.news-card > .text-link { margin-bottom: 28px; }
.news-card--more { position: relative; min-height: 520px; overflow: hidden; background: #dce4eb; }
.news-card--more__blur { height: 100%; filter: blur(8px); opacity: .66; pointer-events: none; transform: scale(1.035); }
.news-card--more__blur h3 { margin-inline: 18px; }
.news-card--more__blur > p { margin-inline: 18px; }
.news-card--more__blur .news-card__meta { margin-inline: 18px; }
.news-card--more__overlay { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; background: linear-gradient(180deg, rgba(248, 250, 252, .15), rgba(248, 250, 252, .72)); }
.news-card--more__overlay .eyebrow { color: var(--blue); }
.news-card--more__overlay h3 { max-width: 430px; margin: 18px 0 28px; font-size: clamp(30px, 3vw, 46px); }

.contact-cta { position: relative; min-height: 690px; color: var(--white); background: var(--blue-dark); overflow: hidden; }
.contact-cta__media, .contact-cta__overlay { position: absolute; inset: 0; }
.contact-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-cta__overlay { background: linear-gradient(90deg, rgba(3, 25, 50, .88), rgba(3, 25, 50, .25)); }
.contact-cta__content { position: relative; z-index: 2; display: flex; min-height: 690px; flex-direction: column; align-items: flex-start; justify-content: center; }
.contact-cta h2 { max-width: 880px; margin: 22px 0; font-family: Georgia, serif; font-size: clamp(52px, 7vw, 105px); font-weight: 400; letter-spacing: -.05em; line-height: .94; }
.contact-cta__content > p:not(.eyebrow) { max-width: 540px; color: rgba(255, 255, 255, .73); font-size: 17px; }
.contact-cta__content > div { display: flex; align-items: center; gap: 35px; margin-top: 40px; }

.inner-hero { position: relative; min-height: 650px; color: var(--white); background: var(--blue-dark); overflow: hidden; }
.inner-hero__media, .inner-hero__overlay { position: absolute; inset: 0; }
.inner-hero__media { top: -7%; bottom: -7%; }
.inner-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero__overlay { background: transparent; pointer-events: none; }
.inner-hero__content { position: relative; z-index: 2; display: flex; min-height: 650px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-top: 100px; padding-bottom: 75px; }
.inner-hero__copy-panel { width: fit-content; max-width: min(980px, 92%); padding: clamp(22px, 3.4vw, 48px); background: rgba(3, 29, 59, .28); border-left: 3px solid rgba(255, 255, 255, .88); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.inner-hero h1 { max-width: 1050px; margin: 16px 0 24px; font-family: Georgia, serif; font-size: clamp(56px, 7.4vw, 112px); font-weight: 400; letter-spacing: -.025em; line-height: 1; }
.inner-hero__intro { max-width: 680px; color: rgba(255, 255, 255, .92); font-size: 17px; text-shadow: 0 1px 10px rgba(0, 0, 0, .35); }

.archive-summary { display: flex; align-items: flex-end; gap: 22px; margin-bottom: 65px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.archive-summary span { color: var(--blue); font-family: Georgia, serif; font-size: 65px; line-height: .8; }
.archive-summary p { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.story-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr); gap: clamp(30px, 7vw, 120px); align-items: start; }
.story-grid__copy { padding-top: 38px; }
.story-grid__copy p { margin-bottom: 30px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.about-article { padding-top: 20px; background: var(--paper); }
.about-article__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .55fr); gap: clamp(35px, 8vw, 140px); align-items: end; margin-bottom: clamp(55px, 8vw, 110px); padding-top: clamp(60px, 8vw, 115px); border-top: 1px solid var(--line); }
.about-article__head .eyebrow { grid-column: 1 / -1; margin-bottom: -15px; }
.about-article__head h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(49px, 6vw, 86px); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.about-article__head > p:last-child { max-width: 560px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.about-article__chapters { display: grid; gap: clamp(60px, 8vw, 120px); }
.about-chapter { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); min-height: 610px; background: var(--ice); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-chapter--reverse { grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); }
.about-chapter--reverse .about-chapter__media { order: 2; }
.about-chapter__media { min-height: 610px; background: #dfe7ee; overflow: hidden; }
.about-chapter__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-chapter__media--split { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.about-chapter__media--split img { min-width: 0; }
.about-chapter__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(44px, 5.2vw, 82px); border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-chapter__body h3 { max-width: 560px; margin: 17px 0 28px; font-family: Georgia, serif; font-size: clamp(38px, 4vw, 61px); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.about-chapter__body > p:not(.eyebrow) { max-width: 590px; margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.about-chapter__body > .text-link { margin-top: 18px; }
.about-chapter__links { display: flex; flex-wrap: wrap; gap: 22px 34px; margin-top: 20px; }
.about-chapter__links .text-link { min-width: 170px; }

.prose-section { background: var(--paper); }
.prose-layout { display: grid; grid-template-columns: .7fr 1.45fr; gap: clamp(55px, 10vw, 160px); align-items: start; }
.prose-aside { position: sticky; top: 135px; max-width: 300px; padding-top: 18px; border-top: 1px solid var(--line); }
.prose-aside p { margin-top: 55px; color: var(--muted); font-size: 14px; }
.rich-content { max-width: 830px; }
.rich-content h2 { margin: 70px 0 23px; color: var(--ink); font-family: Georgia, serif; font-size: clamp(36px, 4vw, 55px); font-weight: 400; letter-spacing: -.035em; line-height: 1.05; }
.rich-content h2:first-child { margin-top: 0; }
.rich-content h3 { margin: 43px 0 16px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.rich-content h4 { margin: 30px 0 12px; font-size: 20px; }
.rich-content p { margin: 0 0 23px; color: #404952; font-size: 17px; line-height: 1.8; }
.rich-content--article { max-width: 760px; }
.article-layout { display: grid; grid-template-columns: 1fr 220px; gap: 90px; align-items: start; }
.article-share { position: sticky; top: 135px; display: grid; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.article-share span { margin-bottom: 10px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-share a { color: var(--blue); font-size: 13px; font-weight: 700; }
.vk-video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.vk-video-grid iframe { width: 100%; min-height: 430px; background: var(--blue-dark); border: 0; }

.gallery-section { padding-top: 20px; }
.gallery-count { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; height: 330px; padding: 0; background: #d8dadd; border: 0; overflow: hidden; cursor: zoom-in; }
.gallery-item:nth-child(6n + 1), .gallery-item:nth-child(6n + 5) { grid-column: span 8; height: 560px; }
.gallery-item:nth-child(6n + 2), .gallery-item:nth-child(6n + 6) { height: 560px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: brightness(.88); }
.gallery-item > span { position: absolute; right: 0; bottom: 0; padding: 10px 13px; color: var(--white); background: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.gallery-grid--landscape { grid-auto-rows: clamp(190px, 22.2vw, 320px); }
.gallery-grid--landscape .gallery-item,
.gallery-grid--landscape .gallery-item:nth-child(n) { grid-column: span 4; grid-row: span 1; height: auto; background: #e8edf2; }
.gallery-grid--landscape .gallery-item:nth-child(6n + 1) { grid-column: 1 / span 8; grid-row: span 2; }
.gallery-grid--landscape .gallery-item:nth-child(6n + 4) { grid-column: 5 / span 8; grid-row: span 2; }
.gallery-grid--landscape .gallery-item img { object-fit: contain; }

.cafe-lead { color: var(--white); background: var(--blue); }
.cafe-lead__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.cafe-lead .eyebrow { color: var(--ice); }
.cafe-lead__action p { margin-bottom: 30px; color: rgba(255, 255, 255, .73); font-size: 17px; }

.room-facts { color: var(--white); background: var(--blue); }
.room-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.room-facts__grid > div { display: flex; min-height: 145px; flex-direction: column; justify-content: center; padding: 25px 30px; border-left: 1px solid rgba(255, 255, 255, .2); }
.room-facts__grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .2); }
.room-facts small { margin-bottom: 10px; color: rgba(255, 255, 255, .56); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.room-facts strong { font-family: Georgia, serif; font-size: 28px; font-weight: 400; }

.details-section { background: var(--sand); }
.details-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.detail-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.detail-lists h3 { margin: 0 0 25px; color: var(--blue); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.detail-lists ul { margin: 0; padding: 0; list-style: none; }
.detail-lists li { position: relative; padding: 13px 0 13px 25px; border-top: 1px solid var(--line); color: #424a52; }
.detail-lists li::before { position: absolute; top: 20px; left: 3px; width: 7px; height: 7px; background: var(--blue); content: ""; transform: rotate(45deg); }

.price-section { padding-top: 20px; }
.price-list { border-top: 1px solid var(--line); }
.price-row { display: grid; min-height: 86px; grid-template-columns: 1fr auto; align-items: center; gap: 35px; border-bottom: 1px solid var(--line); }
.price-row span { font-family: Georgia, serif; font-size: clamp(21px, 2.3vw, 31px); }
.price-row strong { color: var(--blue); font-size: 17px; }

.room-pricing { color: var(--white); background: var(--blue-dark); }
.room-pricing .section-head h2 { color: var(--white); }
.room-pricing .eyebrow { color: var(--sky); }
.room-pricing__hint { max-width: 230px; color: rgba(255, 255, 255, .5); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.price-tabs { display: flex; margin-bottom: 42px; border: 1px solid rgba(255, 255, 255, .2); }
.price-tab { min-width: 200px; min-height: 58px; padding: 0 25px; color: rgba(255, 255, 255, .6); background: transparent; border: 0; border-right: 1px solid rgba(255, 255, 255, .2); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.price-tab.is-active { color: var(--blue-dark); background: var(--ice); }
.price-panel[hidden] { display: none; }
.price-room { border-top: 1px solid rgba(255, 255, 255, .2); }
.price-room:last-of-type { border-bottom: 1px solid rgba(255, 255, 255, .2); }
.price-room summary { display: grid; min-height: 92px; grid-template-columns: 1fr 150px 30px; align-items: center; gap: 25px; list-style: none; cursor: pointer; }
.price-room summary::-webkit-details-marker { display: none; }
.price-room__number { color: rgba(255, 255, 255, .36); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.price-room summary strong { font-family: Georgia, serif; font-size: clamp(23px, 2.7vw, 36px); font-weight: 400; }
.price-room summary small { color: rgba(255, 255, 255, .52); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-room summary i { justify-self: end; color: var(--sky); font-style: normal; font-size: 25px; transition: transform .3s ease; }
.price-room[open] summary i { transform: rotate(45deg); }
.price-room__body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0 0 32px; background: rgba(255, 255, 255, .12); background-clip: content-box; }
.season-price { padding: 28px 25px; background: #092a50; }
.season-price h4 { min-height: 35px; margin: 0 0 24px; color: var(--sky); font-size: 10px; font-weight: 800; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.season-price dl { margin: 0; }
.season-price dl > div { display: grid; min-height: 45px; grid-template-columns: 1fr auto; align-items: center; gap: 15px; border-top: 1px solid rgba(255, 255, 255, .13); }
.season-price dt { color: rgba(255, 255, 255, .57); font-size: 11px; }
.season-price dd { margin: 0; color: var(--white); font-size: 13px; font-weight: 800; white-space: nowrap; }
.price-notes { display: grid; gap: 10px; margin-top: 35px; }
.price-notes p { color: rgba(255, 255, 255, .47); font-size: 11px; }

.other-rooms { background: var(--paper); border-top: 1px solid var(--line); }
.other-rooms__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.other-room-link { display: grid; min-height: 104px; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: 24px 22px 24px 0; border-bottom: 1px solid var(--line); transition: color .25s ease, padding .35s var(--ease), background .25s ease; }
.other-room-link:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.other-room-link:nth-child(even) { padding-left: 32px; }
.other-room-link:hover { color: var(--blue); background: rgba(143, 199, 234, .08); }
.other-room-link strong { font-family: Georgia, serif; font-size: clamp(20px, 2vw, 29px); font-weight: 400; line-height: 1.08; }
.other-room-link > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .05em; white-space: nowrap; text-transform: uppercase; }
.other-room-link i { margin-left: 10px; color: var(--blue); font-style: normal; font-size: 16px; }
.price-empty { padding: 30px 0; color: rgba(255, 255, 255, .6); }

.vacancy { display: grid; grid-template-columns: 1fr 300px; gap: 45px; padding: 48px 0; border-top: 1px solid var(--line); }
.vacancy:last-child { border-bottom: 1px solid var(--line); }
.vacancy > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.vacancy h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(31px, 4vw, 52px); font-weight: 400; line-height: 1.02; }
.vacancy p { max-width: 650px; color: var(--muted); }
.vacancy__contacts { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.vacancy__contacts a { padding-bottom: 4px; color: var(--blue); border-bottom: 1px solid currentColor; font-size: 14px; }

.contacts-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.contact-lines { border-top: 1px solid var(--line); }
.contact-line { position: relative; display: grid; min-height: 115px; grid-template-columns: 180px 1fr 30px; align-items: center; gap: 25px; border-bottom: 1px solid var(--line); }
.contact-line small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-line strong { font-family: Georgia, serif; font-size: clamp(22px, 2.8vw, 39px); font-weight: 400; line-height: 1.2; }
.contact-line > span { color: var(--blue); font-size: 23px; transition: transform .3s var(--ease); }
.contact-line:hover > span { transform: translate(5px, -5px); }
.messenger-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 90px; }
.messenger-grid a { display: flex; min-height: 120px; align-items: center; justify-content: space-between; padding: 25px 30px; color: var(--white); background: var(--blue); border-right: 1px solid rgba(255, 255, 255, .2); font-family: Georgia, serif; font-size: 27px; transition: background .25s ease; }
.messenger-grid a:hover { background: var(--blue-deep); }

.yandex-award { display: inline-block; width: clamp(96px, 8.5vw, 132px); line-height: 0; filter: drop-shadow(0 14px 22px rgba(3, 29, 59, .16)); transition: transform .3s var(--ease); }
.yandex-award:hover { transform: translateY(-4px); }
.yandex-award img { display: block; width: 100%; height: auto; }
.home-hero__award { margin-top: 24px; }

.home-gallery-section { background: var(--sand); overflow: hidden; }
.intro-gallery { min-width: 0; grid-column: 1 / -1; margin-top: clamp(22px, 3vw, 42px); padding: 0; overflow: visible; background: transparent; border: 0; }
.intro-gallery .gallery-rail { padding-inline: 0; }
.intro-gallery .gallery-rail__arrow--prev { left: -18px; }
.intro-gallery .gallery-rail__arrow--next { right: -18px; }
.gallery-rail { position: relative; width: 100%; padding-inline: clamp(20px, 4vw, 64px); }
.gallery-rail__viewport { overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
.gallery-rail__viewport::-webkit-scrollbar { display: none; }
.gallery-rail__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * 12px) / 3); grid-template-rows: repeat(2, auto); gap: 12px; }
.gallery-rail__item { position: relative; height: auto; aspect-ratio: 16 / 10; padding: 0; background: #dce4e9; border: 0; overflow: hidden; cursor: zoom-in; scroll-snap-align: start; }
.gallery-rail__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.gallery-rail__item:hover img { transform: scale(1.035); }
.gallery-rail__item span { position: absolute; right: 0; bottom: 0; padding: 9px 11px; color: var(--white); background: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.gallery-rail__item--more { display: grid; place-items: center; color: var(--white); text-align: center; }
.gallery-rail__item--more .gallery-rail__more-blur { position: absolute; inset: -16px; padding: 0; background: transparent; filter: blur(9px); opacity: .72; transform: scale(1.08); }
.gallery-rail__item--more .gallery-rail__more-blur img { width: 100%; height: 100%; object-fit: cover; }
.gallery-rail__item--more .gallery-rail__more-overlay { position: relative; inset: auto; right: auto; bottom: auto; display: flex; max-width: 90%; flex-direction: column; align-items: center; gap: 12px; padding: 25px; background: rgba(3, 29, 59, .58); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); letter-spacing: normal; }
.gallery-rail__more-overlay b { color: rgba(255, 255, 255, .72); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.gallery-rail__more-overlay strong { font-family: Georgia, serif; font-size: clamp(20px, 2vw, 30px); font-weight: 400; line-height: 1.05; }
.gallery-rail__more-overlay i { padding-bottom: 7px; border-bottom: 1px solid rgba(255, 255, 255, .8); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-rail__arrow { position: absolute; z-index: 4; top: 50%; display: grid; width: 52px; height: 52px; place-items: center; padding: 0; color: var(--white); background: var(--blue); border: 0; cursor: pointer; transform: translateY(-50%); transition: background .25s ease; }
.gallery-rail__arrow:hover { background: var(--blue-dark); }
.gallery-rail__arrow--prev { left: max(4px, calc((100vw - var(--shell)) / 2 + 4px)); }
.gallery-rail__arrow--next { right: max(4px, calc((100vw - var(--shell)) / 2 + 4px)); }

.map-section { padding-top: clamp(80px, 9vw, 130px); background: var(--paper); }
.map-section__head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .65fr); gap: clamp(45px, 8vw, 130px); align-items: end; margin-bottom: 55px; }
.map-section__head h2 { margin: 16px 0 0; font-family: Georgia, serif; font-size: clamp(48px, 6vw, 88px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.map-section__head > div:last-child p { margin-bottom: 25px; color: var(--muted); line-height: 1.7; }
.map-embed { position: relative; min-height: 600px; padding-inline: 0; background: var(--sand); border: 1px solid rgba(13, 71, 143, .14); overflow: hidden; }
.map-embed > ymaps, .map-embed iframe { width: 100% !important; min-height: 600px !important; }
.map-embed:not(.is-active) ymaps, .map-embed:not(.is-active) iframe { pointer-events: none !important; }
.map-embed__cover { position: absolute; z-index: 6; inset: 0; display: grid; place-items: center; padding: 24px; background: linear-gradient(135deg, rgba(245, 247, 249, .3), rgba(3, 29, 59, .18)); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); transition: opacity .3s ease, visibility .3s ease; }
.map-embed__cover button { display: grid; max-width: 420px; gap: 8px; padding: 22px 28px; color: var(--white); background: rgba(3, 29, 59, .92); border: 1px solid rgba(255, 255, 255, .35); box-shadow: 0 18px 50px rgba(3, 29, 59, .25); cursor: pointer; text-align: left; }
.map-embed__cover strong { font-family: Georgia, serif; font-size: clamp(22px, 2.5vw, 31px); font-weight: 400; line-height: 1.05; }
.map-embed__cover span { color: rgba(255, 255, 255, .72); font-size: 11px; line-height: 1.5; }
.map-embed__relock { position: absolute; z-index: 7; top: 14px; right: 14px; display: none; padding: 11px 15px; color: var(--white); background: rgba(3, 29, 59, .92); border: 1px solid rgba(255, 255, 255, .35); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.map-embed.is-active .map-embed__cover { opacity: 0; visibility: hidden; pointer-events: none; }
.map-embed.is-active .map-embed__relock { display: block; }

.yandex-reviews-section { padding-top: 0; }
.yandex-reviews-section .section-head { align-items: center; }
.yandex-reviews-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.yandex-review { display: flex; min-height: 340px; flex-direction: column; padding: clamp(28px, 4vw, 55px); background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.yandex-review__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.yandex-review__top span { color: #e74752; font-size: 14px; letter-spacing: .12em; }
.yandex-review time { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.yandex-review blockquote { margin: 45px 0 35px; font-family: Georgia, serif; font-size: clamp(22px, 2.3vw, 32px); line-height: 1.35; }
.yandex-review footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; color: var(--blue-dark); font-size: 12px; font-weight: 800; }
.yandex-review footer a { color: var(--blue); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.yandex-review--more { position: relative; min-height: 420px; padding: 0; overflow: hidden; background: #dce4eb; }
.yandex-review--more__blur { display: flex; min-height: 100%; flex-direction: column; padding: clamp(28px, 4vw, 55px); filter: blur(8px); opacity: .62; pointer-events: none; transform: scale(1.04); }
.yandex-review--more__blur footer span { color: var(--blue); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.yandex-review--more__overlay { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; background: linear-gradient(180deg, rgba(248, 250, 252, .18), rgba(248, 250, 252, .78)); }
.yandex-review--more__overlay h3 { max-width: 440px; margin: 18px 0 28px; font-family: Georgia, serif; font-size: clamp(30px, 3vw, 46px); font-weight: 400; line-height: 1.1; }

.not-found { display: grid; min-height: 75vh; place-items: center; padding: 100px 0; background: var(--sand); text-align: center; }
.not-found span { color: rgba(13, 71, 143, .13); font-family: Georgia, serif; font-size: clamp(130px, 25vw, 360px); line-height: .65; }
.not-found h1 { margin: 20px 0 45px; font-family: Georgia, serif; font-size: clamp(55px, 8vw, 110px); font-weight: 400; letter-spacing: -.05em; line-height: .88; }

.site-footer { color: var(--white); background: var(--blue-dark); }
.footer-top { display: grid; grid-template-columns: 1.5fr .65fr .65fr 1fr; gap: 60px; padding-top: 90px; padding-bottom: 90px; }
.footer-brand img { width: 230px; max-height: 145px; object-fit: contain; object-position: left center; }
.footer-brand p { margin-top: 25px; color: rgba(255, 255, 255, .53); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-column > span { margin-bottom: 13px; color: var(--sky); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { color: rgba(255, 255, 255, .68); font-size: 13px; transition: color .2s ease; }
.footer-column a:hover { color: var(--white); }
.footer-contact a:first-of-type { color: var(--white); font-family: Georgia, serif; font-size: 24px; }
.footer-bottom { display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255, 255, 255, .17); color: rgba(255, 255, 255, .43); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom > div { display: flex; gap: 25px; }
.footer-bottom a:hover { color: var(--white); }

.floating-top, .floating-contact { position: fixed; z-index: 900; bottom: 18px; bottom: calc(env(safe-area-inset-bottom) + 18px); border: 1px solid rgba(13, 71, 143, .24); box-shadow: 0 12px 34px rgba(3, 29, 59, .14); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); cursor: pointer; transition: opacity .25s ease, visibility .25s ease, transform .3s var(--ease), background .25s ease; }
.floating-top { left: 18px; left: calc(env(safe-area-inset-left) + 18px); display: grid; width: 46px; height: 46px; place-items: center; color: var(--blue); background: rgba(248, 250, 252, .86); opacity: 0; visibility: hidden; transform: translateY(12px); }
.floating-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-top:hover { color: var(--white); background: var(--blue); }
.floating-top span { font-size: 22px; line-height: 1; }
.floating-contact { right: 18px; right: calc(env(safe-area-inset-right) + 18px); display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 18px; padding: 0 15px 0 18px; color: var(--white); background: rgba(13, 71, 143, .94); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.floating-contact:hover { background: var(--blue-deep); transform: translateY(-2px); }
.floating-contact i { font-style: normal; font-size: 18px; font-weight: 400; }

.lead-dialog, .contact-dialog, .lightbox { padding: 0; border: 0; border-radius: 0; }
.lead-dialog::backdrop { background: rgba(1, 16, 32, .82); backdrop-filter: blur(8px); }
.contact-dialog::backdrop { background: rgba(1, 16, 32, .58); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.lightbox::backdrop { background: rgba(1, 16, 32, .18); -webkit-backdrop-filter: blur(18px) saturate(.8); backdrop-filter: blur(18px) saturate(.8); }
.lead-dialog { width: min(650px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: clamp(30px, 5vw, 58px); color: var(--ink); background: var(--paper); }
.contact-dialog { width: min(620px, calc(100% - 30px)); max-height: calc(100vh - 30px); max-height: calc(100dvh - 30px); padding: clamp(30px, 4vw, 48px); color: var(--ink); background: var(--paper); overflow-y: auto; }
.contact-dialog__head { padding-right: 42px; }
.contact-dialog h2 { margin: 13px 0 15px; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 57px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.contact-dialog__head > p:last-child { max-width: 470px; color: var(--muted); }
.contact-dialog__booking { width: 100%; margin: 30px 0 14px; }
.contact-dialog__options { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-dialog__options a { display: grid; min-height: 92px; grid-template-columns: 1fr auto; align-content: center; gap: 7px 15px; padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .2s ease, background .2s ease; }
.contact-dialog__options a:hover { color: var(--blue); background: rgba(143, 199, 234, .1); }
.contact-dialog__options small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-dialog__options strong { grid-column: 1; font-family: Georgia, serif; font-size: 21px; font-weight: 400; overflow-wrap: anywhere; }
.contact-dialog__options span { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--blue); }
.dialog-close { position: absolute; top: 0; right: 0; width: 54px; height: 54px; color: var(--white); background: var(--blue); border: 0; font-size: 28px; cursor: pointer; }
.lead-dialog__head { padding-right: 50px; }
.lead-dialog h2 { margin: 13px 0 12px; font-family: Georgia, serif; font-size: 48px; font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.lead-dialog__head > p:last-child { color: var(--muted); }
.lead-form { display: grid; gap: 20px; margin-top: 35px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-field label b { color: #b32f2f; }
.form-field input, .form-field textarea { width: 100%; padding: 15px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--blue); }
.form-field textarea { resize: vertical; }
.form-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 12px; }
.form-consent input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--blue); }
.form-consent a { color: var(--blue); text-decoration: underline; }
.form-submit { width: 100%; }
.form-submit:disabled { cursor: wait; opacity: .6; }
.form-response { min-height: 24px; color: var(--blue); font-size: 13px; font-weight: 700; }
.form-response.is-error { color: #a72828; }
.form-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.lightbox { position: fixed; inset: 0; width: 100%; max-width: none; height: 100vh; height: 100dvh; max-height: none; margin: 0; color: var(--white); background: rgba(1, 16, 32, .48); -webkit-backdrop-filter: blur(18px) saturate(.8); backdrop-filter: blur(18px) saturate(.8); overflow: hidden; overscroll-behavior: contain; }
.lightbox img { position: absolute; top: 50%; left: 50%; width: auto; height: auto; max-width: calc(100% - 144px); max-height: calc(100% - 118px); object-fit: contain; padding: 0; transform: translate(-50%, -50%); -webkit-user-select: none; user-select: none; }
.lightbox button { position: absolute; z-index: 3; display: grid; width: 56px; height: 56px; place-items: center; padding: 0; color: var(--white); background: rgba(13, 71, 143, .92); border: 0; cursor: pointer; touch-action: manipulation; }
.lightbox .lightbox__close { top: 12px; top: calc(env(safe-area-inset-top) + 12px); right: 12px; right: calc(env(safe-area-inset-right) + 12px); width: 52px; height: 52px; font-size: 31px; line-height: 1; background: rgba(13, 71, 143, .92); border: 1px solid rgba(255, 255, 255, .45); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.lightbox__nav { top: 50%; font-size: 26px; transform: translateY(-50%); transition: background .2s ease, opacity .2s ease; }
.lightbox__nav:hover, .lightbox__nav:focus-visible { background: var(--blue-dark); }
.lightbox__nav--prev { left: 0; left: env(safe-area-inset-left); }
.lightbox__nav--next { right: 0; right: env(safe-area-inset-right); }
.lightbox__nav[hidden] { display: none; }
.lightbox__meta { position: absolute; right: 25px; right: calc(env(safe-area-inset-right) + 25px); bottom: 18px; bottom: calc(env(safe-area-inset-bottom) + 18px); left: 25px; left: calc(env(safe-area-inset-left) + 25px); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; color: rgba(255, 255, 255, .72); font-size: 10px; letter-spacing: .1em; pointer-events: none; }
.lightbox__meta span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lightbox__meta span:last-child { flex: 0 0 auto; color: var(--white); font-weight: 800; }

.image-reveal { position: relative; }
.js .image-reveal::after { position: absolute; z-index: 2; inset: 0; background: var(--blue); content: ""; transform-origin: right; transition: transform 1.1s var(--ease); }
.js .image-reveal.is-visible::after, .js .reveal.is-visible .image-reveal::after { transform: scaleX(0); }
.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal:nth-child(2) { transition-delay: .07s; }
.js .reveal:nth-child(3) { transition-delay: .14s; }
.js .reveal:nth-child(4) { transition-delay: .21s; }

@media (max-width: 1320px) {
  .site-header__inner { grid-template-columns: 165px minmax(0, 1fr) 270px; gap: 14px; }
  .site-logo { width: 150px; }
  .primary-nav > ul { gap: 12px; }
  .nav-item > a { font-size: 11px; }
  .header-actions { grid-template-columns: 96px minmax(0, 1fr); gap: 6px; }
  .header-cafe { padding-inline: 9px; font-size: 8px; }
  .header-booking { padding-inline: 13px; font-size: 10px; }
}

@media (max-width: 1180px) {
  .site-header__inner { grid-template-columns: 150px minmax(0, 1fr) 238px; gap: 10px; }
  .site-logo { width: 140px; }
  .primary-nav > ul { gap: 8px; }
  .nav-item > a { font-size: 10px; }
  .submenu-toggle { width: 19px; }
  .header-actions { grid-template-columns: 88px minmax(0, 1fr); }
  .header-cafe { padding-inline: 8px; }
  .header-booking { min-height: 44px; padding-inline: 10px; font-size: 9px; }
  .service-line__preview { display: none; }
  .contact-line { grid-template-columns: 145px 1fr 30px; }
  .gallery-rail__track { grid-auto-columns: calc((100% - 12px) / 2); }
}

@media (max-width: 960px) {
  :root { --side: 24px; --section: 100px; }
  .utility-bar { display: none; }
  .site-header__inner { min-height: 76px; grid-template-columns: 1fr auto; }
  .site-logo { width: 170px; }
  .header-actions { display: none; }
  .menu-toggle { display: grid; width: 72px; height: 46px; grid-template-columns: 26px 1fr; grid-template-rows: repeat(3, 4px); align-content: center; gap: 4px 9px; padding: 0; background: transparent; border: 0; cursor: pointer; }
  .menu-toggle span { grid-column: 1; width: 25px; height: 1px; background: var(--blue-dark); transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle b { grid-column: 2; grid-row: 1 / span 3; align-self: center; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 99; top: 76px; right: 0; bottom: 0; left: 0; justify-self: auto; padding: 25px var(--side) 60px; color: var(--white); background: var(--blue-dark); opacity: 0; overflow-y: auto; pointer-events: none; transform: translateY(-12px); transition: opacity .25s ease, transform .35s var(--ease); }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav > ul { display: block; }
  .nav-item { display: grid; min-height: 0; grid-template-columns: 1fr 45px; border-bottom: 1px solid rgba(255, 255, 255, .15); }
  .nav-item > a { display: flex; min-height: 67px; align-items: center; font-family: Georgia, serif; font-size: 27px; font-weight: 400; letter-spacing: 0; }
  .nav-item > a::after { display: none; }
  .submenu-toggle { width: 45px; height: 67px; color: var(--sky); font-size: 15px; }
  .submenu { position: static; display: none; grid-column: 1 / -1; grid-template-columns: 1fr; gap: 0; padding: 0 0 25px; background: transparent; border: 0; opacity: 1; pointer-events: auto; transform: none; }
  .nav-item.is-open .submenu { display: block; }
  .submenu__label { display: none; }
  .submenu ul { display: block; }
  .submenu li, .submenu li:nth-child(-n + 3) { border-top: 1px solid rgba(255, 255, 255, .1); }
  .submenu a { min-height: 45px; color: rgba(255, 255, 255, .64); }
  .mobile-cafe-order { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; padding: 0 18px; color: var(--white); background: #d54b57; font-family: Georgia, serif; font-size: 24px; }
  .mobile-cafe-order span { font-family: Arial, sans-serif; font-size: 18px; }
  .home-hero, .home-hero__content { min-height: calc(100svh - 76px); }
  .home-hero__content { justify-content: flex-end; }
  .scroll-cue { display: none; }
  .booking-strip__grid { grid-template-columns: 1fr 1fr; }
  .booking-engine__head { grid-template-columns: 1fr; }
  .booking-strip__grid > div:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, .2); }
  .booking-strip__action { min-height: 90px; border-top: 1px solid rgba(255, 255, 255, .2); }
  .split-intro, .story-grid { grid-template-columns: 1fr 1fr; }
  .split-intro__copy, .story-grid__copy { grid-column: auto; padding-top: 0; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, .17); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-article__head { grid-template-columns: 1fr; gap: 30px; }
  .about-article__head .eyebrow { margin-bottom: 0; }
  .about-article__head > p:last-child { max-width: 760px; }
  .about-chapter, .about-chapter--reverse { grid-template-columns: 1fr; }
  .about-chapter--reverse .about-chapter__media { order: 0; }
  .about-chapter__media { min-height: 560px; }
  .about-chapter__body { min-height: 470px; }
  .food-feature__grid { grid-template-columns: 1fr; }
  .food-feature__media { min-height: 560px; }
  .food-feature__content { min-height: 560px; }
  .landscape-grid { grid-template-columns: 1fr 1fr; }
  .landscape-card:first-child { grid-column: 1 / -1; }
  .landscape-card:nth-child(2), .landscape-card:nth-child(3) { margin-top: 0; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .prose-layout { grid-template-columns: 1fr; gap: 55px; }
  .prose-aside { position: static; max-width: 100%; }
  .cafe-lead__grid, .details-grid, .contacts-grid { grid-template-columns: 1fr; gap: 65px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-share { position: static; display: flex; flex-wrap: wrap; gap: 20px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; height: 390px; }
  .gallery-grid--landscape { grid-auto-rows: clamp(170px, 35vw, 330px); }
  .gallery-grid--landscape .gallery-item,
  .gallery-grid--landscape .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 1; height: auto; }
  .gallery-grid--landscape .gallery-item:nth-child(5n + 1) { grid-column: 1 / span 12; grid-row: span 2; }
  .price-room__body { grid-template-columns: 1fr; }
  .room-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .room-facts__grid > div:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, .2); }
  .vacancy { grid-template-columns: 1fr 260px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / -1; }
  .gallery-rail__track { grid-auto-columns: calc((100% - 12px) / 2); }
  .map-section__head { grid-template-columns: 1fr; gap: 30px; }
  .yandex-reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --side: 18px; --section: 78px; }
  body { font-size: 15px; }
  .site-header__inner { min-height: 70px; }
  .site-logo { width: 145px; height: 66px; padding-left: 2px; }
  .site-logo img { max-height: 64px; }
  .primary-nav { top: 70px; }
  .home-hero, .home-hero__content { min-height: calc(100svh - 70px); }
  .home-hero__content { padding-top: 60px; padding-bottom: 55px; }
  .home-hero__copy-panel { width: 100%; max-width: none; padding-left: 14px; }
  .display-title { margin: 20px 0 28px; font-size: clamp(50px, 16vw, 72px); }
  .home-hero__bottom { display: block; }
  .home-hero__bottom p { margin-bottom: 25px; font-size: 15px; }
  .hero-index { display: none; }
  .booking-strip__grid { grid-template-columns: 1fr; }
  .booking-engine { padding: 42px 0 50px; }
  .booking-engine__form { min-height: 96px; padding: 12px; }
  .booking-engine__fallback { min-height: 70px; flex-direction: column; align-items: stretch; justify-content: center; text-align: center; }
  .booking-engine__fallback .button { width: 100%; }
  .booking-strip__grid > div, .booking-strip__action { min-height: 82px; padding: 15px 18px; border-top: 1px solid rgba(255, 255, 255, .2); border-left: 0; }
  .booking-strip__grid > div:first-child { border-top: 0; }
  .split-intro, .story-grid { grid-template-columns: 1fr; gap: 25px; }
  .split-intro__copy, .story-grid__copy { grid-column: 1; }
  .split-intro h2, .section-head h2, .story-grid h2, .food-feature h2, .details-grid h2, .cafe-lead h2, .contacts-title h2 { font-size: clamp(40px, 12vw, 57px); }
  .editorial-media { display: block; width: 100%; min-height: 0; height: auto; padding-inline: 0; }
  .editorial-media__frame { height: 430px; margin: 0 18px 0 0; }
  .editorial-media__frame::before { top: -14px; right: 18px; bottom: 18px; left: 0; }
  .editorial-media__caption { grid-template-columns: 50px 1fr; align-items: center; gap: 15px; padding: 30px 18px 0; }
  .editorial-media__caption::before { width: 40px; height: 1px; }
  .editorial-media__caption span { display: none; }
  .editorial-media__caption p { font-size: 19px; }
  .vk-video-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; padding-inline: 0; }
  .fact { min-height: 145px; align-items: flex-start; flex-direction: column; justify-content: flex-end; padding: 22px 18px; }
  .fact strong { font-size: 51px; }
  .section-head { display: block; margin-bottom: 45px; }
  .section-head .text-link { margin-top: 28px; }
  .cards-grid, .cards-grid--rooms { grid-template-columns: 1fr; gap: 55px; }
  .cards-grid--rooms .record-card:nth-child(even) { margin-top: 0; }
  .record-card__media { height: 390px; }
  .record-card__body { padding-top: 20px; }
  .record-card h3 { font-size: 28px; }
  .marquee { padding-block: 17px; }
  .service-line { min-height: 90px; grid-template-columns: 45px 1fr 30px; }
  .service-line__title { font-size: 25px; }
  .experience-grid { grid-template-columns: 1fr; gap: 58px; }
  .experience-card:nth-child(even) { margin-top: 0; }
  .experience-card__media { height: 400px; }
  .experience-card__body { grid-template-columns: minmax(0, 1fr) 42px; }
  .experience-card__body p { grid-column: 1; padding-left: 0; }
  .food-feature__grid { width: 100%; padding-inline: 0; }
  .food-feature__media { min-height: 420px; }
  .food-feature__content { min-height: 500px; padding: 55px 24px; }
  .landscape-grid { grid-template-columns: 1fr; gap: 50px; }
  .landscape-card:first-child { grid-column: auto; }
  .landscape-card__media, .landscape-card:not(:first-child) .landscape-card__media { height: 390px; }
  .news-grid { grid-template-columns: 1fr; gap: 60px; }
  .news-slider__track { grid-auto-columns: 88%; gap: 18px; }
  .news-slider__viewport { touch-action: pan-y pinch-zoom; overscroll-behavior-y: auto; }
  .news-slider__arrow { display: none; }
  .contact-cta, .contact-cta__content { min-height: 620px; }
  .contact-cta h2 { font-size: clamp(47px, 14vw, 67px); }
  .contact-cta__content > div { align-items: flex-start; flex-direction: column; }
  .inner-hero, .inner-hero__content { min-height: 560px; }
  .inner-hero__content { padding-bottom: 50px; }
  .inner-hero h1 { width: 100%; font-size: clamp(38px, 10.2vw, 57px); letter-spacing: -.035em; -webkit-hyphens: auto; hyphens: auto; overflow-wrap: anywhere; text-wrap: balance; }
  .inner-hero__intro { font-size: 15px; }
  .inner-hero__copy-panel { width: 100%; max-width: 100%; padding: 22px 18px; box-sizing: border-box; }
  .about-article { padding-top: 0; }
  .about-article__head { margin-bottom: 48px; padding-top: 68px; }
  .about-article__head h2 { font-size: clamp(43px, 13vw, 61px); overflow-wrap: anywhere; }
  .about-article__head > p:last-child { font-size: 16px; }
  .about-article__chapters { width: 100%; padding-inline: 0; gap: 48px; }
  .about-chapter, .about-chapter--reverse { min-height: 0; }
  .about-chapter__media { min-height: 0; height: 390px; }
  .about-chapter__media--split { height: 470px; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .about-chapter__body { min-height: 0; padding: 48px 22px 54px; }
  .about-chapter__body h3 { font-size: clamp(38px, 11vw, 52px); overflow-wrap: anywhere; }
  .about-chapter__body > p:not(.eyebrow) { font-size: 16px; }
  .about-chapter__links { width: 100%; flex-direction: column; gap: 17px; }
  .about-chapter__links .text-link { width: 100%; }
  .gallery-section .section-head { padding-inline: var(--side); }
  .gallery-grid { width: 100%; padding-inline: 0; gap: 5px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 12; height: 420px; }
  .gallery-grid--landscape { display: block; }
  .gallery-grid--landscape .gallery-item,
  .gallery-grid--landscape .gallery-item:nth-child(n) { display: block; width: 100%; height: auto; margin-bottom: 5px; }
  .gallery-grid--landscape .gallery-item img { width: 100%; height: auto; }
  .detail-lists { grid-template-columns: 1fr; }
  .room-facts__grid { padding-inline: 0; }
  .room-facts__grid > div { min-height: 115px; padding: 18px; }
  .room-facts strong { font-size: 22px; }
  .price-row { min-height: 76px; }
  .room-pricing__hint { margin-top: 20px; text-align: left; }
  .price-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .price-tab { min-width: 0; padding: 0 12px; }
  .price-room summary { min-height: 88px; grid-template-columns: 1fr 25px; gap: 12px; }
  .price-room summary small { grid-column: 1; margin-top: -22px; }
  .price-room summary i { grid-column: 2; grid-row: 1 / span 2; }
  .price-room__body { padding-left: 0; }
  .season-price { padding: 25px 18px; }
  .price-notes { padding-left: 0; }
  .other-rooms__list { grid-template-columns: 1fr; }
  .other-room-link, .other-room-link:nth-child(odd), .other-room-link:nth-child(even) { min-height: 92px; padding: 20px 0; border-right: 0; }
  .other-room-link strong { font-size: 23px; overflow-wrap: anywhere; }
  .other-room-link > span { white-space: normal; text-align: right; }
  .vacancy { grid-template-columns: 1fr; gap: 18px; }
  .vacancy__contacts { grid-column: auto; padding-left: 0; }
  .contact-line { grid-template-columns: 1fr 24px; gap: 10px; padding: 22px 0; }
  .contact-line small { grid-column: 1 / -1; }
  .contact-line strong { font-size: 25px; overflow-wrap: anywhere; }
  .messenger-grid { grid-template-columns: 1fr; }
  .messenger-grid a { min-height: 85px; border-bottom: 1px solid rgba(255, 255, 255, .2); border-right: 0; }
  .gallery-rail { padding-inline: 18px; }
  .gallery-rail__track { grid-auto-columns: 82%; grid-template-rows: 1fr; gap: 10px; }
  .gallery-rail__item { height: auto; }
  .gallery-rail__arrow { display: none; }
  .map-embed, .map-embed > ymaps, .map-embed iframe { min-height: 420px !important; }
  .map-embed__cover { padding: 16px; }
  .map-embed__cover button { width: min(100%, 360px); padding: 20px; }
  .map-embed__relock { top: 8px; right: 8px; }
  .yandex-reviews-section .section-head .yandex-award { margin-top: 30px; }
  .yandex-review { min-height: 310px; padding: 28px 22px; }
  .yandex-review blockquote { margin-top: 34px; font-size: 22px; }
  .yandex-review footer { align-items: flex-start; flex-direction: column; gap: 9px; }
  .home-hero__award { margin-top: 18px; transform: scale(.86); transform-origin: left center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px 25px; padding-top: 70px; padding-bottom: 65px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
  .footer-bottom > div { flex-wrap: wrap; }
  .lead-dialog { padding: 38px 22px 25px; }
  .lead-dialog h2 { font-size: 39px; }
  .contact-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); padding: 35px 18px 20px; }
  .contact-dialog h2 { font-size: 39px; }
  .contact-dialog__options { grid-template-columns: 1fr; }
  .contact-dialog__options a { min-height: 78px; }
  .floating-top { left: 10px; left: calc(env(safe-area-inset-left) + 10px); bottom: 10px; bottom: calc(env(safe-area-inset-bottom) + 10px); width: 43px; height: 43px; }
  .floating-contact { right: 10px; right: calc(env(safe-area-inset-right) + 10px); bottom: 10px; bottom: calc(env(safe-area-inset-bottom) + 10px); min-height: 43px; padding-inline: 14px 11px; }
  .lightbox { background: rgba(1, 16, 32, .42); -webkit-backdrop-filter: blur(14px) saturate(.82); backdrop-filter: blur(14px) saturate(.82); }
  .lightbox img { max-width: calc(100% - 20px); max-height: calc(100% - 138px); padding: 0; }
  .lightbox .lightbox__close { width: 48px; height: 48px; font-size: 29px; }
  .lightbox__nav { width: 48px; height: 64px; background: rgba(13, 71, 143, .88); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .image-reveal::after { display: none; }
  .home-preloader__content i::after { animation: none; transform: none; }
}
