:root {
  --blue: #0f52d9;
  --blue-dark: #0b40ad;
  --blue-soft: #e7eeff;
  --ink: #1b1b1f;
  --ink-soft: #5c5f66;
  --muted: #8c9099;
  --line: #e4e5e9;
  --page: #ffffff;
  --sand: #cdc7b9;
  --tile: #ececec;
  --tile-deep: #e2e2e4;
  --dark: #6c6c6c;
  --dark-hover: #555555;
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 999px;
  --shadow-s: 0 4px 14px rgba(20, 24, 40, .06);
  --shadow-m: 0 14px 34px rgba(20, 24, 40, .12);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shell: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

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

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

h1, h2, h3 { margin: 0; line-height: 1.22; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button, input, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 16px;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 80;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-m);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(72px); }

.is-hidden { display: none !important; }

section[id], footer[id] { scroll-margin-top: 128px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-s);
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .18);
  transform: scale(0);
  border-radius: inherit;
  transition: transform .35s var(--ease);
}
.btn:hover::after { transform: scale(1); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 8px 18px rgba(15, 82, 217, .22); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--dark-hover); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--wide { padding-left: 32px; padding-right: 32px; }
.btn--block { width: 100%; padding-top: 13px; padding-bottom: 13px; }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  transition: box-shadow .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 22px rgba(20, 24, 40, .08); }

.header__row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 62px;
}

.header__utility { border-top: 1px solid var(--line); }
.header__row--utility {
  min-height: 60px;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  margin-right: auto;
}
.logo__mark { transition: transform .5s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-25deg); }
.logo__word {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}

.burger {
  width: 40px; height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger__line {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger.is-open .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; }
.burger.is-open .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 16px 20px;
  display: grid;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  box-shadow: var(--shadow-m);
}
.nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__list { display: grid; gap: 4px; }

.nav__link {
  display: block;
  padding: 9px 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-soft);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 2px; bottom: 4px;
  height: 2px; width: 0;
  background: var(--blue);
  transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { width: 22px; }
.nav__link.is-active, .nav__link:hover { color: var(--blue); }
.nav__cta { justify-self: start; }

.categories-btn { flex: 0 0 auto; }

.search {
  position: relative;
  display: flex;
  flex: 1 1 200px;
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.search__input {
  flex: 1;
  border: 0;
  padding: 9px 12px;
  font-size: 12px;
  background: #fff;
}
.search__input::placeholder { color: var(--muted); }
.search__input:focus { outline: none; }
.search__btn {
  border: 0;
  background: var(--blue);
  color: #fff;
  width: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .25s var(--ease);
}
.search__btn:hover { background: var(--blue-dark); }

.header__tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.tool {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  transition: color .25s var(--ease);
}
.tool:hover { color: var(--blue); }
.tool__icon { position: relative; display: inline-flex; }
.tool__badge {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: var(--radius-l);
  background: var(--muted);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
  line-height: 1;
}
.tool--wish { position: relative; }
.tool--wish .tool__badge { top: -2px; right: -4px; }
.tool__badge--blue { background: var(--blue); }
.tool__badge.is-bumped { animation: badge-pop .45s var(--ease); }
@keyframes badge-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.45); }
  100% { transform: scale(1); }
}
.tool__text { display: none; text-align: left; }
.tool__label { display: block; font-size: 10px; color: var(--muted); line-height: 1.2; }
.tool__value { display: block; font-size: 12px; font-weight: 700; }

.hero {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 36px;
}
.hero__media {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
}
.hero__media img {
  border-radius: var(--radius-m);
  animation: ken-burns 22s var(--ease) infinite alternate;
}
@keyframes ken-burns {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.hero__content { position: relative; z-index: 1; }
.hero__title {
  font-size: clamp(28px, 6vw, 40px);
  margin-bottom: 14px;
}
.hero__text {
  color: var(--ink-soft);
  font-size: 13px;
  margin-bottom: 22px;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .32;
  pointer-events: none;
}
.hero__blob--a {
  width: 320px; height: 320px;
  background: rgba(255, 255, 255, .8);
  top: -90px; left: -60px;
  animation: float-a 18s ease-in-out infinite alternate;
}
.hero__blob--b {
  width: 260px; height: 260px;
  background: rgba(15, 82, 217, .18);
  bottom: -110px; right: -40px;
  animation: float-b 22s ease-in-out infinite alternate;
}
@keyframes float-a {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(40px, 30px, 0); }
}
@keyframes float-b {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-40px, -26px, 0); }
}

