@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Montserrat:wght@500;600;700;800;900&display=swap");

:root {
  --ink: #17243a;
  --muted: #596879;
  --green: #12372d;
  --green-dark: #0e2a22;
  --cream: #f8f1e6;
  --cream-soft: #fbf6ee;
  --sand: #d8c6aa;
  --line: rgba(63, 74, 55, 0.18);
  --white: #fffaf2;
  --page-x: clamp(28px, 4.15vw, 70px);
  --content-max: 100%;
  --font-sans: "Montserrat", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;
  --site-logo-width: 300px;
  --site-logo-height: 88px;
  --site-logo-width-tablet: 260px;
  --site-logo-height-tablet: 76px;
  --site-logo-width-mobile: 210px;
  --site-logo-height-mobile: 62px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-sans);
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.site-shell {
  overflow: hidden;
  background: #fff;
}

.hero {
  position: relative;
  min-height: clamp(540px, 42vw, 650px);
  padding: 31px var(--page-x) 72px;
  overflow: hidden;
  background:
    url("/images/hero-baikal-sunset-hero.webp");
  background-position: center center;
  background-size: cover;
  border-radius: 0 0 2px 2px;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: var(--site-logo-width) 1fr auto;
  align-items: center;
  gap: clamp(46px, 4.6vw, 72px);
  max-width: none;
  margin: 0 0 0 clamp(38px, 2.35vw, 46px);
}

.sticky-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: var(--site-logo-width) 1fr auto;
  align-items: center;
  gap: clamp(46px, 4.6vw, 72px);
  min-height: 82px;
  padding: 12px var(--page-x);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(116, 92, 65, 0.2);
  box-shadow: 0 16px 38px rgba(36, 30, 22, 0.1);
  backdrop-filter: blur(14px);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.sticky-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-header .logo {
  width: var(--site-logo-width);
  height: var(--site-logo-height);
  transform: none;
  transform-origin: left center;
}

.sticky-header .nav {
  align-items: center;
}

.sticky-header .nav a {
  color: #151514;
}

.sticky-header .nav a:hover {
  color: #151514;
}

.sticky-header .booking-button {
  color: #fff;
  background: #12372d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.sticky-header .booking-button:hover {
  background: #0e2a22;
}

.sticky-header .menu-button span {
  background: #151514;
}

.logo {
  position: relative;
  display: block;
  width: var(--site-logo-width);
  height: var(--site-logo-height);
  color: #050505;
  overflow: visible;
}

.logo-image {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/logo-moe-pribaikalie-vector123-no-bg.png") center / contain no-repeat;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 2vw, 38px);
  padding-top: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  color: #1c2632;
  transition: color 180ms ease;
}

.nav a:hover {
  color: #151514;
}

.nav a.is-active {
  color: #151514;
}

.hero .logo,
.hero .nav a {
  color: rgba(255, 250, 242, 0.94);
}

.hero .logo {
  width: var(--site-logo-width);
  height: var(--site-logo-height);
}

.hero .logo-image {
  position: static;
  width: 100%;
  height: 100%;
  transform: none;
  background: url("/images/logo-moe-pribaikalie-white.png") center / contain no-repeat;
  mask: none;
  -webkit-mask: none;
}

.hero .nav a:hover {
  color: #fff;
}

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

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 7px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(52, 77, 48, 0.22);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-button:hover,
.button-primary:hover {
  background: var(--green-dark);
}

.hero .booking-button {
  color: #fff;
  background: #12372d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.hero .booking-button:hover,
.hero .button-primary:hover {
  background: #0e2a22;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #15243a;
}

.hero .menu-button span {
  background: rgba(255, 250, 242, 0.92);
}

.mobile-menu {
  position: fixed;
  z-index: 360;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 10, 0.58);
  backdrop-filter: blur(4px);
}

.mobile-menu__panel {
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(340px, calc(100vw - 36px));
  padding: 58px 26px 26px;
  border: 1px solid rgba(161, 108, 68, 0.2);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-12px) scale(0.98);
  transition: transform 180ms ease;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0) scale(1);
}

.mobile-menu__panel > a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid rgba(161, 108, 68, 0.12);
  color: #151514;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-menu__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu__close span {
  position: absolute;
  top: 16px;
  left: 5px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #151514;
  transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu__booking {
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  color: #fff !important;
  background: #12372d;
}

.mobile-menu__contacts {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mobile-menu__contacts a {
  color: #3f4a53;
  font-size: 13px;
  font-weight: 700;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: clamp(54px, 4.9vw, 78px) 0 0 clamp(38px, 2.35vw, 46px);
}

.eyebrow {
  display: none;
}

.hero h1 {
  max-width: 540px;
  margin: 0;
  color: #fff8ec;
  font-family: var(--font-serif);
  font-size: clamp(50px, 4.28vw, 68px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 em {
  display: inline-block;
  color: #fff8ec;
  font-style: italic;
  font-weight: 600;
  white-space: nowrap;
}

.hero-lead {
  max-width: 390px;
  margin: 24px 0 27px;
  color: rgba(255, 250, 242, 0.9);
  font-size: 13px;
  line-height: 1.58;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.button-booking-mobile {
  display: none !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 23px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(52, 77, 48, 0.2);
}

.button-secondary {
  color: #1d2635;
  background: rgba(255, 250, 242, 0.62);
  border: 1.5px solid rgba(23, 36, 58, 0.58);
  backdrop-filter: blur(8px);
}

.hero .button-primary {
  color: #fff;
  background: #12372d;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.hero .button-secondary {
  color: #fff8ec;
  background: rgba(8, 9, 9, 0.12);
  border-color: rgba(255, 250, 242, 0.72);
}

.services-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: calc(100% - 160px);
  max-width: 1680px;
  margin: -72px auto 0;
  overflow: hidden;
  border: 1px solid rgba(72, 58, 43, 0.18);
  border-radius: 13px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 24px 60px rgba(44, 34, 24, 0.14);
  backdrop-filter: blur(12px);
}

.service-item {
  position: relative;
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 18px 18px;
  color: #292723;
  text-align: center;
  cursor: default;
}

.service-item + .service-item {
  border-left: 1px solid rgba(72, 58, 43, 0.18);
}

.service-icon {
  display: block;
  width: 46px;
  height: 46px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.service-item strong {
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.service-item span:not(.service-icon) {
  color: #5c554b;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.service-stay .service-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 26 28 10l18 16' stroke='%232b2925' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 24v22h26V24' stroke='%232b2925' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M24 46V33h8v13M21 24h14' stroke='%232b2925' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-bath .service-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 29h30l-4 13H18l-4-13Z' stroke='%232b2925' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M21 23c-3-5 5-6 2-12M29 23c-3-5 5-6 2-12M37 23c-3-5 5-6 2-12' stroke='%232b2925' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-food .service-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 12v32M15 12v12c0 3 2 5 5 5s5-2 5-5V12M36 12v32M36 12c5 4 7 11 7 18h-7' stroke='%232b2925' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-events .service-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='19' r='5' stroke='%232b2925' stroke-width='2'/%3E%3Ccircle cx='36' cy='19' r='5' stroke='%232b2925' stroke-width='2'/%3E%3Cpath d='M10 43c1-8 5-13 10-13s9 5 10 13M26 43c1-8 5-13 10-13s9 5 10 13' stroke='%232b2925' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-tours .service-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 45V20h10v25M22 45V30h12v15M34 45V24h10v21' stroke='%232b2925' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28 10c-5 0-8 3-8 8 0 7 8 14 8 14s8-7 8-14c0-5-3-8-8-8Z' stroke='%232b2925' stroke-width='2'/%3E%3Ccircle cx='28' cy='18' r='2' fill='%232b2925'/%3E%3C/svg%3E");
}

.service-gifts .service-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 25h32v22H12V25ZM10 18h36v7H10v-7ZM28 18v29' stroke='%232b2925' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M28 18c-8 0-11-3-11-6 0-2 2-4 5-4 5 0 6 10 6 10Zm0 0c8 0 11-3 11-6 0-2-2-4-5-4-5 0-6 10-6 10Z' stroke='%232b2925' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.history-preview {
  position: relative;
  margin-top: 0;
  padding: 22px clamp(18px, 1.45vw, 28px) 42px;
  background: #fff;
}

.history-preview::before {
  content: none;
}

.shoreline {
  display: none;
}

.shoreline::after {
  content: none;
}

.section-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(500px, 0.98fr) minmax(230px, 0.48fr);
  align-items: end;
  gap: clamp(22px, 2.1vw, 42px);
  width: calc(100% - 160px);
  max-width: 1680px;
  margin: 0 auto;
  padding: 54px 48px 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.history-story {
  min-height: 600px;
}

.history-copy {
  position: relative;
  scroll-margin-top: 132px;
  min-height: 585px;
  padding: 10px 0 0;
}

.section-kicker {
  margin: 0 0 17px;
  color: #a16c44;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.history-copy h2 {
  max-width: 390px;
  margin: 0 0 34px;
  color: #181715;
  font-family: var(--font-serif);
  font-size: clamp(40px, 2.75vw, 54px);
  line-height: 1.04;
  font-weight: 600;
}

.history-copy p:not(.section-kicker) {
  max-width: 430px;
  margin: 0 0 18px;
  color: #181715;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

.history-copy .button {
  margin-top: 12px;
  min-width: 202px;
  min-height: 58px;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: #12372d;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

.history-copy .button:hover {
  background: #0e2a22;
}

.history-stamp {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 24px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.78;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.history-boat-sketch {
  position: absolute;
  right: -20px;
  bottom: 102px;
  display: block;
  width: 300px;
  height: auto;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
}

.history-timeline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 20px;
  max-width: 440px;
  padding-top: 23px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  right: 92px;
  height: 1px;
  background: rgba(145, 99, 66, 0.48);
}

.history-timeline div {
  position: relative;
}

.history-timeline div::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a16c44;
}

.history-timeline strong {
  display: block;
  margin-bottom: 8px;
  color: #a16c44;
  font-size: 17px;
  font-weight: 800;
}

.history-timeline span {
  display: block;
  color: #352f29;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 600;
}

.history-main-card,
.history-polaroid {
  margin: 0;
}

.history-main-card {
  position: relative;
  align-self: end;
  min-height: 545px;
  overflow: hidden;
  border-radius: 12px;
  background: #f8efe4;
  box-shadow: 0 28px 44px rgba(35, 30, 24, 0.26);
  transform: rotate(-0.8deg);
}

.history-main-photo,
.history-photo {
  background-position: center;
  background-size: cover;
}

.history-main-photo {
  position: absolute;
  inset: 0;
  background-image: url("/images/history/history-main.png");
  background-position: 50% 50%;
  filter: saturate(0.98) contrast(1.05) sepia(0.1) brightness(0.98);
}

.history-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.04) 0%, rgba(255, 248, 235, 0.02) 52%, rgba(19, 17, 14, 0.6) 100%),
    linear-gradient(90deg, rgba(250, 232, 207, 0.12), transparent 44%);
  pointer-events: none;
}

.history-main-card figcaption {
  position: absolute;
  left: 44px;
  bottom: 30px;
  z-index: 2;
  color: rgba(255, 250, 242, 0.86);
  font-family: "Georgia", var(--font-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1;
}

.history-side-photos {
  display: grid;
  align-self: end;
  gap: 22px;
  padding-bottom: 26px;
}

.history-polaroid {
  position: relative;
  width: min(100%, 276px);
  min-height: 238px;
  padding: 10px 10px 34px;
  border-radius: 7px;
  background: #fffaf2;
  box-shadow: 0 18px 28px rgba(38, 31, 23, 0.18);
  transform: rotate(5deg);
  justify-self: start;
}

.history-polaroid-bottom {
  transform: rotate(-1deg);
  margin-left: -18px;
  z-index: 2;
}

.history-tape {
  position: absolute;
  top: -44px;
  left: -118px;
  z-index: 4;
  width: 196px;
  opacity: 0.82;
  transform: rotate(13deg);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.history-photo {
  min-height: 164px;
  border-radius: 4px;
  filter: grayscale(1) sepia(0.1) saturate(0.78) contrast(1.12) brightness(1.02);
}

.history-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.04), rgba(16, 18, 20, 0.16)),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(22, 18, 14, 0.12));
  pointer-events: none;
}

.small-one {
  background-image: url("/images/history/history-boat.png");
  background-position: center;
}

.small-two {
  background-image: url("/images/history/history-people.png");
  background-position: center;
}

.press-section {
  position: relative;
  padding: 42px var(--page-x) 92px;
  background: #fff;
}

.press-section::before,
.press-section::after {
  content: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 520px) auto minmax(300px, 520px);
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #000000;
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.45vw, 52px);
  line-height: 1;
  font-weight: 600;
}

.section-heading p {
  margin: 10px 0 0;
  color: #a16c44;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
}

.sprig {
  position: relative;
  display: block;
  height: 116px;
}

.sprig::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(80, 94, 58, 0.45), transparent);
}

.sprig::after {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background: url("/images/decor/pine-divider.png") center / contain no-repeat;
}

.sprig-left {
  transform: none;
}

.sprig-right {
  transform: scaleX(-1);
}

.press-heading {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 1420px;
  margin: 0 auto 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(161, 108, 68, 0.22);
}

.press-heading p {
  margin: 0 0 10px;
  color: #a16c44;
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
}

.press-heading h2 {
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 0.95;
  font-weight: 600;
}

.press-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(500px, 0.96fr) minmax(620px, 1.12fr);
  gap: 26px;
  max-width: 1420px;
  margin: 0 auto;
}

.featured-news,
.news-card {
  border: 1px solid rgba(102, 89, 68, 0.15);
  box-shadow: 0 18px 38px rgba(50, 44, 35, 0.08);
}

.featured-news {
  position: relative;
  min-height: 528px;
  padding: 38px 42px;
  overflow: hidden;
  color: #fff;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(23, 36, 58, 0.48), rgba(23, 36, 58, 0.12) 42%, rgba(23, 36, 58, 0.78)),
    url("/images/hero-baikal.png");
  background-position: center;
  background-size: cover;
}

.featured-news::after {
  content: "24";
  position: absolute;
  right: 32px;
  top: 32px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 184px;
  line-height: 0.8;
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
  color: #51613b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-news .tag {
  color: #151514;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid #fff;
}

.featured-news h3 {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: 24px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.45vw, 50px);
  line-height: 1.03;
  font-weight: 600;
  color: #fff;
}

.featured-news p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.featured-news a {
  position: absolute;
  z-index: 1;
  left: 36px;
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  color: #151514;
  background: rgba(255, 250, 242, 0.92);
  border: 0;
  font-size: var(--text-sm);
  font-weight: 700;
}

.featured-news a:hover {
  color: #151514;
  background: rgba(255, 250, 242, 0.92);
}

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

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 253px;
  padding: 26px 28px 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.7)),
    rgba(255, 250, 242, 0.82);
}

.news-card h3 {
  margin: 17px 0 18px;
  color: #151514;
  font-size: 18px;
  line-height: 1.36;
  font-weight: 600;
}

.news-card .tag {
  color: #151514;
}

.news-card .tag,
.press-material-card .tag {
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.news-card p {
  margin: 0 0 16px;
  color: #3f4a53;
  font-size: 14px;
  line-height: 1.54;
  font-weight: 500;
}

.news-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.news-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: auto 0 20px;
  color: #3f4a53;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.featured-news .news-meta {
  color: rgba(255, 255, 255, 0.84);
}

.news-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.news-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.news-card a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  gap: 7px;
  color: #a16c44;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: var(--text-sm);
  font-weight: 800;
}

.news-card a:hover {
  color: #a16c44;
  background: transparent;
}

.publications-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  max-width: 1420px;
  min-height: 112px;
  margin: 30px auto 0;
  padding: 20px 32px;
  border: 1px solid rgba(116, 92, 65, 0.2);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.52);
  box-shadow: 0 16px 34px rgba(66, 52, 36, 0.04);
}

