:root {
  color-scheme: light;
  --ink: #221a14;
  --ink-soft: #66584c;
  --paper: #fffaf2;
  --paper-deep: #f0e8dc;
  --charcoal: #171310;
  --charcoal-soft: #251f1a;
  --copper: #b75622;
  --copper-light: #e47a35;
  --sand: #d5aa73;
  --line: rgba(34, 26, 20, 0.16);
  --header-height: 88px;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(29, 19, 12, 0.13);
  --shell: min(1240px, calc(100vw - 64px));
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

button,
input,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(46px, 4.6vw, 68px);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 3.4vw, 50px);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.1vw, 32px);
  letter-spacing: -0.035em;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid var(--copper-light);
  border-radius: 999px;
  background: var(--copper-light);
  color: #17100c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  border-color: #f28a44;
  background: #f28a44;
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(10, 8, 6, 0.18);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button--outline {
  border-color: rgba(183, 86, 34, 0.55);
  background: transparent;
  color: var(--copper);
}

.button--outline:hover {
  border-color: var(--copper-light);
  background: var(--copper-light);
  color: #17100c;
}

.button--small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 13px;
}

/* Стрелка-указатель внутри кнопки отделена от подписи. */
.button span[aria-hidden] {
  display: inline-block;
  margin-left: 8px;
  opacity: 0.8;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 11, 9, 0.88);
  color: #fff;
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 116px 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 106px;
  height: 78px;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.navigation li {
  display: flex;
}

.navigation a:not(.button) {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.navigation a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--copper-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.navigation a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  isolation: isolate;
}

.hero__image,
.hero__image img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image img {
  object-fit: cover;
  object-position: center;
  animation: hero-reveal 1.2s ease-out both;
}

.hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 9, 7, 0.86) 0%, rgba(13, 9, 7, 0.54) 48%, rgba(13, 9, 7, 0.14) 80%),
    linear-gradient(0deg, rgba(13, 9, 7, 0.52) 0%, transparent 46%);
}

.hero__content {
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 100px;
}