.usps { padding: 26px 0; }
.usps__list {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 14px;
  box-shadow: var(--shadow-s);
}
.usps__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
}
.usps__icon { color: var(--blue); flex: 0 0 auto; }
.usps__text { font-size: 11px; color: var(--ink-soft); line-height: 1.45; }

.section-title { font-size: clamp(22px, 4.4vw, 26px); }
.section-title--center { text-align: center; }
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 10px auto 26px;
}

.catalog { padding: 10px 0 44px; }

.tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 24px;
  flex-wrap: wrap;
}
.tabs__btn {
  background: none;
  border: 0;
  padding: 4px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color .25s var(--ease);
}
.tabs__btn::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .3s var(--ease);
}
.tabs__btn.is-active { color: var(--blue); }
.tabs__btn.is-active::after, .tabs__btn:hover::after { width: 100%; }
.tabs__sep { color: var(--line); }

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

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.card.is-filtered { display: none; }

.card__media {
  position: relative;
  background: var(--tile);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__wish {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, .92);
  color: var(--ink-soft);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.card:hover .card__wish, .card__wish:focus-visible { opacity: 1; transform: translateY(0); }
.card__wish.is-on { opacity: 1; transform: translateY(0); color: var(--blue); }

.card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card__name { font-size: 13px; font-weight: 600; }
.card__desc { font-size: 11px; color: var(--muted); line-height: 1.5; }
.card__foot {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.card__price { font-size: 15px; font-weight: 700; }
.btn--add {
  background: var(--blue-soft);
  color: var(--blue);
  padding: 8px 14px;
  font-size: 11px;
}
.btn--add:hover { background: var(--blue); color: #fff; }

.catalog__empty {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.strip {
  background: var(--blue);
  color: #fff;
  padding: 22px 0;
  background-image: linear-gradient(120deg, var(--blue-dark), var(--blue) 45%, #2a6bf0);
}
.strip__text {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.rooms { padding: 44px 0; }
.rooms__grid { display: grid; gap: 22px; }
.rooms__title { margin-bottom: 18px; }
.rooms__nav { display: flex; gap: 10px; margin-bottom: 18px; }

.round-btn {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #fff;
  cursor: pointer;
  transition: border-color .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.round-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.link-arrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--blue);
  position: relative;
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width .3s var(--ease);
}
.link-arrow:hover::after { width: 100%; }

.rooms__viewport { overflow: hidden; }
.rooms__track {
  display: flex;
  transition: transform .5s var(--ease);
}
.room-card {
  flex: 0 0 100%;
  padding-right: 14px;
}
.room-card a { display: block; }
.room-card__media {
  display: block;
  background: var(--tile);
  overflow: hidden;
  border-radius: var(--radius-s);
  aspect-ratio: 4 / 3;
}
.room-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__name {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 0;
  background: var(--tile);
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  margin-top: -4px;
}

.promos { padding: 10px 0 44px; }
.promo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-s);
  background: var(--tile);
  margin-bottom: 14px;
}
.promo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.promo:hover .promo__img { transform: scale(1.04); }

.promo--main {
  display: grid;
  min-height: 300px;
  align-content: center;
  color: #fff;
  background: var(--blue);
}
.promo--main .promo__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .9;
}
.promo--main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(15, 82, 217, .96) 0%, rgba(15, 82, 217, .86) 42%, rgba(15, 82, 217, 0) 78%);
}
.promo__copy { position: relative; z-index: 2; padding: 28px 22px 0; }
.promo__note {
  position: relative;
  z-index: 2;
  padding: 10px 22px 28px;
  font-size: 11px;
  color: rgba(255, 255, 255, .9);
}
.promo__title { font-size: clamp(22px, 5vw, 30px); margin-bottom: 14px; }
.promo__deal { display: flex; align-items: baseline; gap: 8px; }
.promo__num { font-size: clamp(34px, 9vw, 52px); font-weight: 700; line-height: 1; }
.promo__num--sm { font-size: clamp(26px, 7vw, 36px); }
.promo__num--dark { color: var(--ink); }
.promo__off { font-size: clamp(18px, 4vw, 26px); font-weight: 700; }
.promo__off--dark { color: var(--ink); }
.promo__disc { font-size: 11px; font-weight: 600; color: var(--ink-soft); }