.publications-icon {
  position: relative;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(118, 86, 55, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: inset 0 0 0 8px rgba(216, 198, 170, 0.18);
}

.publications-icon::before,
.publications-icon::after {
  content: "";
  position: absolute;
}

.publications-icon::before {
  left: 19px;
  top: 17px;
  width: 24px;
  height: 28px;
  border: 2px solid #27364a;
  border-radius: 2px;
  background:
    linear-gradient(#27364a, #27364a) 6px 7px / 12px 2px no-repeat,
    linear-gradient(#27364a, #27364a) 6px 13px / 12px 2px no-repeat,
    linear-gradient(#27364a, #27364a) 6px 19px / 12px 2px no-repeat;
}

.publications-icon::after {
  left: 13px;
  top: 21px;
  width: 9px;
  height: 22px;
  border: 2px solid #27364a;
  border-right: 0;
  border-radius: 2px 0 0 2px;
}

.publications-copy h3 {
  margin: 0 0 5px;
  color: #151514;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
}

.publications-line p {
  margin: 0;
  color: #151514;
  font-size: var(--text-sm);
  line-height: 1.35;
  font-weight: 500;
}

.publications-line a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 36px;
  margin-top: 0;
  padding: 0 19px;
  border-radius: 7px;
  color: #fff;
  background: #12372d;
  border: 0;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  font-size: var(--text-sm);
  font-weight: 800;
}

.publications-line a:hover {
  color: #fff;
  background: #0e2a22;
}

.events-section {
  position: relative;
  padding: 58px var(--page-x) 76px;
  background: #fff;
}

.events-section::before {
  content: none;
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1060px, calc(100% - 128px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(83, 96, 63, 0.24), transparent);
}

.events-heading {
  margin-bottom: 36px;
}

.events-heading__divider {
  position: relative;
  display: block;
  width: 74px;
  height: 9px;
  margin: 16px auto 0;
}

.events-heading__divider::before,
.events-heading__divider::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 28px;
  height: 1px;
  background: rgba(161, 108, 68, 0.58);
}

.events-heading__divider::before {
  left: 0;
}

.events-heading__divider::after {
  right: 0;
}

.events-heading__divider {
  background: radial-gradient(circle, #a16c44 0 3px, transparent 3.5px) center / 9px 9px no-repeat;
}

.events-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1540px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  width: min(100%, 280px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(102, 89, 68, 0.17);
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 18px 38px rgba(50, 44, 35, 0.11);
}

.event-image {
  position: relative;
  min-height: 188px;
  background-position: center;
  background-size: cover;
}

.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 36, 58, 0.02), rgba(23, 36, 58, 0.16));
}

.event-image time {
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  align-items: center;
  width: 58px;
  min-height: 62px;
  padding: 7px 8px;
  border-radius: 9px;
  color: #fff;
  background: #a16c44;
  box-shadow: 0 12px 24px rgba(40, 54, 35, 0.2);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.event-image time b {
  display: block;
  font-size: 26px;
  line-height: 0.9;
}

.event-image time span {
  display: block;
  margin-top: 3px;
}

.event-image-zero {
  background-image: url("/images/gallery/gallery-03.jpg");
  background-position: 46% 54%;
}

.event-image-one {
  background-image: url("/images/hero-baikal.png");
  background-position: 62% 64%;
}

.event-image-two {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=800&q=82");
}

.event-image-three {
  background-image: url("https://images.unsplash.com/photo-1514986888952-8cd320577b68?auto=format&fit=crop&w=800&q=82");
}

.event-image-four {
  background-image: url("/images/gallery/gallery-05.jpg");
  background-position: 50% 55%;
}

.event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 22px 28px;
}

.event-body h3 {
  min-height: 48px;
  margin: 0 0 14px;
  color: #151514;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 350;
}

.event-body p {
  min-height: 96px;
  margin: 0 0 18px;
  color: #3f4a53;
  font-size: 14px;
  line-height: 1.58;
  font-weight: 500;
}

.event-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  margin: auto 0 24px;
  color: #3f4a53;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.event-time span {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: url("/images/event-time-icon.svg") center / contain no-repeat;
}

.event-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a16c44;
  font-size: 13px;
  font-weight: 800;
}

.events-all {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 246px;
  min-height: 54px;
  margin: 32px auto 0;
  border: 1px solid #a16c44;
  border-radius: 999px;
  color: #000000;
  background: rgba(255, 250, 242, 0.56);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 800;
}

.events-all:hover {
  color: #fff;
  background: #a16c44;
}

.gallery-section {
  position: relative;
  padding: 22px var(--page-x) 78px;
  background: #fff;
}

.gallery-section::before,
.gallery-section::after {
  content: none;
}

.gallery-section::before {
  left: 9%;
  top: 170px;
  transform: rotate(-4deg);
}

.gallery-section::after {
  right: 12%;
  top: 86px;
  transform: rotate(8deg);
}

.gallery-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto 34px;
}

.gallery-title h2 {
  margin: 0;
  color: #000000;
  font-family: var(--font-serif);
  font-size: clamp(40px, 3.45vw, 52px);
  line-height: 1;
  font-weight: 600;
}

.gallery-title p {
  margin: 14px 0 0;
  color: #a16c44;
  font-size: var(--text-sm);
  font-weight: 600;
}

.gallery-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 50px;
  margin-top: 5px;
  background: url("/images/gallery-title-icon-clean.png") center / contain no-repeat;
}

.gallery-carousel {
  position: relative;
  max-width: 1220px;
  min-height: 430px;
  margin: 0 auto;
}

.gallery-track {
  position: relative;
  min-height: 430px;
  overflow: visible;
}

.gallery-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(510px, 42vw);
  min-height: 320px;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 38px rgba(32, 40, 38, 0.18);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    transform 360ms ease,
    opacity 260ms ease,
    width 360ms ease,
    min-height 360ms ease,
    filter 260ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 24, 36, 0.02) 36%, rgba(11, 24, 36, 0.72));
}

.gallery-card.is-active {
  z-index: 5;
  width: min(510px, 42vw);
  min-height: 430px;
  border-radius: 18px;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-card.is-prev,
.gallery-card.is-next {
  z-index: 3;
  width: min(430px, 35vw);
  min-height: 326px;
  opacity: 1;
  filter: saturate(0.92);
}

.gallery-card.is-prev {
  transform: translate(calc(-50% - 335px), calc(-50% + 22px)) scale(0.96);
}

.gallery-card.is-next {
  transform: translate(calc(-50% + 335px), calc(-50% + 22px)) scale(0.96);
}

.gallery-card.is-far-prev,
.gallery-card.is-far-next {
  z-index: 1;
  width: min(360px, 29vw);
  min-height: 270px;
  opacity: 0.72;
  filter: saturate(0.78);
}

.gallery-card.is-far-prev {
  transform: translate(calc(-50% - 595px), calc(-50% + 42px)) scale(0.9);
}

.gallery-card.is-far-next {
  transform: translate(calc(-50% + 595px), calc(-50% + 42px)) scale(0.9);
}

.gallery-caption {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 22px;
  bottom: 26px;
  color: #fff;
}

.gallery-caption h3 {
  margin: 0 0 9px;
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 600;
}

.gallery-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  font-weight: 500;
}

.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #a16c44;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 12px 26px rgba(80, 61, 42, 0.14);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gallery-arrow:hover {
  background: #fffaf2;
  box-shadow: 0 16px 30px rgba(80, 61, 42, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-left {
  left: 90px;
}

.gallery-arrow-right {
  right: 90px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9cbb8;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.gallery-dots button.active {
  width: 42px;
  background: #a16c44;
}

.booking-cta {
  position: relative;
  max-width: min(1440px, calc(100% - 44px));
  min-height: 185px;
  margin: 18px auto 26px;
  overflow: hidden;
  border: 1px solid rgba(96, 77, 54, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(10, 16, 18, 0.68) 0%, rgba(10, 16, 18, 0.46) 34%, rgba(10, 16, 18, 0.16) 66%, rgba(10, 16, 18, 0.04) 100%),
    url("/images/hero-baikal-sunset-hero.webp");
  background-position: center 58%;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(48, 39, 28, 0.1);
}

.booking-cta::after {
  content: none;
  position: absolute;
  left: 22px;
  bottom: -13px;
  width: 235px;
  height: 116px;
  background: url("/images/decor/pinecone-branch.png") center / contain no-repeat;
  opacity: 0.42;
  transform: rotate(-8deg);
  pointer-events: none;
}

.booking-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 28px clamp(42px, 6vw, 88px) 26px clamp(30px, 4.8vw, 70px);
}

.booking-content h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(30px, 2.65vw, 44px);
  line-height: 1.04;
  font-weight: 600;
}

.booking-ornament {
  display: none;
}

.booking-content .button-primary {
  color: #12372d;
  background: #fffaf2;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.booking-content .button-primary:hover {
  background: #ffffff;
}

.booking-modal {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(2px);
}

.booking-modal__dialog {
  position: relative;
  width: min(760px, calc(100vw - 48px));
  min-height: 610px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.96) 42%, rgba(255, 250, 242, 0.58) 67%, rgba(255, 250, 242, 0.16) 100%),
    url("/images/booking-modal-bg.png") right center / cover no-repeat,
    #fffaf2;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.booking-modal.is-open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: 28px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.booking-modal__close span {
  position: absolute;
  top: 18px;
  left: 6px;
  width: 27px;
  height: 1.5px;
  background: #151514;
  transform: rotate(45deg);
}

.booking-modal__close span:last-child {
  transform: rotate(-45deg);
}

.booking-modal__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 58px 64px 0;
}

.booking-modal__kicker {
  margin: 0 0 18px;
  color: #ad7048;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-modal h2 {
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 600;
}

.booking-modal__divider {
  position: relative;
  width: 88px;
  height: 1px;
  margin: 28px 0 26px;
  background: #b27a50;
}

.booking-modal__divider::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 45px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b27a50;
}

.booking-modal__text {
  max-width: 520px;
  margin: 0 0 28px;
  color: #151514;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.booking-modal__phone {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 34px;
  color: #050505;
  font-family: var(--font-sans);
  font-size: clamp(31px, 2.55vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 250, 242, 0.35);
}

.booking-modal__phone span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    url("/images/booking-phone-icon.png") center 48% / 145% auto no-repeat,
    rgba(255, 250, 242, 0.96);
  box-shadow: 0 10px 24px rgba(62, 48, 34, 0.16);
}

.booking-modal__actions {
  display: grid;
  grid-template-columns: repeat(3, 202px);
  justify-content: start;
  gap: 14px;
  margin-bottom: 34px;
}

.booking-modal__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 202px;
  min-height: 56px;
  padding: 0 14px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.booking-modal__call {
  color: #151514;
  border: 1px solid rgba(21, 21, 20, 0.62);
  background: rgba(255, 250, 242, 0.78);
}

.booking-modal__call::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("/images/booking-call-icon.png") center 48% / 185% auto no-repeat;
  filter: brightness(0);
}

.booking-modal__call:hover {
  background: rgba(255, 250, 242, 0.95);
}

.booking-modal__whatsapp,
.booking-modal__max,
.booking-modal__vk {
  color: #151514;
  border: 1px solid rgba(21, 21, 20, 0.62);
  background: rgba(255, 250, 242, 0.78);
}

.booking-modal__whatsapp span {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: url("/images/booking-telegram-icon.svg") center / contain no-repeat;
}

.booking-modal__max span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: url("/images/booking-max-icon.svg") center / contain no-repeat;
}

.booking-modal__vk span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: url("/images/booking-vk-icon.svg") center / contain no-repeat;
}

.booking-modal__whatsapp:hover,
.booking-modal__max:hover,
.booking-modal__vk:hover {
  background: rgba(255, 250, 242, 0.95);
}

.booking-modal__meta {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 30px;
  align-items: center;
  min-height: 82px;
  padding: 0 64px;
  border-top: 0;
  background: rgba(255, 250, 242, 0.72);
}

.booking-modal__meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #151514;
  font-size: 12px;
  font-weight: 600;
}

.booking-modal__meta span::before {
  content: "";
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.booking-modal__time::before {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-image: url("/images/booking-time-icon.png");
  background-size: 250% auto;
}

.booking-modal__location::before {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  background-image: url("/images/booking-location-icon.png");
  background-size: 150% auto;
}

.booking-modal__meta span + span {
  padding-left: 30px;
  border-left: 1px solid rgba(157, 119, 82, 0.22);
}

.footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 38px clamp(28px, 6vw, 96px) 28px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, #fff 0%, #fbf6ee 58%, #fff 100%);
  box-shadow: none;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -28px;
  width: 250px;
  height: 196px;
  background: url("/images/decor/pinecone-branch.png") center / contain no-repeat;
  opacity: 0.36;
  pointer-events: none;
}