.hero__content > * {
  max-width: 760px;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__scroll {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll span:last-child {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  place-items: center;
}

.section {
  padding-block: clamp(72px, 6.5vw, 104px);
}

.section--muted {
  background: var(--paper-deep);
}

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

.section--copper {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 45%),
    var(--copper);
  color: #fff;
}

.section--contacts {
  padding-bottom: 0;
  background: var(--charcoal);
  color: #fff;
}

.section-heading {
  max-width: 540px;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading--wide {
  max-width: 820px;
  margin-bottom: clamp(44px, 4.6vw, 66px);
}

.section-heading--compact {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading--compact h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.15fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.prose {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px);
}

.prose p {
  margin-bottom: 24px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.highlight span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d9b57;
  box-shadow: 0 0 0 6px rgba(61, 155, 87, 0.14);
}

.sauna-list {
  display: grid;
  gap: clamp(40px, 5vw, 68px);
}

.sauna-card {
  display: grid;
  min-height: 530px;
  grid-template-columns: minmax(0, 1.28fr) minmax(350px, 0.72fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.sauna-card:nth-child(even) {
  grid-template-columns: minmax(350px, 0.72fr) minmax(0, 1.28fr);
}

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

.sauna-card__media,
.sauna-card__media .gallery,
.sauna-card__media .gallery__viewport,
.sauna-card__media .gallery__track,
.sauna-card__media .gallery__slide {
  height: 100%;
  min-height: 0;
}

.sauna-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.4vw, 68px);
}

.sauna-card__number {
  margin-bottom: 30px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.sauna-card__body h3 {
  margin-bottom: 28px;
}

.rates {
  display: grid;
  padding: 0;
  margin: 0 0 30px;
  gap: 0;
  list-style: none;
}

.rates li {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}

.rates span {
  color: var(--ink-soft);
  font-size: 13px;
}

.rates strong {
  font-size: 15px;
  white-space: nowrap;
}

.feature-list,
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list {
  margin-bottom: 32px;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-list li + li,
.check-list li + li {
  margin-top: 7px;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper-light);
  content: "";
  transform: translateY(-50%);
}

/* Звонок из карточки сауны — кнопка, а не текстовая ссылка: рядом с ценами её
   видно сразу и палец на телефоне попадает в неё, не целясь. */
.sauna-card__action {
  align-self: flex-start;
}

.gallery {
  position: relative;
  overflow: hidden;
  background: #2a211b;
}

.gallery__viewport {
  height: 100%;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__slide {
  position: relative;
  min-width: 100%;
  margin: 0;
  scroll-snap-align: start;
}

.gallery__slide picture,
.gallery__slide img {
  width: 100%;
  height: 100%;
}

.gallery__slide img {
  min-height: 410px;
  object-fit: cover;
}

.gallery__zoomable {
  cursor: zoom-in;
}

.gallery__slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(15, 10, 7, 0.38));
  content: "";
  pointer-events: none;
}

.gallery__controls {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery__button {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(14, 11, 9, 0.66);
  color: #fff;
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease;
  backdrop-filter: blur(10px);
}

.gallery__button:hover {
  background: rgba(183, 86, 34, 0.92);
}

.gallery__status {
  min-width: 64px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 1px 4px #000;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
  align-items: center;
  gap: clamp(48px, 5.5vw, 88px);
}

.feature-section__copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.feature-section__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
}

.feature-section__media .gallery__viewport {
  aspect-ratio: 16 / 11;
}

.hotel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}

.hotel-grid__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hotel-grid__media .gallery__viewport {
  aspect-ratio: 16 / 11;
}

.hotel-grid__copy {
  padding-block: 30px;
}

.hotel-grid__copy h3 {
  font-size: clamp(24px, 2.3vw, 32px);
}

.check-list {
  display: grid;
  gap: 5px;
}

.check-list li {
  padding-block: 7px;
  padding-left: 28px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.booking {
  padding: clamp(28px, 3.4vw, 48px);
  margin-top: clamp(56px, 6vw, 88px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

/* Высоту рамки присылает сама страница брони (site.js), здесь — только запас
   до её первого сообщения: хватает на строку поиска и на телефоне, и на
   мониторе. */
.booking iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  transition: height 180ms ease;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.amenity {
  min-height: 210px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.amenity__number {
  display: block;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.amenity h3 {
  margin-bottom: 14px;
  font-size: 29px;
}

.amenity p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.contacts-grid {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1.3fr);
}

.contacts-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 72px);
  background:
    radial-gradient(circle at 20% 20%, rgba(228, 122, 53, 0.18), transparent 36%),
    var(--charcoal-soft);
}

.contacts-card address {
  max-width: 420px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-style: normal;
}

.contacts-card__group + .contacts-card__group {
  margin-top: 28px;
}

.contacts-card__label {
  margin-bottom: 8px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contacts-list,
.social-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Номер должен читаться одной строкой: на широком экране «+7 (3022) 44-97-57»
   раньше разъезжался на две. */
.contacts-list a {
  display: inline-block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.45;
  text-decoration: none;
  white-space: nowrap;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map {
  position: relative;
  min-height: 500px;
  background: #ddd3c5;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: saturate(0.7) contrast(1.03);
}

.map__link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(23, 19, 16, 0.9);
  color: #fff;
  backdrop-filter: blur(10px);
}

.map__link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(23, 19, 16, 0.98);
}

.site-footer {
  padding-block: 44px;
  background: #0e0b09;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand--footer {
  width: 130px;
  height: 98px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer__top {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-footer__top:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.mobile-call {
  display: none;
}

.lightbox {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  height: min(840px, calc(100vh - 40px));
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #100d0b;
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  place-items: center;
}

@keyframes hero-reveal {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .navigation {
    gap: 20px;
  }

  .navigation ul {
    gap: 17px;
  }

  .navigation__call {
    display: none;
  }

  .sauna-card,
  .sauna-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .feature-section {
    grid-template-columns: minmax(280px, 0.75fr) minmax(430px, 1.25fr);
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
    --shell: min(100% - 32px, 720px);
  }

  body {
    padding-bottom: 72px;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 82px;
    height: 64px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    min-width: 86px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .nav-toggle__label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle__icon {
    position: relative;
  }

  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .nav-toggle__icon::before {
    top: -5px;
  }

  .nav-toggle__icon::after {
    top: 5px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navigation {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    padding: 28px 20px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 11, 9, 0.98);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-18px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms step-end;
  }

  .navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0ms;
  }

  .navigation ul {
    display: grid;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .navigation a:not(.button) {
    width: 100%;
    padding: 15px 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
  }

  .navigation__call {
    display: inline-flex;
    width: 100%;
    margin-top: 24px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(13, 9, 7, 0.86) 0%, rgba(13, 9, 7, 0.46) 70%, rgba(13, 9, 7, 0.34)),
      linear-gradient(90deg, rgba(13, 9, 7, 0.5), transparent);
  }

  .hero__content {
    align-self: end;
    padding-top: 150px;
    padding-bottom: 126px;
  }

  .hero__scroll {
    right: 18px;
    bottom: 24px;
  }

  .about-grid,
  .feature-section,
  .hotel-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .feature-section,
  .hotel-grid {
    gap: 48px;
  }

  .sauna-card,
  .sauna-card:nth-child(even) {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .sauna-card:nth-child(even) .sauna-card__media {
    order: initial;
  }

  .sauna-card__media,
  .sauna-card__media .gallery,
  .sauna-card__media .gallery__viewport,
  .sauna-card__media .gallery__track,
  .sauna-card__media .gallery__slide {
    height: auto;
  }

  .sauna-card__media .gallery__viewport {
    aspect-ratio: 4 / 3;
  }

  .sauna-card__media .gallery__slide img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .feature-section__copy {
    max-width: 620px;
  }

  .feature-section__media,
  .hotel-grid__media {
    width: 100%;
  }

  .booking {
    padding: 28px 16px;
  }

  .booking iframe {
    height: 300px;
  }

  .contacts-card {
    min-height: 560px;
    margin-inline: calc((100vw - 100%) / -2);
  }

  .map {
    min-height: 480px;
    margin-inline: calc((100vw - 100%) / -2);
  }

  .map iframe {
    min-height: 480px;
  }

  .site-footer__inner {
    grid-template-columns: 120px 1fr;
  }

  .site-footer__top {
    display: none;
  }

  .brand--footer {
    width: 106px;
    height: 80px;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    background: var(--copper-light);
    color: #17100c;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 38px rgba(23, 14, 8, 0.35);
  }
}

@media (max-width: 560px) {
  :root {
    --radius: 18px;
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero {
    min-height: max(680px, 100svh);
  }

  .hero__image img {
    object-position: 58% center;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero__scroll span:first-child {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading--wide {
    margin-bottom: 46px;
  }

  .prose {
    font-size: 18px;
  }

  .sauna-list {
    gap: 34px;
  }

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

  .sauna-card__number {
    margin-bottom: 18px;
  }

  /* На узком экране подпись не влезает в одну строку — кнопка идёт во всю
     ширину карточки, так в неё проще попасть пальцем. */
  .sauna-card__action {
    align-self: stretch;
  }

  .rates li {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .gallery__controls {
    right: 12px;
    bottom: 12px;
  }

  .gallery__button {
    width: 40px;
    height: 40px;
  }

  .feature-section__media .gallery__viewport,
  .hotel-grid__media .gallery__viewport {
    aspect-ratio: 4 / 3;
  }

  .gallery__slide img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .amenity {
    min-height: 0;
    padding: 28px 24px;
  }

  .amenity__number {
    margin-bottom: 30px;
  }

  .booking {
    margin-inline: -8px;
  }

  .booking iframe {
    height: 320px;
  }

  .contacts-card {
    min-height: 520px;
    padding: 54px 28px;
  }

  .contacts-list a {
    font-size: 26px;
  }

  .map,
  .map iframe {
    min-height: 420px;
  }

  .site-footer__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero__scroll,
  .gallery__controls,
  .mobile-call,
  .booking,
  .map {
    display: none !important;
  }

  .hero {
    min-height: 420px;
  }

  .section {
    padding-block: 40px;
  }
}