.promos__row { display: grid; gap: 14px; }
.promo--wide, .promo--small { min-height: 210px; display: grid; }
.promo--wide .promo__img, .promo--small .promo__img { position: absolute; inset: 0; }
.promo--wide::after, .promo--small::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .82) 30%, rgba(255, 255, 255, 0) 64%);
}
.promo__badge {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: start;
  margin: 22px;
  padding: 16px 20px;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, .78);
  border-radius: var(--radius-s);
}
.promo__badge--right { justify-self: start; }

.trending { padding: 44px 0; background: linear-gradient(180deg, #fafafb, #fff); }

.cta {
  position: relative;
  overflow: hidden;
  background: #eef1f5;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .72) 48%, rgba(255, 255, 255, .2) 100%);
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 46px;
}
.cta__title { font-size: clamp(22px, 5vw, 30px); font-weight: 400; }
.cta__title strong { font-weight: 700; }
.cta__text { margin-top: 12px; font-size: 12px; color: var(--ink); }
.cta__btn { justify-self: start; }

.footer { padding: 48px 0 0; border-top: 1px solid var(--line); }
.footer__grid { display: grid; gap: 28px; }
.footer__address {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0 20px;
}
.footer__address a { transition: color .25s var(--ease); }
.footer__address a:hover { color: var(--blue); }
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.footer__heading--blue { color: var(--blue); }
.footer__list { display: grid; gap: 10px; font-size: 12px; color: var(--ink-soft); }
.footer__list a { position: relative; transition: color .25s var(--ease); }
.footer__list a:hover { color: var(--blue); }

.socials { display: flex; gap: 10px; }
.socials__link {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-l);
  background: var(--blue);
  color: #fff;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.socials__link:hover { transform: translateY(-3px); background: var(--blue-dark); }

.footer__bottom {
  margin-top: 36px;
  padding: 18px 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}
.footer__bottomnav { display: flex; gap: 20px; }
.footer__bottomnav a:hover { color: var(--blue); }

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(16, 20, 32, .48);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cart-overlay.is-on { opacity: 1; }

.cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 75;
  width: min(420px, 100%);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform .34s var(--ease);
  box-shadow: -18px 0 50px rgba(16, 20, 32, .2);
}
.cart.is-open { transform: translate3d(0, 0, 0); }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.cart__heading { font-size: 16px; }
.cart__close {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-s);
  transition: color .25s var(--ease);
}
.cart__close:hover { color: var(--blue); }

.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px 26px;
}
.cart__empty { color: var(--muted); font-size: 13px; }