.history-polaroid figcaption {
  margin-top: 14px;
  color: #4a3529;
  font-family: "Georgia", var(--font-serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.1;
  text-align: center;
}

.footer::before {
  left: 36px;
  transform: rotate(8deg);
}

.footer::after {
  right: 36px;
  transform: scaleX(-1) rotate(8deg);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 0;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.contacts-list {
  display: grid;
  gap: 10px;
  color: #3f4a53;
  font-style: normal;
}

.contacts-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.contacts-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(161, 108, 68, 0.3);
  border-radius: 50%;
  color: #a16c44;
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(96px, 1fr));
  gap: clamp(18px, 2.6vw, 36px);
  padding-top: 28px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav-title {
  margin: 0 0 4px;
  color: #151514;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  transition: none;
}

.footer-nav-title:hover {
  color: #151514;
}

.footer-nav a {
  color: #3f4a53;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  transition: none;
}

.footer-nav a:hover {
  color: #3f4a53;
}

.footer-nav .footer-nav-title,
.footer-nav .footer-nav-title:hover {
  color: #151514;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 1440px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(161, 108, 68, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: #3f4a53;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

/* Site-wide visual polish pass */

.history-preview,
.press-section,
.events-section,
.gallery-section {
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.press-section {
  padding-top: 64px;
  padding-bottom: 78px;
}

.events-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.gallery-section {
  padding-top: 28px;
  padding-bottom: 68px;
}

.section-heading h2,
.press-heading h2,
.gallery-title h2 {
  color: #151514;
  letter-spacing: 0;
}

.section-heading p,
.press-heading p,
.gallery-title p {
  color: #a16c44;
  letter-spacing: 0;
}

.press-heading {
  max-width: 1480px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom-color: rgba(161, 108, 68, 0.16);
}

.press-heading h2 {
  font-size: clamp(44px, 4vw, 62px);
}

.press-grid {
  grid-template-columns: minmax(470px, 0.9fr) minmax(640px, 1.16fr);
  max-width: 1480px;
  gap: 30px;
}

.featured-news {
  min-height: 492px;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(28, 34, 34, 0.12);
}

.featured-news::after {
  right: 26px;
  top: 30px;
  font-size: 150px;
  opacity: 0.7;
}

.featured-news h3 {
  font-size: clamp(34px, 3.1vw, 46px);
}

.news-list {
  gap: 0;
  border-top: 1px solid rgba(161, 108, 68, 0.16);
}

.news-card {
  min-height: 0;
  padding: 24px 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(161, 108, 68, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-list .news-card:nth-child(odd) {
  padding-right: 30px;
}

.news-list .news-card:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid rgba(161, 108, 68, 0.12);
}

.news-list .news-card-wide {
  padding-left: 0;
  padding-right: 0;
  border-left: 0;
}

.news-card h3 {
  margin: 14px 0 12px;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 700;
}

.news-card p {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: 13px;
}

.tag {
  min-height: 22px;
  padding: 0 10px;
  background: rgba(161, 108, 68, 0.1);
  color: #a16c44;
}

.publications-line {
  max-width: 1480px;
  min-height: 92px;
  margin-top: 24px;
  border-radius: 12px;
  background: #fffaf2;
  box-shadow: none;
}

.publications-copy h3 {
  font-size: 28px;
}

.events-heading {
  margin-bottom: 30px;
}

.events-heading .sprig {
  opacity: 0.74;
}

.events-grid {
  max-width: 1180px;
  gap: 22px;
}

.event-card {
  border-radius: 14px;
  background: #fffaf2;
  box-shadow: 0 14px 30px rgba(50, 44, 35, 0.09);
}

.event-image {
  min-height: 178px;
}

.event-body {
  padding: 23px 22px 25px;
}

.event-body h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.event-body p {
  min-height: 88px;
  font-size: 13px;
  line-height: 1.55;
}

.event-time {
  margin-bottom: 22px;
}

.events-all {
  margin-top: 28px;
  color: #151514;
  background: #fff;
}

.gallery-title {
  align-items: center;
  max-width: 1180px;
  margin-bottom: 20px;
}

.gallery-icon {
  width: 50px;
  height: 44px;
  margin-top: 0;
}

.gallery-carousel,
.gallery-track {
  min-height: 400px;
}

.gallery-card.is-active {
  min-height: 400px;
}

.gallery-card.is-prev,
.gallery-card.is-next {
  min-height: 306px;
}

.gallery-dots {
  margin-top: 16px;
}

.booking-cta {
  margin-top: 10px;
  margin-bottom: 34px;
  min-height: 185px;
}

.booking-content h2 {
  color: #fff;
}

.footer {
  padding-top: 42px;
  background: linear-gradient(180deg, #fff 0%, #fffaf2 48%, #fff 100%);
}

.footer-grid {
  grid-template-columns: minmax(230px, 300px) 1fr;
  gap: clamp(42px, 6vw, 96px);
}

.footer-nav {
  gap: clamp(22px, 3vw, 44px);
  padding-top: 28px;
}

.footer-bottom {
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .hero,
  .history-preview,
  .press-section,
  .events-section,
  .gallery-section,
  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .header {
    grid-template-columns: var(--site-logo-width-tablet) 1fr auto;
  }

  .sticky-header {
    grid-template-columns: var(--site-logo-width-tablet) 1fr auto;
    padding-left: 28px;
    padding-right: 28px;
  }

  .logo {
    width: var(--site-logo-width-tablet);
    height: var(--site-logo-height-tablet);
  }

  .hero .logo-image {
    width: 100%;
    height: 100%;
  }

  .sticky-header .logo {
    width: var(--site-logo-width-tablet);
    height: var(--site-logo-height-tablet);
  }

  .nav {
    display: none;
  }

  .services-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: calc(100% - 56px);
  }

  .service-item:nth-child(4) {
    border-left: 0;
  }

  .service-item:nth-child(n + 4) {
    border-top: 1px solid rgba(72, 58, 43, 0.18);
  }

  .section-grid {
    grid-template-columns: 0.9fr 1.1fr;
    width: calc(100% - 56px);
    padding: 44px 30px 34px;
  }

  .history-side-photos {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding-bottom: 0;
  }

  .history-polaroid {
    width: min(100%, 330px);
  }

  .history-polaroid-bottom {
    margin-left: 0;
  }

  .history-main-card {
    min-height: 500px;
  }

  .history-stamp {
    right: -28px;
    width: 96px;
    height: 96px;
  }

  .history-timeline {
    position: relative;
    margin-top: 34px;
  }

  .press-heading {
    max-width: 760px;
  }

  .press-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

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

  .news-list .news-card,
  .news-list .news-card:nth-child(odd),
  .news-list .news-card:nth-child(even),
  .news-list .news-card-wide {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .featured-news {
    min-height: 420px;
  }

  .events-grid {
    max-width: 760px;
  }

  .event-body h3,
  .event-body p {
    min-height: 0;
  }

  .gallery-carousel {
    max-width: 760px;
    min-height: 390px;
  }

  .gallery-track {
    min-height: 390px;
    overflow: hidden;
  }

  .gallery-card.is-active {
    width: min(480px, 62vw);
    min-height: 390px;
  }

  .gallery-card.is-prev {
    transform: translate(calc(-50% - 245px), calc(-50% + 20px)) scale(0.88);
  }

  .gallery-card.is-next {
    transform: translate(calc(-50% + 245px), calc(-50% + 20px)) scale(0.88);
  }

  .gallery-card.is-far-prev,
  .gallery-card.is-far-next {
    opacity: 0;
  }

  .booking-cta {
    max-width: calc(100% - 44px);
  }

  .booking-modal__dialog {
    width: min(720px, calc(100vw - 36px));
  }

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

  .footer-nav {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 780px;
    padding: 32px 20px 132px;
    background: url("/images/hero-baikal-sunset-hero.webp");
    background-position: center center;
    background-size: cover;
  }

  .header {
    grid-template-columns: var(--site-logo-width-mobile) auto;
    align-items: center;
    margin-left: 0;
  }

  .header-actions {
    justify-self: end;
    margin-left: auto;
    gap: 0;
  }

  .sticky-header {
    grid-template-columns: var(--site-logo-width-mobile) auto;
    min-height: 72px;
    padding: 10px 18px;
  }

  .sticky-header .header-actions {
    justify-self: end;
    margin-left: auto;
  }

  .sticky-header .logo {
    width: var(--site-logo-width-mobile);
    height: var(--site-logo-height-mobile);
    transform: none;
  }

  .logo {
    width: var(--site-logo-width-mobile);
    height: var(--site-logo-height-mobile);
  }

  .hero .logo-image {
    width: 100%;
    height: 100%;
  }

  .booking-button {
    display: none;
  }

  .menu-button {
    width: 36px;
    height: 40px;
    gap: 6px;
  }

  .menu-button span {
    height: 2.5px;
  }

  .hero-content {
    margin: 142px 0 0;
  }

  .hero h1 {
    max-width: 355px;
    font-size: 49px;
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 360px;
    margin: 28px 0 34px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-buttons {
    display: grid;
    width: min(100%, 368px);
    gap: 16px;
  }

  .hero-buttons .button {
    width: 100%;
    min-height: 74px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 0;
  }

  .button-booking-mobile {
    display: inline-flex !important;
    order: 1;
    color: #151514;
    background: #fffaf2;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  }

  .hero .button-primary {
    order: 2;
    color: #fffaf2;
    border: 1.5px solid rgba(255, 250, 242, 0.82);
    background: rgba(8, 9, 9, 0.14);
    box-shadow: none;
  }

  .hero .button-secondary {
    display: none;
  }

  .history-preview {
    margin-top: 0;
    padding: 0 18px 58px;
  }

  .services-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 40px);
    max-width: 430px;
    margin: -64px auto 0;
    gap: 0;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.98);
    box-shadow: 0 22px 48px rgba(44, 34, 24, 0.16);
    backdrop-filter: blur(12px);
  }

  .service-item {
    min-height: 178px;
    padding: 30px 18px 24px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 250, 242, 0.58);
    box-shadow: none;
  }

  .service-item:nth-child(even) {
    border-left: 1px solid rgba(72, 58, 43, 0.1);
  }

  .service-item:nth-child(n + 3) {
    border-top: 1px solid rgba(72, 58, 43, 0.1);
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .service-item strong {
    margin-top: 6px;
    font-size: 14px;
  }

  .service-item span:not(.service-icon) {
    color: #5c554b;
    font-size: 12px;
    line-height: 1.48;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 42px 20px 34px;
  }

  .section-grid.history-story {
    gap: 24px;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 54px 18px 58px;
  }

  .history-copy {
    position: relative;
    min-height: 0;
    padding: 0;
  }

  .section-kicker {
    margin-bottom: 18px;
    color: #a16c44;
    font-size: 13px;
    font-weight: 800;
  }

  .history-copy h2 {
    max-width: min(100%, 330px);
    margin-bottom: 30px;
    font-size: clamp(43px, 11.2vw, 52px);
    line-height: 1.08;
  }

  .history-stamp {
    top: 24px;
    right: -2px;
    width: 78px;
    height: 78px;
    opacity: 0.82;
  }

  .history-copy p:not(.section-kicker) {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.5;
  }

  .history-copy .button {
    width: min(332px, 100%);
    min-height: 72px;
    margin-top: 4px;
    font-size: 13px;
  }

  .history-boat-sketch {
    display: none;
  }

  .history-timeline {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    gap: 10px;
    max-width: 100%;
    margin-top: 28px;
    padding: 34px 12px 24px;
    border-radius: 14px;
    background: rgba(255, 250, 242, 0.86);
    box-shadow: 0 16px 38px rgba(66, 52, 36, 0.08);
  }

  .history-timeline::before {
    top: 24px;
    left: 30px;
    right: 30px;
  }

  .history-timeline div::before {
    top: -17px;
    left: 16px;
    width: 12px;
    height: 12px;
  }

  .history-timeline strong {
    font-size: 18px;
  }

  .history-timeline span {
    font-size: 12px;
    line-height: 1.16;
  }

  .history-main-card {
    width: 100%;
    min-height: 350px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(35, 30, 24, 0.18);
    transform: none;
  }

  .history-main-card figcaption {
    left: 20px;
    right: 20px;
    bottom: 26px;
    font-size: 20px;
    line-height: 1.05;
  }

  .history-side-photos {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    min-width: 0;
    padding-bottom: 0;
  }

  .history-photo {
    min-height: 150px;
  }

  .history-polaroid {
    min-width: 0;
    width: 100%;
    min-height: 236px;
    padding: 7px 7px 54px;
    border-radius: 9px;
    box-shadow: 0 16px 32px rgba(38, 31, 23, 0.1);
    transform: none;
  }

  .history-polaroid figcaption {
    left: 12px;
    right: 12px;
    bottom: 20px;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.15;
  }

  .history-tape {
    display: none;
  }

  .press-section {
    padding: 8px 18px 58px;
  }

  .press-section::before,
  .press-section::after {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 22px;
  }

  .sprig {
    display: none;
  }

  .press-heading {
    margin-bottom: 22px;
  }

  .press-grid {
    gap: 18px;
  }

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

  .featured-news {
    min-height: 390px;
    padding: 26px 24px;
  }

  .featured-news::after {
    right: 16px;
    top: 24px;
    font-size: 110px;
  }

  .featured-news a {
    left: 24px;
    bottom: 24px;
  }

  .news-card {
    padding: 22px 20px;
  }

  .news-card h3 {
    font-size: 17px;
  }

  .publications-line {
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 0;
    padding: 18px;
  }

  .publications-line a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .events-section {
    padding: 0 18px 58px;
  }

  .events-section::before {
    width: calc(100% - 36px);
  }

  .event-image {
    min-height: 190px;
  }

  .event-card {
    width: min(100%, 360px);
  }

  .event-body {
    padding: 22px 20px 24px;
  }

  .event-body h3 {
    font-size: 24px;
  }

  .events-all {
    width: min(246px, 100%);
    margin-top: 24px;
  }

  .gallery-section {
    padding: 20px 18px 64px;
  }

  .gallery-section::before,
  .gallery-section::after {
    display: none;
  }

  .gallery-title {
    margin-bottom: 24px;
  }

  .gallery-carousel {
    display: block;
    min-height: 360px;
  }

  .gallery-track {
    min-height: 360px;
    overflow: hidden;
  }

  .gallery-card {
    width: calc(100vw - 56px);
    min-height: 310px;
  }

  .gallery-card.is-active {
    width: calc(100vw - 56px);
    min-height: 360px;
  }

  .gallery-card.is-prev,
  .gallery-card.is-next,
  .gallery-card.is-far-prev,
  .gallery-card.is-far-next {
    opacity: 0;
    pointer-events: none;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
    font-size: 38px;
  }

  .gallery-arrow-left {
    left: -4px;
  }

  .gallery-arrow-right {
    right: -4px;
  }

  .booking-cta {
    max-width: calc(100% - 36px);
    min-height: 220px;
    margin-top: 18px;
    margin-bottom: 22px;
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(10, 16, 18, 0.72) 0%, rgba(10, 16, 18, 0.48) 48%, rgba(10, 16, 18, 0.18) 100%),
      url("/images/hero-baikal-sunset-hero.webp");
    background-position: center;
    background-size: cover;
  }

  .booking-cta::after {
    width: 160px;
    height: 86px;
    left: 8px;
    bottom: -18px;
    opacity: 0.32;
  }

  .booking-content {
    max-width: 420px;
    padding: 30px 24px 28px;
  }

  .booking-content h2 {
    font-size: 32px;
  }

  .booking-ornament {
    display: none;
  }

  .booking-modal {
    padding: 16px;
  }

  .booking-modal__dialog {
    width: calc(100vw - 28px);
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.99) 0%, rgba(255, 250, 242, 0.96) 62%, rgba(255, 250, 242, 0.7) 100%),
      url("/images/booking-modal-bg.png") right bottom / cover no-repeat,
      #fffaf2;
  }

  .booking-modal__close {
    top: 18px;
    right: 18px;
  }

  .booking-modal__content {
    max-width: none;
    padding: 42px 24px 112px;
  }

  .booking-modal h2 {
    font-size: 38px;
  }

  .booking-modal__text {
    max-width: none;
  }

  .booking-modal__phone {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: clamp(23px, 6.4vw, 27px);
    line-height: 1;
    white-space: nowrap;
  }

  .booking-modal__phone span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .booking-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-modal__actions a {
    width: 100%;
    min-height: 52px;
  }

  .booking-modal__meta {
    min-height: 88px;
    padding: 16px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .booking-modal__meta span + span {
    padding-left: 0;
    border-left: 0;
  }

  .footer {
    max-width: none;
    margin-bottom: 0;
    padding: 34px 22px 28px;
    border-radius: 0;
  }

  .footer::before,
  .footer::after {
    width: 150px;
    height: 120px;
    bottom: -30px;
  }

  .footer::before {
    left: -34px;
  }

  .footer::after {
    right: -34px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding-top: 0;
  }

  .footer-nav-title {
    font-size: var(--text-sm);
  }

  .footer-bottom {
    gap: 20px;
    margin-top: 28px;
  }

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

.history-page-header {
  position: sticky;
  z-index: 90;
  top: 0;
  display: grid;
  grid-template-columns: var(--site-logo-width) 1fr auto;
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  min-height: 82px;
  padding: 12px var(--page-x);
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(116, 92, 65, 0.18);
  box-shadow: 0 16px 38px rgba(36, 30, 22, 0.08);
  backdrop-filter: blur(14px);
}

.history-page-header .logo {
  width: var(--site-logo-width);
  height: var(--site-logo-height);
}

.history-page {
  overflow: hidden;
  background: #fff;
}

.history-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(390px, 34vw, 560px);
  padding: clamp(58px, 6vw, 94px) var(--page-x);
  color: #fff8ec;
  background: #151514;
}

.history-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 13, 0.74) 0%, rgba(10, 14, 13, 0.38) 48%, rgba(10, 14, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 14, 13, 0.06) 0%, rgba(10, 14, 13, 0.72) 100%),
    url("/images/history/gremyachinsk-viewpoint-hero.jpg") center / cover no-repeat;
}

.history-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.history-hero .section-kicker {
  color: rgba(255, 250, 242, 0.82);
}

.history-hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(48px, 4.6vw, 74px);
  line-height: 0.98;
  font-weight: 600;
}

.history-hero p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 600;
}

.history-intro,
.history-landscape,
.history-chronicle,
.history-center,
.viewpoint-section,
.district-section,
.history-poem {
  width: min(1480px, calc(100% - (var(--page-x) * 2)));
  margin: 0 auto;
}

.history-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1fr);
  gap: clamp(32px, 5vw, 86px);
  padding: 58px 0 46px;
}

.history-intro__lead p {
  margin: 0;
  color: #181715;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.08;
  font-weight: 600;
}

.history-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(161, 108, 68, 0.2);
  border-left: 1px solid rgba(161, 108, 68, 0.16);
}

.history-facts article {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid rgba(161, 108, 68, 0.16);
  border-bottom: 1px solid rgba(161, 108, 68, 0.2);
  background: #fffaf2;
}

.history-facts strong {
  display: block;
  margin-bottom: 18px;
  color: #a16c44;
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.history-facts span {
  color: #3f4a53;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.history-landscape,
.district-section {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 110px);
  padding: 58px 0;
  border-top: 1px solid rgba(161, 108, 68, 0.16);
}

.history-landscape h2,
.history-chronicle h2,
.history-center h2,
.viewpoint-section h2,
.district-section h2,
.history-poem h2 {
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.04;
  font-weight: 600;
}

.history-landscape > p,
.district-section > p {
  margin: 0;
  color: #2d3338;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 500;
}

.history-chronicle {
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) minmax(420px, 0.72fr);
  gap: clamp(34px, 5.5vw, 92px);
  align-items: center;
  padding: 76px 0;
}

.history-chronicle__timeline {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(161, 108, 68, 0.2);
}

.history-chronicle__timeline article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(161, 108, 68, 0.16);
}

.history-chronicle__timeline time {
  color: #a16c44;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.history-chronicle__timeline p,
.history-center p,
.viewpoint-section p {
  margin: 0;
  color: #2d3338;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}

.history-archive-card {
  position: relative;
  margin: 0;
  padding: 14px 14px 42px;
  background: #fffaf2;
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(38, 31, 23, 0.16);
  transform: rotate(-1deg);
}

.history-archive-card img,
.history-center__photo-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.history-archive-card img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.history-archive-card figcaption,
.history-center__photo-grid figcaption {
  margin-top: 16px;
  color: #4a3529;
  font-family: "Georgia", var(--font-serif);
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.history-center {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(460px, 0.82fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  padding: 72px 0;
}

.history-center__photo-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: end;
}

.history-center__photo-grid figure {
  margin: 0;
  padding: 10px;
  border-radius: 9px;
  background: #fffaf2;
  box-shadow: 0 18px 34px rgba(38, 31, 23, 0.12);
}

.history-center__photo-grid figure:last-child {
  transform: translateY(42px) rotate(2deg);
}

.history-center__photo-grid img {
  aspect-ratio: 1 / 1.08;
  border-radius: 5px;
}

.history-center article p + p {
  margin-top: 18px;
}

.viewpoint-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  min-height: 560px;
  margin-top: 58px;
  margin-bottom: 58px;
  overflow: hidden;
  border-radius: 14px;
  background: #151514;
}

.viewpoint-section__image {
  min-height: 560px;
  background: url("/images/history/gremyachinsk-viewpoint-hero.jpg") center / cover no-repeat;
}

.viewpoint-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.8vw, 70px);
  color: #fff8ec;
}

.viewpoint-section .section-kicker {
  color: rgba(255, 250, 242, 0.78);
}

.viewpoint-section h2 {
  color: #fff8ec;
}

.viewpoint-section p {
  margin-top: 26px;
  color: rgba(255, 250, 242, 0.84);
}

.viewpoint-section ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.viewpoint-section li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.viewpoint-section li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a16c44;
}

.history-poem {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 120px);
  padding: 70px 0 96px;
  border-top: 1px solid rgba(161, 108, 68, 0.16);
}

.history-poem__author {
  margin: 16px 0 0;
  color: #a16c44;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.history-poem blockquote {
  margin: 0;
  padding: 34px clamp(30px, 5vw, 64px);
  border-left: 4px solid #a16c44;
  background: #fffaf2;
}

.history-poem blockquote p {
  margin: 0;
  color: #181715;
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.55vw, 38px);
  line-height: 1.24;
  font-weight: 500;
}

.history-poem blockquote p + p {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .history-page-header {
    grid-template-columns: var(--site-logo-width-tablet) 1fr auto;
    padding-left: 28px;
    padding-right: 28px;
  }

  .history-page-header .logo {
    width: var(--site-logo-width-tablet);
    height: var(--site-logo-height-tablet);
  }

  .history-page-header .booking-button {
    display: inline-flex;
  }

  .history-intro,
  .history-landscape,
  .history-chronicle,
  .history-center,
  .district-section,
  .history-poem {
    width: calc(100% - 56px);
  }

  .history-intro,
  .history-chronicle,
  .history-center,
  .viewpoint-section,
  .history-landscape,
  .district-section,
  .history-poem {
    grid-template-columns: 1fr;
  }

  .history-intro {
    gap: 34px;
  }

  .viewpoint-section {
    width: calc(100% - 56px);
  }

  .history-center__photo-grid {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .history-page-header {
    grid-template-columns: var(--site-logo-width-mobile) auto;
    min-height: 86px;
    padding: 10px 18px;
  }

  .history-page-header .logo {
    width: var(--site-logo-width-mobile);
    height: var(--site-logo-height-mobile);
  }

  .history-page-header .booking-button {
    display: none;
  }

  .history-hero {
    min-height: 620px;
    padding: 92px 22px 58px;
  }

  .history-hero__image {
    background:
      linear-gradient(180deg, rgba(10, 14, 13, 0.2) 0%, rgba(10, 14, 13, 0.82) 100%),
      url("/images/history/gremyachinsk-viewpoint-hero.jpg") center / cover no-repeat;
  }

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

  .history-hero p:not(.section-kicker) {
    font-size: 15px;
  }

  .history-intro,
  .history-landscape,
  .history-chronicle,
  .history-center,
  .district-section,
  .history-poem,
  .viewpoint-section {
    width: calc(100% - 36px);
  }

  .history-intro {
    padding: 52px 0 34px;
  }

  .history-intro__lead p {
    font-size: 33px;
  }

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

  .history-facts article {
    min-height: 0;
    padding: 24px;
  }

  .history-facts strong {
    font-size: 36px;
  }

  .history-landscape,
  .history-chronicle,
  .history-center,
  .district-section,
  .history-poem {
    padding: 46px 0;
  }

  .history-landscape h2,
  .history-chronicle h2,
  .history-center h2,
  .viewpoint-section h2,
  .district-section h2,
  .history-poem h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .history-landscape > p,
  .district-section > p,
  .history-chronicle__timeline p,
  .history-center p,
  .viewpoint-section p {
    font-size: 15px;
  }

  .history-chronicle__timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .history-archive-card {
    transform: none;
  }

  .history-center__photo-grid {
    grid-template-columns: 1fr;
  }

  .history-center__photo-grid figure:last-child {
    transform: none;
  }

  .viewpoint-section {
    margin-top: 26px;
    margin-bottom: 34px;
  }

  .viewpoint-section__image {
    min-height: 320px;
  }

  .viewpoint-section__content {
    padding: 32px 24px 36px;
  }

  .history-poem blockquote {
    padding: 28px 24px;
  }
}

/* History page exhibition layout */

.history-page--reference {
  background: #fff;
}

.history-page-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 90px;
  background: rgba(255, 250, 242, 0.97);
}

.history-page-header .booking-button {
  background: #12372d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.history-page-header .booking-button:hover {
  background: #0e2a22;
}

.history-page-header .nav {
  justify-content: center;
  gap: clamp(22px, 2.2vw, 40px);
}

.history-page-header .nav a {
  position: relative;
  padding: 12px 0;
}

.history-page-header .nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: #a16c44;
}

.history-hero--reference {
  min-height: clamp(390px, 34vw, 540px);
  padding: clamp(48px, 5vw, 78px) var(--page-x) clamp(36px, 4vw, 58px);
  grid-template-columns: minmax(520px, 800px) minmax(280px, 360px);
  align-items: center;
  gap: clamp(22px, 3.4vw, 62px);
}

.history-hero--reference .history-hero__image {
  background:
    linear-gradient(90deg, rgba(9, 14, 13, 0.76) 0%, rgba(9, 14, 13, 0.34) 48%, rgba(9, 14, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 14, 13, 0.08) 0%, rgba(9, 14, 13, 0.42) 100%),
    url("/images/history/gremyachinsk-viewpoint-hero.jpg") center 46% / cover no-repeat;
}

.history-hero--reference .history-hero__content {
  align-self: center;
}

.history-hero--reference h1 {
  max-width: 680px;
  font-size: clamp(48px, 4.7vw, 74px);
  line-height: 0.98;
}

.history-hero--reference p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.55;
}

.history-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: rgba(255, 250, 242, 0.9);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.history-scroll-cue span {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 250, 242, 0.86);
  border-radius: 999px;
}

.history-scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  transform: translateX(-50%);
}

.history-hero-card {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(28px, 3.7vw, 70px);
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 8px;
  width: min(360px, calc(100vw - 56px));
  min-height: 176px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 14px;
  color: #fffaf2;
  background: rgba(55, 111, 143, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  transform: translateY(-34%);
}

.history-hero-card__icon {
  display: block;
  width: 62px;
  height: 62px;
  background: url("data:image/svg+xml,%3Csvg width='86' height='86' viewBox='0 0 86 86' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 62h56M20 68h46M28 56l15-30 15 30M21 56l10-19 10 19M50 56l8-15 9 15M23 62c5-4 11-4 16 0s11 4 16 0 11-4 16 0' stroke='%23fffaf2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M65 18v12M59 24h12M56 16l-3-3M74 34l-3-3M74 16l-3 3M56 34l-3 3' stroke='%23fffaf2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.history-hero-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.history-facts-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(700px, 1fr);
  gap: clamp(48px, 6vw, 96px);
  width: auto;
  max-width: none;
  margin: 0 var(--page-x);
  padding: 64px 0 70px;
  overflow: visible;
  background: #fff;
}

.history-facts-panel::after {
  content: none;
}

.history-facts-panel__intro {
  position: relative;
  z-index: 1;
}

.history-facts-panel__intro h2 {
  max-width: 420px;
  margin: 0 0 34px;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.08;
  font-weight: 600;
}

.history-facts-panel__intro h2 span {
  display: block;
}

.history-facts-panel__intro h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 34px;
  background: #a16c44;
}

.history-facts-panel__intro p:not(.section-kicker) {
  max-width: 360px;
  margin: 0;
  color: #3f4a53;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.history-facts-panel .history-facts {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  min-height: 590px;
  padding: 366px 26px 32px;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.2);
  border-radius: 10px;
  background: #fdfaf5 url("/images/history/facts-card-map.png") center top / 100% auto no-repeat;
  box-shadow: 0 18px 48px rgba(73, 52, 31, 0.08);
  margin-top: 0;
}

.history-facts-panel .history-facts article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 190px;
  padding: 22px 18px 20px;
  text-align: center;
  border: 1px solid rgba(161, 108, 68, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 34px rgba(73, 52, 31, 0.12);
}

.history-facts-panel .history-facts strong {
  margin: 12px 0 8px;
  color: #a16c44;
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 600;
}

.history-facts-panel .history-facts span:last-child {
  max-width: 145px;
  color: #2d3338;
  font-size: 11px;
  line-height: 1.38;
}

.history-fact-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 34px;
  overflow: hidden;
}

.history-fact-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.history-fact-icon--water img {
  width: 78px;
  height: 78px;
}

.history-fact-icon--heritage img {
  width: 52px;
  height: 52px;
}

.history-route-map {
  display: none;
}

.history-route-map::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 12%;
  top: 28px;
  border-top: 2px dashed rgba(161, 108, 68, 0.58);
  transform: rotate(-7deg);
}

.history-route-map__city,
.history-route-map__road,
.history-route-map__place {
  position: absolute;
}

.history-route-map__city {
  left: 0;
  top: 30px;
}

.history-route-map__road {
  left: 34%;
  top: 6px;
}

.history-route-map__place {
  right: 0;
  top: 30px;
  padding-left: 22px;
  color: #151514;
}

.history-route-map__place::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 16px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='24' viewBox='0 0 18 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 23S17 15 17 9A8 8 0 1 0 1 9c0 6 8 14 8 14Z' fill='%23151514'/%3E%3Ccircle cx='9' cy='9' r='3' fill='%23fffaf2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.history-landscape--reference {
  grid-template-columns: minmax(500px, 540px) minmax(0, 1fr);
  padding: 58px var(--page-x);
  width: 100%;
  max-width: none;
  border-top: 1px solid rgba(161, 108, 68, 0.14);
  border-bottom: 1px solid rgba(161, 108, 68, 0.14);
  background: #fff;
}

.history-landscape--reference > div:first-child,
.history-landscape--reference .history-landscape__copy {
  width: min(100%, 1480px);
}

.history-landscape--reference h2 {
  max-width: 540px;
  font-size: clamp(48px, 3vw, 58px);
  line-height: 1.08;
}

.history-landscape__copy {
  max-width: 830px;
}

.history-landscape__copy p {
  margin: 0;
  color: #2d3338;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}

.history-landscape__copy p + p {
  margin-top: 16px;
}

.history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.history-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(161, 108, 68, 0.28);
  border-radius: 6px;
  color: #5c554b;
  background: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.history-chronicle--reference {
  display: block;
  width: 100%;
  max-width: none;
  padding: 62px var(--page-x) 74px;
  overflow: hidden;
  border-top: 1px solid rgba(161, 108, 68, 0.12);
  border-bottom: 1px solid rgba(161, 108, 68, 0.12);
  border-radius: 0;
  background: #fff;
}

.history-chronicle__header {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(360px, 0.7fr) minmax(320px, 0.62fr);
  align-items: start;
  gap: clamp(34px, 5vw, 84px);
  width: min(1660px, 100%);
  margin: 0 auto 58px;
}

.history-chronicle__title-block .section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 28px -55px;
  color: #a16c44;
  letter-spacing: 0.18em;
}

.history-chronicle__title-block .section-kicker::before,
.history-chronicle__title-block .section-kicker::after {
  content: none;
}

.history-chronicle__title-block h2 {
  margin: 0 0 0 -55px;
  color: #151514;
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.history-chronicle__title-block h2::after {
  content: none;
}

.history-chronicle__lead {
  justify-self: end;
  max-width: 340px;
  margin: 68px 0 0;
  color: #2d3338;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 500;
  transform: translateX(70px);
}

.history-chronicle__sketch {
  min-height: 170px;
  margin-top: 24px;
  background: url("/images/history/chronicle-lake-sketch.png") center / contain no-repeat;
  opacity: 0.82;
}

.history-chronicle--reference .history-chronicle__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1660px, 100%);
  margin: 0 auto;
  border-top: 0;
}

.history-chronicle--reference .history-chronicle__timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: -26px;
  height: 1px;
  background: #a16c44;
  opacity: 0.74;
}

.history-chronicle--reference .history-chronicle__timeline article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 500px;
  padding: 28px 18px 88px;
  border: 1px solid rgba(161, 108, 68, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(73, 52, 31, 0.08);
}

.history-chronicle--reference .history-chronicle__timeline article:first-child {
  border-left: 1px solid rgba(161, 108, 68, 0.12);
}

.history-chronicle--reference .history-chronicle__timeline article::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -31px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #a16c44;
  box-shadow: 0 0 0 5px #fff;
}

.history-chronicle--reference .history-chronicle__timeline article::after {
  content: none;
}

.history-chronicle__number {
  position: absolute;
  left: 18px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid rgba(161, 108, 68, 0.18);
  border-radius: 50%;
  color: #a16c44;
  font-size: 16px;
  font-weight: 800;
}

.history-chronicle--reference time {
  min-height: 0;
  margin: 0 0 10px 58px;
  color: #a16c44;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
}

.history-chronicle--reference h3 {
  margin: 0 0 14px 58px;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(25px, 1.55vw, 31px);
  line-height: 1.04;
  font-weight: 700;
}

.history-chronicle--reference .history-chronicle__timeline p {
  min-height: 118px;
  margin: 0 0 22px 58px;
  color: #2d3338;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.history-chronicle--reference img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  margin-top: auto;
  border-radius: 8px;
  filter: grayscale(0.85) sepia(0.12) contrast(1.04);
}

.history-chronicle--reference .history-chronicle__timeline article:last-child img {
  filter: none;
}

.history-chronicle--reference small {
  display: block;
  min-height: 54px;
  margin-top: 16px;
  color: rgba(92, 85, 75, 0.72);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.history-center--reference {
  grid-template-columns: minmax(410px, 450px) minmax(420px, 600px) minmax(340px, 460px);
  align-items: start;
  width: 100%;
  max-width: none;
  padding: 62px var(--page-x) 72px;
  background: #fff;
  border-top: 1px solid rgba(161, 108, 68, 0.14);
  border-bottom: 1px solid rgba(161, 108, 68, 0.14);
}

.history-center--reference > div:first-child {
  align-self: start;
  padding-top: 0;
}

.history-center--reference .section-kicker {
  color: #a16c44;
}

.history-center--reference h2 {
  font-size: clamp(44px, 3.25vw, 58px);
}

.history-center--reference h2 span {
  display: block;
  white-space: nowrap;
}

.history-center--reference .history-center__photo-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.74fr);
  align-items: center;
}

.history-center--reference .history-center__photo-grid figure {
  padding: 8px;
  border-radius: 5px;
  transform: rotate(-3deg);
}

.history-center--reference .history-center__photo-grid figure:last-child {
  transform: translate(-22px, 34px) rotate(3deg);
}

.history-center--reference .history-center__photo-grid img {
  aspect-ratio: 1.5 / 1;
  filter: grayscale(0.85) sepia(0.12) contrast(1.05);
}

.history-center--reference article {
  align-self: start;
  padding-top: 0;
}

.history-center--reference .button {
  margin-top: 24px;
  background: var(--green);
}

.viewpoint-section--reference {
  grid-template-columns: minmax(360px, 0.68fr) minmax(0, 1fr);
  width: 100%;
  max-width: none;
  min-height: 420px;
  margin: 0;
  border-radius: 0;
  background: #244527;
}

.viewpoint-section--reference .viewpoint-section__content {
  justify-content: flex-start;
  padding: 38px clamp(28px, 3.6vw, 70px) 54px clamp(28px, 3.6vw, 70px);
  background:
    linear-gradient(90deg, rgba(36, 69, 39, 0.98), rgba(36, 69, 39, 0.94)),
    url("/images/decor/pinecone-branch.png") left bottom -58px / 230px auto no-repeat;
}

.viewpoint-section--reference .viewpoint-section__image {
  min-height: 420px;
  background: url("/images/history/gremyachinsk-viewpoint-hero.jpg") center / cover no-repeat;
}

.viewpoint-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.viewpoint-features span {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 54px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 250, 242, 0.36);
  color: rgba(255, 250, 242, 0.8);
  font-size: 12px;
  line-height: 1.38;
  font-weight: 700;
}

.viewpoint-features img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.92;
}

.history-poem--reference {
  position: relative;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
  gap: 46px;
  width: 100%;
  max-width: none;
  min-height: 520px;
  padding: 82px var(--page-x) 84px;
  border-top: 0;
  background:
    url("/images/history/poem-pines.png") left bottom / clamp(260px, 21vw, 390px) auto no-repeat,
    url("/images/history/poem-mountains.png") right 54% / clamp(640px, 54vw, 980px) auto no-repeat,
    #fff;
}

.history-poem--reference::before,
.history-poem--reference::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.history-poem--reference::after {
  content: none;
}

.history-poem--reference::before {
  content: none;
}

.history-page--reference + .footer {
  margin-top: 52px;
  border-top: 1px solid rgba(161, 108, 68, 0.16);
  box-shadow: inset 0 18px 30px rgba(161, 108, 68, 0.035);
}

.history-poem__quote {
  position: relative;
  z-index: 1;
  justify-self: end;
  color: #a16c44;
  font-family: Georgia, serif;
  font-size: 128px;
  line-height: 1;
  opacity: 0.86;
}

.history-poem--reference blockquote {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding: 0;
  border: 0;
  background: transparent;
}

.history-poem--reference blockquote::before {
  content: none;
}

.history-poem--reference blockquote p {
  font-size: clamp(30px, 2.3vw, 44px);
  line-height: 1.35;
}

.history-poem--reference .history-poem__author {
  position: absolute;
  right: var(--page-x);
  bottom: 88px;
  z-index: 1;
  margin: 0;
  text-align: right;
  letter-spacing: 0.24em;
}

.history-footer {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr minmax(240px, 360px);
  gap: clamp(34px, 5vw, 92px);
  padding: 34px var(--page-x) 40px;
  color: rgba(255, 250, 242, 0.78);
  background: #18191a;
}

.history-footer .logo {
  width: var(--site-logo-width);
  height: var(--site-logo-height);
  margin-bottom: 18px;
}

.history-footer .logo-image {
  background: url("/images/logo-moe-pribaikalie-vector123-no-bg.png") center / contain no-repeat;
  mask: none;
  -webkit-mask: none;
}