.cart__list { display: grid; gap: 14px; }
.cart-line {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cart-line__name { font-size: 13px; font-weight: 600; }
.cart-line__price { font-size: 11px; color: var(--muted); }
.cart-line__controls { display: flex; align-items: center; gap: 8px; }
.qty {
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: #fff;
  cursor: pointer;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.qty:hover { border-color: var(--blue); color: var(--blue); }
.qty__value { min-width: 26px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-line__remove {
  margin-left: auto;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  transition: color .25s var(--ease);
}
.cart-line__remove:hover { color: #c0392b; }

.cart__summary { margin-top: 20px; display: grid; gap: 10px; }
.cart__row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-soft); }
.cart__row--total {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.checkout { display: grid; gap: 14px; }
.checkout__title { font-size: 14px; margin-bottom: 2px; }
.field { display: grid; gap: 5px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: .02em; }
.field__opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  font-size: 13px;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: #c0392b; }
.field__error { font-size: 11px; color: #c0392b; min-height: 0; }
.field-pair { display: grid; gap: 14px; }

.checkout__legal { font-size: 11px; color: var(--muted); }
.checkout__legal a { color: var(--blue); text-decoration: underline; }
.checkout__actions { display: grid; gap: 10px; }
.checkout__actions .btn { width: 100%; padding-top: 12px; padding-bottom: 12px; }

.confirm { display: grid; gap: 10px; text-align: center; padding-top: 12px; }
.confirm__tick { color: var(--blue); justify-self: center; }
.confirm__title { font-size: 18px; }
.confirm__line { font-size: 13px; color: var(--ink-soft); }
.confirm__text { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  transform: translate3d(-50%, 20px, 0);
  background: var(--ink);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--radius-l);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast.is-on { opacity: 1; transform: translate3d(-50%, 0, 0); }

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--blue);
  z-index: 65;
}

.legal { padding: 34px 0 54px; }
.legal__head { max-width: 720px; margin-bottom: 26px; }
.legal__title { font-size: clamp(26px, 5vw, 34px); margin-bottom: 10px; }
.legal__meta { font-size: 12px; color: var(--muted); }
.legal__layout { display: grid; gap: 28px; }
.legal__toc {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px;
  box-shadow: var(--shadow-s);
}
.legal__toc h2 { font-size: 12px; letter-spacing: .08em; margin-bottom: 12px; color: var(--blue); }
.legal__toc ol { margin: 0; padding-left: 18px; display: grid; gap: 8px; font-size: 12px; color: var(--ink-soft); }
.legal__toc a:hover { color: var(--blue); }
.legal__body { display: grid; gap: 26px; max-width: 760px; }
.legal__body section { scroll-margin-top: 130px; }
.legal__body h2 { font-size: 17px; margin-bottom: 10px; }
.legal__body h3 { font-size: 13px; margin: 14px 0 6px; }
.legal__body p { font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
.legal__body ul { display: grid; gap: 7px; font-size: 13px; color: var(--ink-soft); padding-left: 18px; list-style: disc; }
.legal__body a { color: var(--blue); text-decoration: underline; }
.legal__table { width: 100%; border-collapse: collapse; font-size: 12px; }
.legal__table th, .legal__table td {
  border: 1px solid var(--line);
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
  color: var(--ink-soft);
}
.legal__table th { background: #f7f8fa; color: var(--ink); font-weight: 600; }

@media (max-width: 719px) {
  .strip__text br, .section-sub br, .hero__text br, .cta__text br, .promo__note br { display: none; }
}

@media (min-width: 560px) {
  .usps__list { grid-template-columns: repeat(2, 1fr); }
  .usps__item + .usps__item { border-left: 0; }
  .field-pair { grid-template-columns: 1fr 1fr; }
  .checkout__actions { grid-template-columns: 1fr 1fr; }
  .footer__bottom { grid-template-columns: auto auto; align-items: center; justify-content: space-between; }
}

@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .room-card { flex: 0 0 50%; }
  .promos__row { grid-template-columns: 1.7fr 1fr; }
  .tool__text { display: block; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .legal__layout { grid-template-columns: 240px minmax(0, 1fr); align-items: start; }
  .legal__toc { position: sticky; top: 130px; }
}

@media (min-width: 900px) {
  body { font-size: 15px; }
  .burger { display: none; }
  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
  }
  .nav__list { display: flex; gap: 26px; }
  .nav__cta { margin-left: 10px; }
  .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .usps__list { grid-template-columns: repeat(4, 1fr); padding: 6px; }
  .usps__item + .usps__item { border-left: 1px solid var(--line); }
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 420px;
  }
  .hero__media { max-width: none; align-self: end; }
  .hero__media img { border-radius: 0; }
  .hero__content { padding-left: 20px; }
  .hero__title { font-size: 40px; }
  .rooms__grid { grid-template-columns: 300px minmax(0, 1fr); align-items: center; }
  .promo--main { min-height: 360px; }
  .promo__copy { padding: 44px 48px 0; }
  .promo__note {
    position: absolute;
    right: 40px;
    top: 44px;
    max-width: 190px;
    padding: 0;
    text-align: left;
    color: var(--ink);
  }
  .promo--wide, .promo--small { min-height: 250px; }
  .cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .72) 48%, rgba(255, 255, 255, .2) 100%);
}
.cta__inner { grid-template-columns: 1fr auto; padding-top: 70px; padding-bottom: 70px; }
  .cta__btn { justify-self: end; }
  .search { flex: 0 1 380px; }
}

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