.history-footer p,
.history-footer address {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  font-style: normal;
  font-weight: 600;
}

.history-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-content: start;
}

.history-footer nav a {
  color: rgba(255, 250, 242, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.history-footer address {
  display: grid;
  gap: 8px;
}

@media (max-width: 1100px) {
  .history-hero--reference,
  .history-facts-panel,
  .history-center--reference,
  .history-poem--reference,
  .history-footer {
    grid-template-columns: 1fr;
  }

  .history-hero-card {
    width: min(360px, calc(100vw - 56px));
    right: 28px;
  }

  .history-facts-panel {
    width: calc(100% - 56px);
  }

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

  .history-route-map {
    display: none;
  }

  .history-chronicle--reference .history-chronicle__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-center--reference {
    padding-left: 28px;
    padding-right: 28px;
  }

  .viewpoint-section--reference {
    grid-template-columns: 1fr;
  }

  .viewpoint-section--reference .viewpoint-section__content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .history-poem--reference {
    padding-left: 28px;
    padding-right: 28px;
  }

  .history-poem--reference .history-poem__author {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .history-page-header {
    min-height: 72px;
  }

  .history-hero--reference {
    min-height: 500px;
    padding: 68px 22px 36px;
  }

  .history-hero--reference h1 {
    font-size: clamp(40px, 11vw, 52px);
    line-height: 0.98;
  }

  .history-hero-card {
    grid-template-columns: 58px 1fr;
    min-height: 126px;
    padding: 20px;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

  .history-hero-card__icon {
    width: 56px;
    height: 56px;
  }

  .history-facts-panel {
    width: calc(100% - 36px);
    padding: 42px 0 46px;
  }

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

  .history-facts-panel .history-facts article {
    min-height: 0;
  }

  .history-landscape--reference {
    padding: 46px 18px;
    background-size: 190px auto;
  }

  .history-tags span {
    width: 100%;
  }

  .history-section-title {
    gap: 14px;
  }

  .history-section-title h2 {
    font-size: 16px;
    text-align: center;
  }

  .history-chronicle--reference {
    width: calc(100% - 36px);
  }

  .history-chronicle--reference .history-chronicle__timeline {
    grid-template-columns: 1fr;
  }

  .history-chronicle--reference .history-chronicle__timeline article {
    min-height: 0;
    padding: 30px 0 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(161, 108, 68, 0.18);
  }

  .history-center--reference {
    padding: 46px 18px;
  }

  .history-center--reference .history-center__photo-grid {
    grid-template-columns: 1fr;
  }

  .history-center--reference .history-center__photo-grid figure,
  .history-center--reference .history-center__photo-grid figure:last-child {
    transform: none;
  }

  .viewpoint-features {
    grid-template-columns: 1fr;
  }

  .history-poem--reference {
    grid-template-columns: 1fr;
    padding: 34px 22px 76px;
  }

  .history-poem__quote {
    font-size: 72px;
    line-height: 0.7;
  }

  .history-footer {
    grid-template-columns: 1fr;
    padding: 32px 22px;
  }
}

/* Match the history header to the main page header rhythm */

.history-page-header {
  display: grid;
  grid-template-columns: var(--site-logo-width) 1fr auto;
  align-items: center;
  gap: clamp(46px, 4.6vw, 72px);
  min-height: 100px;
  padding: 12px var(--page-x);
}

.history-page-header .logo {
  width: var(--site-logo-width);
  height: var(--site-logo-height);
}

.history-page-header .nav {
  justify-content: flex-end;
  gap: clamp(22px, 2vw, 38px);
}

.history-page-header .header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.history-page-header .menu-button {
  display: inline-flex;
}

.history-page-header .menu-button span {
  background: #151514;
}

@media (max-width: 1360px) {
  .history-page-header {
    grid-template-columns: var(--site-logo-width) auto;
    gap: 32px;
  }

  .history-page-header .nav {
    display: none;
  }

  .history-page-header .header-actions {
    justify-self: end;
    margin-left: auto;
  }
}

@media (max-width: 1100px) {
  .history-page-header {
    grid-template-columns: var(--site-logo-width-tablet) 1fr auto;
    min-height: 86px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .history-page-header .logo {
    width: var(--site-logo-width-tablet);
    height: var(--site-logo-height-tablet);
  }

  .history-page-header .nav {
    display: none;
  }

  .history-page-header .booking-button {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .history-page-header {
    grid-template-columns: var(--site-logo-width-mobile) auto;
    min-height: 86px;
    padding: 10px 18px;
  }

  .history-page-header .logo {
    width: var(--site-logo-width-mobile);
    height: var(--site-logo-height-mobile);
  }

  .history-page-header .header-actions {
    justify-self: end;
    gap: 0;
  }

  .history-page-header .booking-button {
    display: none;
  }
}

.services-page {
  overflow: hidden;
  background: #fff;
}

.services-page .button-primary {
  color: #fff;
  background: #12372d;
  box-shadow: 0 18px 34px rgba(21, 21, 20, 0.16);
}

.services-page .button-secondary {
  color: #151514;
  border-color: rgba(161, 108, 68, 0.32);
  background: #fff;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(540px, 1fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 108px);
  min-height: 660px;
  padding: 150px var(--page-x) 86px;
  border-bottom: 1px solid rgba(161, 108, 68, 0.13);
  background:
    radial-gradient(circle at 84% 18%, rgba(161, 108, 68, 0.07), transparent 34%),
    #fff;
}

.services-hero__content {
  align-self: center;
}

.services-hero h1,
.services-section-heading h2,
.services-process h2,
.services-cta h2 {
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.services-hero h1 {
  max-width: 640px;
  font-size: clamp(58px, 5.4vw, 104px);
  line-height: 0.92;
}

.services-hero__content > p:not(.section-kicker) {
  max-width: 570px;
  margin: 28px 0 0;
  color: #28313a;
  font-size: 18px;
  line-height: 1.68;
  font-weight: 500;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.placeholder-photo {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(161, 108, 68, 0.08) 0 25%, transparent 25% 50%, rgba(161, 108, 68, 0.08) 50% 75%, transparent 75%) 0 0 / 34px 34px,
    #fffaf5;
  color: rgba(92, 85, 75, 0.7);
  text-align: center;
}

.placeholder-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 6px;
}

.placeholder-photo span {
  position: relative;
  z-index: 1;
  padding: 10px 18px;
  border: 1px solid rgba(161, 108, 68, 0.22);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-hero__photo {
  min-height: 470px;
}

.services-overview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(1680px, calc(100% - (var(--page-x) * 2)));
  margin: -46px auto 0;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: 0 24px 54px rgba(73, 52, 31, 0.08);
}

.services-overview__item {
  display: grid;
  min-height: 96px;
  place-items: center;
  color: #151514;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.services-overview__item + .services-overview__item {
  border-left: 1px solid rgba(161, 108, 68, 0.18);
}

.services-overview__item span {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.services-overview__item:hover {
  color: #a16c44;
  background: #fff;
}

.stay-section {
  padding: 104px var(--page-x) 36px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.stay-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(560px, 1fr);
  gap: clamp(36px, 6vw, 110px);
  align-items: end;
  width: min(1480px, 100%);
  margin: 0 auto 42px;
}

.stay-intro h2,
.stay-summary h3 {
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.stay-intro h2 {
  max-width: 720px;
  font-size: clamp(52px, 5vw, 92px);
  line-height: 0.94;
}

.stay-intro > p {
  max-width: 760px;
  margin: 0;
  color: #28313a;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.stay-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1480px, 100%);
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.stay-stats article {
  min-height: 150px;
  padding: 28px;
  background: rgba(255, 250, 245, 0.76);
}

.stay-stats article + article {
  border-left: 1px solid rgba(161, 108, 68, 0.18);
}

.stay-stats strong {
  display: block;
  color: #a16c44;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 70px);
  line-height: 0.95;
  font-weight: 600;
}

.stay-stats span {
  display: block;
  max-width: 210px;
  margin-top: 14px;
  color: #5c554b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
}

.stay-buildings {
  display: grid;
  gap: 28px;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.stay-building-card {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(73, 52, 31, 0.06);
}

.stay-building-card:nth-child(even) {
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 0.86fr);
}

.stay-building-card:nth-child(even) .stay-building-card__media {
  order: 2;
}

.stay-building-card__media {
  min-height: 520px;
  border: 0;
  border-radius: 0;
}

.stay-building-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4.8vw, 78px);
}

.stay-building-card h3 {
  max-width: 650px;
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.6vw, 66px);
  line-height: 1;
  font-weight: 500;
}

.stay-building-card__body > p:not(.section-kicker):not(.service-card__number) {
  max-width: 700px;
  margin: 22px 0 0;
  color: #28313a;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.stay-building-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.stay-building-card li {
  position: relative;
  padding-left: 24px;
  color: #3f4a53;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.stay-building-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a16c44;
}

.stay-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1480px, 100%);
  margin: 32px auto 0;
  padding: 34px;
  border: 1px solid rgba(161, 108, 68, 0.2);
  border-radius: 8px;
  background: #151514;
  color: #fffaf2;
}

.stay-summary .section-kicker {
  color: rgba(255, 250, 242, 0.72);
}

.stay-summary h3 {
  max-width: 760px;
  color: #fffaf2;
  font-size: clamp(30px, 2.8vw, 48px);
  line-height: 1.05;
}

.stay-summary .button-primary {
  color: #151514;
  background: #fffaf2;
  box-shadow: none;
}

.bath-section {
  padding: 72px var(--page-x) 42px;
  background: #fff;
}

.bath-panel {
  display: grid;
  grid-template-columns: minmax(440px, 0.9fr) minmax(520px, 1fr);
  gap: 0;
  width: min(1480px, 100%);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #151514;
  color: #fffaf2;
}

.bath-panel__media {
  min-height: 560px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.08) 0 25%, transparent 25% 50%, rgba(255, 250, 242, 0.08) 50% 75%, transparent 75%) 0 0 / 34px 34px,
    #26211c;
  color: rgba(255, 250, 242, 0.7);
}

.bath-panel__media::before {
  border-color: rgba(255, 250, 242, 0.18);
}

.bath-panel__media span {
  border-color: rgba(255, 250, 242, 0.22);
  background: rgba(21, 21, 20, 0.44);
}

.bath-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 82px);
}

.bath-panel .section-kicker {
  color: rgba(255, 250, 242, 0.72);
}

.bath-panel h2,
.bath-features h3,
.bath-includes h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.bath-panel h2 {
  max-width: 720px;
  color: #fffaf2;
  font-size: clamp(48px, 4.7vw, 86px);
  line-height: 0.94;
}

.bath-panel__content > p {
  max-width: 680px;
  margin: 26px 0 32px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
}

.bath-panel .button-primary {
  width: fit-content;
  color: #151514;
  background: #fffaf2;
  box-shadow: none;
}

.bath-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1480px, 100%);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background: #fffaf5;
}

.bath-features article {
  min-height: 250px;
  padding: 32px;
  background: rgba(255, 250, 245, 0.92);
}

.bath-features article + article {
  border-left: 1px solid rgba(161, 108, 68, 0.18);
}

.bath-features h3 {
  color: #151514;
  font-size: clamp(30px, 2.7vw, 46px);
  line-height: 1.02;
}

.bath-features p {
  margin: 18px 0 0;
  color: #3f4a53;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.bath-includes {
  display: grid;
  grid-template-columns: minmax(360px, 0.56fr) minmax(520px, 1fr);
  gap: clamp(32px, 5vw, 90px);
  width: min(1480px, 100%);
  margin: 28px auto 0;
  padding: 40px;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background: #fff;
}

.bath-includes h3 {
  max-width: 620px;
  color: #151514;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1;
}

.bath-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bath-includes li {
  position: relative;
  min-height: 74px;
  padding: 20px 20px 20px 42px;
  border: 1px solid rgba(161, 108, 68, 0.16);
  border-radius: 6px;
  color: #3f4a53;
  background: #fffaf5;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.bath-includes li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a16c44;
}

.food-section {
  padding: 76px var(--page-x) 48px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.food-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(560px, 1fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: end;
  width: min(1480px, 100%);
  margin: 0 auto 36px;
}

.food-intro h2 {
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.food-intro h2 {
  max-width: 720px;
  font-size: clamp(50px, 4.8vw, 88px);
  line-height: 0.94;
}

.food-intro > p {
  max-width: 760px;
  margin: 0;
  color: #28313a;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
}

.food-menu-image {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: clamp(12px, 1.6vw, 22px);
  border: 1px solid rgba(161, 108, 68, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(73, 52, 31, 0.08);
}

.food-menu-image a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.food-menu-image img {
  display: block;
  width: 100%;
  height: auto;
}

.food-menu-image figcaption {
  margin-top: 14px;
  color: #6f665c;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.food-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1480px, 100%);
  margin: 28px auto 0;
  padding: 30px;
  border-radius: 8px;
  background: #151514;
}

.food-note p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.food-note .button-primary {
  color: #151514;
  background: #fffaf2;
  box-shadow: none;
}

.services-list {
  padding: 96px var(--page-x) 72px;
}

.services-section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(540px, 1fr);
  gap: clamp(32px, 6vw, 110px);
  align-items: end;
  margin-bottom: 42px;
}

.services-section-heading h2 {
  max-width: 760px;
  font-size: clamp(46px, 4.2vw, 76px);
  line-height: 0.98;
}

.services-cards {
  display: grid;
  gap: 28px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(440px, 1fr);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background: #fff;
}

.service-card:nth-child(even) {
  grid-template-columns: minmax(440px, 1fr) minmax(380px, 0.92fr);
}

.service-card:nth-child(even) .service-card__photo {
  order: 2;
}

.service-card__photo {
  min-height: 410px;
  border: 0;
  border-radius: 0;
}

.service-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 70px);
}

.service-card__number {
  margin: 0 0 22px;
  color: rgba(161, 108, 68, 0.54);
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}

.service-card h3 {
  max-width: 560px;
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.02;
  font-weight: 500;
}

.service-card__body > p:not(.section-kicker):not(.service-card__number) {
  max-width: 610px;
  margin: 22px 0 0;
  color: #28313a;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-card__tags span {
  padding: 9px 13px;
  border: 1px solid rgba(161, 108, 68, 0.24);
  border-radius: 6px;
  color: #5c554b;
  font-size: 12px;
  font-weight: 750;
}

.services-process {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(620px, 1fr);
  gap: clamp(38px, 6vw, 110px);
  padding: 78px var(--page-x);
  border-top: 1px solid rgba(161, 108, 68, 0.12);
  border-bottom: 1px solid rgba(161, 108, 68, 0.12);
  background: #fff;
}

.services-process h2,
.services-cta h2 {
  max-width: 560px;
  font-size: clamp(42px, 3.8vw, 70px);
  line-height: 1;
}

.services-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.services-process li {
  padding: 32px;
  background: #fffaf5;
}

.services-process li + li {
  border-left: 1px solid rgba(161, 108, 68, 0.18);
}

.services-process li span {
  display: block;
  margin-bottom: 22px;
  color: #a16c44;
  font-family: var(--font-serif);
  font-size: 34px;
}

.services-process strong {
  display: block;
  color: #151514;
  font-size: 17px;
  font-weight: 850;
}

.services-process li p {
  margin: 12px 0 0;
  color: #5c554b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 550;
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 96px);
  padding: 86px var(--page-x) 104px;
  background: #fff;
}

.services-cta__photo {
  min-height: 430px;
}

.services-cta p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #28313a;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .services-hero,
  .stay-intro,
  .stay-building-card,
  .stay-building-card:nth-child(even),
  .bath-panel,
  .bath-includes,
  .food-intro,
  .services-section-heading,
  .services-process,
  .services-cta,
  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .stay-building-card:nth-child(even) .stay-building-card__media {
    order: 0;
  }

  .service-card:nth-child(even) .service-card__photo {
    order: 0;
  }

  .services-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-overview__item:nth-child(4) {
    border-left: 0;
  }

  .stay-stats {
    grid-template-columns: 1fr;
  }

  .stay-stats article + article {
    border-top: 1px solid rgba(161, 108, 68, 0.18);
    border-left: 0;
  }

  .stay-summary {
    grid-template-columns: 1fr;
  }

  .bath-features {
    grid-template-columns: 1fr;
  }

  .bath-features article + article {
    border-top: 1px solid rgba(161, 108, 68, 0.18);
    border-left: 0;
  }

  .food-note {
    grid-template-columns: 1fr;
  }

  .services-process ol {
    grid-template-columns: 1fr;
  }

  .services-process li + li {
    border-left: 0;
    border-top: 1px solid rgba(161, 108, 68, 0.18);
  }
}

@media (max-width: 760px) {
  .services-hero {
    min-height: auto;
    padding: 112px 22px 60px;
  }

  .services-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .services-overview {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 44px);
  }

  .services-overview__item {
    min-height: 74px;
  }

  .stay-section {
    padding: 72px 22px 26px;
  }

  .stay-intro h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .stay-intro > p {
    font-size: 16px;
  }

  .stay-stats article {
    min-height: 118px;
    padding: 24px;
  }

  .stay-building-card__body {
    padding: 30px 22px 34px;
  }

  .stay-building-card__media {
    min-height: 280px;
  }

  .stay-summary {
    padding: 28px 22px;
  }

  .bath-section {
    padding: 54px 22px 26px;
  }

  .bath-panel {
    min-height: 0;
  }

  .bath-panel__media {
    min-height: 280px;
  }

  .bath-panel__content {
    padding: 34px 22px 38px;
  }

  .bath-panel h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .bath-features article {
    min-height: 0;
    padding: 28px 22px;
  }

  .bath-includes {
    padding: 28px 22px;
  }

  .bath-includes ul {
    grid-template-columns: 1fr;
  }

  .food-section {
    padding: 58px 22px 30px;
  }

  .food-intro h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .food-intro > p {
    font-size: 16px;
  }

  .food-menu-image,
  .food-note {
    padding: 24px 22px;
  }

  .food-menu-image figcaption {
    text-align: left;
  }

  .services-list,
  .services-process,
  .services-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .service-card__body {
    padding: 28px 22px 34px;
  }

  .service-card__photo,
  .services-hero__photo,
  .services-cta__photo {
    min-height: 280px;
  }
}

.press-page {
  --press-content-x: clamp(70px, 10.6vw, 202px);
  background: #fff;
  color: #101a16;
}

.press-page-hero {
  position: relative;
  display: grid;
  min-height: clamp(330px, 23vw, 430px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 25%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.08) 62%),
    url("/images/press/press-hero-baikal.png") right center / cover no-repeat;
}

.press-page-hero__content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - (var(--page-x) * 2)));
  align-self: center;
  margin-left: var(--press-content-x);
  padding: clamp(46px, 5vw, 76px) 0;
}

.press-page-hero__content h1,
.press-feature__body h2,
.press-materials__heading h2,
.press-note h2 {
  margin: 0;
  color: #12372d;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.press-page-hero__content h1 {
  max-width: 520px;
  font-size: clamp(50px, 4.9vw, 82px);
  line-height: 0.96;
}

.press-page-hero__content > p:not(.section-kicker) {
  max-width: 520px;
  margin: 18px 0 0;
  color: #28313a;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  font-weight: 500;
}

.press-page-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 26px;
  padding: 0 22px;
  border-radius: 7px;
  background: #12372d;
  box-shadow: 0 16px 34px rgba(18, 55, 45, 0.18);
  color: #fffaf2;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.press-page-hero__media {
  display: none;
}

.press-feature__photo img,
.press-material-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.press-materials {
  padding: clamp(44px, 4.6vw, 72px) var(--press-content-x) clamp(56px, 6vw, 88px);
  background: #fff;
}

.press-materials__heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 0.88fr);
  gap: clamp(32px, 6vw, 110px);
  align-items: end;
  max-width: 1500px;
  margin: 0 auto 28px;
}

.press-materials__heading h2 {
  max-width: 660px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.04;
}

.press-materials__heading > p {
  max-width: 650px;
  margin: 0;
  color: #34424b;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.press-feature__card {
  display: grid;
  grid-template-columns: minmax(460px, 0.98fr) minmax(440px, 1fr);
  max-width: 1500px;
  min-height: 330px;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 1px solid rgba(90, 66, 45, 0.15);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(52, 38, 24, 0.1);
}

.press-feature__photo,
.press-material-card__photo {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.press-feature__photo {
  min-height: 330px;
}

.press-feature__photo:hover img,
.press-material-card__photo:hover img {
  transform: scale(1.035);
}

.press-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.4vw, 48px);
}

.press-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.press-card-meta span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(161, 108, 68, 0.2);
  border-radius: 999px;
  color: #9a6238;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.press-feature__body h2 {
  max-width: 600px;
  margin-top: 18px;
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: 1.08;
}

.press-feature__body > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #34424b;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 500;
}

.press-feature__body a,
.press-material-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px;
  color: #12372d;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.press-feature__body a:hover,
.press-material-card a:hover {
  color: #a16c44;
}

.press-materials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
}

.press-material-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(90, 66, 45, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(52, 38, 24, 0.08);
}

.press-material-card__photo {
  height: 170px;
  border-bottom: 1px solid rgba(90, 66, 45, 0.1);
}

.press-material-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.press-material-card h3 {
  margin: 14px 0 12px;
  color: #101a16;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.16;
  font-weight: 900;
}

.press-material-card p {
  margin: 0;
  color: #34424b;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.press-material-card a {
  margin-top: auto;
  padding-top: 20px;
}

.press-note {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto clamp(70px, 7vw, 112px);
  padding: clamp(34px, 4vw, 54px);
  border-radius: 8px;
  background: #12372d;
  box-shadow: 0 22px 54px rgba(18, 55, 45, 0.14);
  color: #fffaf2;
}

.press-note .section-kicker {
  color: #d9a06b;
}

.press-note h2 {
  max-width: 620px;
  color: #fffaf2;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.03;
}

.press-note > p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: 17px;
  line-height: 1.66;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .press-page-hero {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 255, 255, 0.45) 76%),
      url("/images/press/press-hero-baikal.png") right center / cover no-repeat;
  }

  .press-feature__card,
  .press-materials__heading,
  .press-note {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .press-page-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
      url("/images/press/press-hero-baikal.png") center / cover no-repeat;
  }

  .press-page-hero__content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding: 58px 0;
  }

  .press-page-hero__content h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .press-materials {
    padding: 44px 22px 58px;
  }

  .press-feature__photo {
    min-height: 260px;
  }

  .press-feature__body,
  .press-material-card__body {
    padding: 26px 22px 30px;
  }

  .press-materials__grid {
    grid-template-columns: 1fr;
  }

  .press-note {
    margin: 0 22px 62px;
    padding: 30px 22px;
  }
}

.events-page {
  background: #f7f0e6;
}

.events-page-hero {
  display: block;
  min-height: clamp(300px, 20vw, 390px);
  margin: 0;
  padding: clamp(40px, 3.8vw, 60px) var(--page-x);
  background:
    linear-gradient(90deg, #f7f0e6 0%, rgba(247, 240, 230, 0.98) 27%, rgba(247, 240, 230, 0.78) 43%, rgba(247, 240, 230, 0.26) 57%, rgba(247, 240, 230, 0) 74%),
    url("/images/events/events-hero-baikal-evening.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(161, 108, 68, 0.14);
}

.events-page-hero__copy {
  max-width: 620px;
  margin: 0;
  padding-right: 0;
}

.events-page-hero h1,
.events-feature__body h2,
.events-schedule__heading h2,
.events-programs h2 {
  margin: 0;
  color: #151514;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.events-page-hero h1 {
  max-width: 700px;
  margin-top: 14px;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1;
  color: #12372d;
}

.events-page-hero h1::after {
  content: "";
  display: block;
  width: 260px;
  height: 2px;
  margin: 18px 0 0;
  background: #a16c44;
}

.events-page-hero__copy > p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #28313a;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.events-page-hero__copy > .button {
  display: none;
}

.events-page-hero__media {
  display: none;
}

.events-page-hero__media::after {
  content: none;
}

.events-feature {
  padding: 26px var(--page-x) 72px;
}

.events-feature__card {
  display: grid;
  grid-template-columns: minmax(560px, 1.04fr) minmax(420px, 0.78fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(73, 52, 31, 0.08);
}

.events-feature__image,
.events-schedule-card__image {
  position: relative;
  background-position: center;
  background-size: cover;
}

.events-feature__image::after,
.events-schedule-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 36, 58, 0.04), rgba(23, 36, 58, 0.2));
}

.events-feature__image time,
.events-schedule-card__image time {
  position: absolute;
  z-index: 1;
  left: 22px;
  top: 22px;
  display: grid;
  width: 70px;
  min-height: 76px;
  place-items: center;
  padding: 9px;
  border-radius: 9px;
  color: #fff;
  background: #a16c44;
  box-shadow: 0 12px 24px rgba(40, 54, 35, 0.2);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.events-feature__image time b,
.events-schedule-card__image time b {
  display: block;
  font-family: var(--font-sans);
  font-size: 28px;
  line-height: 1;
  font-weight: 850;
}

.events-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 78px);
}

.events-feature__body h2 {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(44px, 4.3vw, 78px);
  line-height: 0.98;
}

.events-feature__body > p {
  max-width: 590px;
  margin: 24px 0 24px;
  color: #28313a;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 500;
}

.events-schedule {
  padding: 26px var(--page-x) 88px;
  border-top: 0;
  background: #fffaf2;
}

.events-page > .events-schedule:first-child {
  padding-top: clamp(48px, 4vw, 64px);
  border-top: 0;
}

.events-schedule__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto 32px;
  text-align: left;
}

.events-schedule__heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.04;
  color: #12372d;
}

.events-mode-bar {
  display: flex;
  max-width: 1320px;
  margin: 0 auto 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(161, 108, 68, 0.18);
}

.events-mode-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(18, 55, 45, 0.16);
  color: #12372d;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.events-mode-bar .is-active {
  color: #fffaf2;
  background: #12372d;
  box-shadow: 0 14px 28px rgba(18, 55, 45, 0.16);
}

.events-schedule__grid {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.events-empty {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background: #fffaf2;
  text-align: center;
}

.events-empty h3 {
  margin: 0 0 12px;
  color: #12372d;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 500;
}

.events-empty p {
  max-width: 560px;
  margin: 0 auto;
  color: #364553;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.events-schedule-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(161, 108, 68, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(50, 44, 35, 0.07);
}

.events-schedule-card--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1fr);
  min-height: 360px;
}

.events-schedule-card__image {
  min-height: 260px;
}

.events-schedule-card--featured .events-schedule-card__image {
  min-height: 360px;
}

.events-schedule-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.events-schedule-card--featured .events-schedule-card__body {
  justify-content: center;
  padding: clamp(34px, 4vw, 56px);
}

.events-schedule-card .tag {
  min-height: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.events-schedule-card h3 {
  margin: 18px 0 16px;
  color: #151514;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.05;
  font-weight: 500;
}

.events-schedule-card--featured h3 {
  max-width: 620px;
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: 1;
}

.events-schedule-card p {
  margin: 0 0 18px;
  color: #28313a;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 500;
}

.events-schedule-card--featured p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.68;
}

.events-schedule-card .event-time {
  margin-top: auto;
}

.events-schedule-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: #a16c44;
  font-size: var(--text-sm);
  font-weight: 850;
  text-decoration: none;
}

.events-schedule-card--featured a {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fffaf2;
  background: #12372d;
}

.events-programs {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 96px);
  padding: 86px var(--page-x) 104px;
  background: #fff;
  border-top: 1px solid rgba(161, 108, 68, 0.12);
}

.events-programs__photo {
  min-height: 430px;
}

.events-programs h2 {
  max-width: 640px;
  font-size: clamp(42px, 3.8vw, 70px);
  line-height: 1;
}

.events-programs p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #28313a;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .events-page-hero,
  .events-feature__card,
  .events-schedule-card--featured,
  .events-programs {
    grid-template-columns: 1fr;
  }

  .events-schedule__heading {
    display: block;
  }

  .events-page-hero__copy {
    max-width: 760px;
  }

  .events-feature__image {
    min-height: 420px;
  }

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

@media (max-width: 760px) {
  .events-page-hero {
    min-height: 0;
    padding: 72px 22px 340px;
    background:
      linear-gradient(180deg, #f7f0e6 0%, rgba(247, 240, 230, 0.98) 54%, rgba(247, 240, 230, 0.64) 72%, rgba(247, 240, 230, 0.08) 100%),
      url("/images/events/events-hero-baikal-evening.png") center bottom / auto 430px no-repeat;
  }

  .events-page-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .events-page-hero h1::after {
    width: min(260px, 100%);
    margin-top: 22px;
  }

  .events-page-hero__copy > p {
    max-width: 100%;
    font-size: 16px;
  }

  .events-page-hero__media {
    min-height: 300px;
  }

  .events-page-hero__media::after {
    inset: auto 16px 16px 16px;
    width: auto;
    height: 58px;
    font-size: 12px;
  }

  .events-feature,
  .events-schedule,
  .events-programs {
    padding-left: 22px;
    padding-right: 22px;
  }

  .events-feature__image,
  .events-schedule-card__image,
  .events-programs__photo {
    min-height: 280px;
  }

  .events-schedule-card--featured .events-schedule-card__image {
    min-height: 280px;
  }

  .events-feature__body,
  .events-schedule-card__body {
    padding: 28px 22px 34px;
  }

  .events-schedule-card--featured .events-schedule-card__body {
    padding: 30px 22px 34px;
  }

  .events-schedule-card--featured h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .events-mode-bar {
    margin-bottom: 22px;
    overflow-x: auto;
  }

  .events-schedule__grid {
    grid-template-columns: 1fr;
  }
}

/* Services page redesign */

.services-page {
  background: #f8f6f1;
}

.services-page-header {
  background: rgba(255, 250, 242, 0.96);
}

.services-page .placeholder-photo span {
  display: none;
}

.services-page .placeholder-photo {
  border: 0;
  border-radius: 0;
  background-color: #151514;
  background-position: center;
  background-size: cover;
}

.services-page .placeholder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(21, 21, 20, 0.03), rgba(21, 21, 20, 0.24));
}

.services-hero {
  position: relative;
  grid-template-columns: minmax(440px, 0.72fr) minmax(560px, 1fr);
  gap: clamp(34px, 5vw, 84px);
  min-height: calc(100vh - 98px);
  padding: clamp(86px, 8vw, 136px) var(--page-x) 118px;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.88) 42%, rgba(248, 246, 241, 0.28) 100%),
    url("/images/hero-baikal-sunset-hero.webp") center / cover no-repeat;
}

.services-hero::after {
  content: "";
  position: absolute;
  right: var(--page-x);
  bottom: 38px;
  left: var(--page-x);
  height: 1px;
  background: rgba(161, 108, 68, 0.18);
}

.services-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.services-hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6vw, 112px);
}

.services-hero__content > p:not(.section-kicker) {
  max-width: 610px;
  color: #26313a;
}

.services-hero__photo {
  min-height: 560px;
  border-radius: 8px;
  background-image: url("/images/history/gremyachinsk-viewpoint-hero.jpg");
  box-shadow: 0 28px 70px rgba(36, 28, 20, 0.18);
}

.services-hero__photo::before {
  background:
    linear-gradient(180deg, rgba(21, 21, 20, 0.04), rgba(21, 21, 20, 0.2)),
    linear-gradient(90deg, rgba(21, 21, 20, 0.28), transparent 54%);
}

.services-overview {
  position: sticky;
  z-index: 25;
  top: 100px;
  width: min(1500px, calc(100% - (var(--page-x) * 2)));
  margin: -70px auto 0;
  border-color: rgba(161, 108, 68, 0.22);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(14px);
}

.services-overview__item {
  min-height: 76px;
}

.stay-section,
.bath-section,
.food-section,
.services-list,
.services-process,
.services-cta {
  padding-right: var(--page-x);
  padding-left: var(--page-x);
}

.stay-section {
  padding-top: 110px;
  background: #f8f6f1;
}

.stay-intro,
.food-intro {
  grid-template-columns: minmax(320px, 0.42fr) minmax(560px, 0.72fr);
  justify-content: space-between;
  width: min(1500px, 100%);
}

.stay-intro h2,
.food-intro h2 {
  font-size: clamp(54px, 5.6vw, 104px);
}

.stay-stats {
  width: min(1500px, 100%);
  margin-bottom: 26px;
  border-radius: 0;
  background: #fffaf5;
  box-shadow: none;
}

.stay-stats article {
  min-height: 124px;
  padding: 26px 34px;
  background: transparent;
}

.stay-buildings {
  width: min(1500px, 100%);
  gap: 24px;
}

.stay-building-card {
  min-height: 500px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.stay-building-card__media {
  min-height: 500px;
}

.stay-building-card:nth-child(1) .stay-building-card__media {
  background-image: url("/images/history/history-main.png");
}

.stay-building-card:nth-child(2) .stay-building-card__media {
  background-image: url("/images/history/history-boat.png");
}

.stay-building-card__media::before {
  background: linear-gradient(180deg, rgba(21, 21, 20, 0.08), rgba(21, 21, 20, 0.36));
}

.stay-building-card__body {
  padding: clamp(42px, 5vw, 82px);
}

.stay-summary,
.food-note {
  width: min(1500px, 100%);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.96), rgba(21, 21, 20, 0.88)),
    url("/images/hero-baikal.png") center / cover no-repeat;
}

.bath-section {
  padding-top: 98px;
  background: #fff;
}

.bath-panel {
  width: min(1500px, 100%);
  min-height: 620px;
  border-radius: 0;
  box-shadow: 0 28px 72px rgba(21, 21, 20, 0.14);
}

.bath-panel__media {
  min-height: 620px;
  background-image: url("/images/gallery/gallery-08.jpg");
}

.bath-panel__media::before {
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.5), rgba(21, 21, 20, 0.12)),
    linear-gradient(180deg, rgba(21, 21, 20, 0.08), rgba(21, 21, 20, 0.48));
}

.bath-features,
.bath-includes {
  width: min(1500px, 100%);
  border-radius: 0;
  background: #fffaf5;
}

.bath-features article {
  min-height: 220px;
  background: transparent;
}

.bath-includes {
  background: #fff;
}

.food-section {
  padding-top: 98px;
  background: #f8f6f1;
}

.food-menu-image {
  width: min(1060px, 100%);
  padding: clamp(10px, 1vw, 16px);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(36, 28, 20, 0.12);
}

.food-menu-image img {
  max-height: 1160px;
  object-fit: contain;
  object-position: top center;
}

.services-list {
  padding-top: 112px;
  background: #fff;
}

.services-section-heading {
  grid-template-columns: minmax(260px, 0.25fr) minmax(560px, 0.75fr);
  width: min(1500px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.services-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1500px, 100%);
  margin: 0 auto;
}

.service-card,
.service-card:nth-child(even) {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  border-radius: 0;
  background: #fffaf5;
}

.service-card:nth-child(even) .service-card__photo {
  order: 0;
}

.service-card__photo {
  min-height: 260px;
}

.service-card:nth-child(1) .service-card__photo {
  background-image: url("/images/gallery/gallery-03.jpg");
}

.service-card:nth-child(2) .service-card__photo {
  background-image: url("/images/history/gremyachinsk-viewpoint.jpg");
}

.service-card:nth-child(3) .service-card__photo {
  background-image: url("/images/gallery/gallery-07.jpg");
}

.service-card__body {
  flex: 1;
  justify-content: flex-start;
  padding: 34px;
}

.service-card h3 {
  font-size: clamp(30px, 2.4vw, 46px);
}

.services-process {
  grid-template-columns: minmax(300px, 0.34fr) minmax(760px, 1fr);
  padding-top: 92px;
  padding-bottom: 92px;
  background: #f8f6f1;
}

.services-process > div,
.services-process ol {
  max-width: 1500px;
}

.services-cta {
  grid-template-columns: minmax(480px, 0.95fr) minmax(520px, 1fr);
  min-height: 620px;
  padding-top: 96px;
  padding-bottom: 112px;
  background: #fff;
}

.services-cta__photo {
  min-height: 460px;
  border-radius: 0;
  background-image: url("/images/hero-baikal-sunset-hero.webp");
}

.services-cta > div:last-child {
  align-self: center;
}

@media (max-width: 1180px) {
  .services-hero,
  .services-cards,
  .services-process,
  .services-cta {
    grid-template-columns: 1fr;
  }

  .services-overview {
    position: relative;
    top: auto;
  }

  .services-hero__photo,
  .bath-panel,
  .bath-panel__media {
    min-height: 420px;
  }

  .service-card,
  .service-card:nth-child(even) {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .services-hero {
    min-height: auto;
    padding: 104px 22px 80px;
  }

  .services-hero h1,
  .stay-intro h2,
  .food-intro h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .services-overview {
    width: calc(100% - 44px);
    margin-top: -42px;
  }

  .stay-section,
  .bath-section,
  .food-section,
  .services-list,
  .services-process,
  .services-cta {
    padding-right: 22px;
    padding-left: 22px;
  }

  .stay-building-card__media,
  .bath-panel__media,
  .services-hero__photo,
  .service-card__photo,
  .services-cta__photo {
    min-height: 300px;
  }

  .food-menu-image img {
    max-height: none;
  }

  .services-cards {
    gap: 18px;
  }
}

/* Services showcase with modal details */

.services-showcase-page {
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.96), rgba(255, 255, 255, 0.98) 42%, rgba(248, 246, 241, 0.92));
}

.services-showcase-hero {
  width: min(1760px, calc(100% - 140px));
  min-height: 720px;
  margin: 0 auto;
  padding: 120px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.services-showcase-hero__copy {
  max-width: 720px;
}

.services-showcase-hero h1,
.services-showcase-card h2,
.services-showcase-process h2,
.services-showcase-cta h2,
.service-modal h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: #141414;
}

.services-showcase-hero h1 {
  font-size: clamp(72px, 7.2vw, 138px);
  max-width: 760px;
}

.services-showcase-hero__copy > p:not(.section-kicker) {
  max-width: 600px;
  margin: 36px 0 0;
  font-size: 21px;
  line-height: 1.55;
  color: #1f2b3a;
}

.services-showcase-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.services-showcase-hero__media {
  min-height: 560px;
  border-radius: 8px;
  border: 1px solid rgba(173, 110, 65, 0.26);
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.04), rgba(20, 20, 20, 0.28)),
    url("/images/hero-baikal-sunset-hero.webp") center / cover no-repeat;
  box-shadow: 0 32px 90px rgba(28, 22, 15, 0.16);
}

.services-showcase-nav {
  position: sticky;
  top: 100px;
  z-index: 8;
  width: min(1480px, calc(100% - 140px));
  margin: -40px auto 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(173, 110, 65, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(47, 35, 25, 0.08);
}

.services-showcase-nav a {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.services-showcase-nav a + a {
  border-left: 1px solid rgba(173, 110, 65, 0.18);
}

.services-showcase-nav a:hover {
  background: #111;
  color: #fffaf2;
}

.services-showcase {
  width: min(1620px, calc(100% - 140px));
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.services-showcase-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr);
  overflow: hidden;
  border: 1px solid rgba(173, 110, 65, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 30px 90px rgba(37, 29, 21, 0.08);
}

.services-showcase-card:nth-child(even) .services-showcase-card__image {
  order: 2;
}

.services-showcase-card.is-dark {
  background: #111;
}

.services-showcase-card__image {
  min-height: 560px;
  overflow: hidden;
  background: #e8dfd2;
}

.services-showcase-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.services-showcase-card:hover .services-showcase-card__image img {
  transform: scale(1.035);
}

.services-showcase-card__body {
  position: relative;
  padding: clamp(42px, 5vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-showcase-card__number {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
  color: #ad6e41;
}

.services-showcase-card h2 {
  max-width: 720px;
  font-size: clamp(50px, 5.4vw, 88px);
}

.services-showcase-card__body > p:not(.section-kicker):not(.services-showcase-card__number) {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: #1f2b3a;
}

.services-showcase-card .button {
  align-self: flex-start;
  margin-top: 34px;
}

.services-showcase-card.is-dark .services-showcase-card__body > p,
.services-showcase-card.is-dark h2 {
  color: #fffaf2;
}

.services-showcase-process {
  width: min(1620px, calc(100% - 140px));
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1.3fr);
  gap: 76px;
  align-items: stretch;
}

.services-showcase-process h2 {
  font-size: clamp(58px, 5.8vw, 104px);
}

.services-showcase-process ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border: 1px solid rgba(173, 110, 65, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
}

.services-showcase-process li {
  padding: 48px 36px;
}

.services-showcase-process li + li {
  border-left: 1px solid rgba(173, 110, 65, 0.18);
}

.services-showcase-process span {
  display: block;
  margin-bottom: 26px;
  font-family: var(--font-serif);
  font-size: 34px;
  color: #ad6e41;
}

.services-showcase-process strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}

.services-showcase-process p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #273344;
}

.services-showcase-cta {
  width: min(1620px, calc(100% - 140px));
  margin: 96px auto 120px;
  padding: clamp(42px, 6vw, 86px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.82)),
    url("/images/history/gremyachinsk-viewpoint-hero.jpg") center / cover no-repeat;
  color: #fffaf2;
}

.services-showcase-cta h2 {
  max-width: 850px;
  font-size: clamp(54px, 5.6vw, 96px);
  color: #fffaf2;
}

.services-showcase-cta p:not(.section-kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
}

.services-showcase-cta .button {
  margin-top: 34px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  padding: 34px;
  align-items: center;
  justify-content: center;
}

.service-modal.is-open {
  display: flex;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 11, 0.72);
  backdrop-filter: blur(10px);
}

.service-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  max-height: calc(100vh - 68px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.36);
}

.service-modal__dialog--compact {
  width: min(760px, 100%);
  display: block;
}

.service-modal__media {
  min-height: 100%;
  min-width: 0;
  background: #e7ded1;
}

.service-modal__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-modal__content {
  min-height: 0;
  max-height: calc(100vh - 68px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(32px, 5vw, 68px);
}

.service-modal h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 82px);
}

.service-modal h3 {
  margin: 30px 0 12px;
  color: #111;
  font-size: 20px;
  font-weight: 900;
}

.service-modal p,
.service-modal li {
  font-size: 18px;
  line-height: 1.58;
  color: #243041;
}

.service-modal ul {
  margin: 0 0 10px;
  padding-left: 22px;
}

.service-modal .button {
  margin-top: 24px;
}

.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  cursor: pointer;
}

.service-modal__close::before,
.service-modal__close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 21px;
  width: 20px;
  height: 2px;
  background: #111;
}

.service-modal__close::before {
  transform: rotate(45deg);
}

.service-modal__close::after {
  transform: rotate(-45deg);
}

.service-modal__stats,
.service-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.service-modal__stats span,
.service-modal__grid article,
.service-modal__tags span {
  border: 1px solid rgba(173, 110, 65, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.service-modal__stats span {
  padding: 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-modal__stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #ad6e41;
}

.service-modal__grid article {
  padding: 22px;
}

.service-modal__grid h3 {
  margin-top: 0;
}

.service-modal--menu .service-modal__dialog {
  width: min(1160px, 100%);
  display: block;
}

.service-modal--menu .service-modal__content {
  padding: clamp(28px, 3.4vw, 46px);
}

.service-modal--menu h2 {
  margin-bottom: 14px;
  text-align: center;
}

.service-modal--menu .section-kicker {
  text-align: center;
}

.service-modal--menu .service-modal__content > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 16px;
}

.menu-modal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
  padding: 10px 0 14px;
  background: transparent;
}

.menu-modal-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(58, 43, 32, 0.18);
  border-radius: 999px;
  color: #243041;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.66);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.menu-modal-nav a:hover {
  color: #fffaf2;
  border-color: #284534;
  background: #284534;
}

.live-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.live-menu__section {
  scroll-margin-top: 78px;
  padding: 22px;
  border: 1px solid rgba(173, 110, 65, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.live-menu__section--featured,
.live-menu__section--wide {
  grid-column: 1 / -1;
}

.live-menu__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.live-menu__heading img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
}

.live-menu__heading span {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
  color: #ad6e41;
}

.service-modal .live-menu__heading h3 {
  margin: 0;
  color: #3a2b20;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.live-menu__list {
  display: grid;
  gap: 0;
}

.live-menu__section--featured .live-menu__list,
.live-menu__section--wide .live-menu__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.live-menu__list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(58, 43, 32, 0.13);
}

.live-menu__list article:first-child,
.live-menu__plans article:first-child {
  border-top: 0;
}

.service-modal .live-menu h4 {
  margin: 0 0 5px;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.service-modal .live-menu p {
  margin: 0;
  color: #596879;
  font-size: 13px;
  line-height: 1.45;
}

.live-menu__list strong,
.live-menu__plans span {
  color: #0e2a22;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

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

.live-menu__plans article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(173, 110, 65, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.7);
}

.live-menu__plans article > img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.live-menu__plans strong {
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

.live-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(173, 110, 65, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.service-modal .live-menu__footer p {
  margin: 0;
  color: #3a2b20;
  font-size: 14px;
  font-weight: 700;
}

.service-modal .live-menu__footer .button {
  flex: 0 0 auto;
  margin-top: 0;
}

.service-modal__menu-link {
  display: block;
  max-height: 66vh;
  margin-top: 24px;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(173, 110, 65, 0.22);
  border-radius: 8px;
  background: #fff;
}

.service-modal__menu-link img {
  width: 100%;
  min-width: 720px;
  display: block;
}

.service-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.service-modal__tags span {
  padding: 12px 16px;
  color: #3a2b20;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .services-showcase-hero,
  .services-showcase-card,
  .services-showcase-process,
  .service-modal__dialog {
    grid-template-columns: 1fr;
  }

  .services-showcase-hero,
  .services-showcase,
  .services-showcase-nav,
  .services-showcase-process,
  .services-showcase-cta {
    width: min(100% - 48px, 920px);
  }

  .services-showcase-hero {
    min-height: 0;
    padding-top: 86px;
  }

  .services-showcase-hero__media,
  .services-showcase-card__image,
  .service-modal__media {
    min-height: 420px;
  }

  .services-showcase-card:nth-child(even) .services-showcase-card__image {
    order: 0;
  }

  .services-showcase-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -20px;
  }

  .services-showcase-process ol,
  .service-modal__stats,
  .service-modal__grid,
  .live-menu,
  .live-menu__section--featured .live-menu__list,
  .live-menu__section--wide .live-menu__list,
  .live-menu__plans {
    grid-template-columns: 1fr;
  }

  .services-showcase-process li + li {
    border-left: 0;
    border-top: 1px solid rgba(173, 110, 65, 0.18);
  }
}

@media (max-width: 760px) {
  .services-showcase-hero,
  .services-showcase,
  .services-showcase-nav,
  .services-showcase-process,
  .services-showcase-cta {
    width: calc(100% - 28px);
  }

  .services-showcase-hero {
    gap: 32px;
    padding: 58px 0 46px;
  }

  .services-showcase-hero h1,
  .services-showcase-card h2,
  .services-showcase-process h2,
  .services-showcase-cta h2 {
    font-size: clamp(42px, 15vw, 70px);
  }

  .services-showcase-hero__copy > p:not(.section-kicker),
  .services-showcase-card__body > p:not(.section-kicker):not(.services-showcase-card__number),
  .services-showcase-cta p:not(.section-kicker) {
    font-size: 17px;
  }

  .services-showcase-nav {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 42px;
  }

  .services-showcase-card,
  .services-showcase-card__image {
    min-height: 0;
  }

  .services-showcase-card__image,
  .services-showcase-hero__media {
    min-height: 300px;
  }

  .services-showcase-card__body,
  .services-showcase-cta,
  .services-showcase-process li {
    padding: 30px 22px;
  }

  .service-modal {
    padding: 12px;
  }

  .service-modal__dialog {
    max-height: calc(100vh - 24px);
  }

  .service-modal__content {
    max-height: calc(100vh - 24px);
    padding: 30px 20px;
  }

  .service-modal h2 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .service-modal p,
  .service-modal li {
    font-size: 16px;
  }

  .service-modal__menu-link img {
    min-width: 620px;
  }

  .service-modal--menu .service-modal__content {
    padding: 28px 16px;
  }

  .service-modal--menu h2 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .menu-modal-nav {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    width: calc(100% + 32px);
    margin-right: -16px;
    margin-left: -16px;
    padding: 8px 16px 12px;
    overflow-x: auto;
  }

  .menu-modal-nav a {
    min-height: 34px;
    padding: 0 13px;
    font-size: 11px;
  }

  .live-menu__section {
    padding: 18px;
  }

  .live-menu__heading {
    gap: 10px;
  }

  .live-menu__heading img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .live-menu__plans article > img {
    width: 48px;
    height: 48px;
  }

  .live-menu__list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .live-menu__list strong,
  .live-menu__plans span {
    justify-self: start;
  }

  .live-menu__footer {
    display: block;
    padding: 18px;
  }

  .service-modal .live-menu__footer .button {
    width: 100%;
    margin-top: 16px;
  }
}

/* Cafe menu page */

.cafe-menu-page {
  min-height: 100vh;
  padding: 0 0 70px;
  color: #13251f;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 198, 170, 0.34), transparent 34%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe4 100%);
}

.cafe-menu-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: clamp(360px, 28vw, 500px);
  margin: 0;
  overflow: hidden;
}

.cafe-menu-hero h1 {
  max-width: 720px;
  margin: 10px 0 14px;
  color: #12372d;
  font-family: var(--font-serif);
  font-size: clamp(46px, 4.45vw, 78px);
  line-height: 1.02;
  font-weight: 600;
}

.cafe-menu-hero__copy {
  position: relative;
  z-index: 2;
  width: min(45vw, 760px);
  margin-left: clamp(42px, 7vw, 138px);
  padding: clamp(30px, 3.2vw, 56px) 0;
}

.cafe-menu-hero__lead {
  max-width: 720px;
  margin: 0;
  color: #394553;
  font-size: clamp(14px, 1.02vw, 18px);
  line-height: 1.35;
  font-weight: 500;
}

.cafe-menu-hero__divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(230px, 100%);
  margin: clamp(14px, 1.35vw, 20px) 0;
  color: #a16c44;
}

.cafe-menu-hero__divider::before {
  content: "";
  flex: 1;
  height: 1.5px;
  background: #a16c44;
}

.cafe-menu-hero__divider::after {
  content: "?";
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1;
}

.cafe-menu-hero__text {
  max-width: 600px;
  margin: 0;
  color: #394553;
  font-size: clamp(13px, 0.96vw, 17px);
  line-height: 1.55;
  font-weight: 500;
}

.cafe-menu-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 38px);
}

.cafe-menu-hero__actions .button-primary {
  min-width: clamp(150px, 14vw, 268px);
  min-height: clamp(44px, 4vw, 70px);
  background: #12372d;
  font-size: clamp(11px, 1vw, 18px);
}

.cafe-menu-hero__features {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(90, 66, 45, 0.16);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.64);
  box-shadow: 0 18px 60px rgba(64, 46, 29, 0.08);
}

.cafe-menu-hero__features img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 18px;
}

.cafe-menu-hero__features strong {
  display: block;
  margin-bottom: 10px;
  color: #0f211d;
  font-size: 14px;
  font-weight: 900;
}

.cafe-menu-hero__features p {
  margin: 0;
  color: #667070;
  font-size: 13px;
  line-height: 1.55;
}

.cafe-menu-hero__photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.cafe-menu-hero__photo img:not(figcaption img) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 82% 50%;
}

.cafe-menu-hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fbf6ee 0%, rgba(251, 246, 238, 1) 28%, rgba(251, 246, 238, 0.82) 43%, rgba(251, 246, 238, 0.22) 58%, rgba(251, 246, 238, 0) 74%),
    radial-gradient(circle at 14% 50%, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0) 48%),
    linear-gradient(180deg, rgba(18, 55, 45, 0.04), rgba(18, 55, 45, 0.08));
  pointer-events: none;
}

.cafe-menu-hero__photo figcaption {
  display: none;
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(90, 66, 45, 0.18);
  border-radius: 999px;
  color: #3f4b43;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 14px 36px rgba(34, 25, 18, 0.14);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.cafe-menu-hero__photo figcaption img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cafe-menu-board {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 3vw, 48px);
  max-width: 1500px;
  margin: clamp(-36px, -1.9vw, -24px) auto 0;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(90, 66, 45, 0.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(52, 38, 24, 0.12);
}

.cafe-menu-sidebar {
  position: sticky;
  top: 126px;
  align-self: start;
}

.cafe-menu-sidebar h2,
.cafe-menu-section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
}

.cafe-menu-sidebar h2 {
  font-size: 30px;
}

.cafe-menu-sidebar nav {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(90, 66, 45, 0.13);
  border-radius: 12px;
  background: #fffaf2;
}

.cafe-menu-sidebar nav button {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 0 0 10px;
  border: 0;
  color: #1d2a2c;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
}

.cafe-menu-sidebar nav button span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
}

.cafe-menu-sidebar nav button:hover span,
.cafe-menu-sidebar nav button.is-active span {
  color: #fffaf2;
  background: #0e3a30;
}

.cafe-menu-sidebar nav img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cafe-menu-sidebar__download {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 28px;
  border: 1px solid rgba(90, 66, 45, 0.18);
  border-radius: 10px;
  color: #1d2a2c;
  font-size: 13px;
  font-weight: 900;
  background: #fffaf2;
}

.cafe-menu-content {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.cafe-menu-section {
  scroll-margin-top: 120px;
}

.cafe-menu-section[hidden] {
  display: none;
}

.cafe-menu-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.cafe-menu-section__head > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cafe-menu-section__head img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.cafe-menu-section h2 {
  color: #101a16;
  font-size: 30px;
}

.cafe-menu-section__head > span {
  color: #6b5a4b;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.cafe-menu-list {
  display: grid;
  border: 1px solid rgba(90, 66, 45, 0.13);
  border-radius: 12px;
  overflow: hidden;
  background: #fffaf2;
}

.cafe-menu-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cafe-menu-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 14px 18px;
  border-top: 1px solid rgba(90, 66, 45, 0.11);
}

.cafe-menu-list article:first-child,
.cafe-menu-list--two article:nth-child(2) {
  border-top: 0;
}

.cafe-menu-list h3 {
  margin: 0 0 5px;
  color: #101a16;
  font-size: 15px;
  font-weight: 900;
}

.cafe-menu-list p {
  margin: 0;
  color: #73716d;
  font-size: 13px;
  line-height: 1.4;
}

.cafe-menu-list strong {
  color: #101a16;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.cafe-menu-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cafe-menu-plans article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(90, 66, 45, 0.13);
  border-radius: 12px;
  background: #fffaf2;
}

.cafe-menu-plans img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cafe-menu-plans strong,
.cafe-menu-plans span {
  color: #101a16;
  font-size: 15px;
  font-weight: 900;
}

.cafe-menu-plans p {
  margin: 0;
  color: #73716d;
  font-size: 13px;
  line-height: 1.45;
}

.cafe-menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 48px, 1120px);
  margin: 36px auto 0;
  padding: 18px 24px;
  border-radius: 12px;
  color: #fffaf2;
  background: #0b3329;
  box-shadow: 0 18px 54px rgba(14, 58, 48, 0.22);
}

.cafe-menu-cta strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.cafe-menu-cta p {
  margin: 4px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
}

.cafe-menu-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 8px;
  color: #0b3329;
  background: #fffaf2;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1260px) {
  .cafe-menu-hero {
    min-height: 430px;
  }

  .cafe-menu-hero__copy {
    width: min(54vw, 620px);
    margin-left: 42px;
  }

  .cafe-menu-hero__photo {
    min-height: 0;
    border-radius: 0;
  }

  .cafe-menu-board {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .cafe-menu-page {
    padding: 0 0 52px;
  }

  .cafe-menu-hero {
    min-height: 560px;
    align-items: flex-start;
  }

  .cafe-menu-hero__copy {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 44px;
  }

  .cafe-menu-hero h1 {
    font-size: clamp(44px, 14vw, 70px);
  }

  .cafe-menu-hero__lead,
  .cafe-menu-hero__text {
    max-width: 420px;
    font-size: 14px;
  }

  .cafe-menu-hero__divider {
    width: 220px;
  }

  .cafe-menu-hero__features,
  .cafe-menu-board {
    grid-template-columns: 1fr;
  }

  .cafe-menu-hero__features {
    padding: 20px;
  }

  .cafe-menu-sidebar {
    position: static;
  }

  .cafe-menu-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cafe-menu-list--two,
  .cafe-menu-plans {
    grid-template-columns: 1fr;
  }

  .cafe-menu-list--two article:nth-child(2) {
    border-top: 1px solid rgba(90, 66, 45, 0.11);
  }

  .cafe-menu-cta {
    display: block;
    width: 100%;
  }

  .cafe-menu-cta a {
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .cafe-menu-hero__actions {
    display: grid;
  }

  .cafe-menu-hero__features,
  .cafe-menu-sidebar nav {
    grid-template-columns: 1fr;
  }

  .cafe-menu-board {
    padding: 18px;
    border-radius: 14px;
  }

  .cafe-menu-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cafe-menu-list strong {
    justify-self: start;
  }
}

/* Reference-style services landing */

.services-reference-page {
  background: #f5f0e7;
  color: #101a16;
}

.services-reference-page .button-primary {
  background: #12372d;
  color: #fffaf2;
}

.services-reference-page .button-secondary {
  border-color: rgba(18, 55, 45, 0.28);
  background: rgba(255, 250, 242, 0.58);
  color: #12372d;
}

.services-reference-page h1,
.services-reference-page h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.services-reference-hero {
  min-height: clamp(390px, 31vw, 520px);
  padding: clamp(44px, 5vw, 78px) min(8vw, 128px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #f5f0e7 0%, rgba(245, 240, 231, 0.96) 31%, rgba(245, 240, 231, 0.48) 53%, rgba(245, 240, 231, 0.04) 76%),
    linear-gradient(180deg, rgba(15, 31, 27, 0.06), rgba(15, 31, 27, 0.14)),
    url("/images/hero-baikal-sunset-hero.webp") center / cover no-repeat;
}

.services-reference-hero__panel {
  width: min(760px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #101a16;
  box-shadow: none;
}

.services-reference-hero h1 {
  max-width: 680px;
  color: #12372d;
  font-size: clamp(46px, 4.1vw, 68px);
}

.services-reference-hero p:not(.section-kicker) {
  max-width: 620px;
  margin: 20px 0 0;
  color: #30413b;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

.services-reference-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.services-reference-hero__actions .button-primary {
  background: #12372d;
  color: #fffaf2;
}

.services-reference-strip {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 160px));
  margin: -32px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(70, 45, 25, 0.18);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 18px 52px rgba(35, 24, 15, 0.12);
}

.services-reference-strip a {
  position: relative;
  min-height: 76px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2a25;
  text-decoration: none;
}

.services-reference-strip a + a {
  border-left: 1px solid rgba(70, 45, 25, 0.16);
}

.services-reference-strip span {
  display: none;
}

.services-reference-strip strong {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-reference-strip small {
  display: none;
}

.services-reference-strip em {
  display: none;
}

.services-reference-strip a:first-child::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 4px;
  background: #12372d;
}

.services-reference-stay,
.services-reference-bath,
.services-reference-food,
.services-reference-gifts {
  width: min(1500px, calc(100% - 160px));
  margin: 0 auto;
  padding: clamp(50px, 4.6vw, 72px) 0;
  display: grid;
  gap: 58px;
  align-items: center;
}

.services-reference-stay {
  padding-top: clamp(66px, 5.4vw, 92px);
}

.services-reference-stay {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
}

.services-reference-bath {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
}

.services-reference-food {
  grid-template-columns: minmax(320px, 0.65fr) minmax(360px, 0.8fr) minmax(360px, 0.8fr);
}

.services-reference-gifts {
  grid-template-columns: minmax(320px, 0.6fr) minmax(0, 1.4fr);
}

.services-reference-copy h2,
.services-reference-bath h2,
.services-reference-bottom h2 {
  font-size: clamp(34px, 3.2vw, 52px);
}

.services-reference-copy p:not(.section-kicker),
.services-reference-bath p:not(.section-kicker) {
  max-width: 540px;
  margin: 16px 0 0;
  color: #25322e;
  font-size: 15px;
  line-height: 1.55;
}

.services-reference-copy .button,
.services-reference-bath .button {
  margin-top: 30px;
}

.services-reference-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.services-reference-icons span {
  padding-top: 34px;
  border-top: 1px solid rgba(173, 110, 65, 0.32);
  color: #24312c;
  font-size: 14px;
  font-weight: 800;
}

.services-reference-gallery__main,
.services-reference-food > img,
.services-reference-gift-grid img,
.services-reference-bath__media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.services-reference-gallery__main {
  height: 430px;
}

.services-reference-gallery > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.services-reference-gallery > div article {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.services-reference-gallery > div img {
  width: 100%;
  height: 118px;
  display: block;
  object-fit: cover;
}

.services-reference-gallery > div span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.88);
  color: #12372d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-reference-tours,
.services-reference-bottom {
  color: #fffaf2;
}

.services-reference-tours > div:first-child {
  width: min(620px, 100%);
}

.services-reference-tours h2 {
  font-size: clamp(36px, 3.6vw, 56px);
}

.services-reference-tours p:not(.section-kicker) {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.services-reference-tours .button {
  margin-top: 28px;
}

.services-reference-bath__features {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.services-reference-bath__features span {
  min-height: 74px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(70, 45, 25, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.62);
  color: #25322e;
  font-size: 14px;
  font-weight: 900;
}

.services-reference-bath__media {
  position: relative;
  padding: 16px 16px 0 0;
}

.services-reference-bath__media::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 72%;
  border-radius: 8px;
  background: #12372d;
}

.services-reference-bath__media img {
  position: relative;
  height: 430px;
  object-position: 54% 50%;
  box-shadow: 0 22px 54px rgba(28, 20, 14, 0.16);
}

.services-reference-menu dl {
  margin: 12px 0 0;
}

.services-reference-menu div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(70, 45, 25, 0.16);
}

.services-reference-menu dt,
.services-reference-menu dd {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.services-reference-menu dd {
  white-space: nowrap;
  color: #0e2a22;
}

.services-reference-food > img {
  height: 360px;
  object-position: 70% 50%;
}

.services-reference-tours {
  min-height: 390px;
  padding: 62px min(8vw, 128px);
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 22, 20, 0.9), rgba(8, 22, 20, 0.48), rgba(8, 22, 20, 0.18)),
    url("/images/history/gremyachinsk-viewpoint-hero.jpg") center / cover no-repeat;
}

.services-reference-tour-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.services-reference-tour-cards article {
  min-height: 220px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  color: #17211d;
}

.services-reference-tour-cards strong {
  font-size: 16px;
  line-height: 1.35;
}

.services-reference-tour-cards p {
  margin: 16px 0 22px;
  color: #3f4a45;
  font-size: 14px;
  line-height: 1.45;
}

.services-reference-tour-cards span {
  font-weight: 900;
}

.services-reference-gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-reference-gift-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.services-reference-gift-grid img {
  height: 300px;
  transition: transform 180ms ease;
}

.services-reference-gift-grid article:hover img {
  transform: scale(1.03);
}

.services-reference-gift-grid span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.9);
  color: #12372d;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-reference-questions details {
  border: 1px solid rgba(70, 45, 25, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
}

.services-reference-questions {
  padding: 76px min(8vw, 128px) 78px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: #f8f3ea;
}

.services-reference-questions .section-kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.services-reference-questions details {
  padding: 22px 24px;
}

.services-reference-questions summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.services-reference-questions p {
  margin: 14px 0 0;
  color: #3f4a45;
  font-size: 15px;
  line-height: 1.45;
}

.services-reference-bottom {
  padding: 58px min(8vw, 128px);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 20, 17, 0.95), rgba(9, 20, 17, 0.78)),
    url("/images/history/gremyachinsk-viewpoint.jpg") center / cover no-repeat;
}

.services-reference-bottom h2 {
  max-width: 780px;
  font-size: clamp(38px, 4vw, 62px);
  color: #fffaf2;
}

.services-reference-bottom .button-primary {
  background: #fffaf2;
  color: #12372d;
}

@media (max-width: 1180px) {
  .services-reference-strip,
  .services-reference-stay,
  .services-reference-bath,
  .services-reference-food,
  .services-reference-gifts {
    width: min(100% - 48px, 920px);
  }

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

  .services-reference-stay,
  .services-reference-bath,
  .services-reference-food,
  .services-reference-gifts,
  .services-reference-tours {
    grid-template-columns: 1fr;
  }

  .services-reference-tour-cards,
  .services-reference-gift-grid,
  .services-reference-questions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .services-reference-hero {
    min-height: 590px;
    padding: 38px 22px 54px;
    background:
      linear-gradient(90deg, rgba(245, 240, 231, 0.94) 0%, rgba(245, 240, 231, 0.8) 56%, rgba(245, 240, 231, 0.28) 100%),
      linear-gradient(180deg, rgba(15, 31, 27, 0.05), rgba(15, 31, 27, 0.18)),
      url("/images/hero-baikal-sunset-hero.webp") center / cover no-repeat;
  }

  .services-reference-hero__panel {
    width: 100%;
  }

  .services-reference-hero h1,
  .services-reference-copy h2,
  .services-reference-bath h2,
  .services-reference-tours h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .services-reference-hero p:not(.section-kicker) {
    font-size: 21px;
  }

  .services-reference-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 340px);
  }

  .services-reference-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .services-reference-strip,
  .services-reference-stay,
  .services-reference-bath,
  .services-reference-food,
  .services-reference-gifts {
    width: calc(100% - 28px);
  }

  .services-reference-strip,
  .services-reference-tour-cards,
  .services-reference-gift-grid,
  .services-reference-questions {
    grid-template-columns: 1fr;
  }

  .services-reference-strip {
    display: flex;
    overflow-x: auto;
    margin-top: -26px;
    scroll-snap-type: x mandatory;
  }

  .services-reference-strip a {
    min-width: 156px;
    min-height: 64px;
    padding: 0 18px;
    scroll-snap-align: start;
  }

  .services-reference-strip a + a {
    border-left: 1px solid rgba(70, 45, 25, 0.16);
  }

  .services-reference-strip a:first-child::after {
    left: 18px;
    right: 18px;
  }

  .services-reference-stay,
  .services-reference-bath,
  .services-reference-food,
  .services-reference-gifts {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .services-reference-tours,
  .services-reference-bottom {
    padding: 46px 22px;
  }

  .services-reference-icons,
  .services-reference-gallery > div {
    grid-template-columns: 1fr 1fr;
  }

  .services-reference-icons {
    gap: 14px;
    margin-top: 26px;
  }

  .services-reference-icons span {
    padding-top: 22px;
    font-size: 13px;
    line-height: 1.25;
  }

  .services-reference-gallery > div {
    gap: 12px;
  }

  .services-reference-gallery > div span {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px 9px;
    font-size: 10px;
    line-height: 1.18;
  }

  .services-reference-tour-cards article {
    min-height: auto;
    padding: 22px 20px;
  }

  .services-reference-tour-cards strong {
    font-size: 17px;
  }

  .services-reference-tours .services-reference-tour-cards p {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .services-reference-tour-cards span {
    font-size: 14px;
  }

  .services-reference-gallery__main,
  .services-reference-bath__media img,
  .services-reference-food > img {
    height: 280px;
  }

  .services-reference-bath__features {
    grid-template-columns: 1fr;
  }

  .services-reference-bottom {
    display: block;
  }

  .services-reference-bottom .button {
    margin-top: 24px;
  }
}
