/* Promzona — premium landing (home) */
:root {
  --home-red: #c8102e;
  --home-red-dark: #a00d24;
  --home-dark: #1a1a2e;
  --home-text: #2d2d3a;
  --home-muted: #6b7280;
  --home-bg: #ffffff;
  --home-border: #e8e8ee;
  --home-max: 1200px;
  --home-font: "Montserrat", "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.page-home {
  margin: 0;
  font-family: var(--home-font);
  color: var(--home-text);
  background: var(--home-bg);
  line-height: 1.6;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

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

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

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

/* Top bar */
.home-topbar {
  background: #111827;
  color: #d1d5db;
  font-size: 13px;
}

.home-topbar__inner {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 10px 0;
}

.home-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.home-topbar__item:hover {
  color: #fff;
}

.home-topbar__item .material-symbols-outlined {
  font-size: 16px;
  color: var(--home-red);
}

/* Header */
.home-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s;
}

.home-header.is-scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.home-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.home-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.home-logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #f3f4f6);
  border: 1px solid var(--home-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--home-red);
  overflow: hidden;
}

.home-logo__mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.home-logo__text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--home-dark);
  letter-spacing: -0.03em;
}

.home-logo__text small {
  font-size: 11px;
  color: var(--home-muted);
  font-weight: 500;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.home-nav a {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.home-nav a:hover {
  color: var(--home-red);
  background: rgba(200, 16, 46, 0.08);
}

.home-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Bottom mobile navigation */
.home-bottom-nav {
  display: none;
}

.home-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
  min-width: 0;
}

.home-bottom-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.home-bottom-nav__icon .material-symbols-outlined {
  font-size: 24px;
}

.home-bottom-nav__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.home-bottom-nav__item.is-active {
  color: var(--home-red);
}

.home-bottom-nav__item.is-active .home-bottom-nav__icon .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.home-bottom-nav__item--accent .home-bottom-nav__icon {
  width: 44px;
  height: 44px;
  margin-top: -18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e01a3a 0%, var(--home-red) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.45);
}

.home-bottom-nav__item--accent .home-bottom-nav__icon .material-symbols-outlined {
  font-size: 22px;
  color: #fff;
}

.home-bottom-nav__item--accent.is-active {
  color: var(--home-red);
}

.home-bottom-nav__item--accent.is-active .home-bottom-nav__icon {
  background: linear-gradient(180deg, var(--home-red) 0%, var(--home-red-dark) 100%);
}

/* Buttons */
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.home-btn:hover {
  transform: translateY(-1px);
}

.home-btn--cta {
  background: var(--home-red);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.4);
  font-size: 15px;
  font-weight: 800;
  padding: 13px 26px;
}

.home-btn--cta:hover {
  background: var(--home-red-dark);
  box-shadow: 0 12px 36px rgba(200, 16, 46, 0.5);
}

.home-btn--primary {
  background: linear-gradient(180deg, #e01a3a 0%, var(--home-red) 100%);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.4);
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.home-btn--primary:hover {
  background: linear-gradient(180deg, var(--home-red) 0%, var(--home-red-dark) 100%);
  box-shadow: 0 12px 36px rgba(200, 16, 46, 0.5);
}

.home-btn--white {
  background: #fff;
  color: var(--home-dark) !important;
  border: 2px solid #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  font-weight: 800;
}

.home-btn--white:hover {
  background: #fff;
  color: var(--home-red) !important;
  border-color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.home-btn--outline {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border-color: #fff;
  backdrop-filter: blur(6px);
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.home-btn--outline:hover {
  background: #fff;
  color: var(--home-dark) !important;
  border-color: #fff;
  text-shadow: none;
}

.home-btn--outline-dark {
  background: #fff;
  color: var(--home-dark) !important;
  border: 2px solid var(--home-dark);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.home-btn--outline-dark:hover {
  background: var(--home-dark);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.home-btn--lg {
  padding: 17px 36px;
  font-size: 16px;
  min-height: 54px;
}

.home-btn--hero {
  min-width: 240px;
  letter-spacing: 0.01em;
}

.home-btn--hero .material-symbols-outlined {
  font-size: 22px;
}

.home-btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80") center/cover no-repeat;
  transform: scale(1.02);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.72) 50%,
    rgba(15, 23, 42, 0.85) 100%
  );
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 0 120px;
  max-width: 820px;
}

.home-hero__eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.home-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.home-hero h1 span {
  color: #fecaca;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.home-hero__lead {
  margin: 0 auto 36px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: #f9fafb;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.home-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 640px;
  margin: 0 auto;
}

/* Section head */
.home-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.home-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--home-dark);
  letter-spacing: -0.02em;
}

.home-section-head--light h2 {
  color: var(--home-dark);
}

.home-section-head__line {
  display: block;
  width: 60px;
  height: 4px;
  margin: 0 auto;
  background: var(--home-red);
  border-radius: 2px;
}

.home-section-head__sub {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--home-muted);
}

/* Services */
.home-services {
  padding: 88px 0;
  background: #fff;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.home-service-card {
  display: block;
  text-align: center;
  transition: transform 0.25s;
}

.home-service-card:hover {
  transform: translateY(-6px);
}

.home-service-card__img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s;
}

.home-service-card:hover .home-service-card__img {
  box-shadow: 0 20px 50px rgba(200, 16, 46, 0.2);
}

.home-service-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--home-dark);
}

.home-service-card__city {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--home-red);
}

.home-room-card__city {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--home-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-service-card::after {
  content: "Подробнее →";
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--home-red);
  opacity: 0;
  transition: opacity 0.2s;
}

.home-service-card:hover::after {
  opacity: 1;
}

/* Reasons */
.home-reasons {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.home-reasons__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.94)),
    url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80") center/cover no-repeat;
}

.home-reasons .container {
  position: relative;
  z-index: 1;
}

.home-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-reason-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.home-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200, 16, 46, 0.12);
}

.home-reason-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
}

.home-reason-card__icon {
  width: 64px;
  height: 64px;
  margin: 8px auto 20px;
  border-radius: 50%;
  border: 2px solid var(--home-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--home-red);
}

.home-reason-card__icon .material-symbols-outlined {
  font-size: 28px;
}

.home-reason-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--home-dark);
  text-align: center;
}

.home-reason-card p {
  margin: 0;
  font-size: 14px;
  color: var(--home-muted);
  text-align: center;
  line-height: 1.65;
}

/* Rooms */
.home-rooms {
  padding: 88px 0;
  background: #f9fafb;
}

.home-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s;
}

.home-room-card:hover {
  transform: translateY(-6px);
}

a.home-room-card.home-room-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.home-room-card.home-room-card--link:hover {
  color: inherit;
}

.home-room-card--bookable {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(200, 16, 46, 0.1);
}

.home-room-card--bookable:hover {
  transform: translateY(-4px);
}

.home-room-card--bookable:focus-visible {
  outline: 2px solid var(--home-red);
  outline-offset: 3px;
}

.home-room-card--bookable .home-room-card__foot .home-btn {
  pointer-events: none;
}

.home-room-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.home-room-card__body {
  padding: 24px;
  text-align: center;
}

.home-room-card__body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.home-room-card__body p {
  margin: 0 0 16px;
  color: var(--home-muted);
  font-size: 15px;
}

.home-room-card__body .home-btn {
  width: 100%;
  max-width: 200px;
}

.home-room-card__body strong {
  color: var(--home-red);
  font-size: 18px;
}

.home-rooms__more {
  text-align: center;
  margin-top: 44px;
}

.home-rooms__more .home-btn {
  min-width: 280px;
}

/* CTA band */
.home-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--home-dark) 0%, #2d1f3d 100%);
  color: #fff;
}

.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.home-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
}

.home-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 480px;
}

/* Footer */
.home-footer {
  background: #111827;
  color: #9ca3af;
  padding: 64px 0 0;
  font-size: 14px;
}

.home-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-footer__brand p {
  margin: 16px 0 0;
  max-width: 280px;
  line-height: 1.7;
}

.home-logo--footer .home-logo__text strong {
  color: #fff;
}

.home-logo--footer .home-logo__text small {
  color: #6b7280;
}

.home-footer h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.home-footer li {
  margin-bottom: 10px;
}

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

.home-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
}

.home-footer__bottom a {
  color: #6b7280;
}

.home-footer__bottom a:hover {
  color: var(--home-red);
}

/* Responsive */
@media (max-width: 1024px) {
  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .home-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-home .container {
    width: min(var(--home-max), calc(100% - 32px));
  }

  body.page-home {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .home-topbar {
    font-size: 11px;
  }

  .home-topbar__inner {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 5px 0;
  }

  .home-topbar__item {
    gap: 4px;
    white-space: nowrap;
  }

  .home-topbar__item .material-symbols-outlined {
    font-size: 14px;
  }

  .home-header {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  }

  .home-header__inner {
    padding: 7px 0;
    gap: 8px;
    justify-content: center;
  }

  .home-logo {
    margin: 0 auto;
    gap: 8px;
  }

  .home-logo__mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .home-logo__mark img {
    width: 28px;
    height: 28px;
  }

  .home-logo__text strong {
    display: none;
  }

  .home-logo__text small {
    font-size: 12px;
    font-weight: 700;
    color: var(--home-dark);
    letter-spacing: -0.02em;
  }

  .home-nav {
    display: none !important;
  }

  .home-header__cta-desktop {
    display: none !important;
  }

  .home-header__actions {
    display: none;
  }

  .home-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 400;
    align-items: flex-end;
    justify-content: space-around;
    min-height: 54px;
    padding: 4px 6px calc(4px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  }

  .home-bottom-nav__item {
    padding: 3px 2px;
    gap: 2px;
  }

  .home-bottom-nav__icon {
    width: 24px;
    height: 24px;
  }

  .home-bottom-nav__icon .material-symbols-outlined {
    font-size: 22px;
  }

  .home-bottom-nav__label {
    font-size: 9px;
  }

  .home-bottom-nav__item--accent .home-bottom-nav__icon {
    width: 38px;
    height: 38px;
    margin-top: -14px;
    box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35);
  }

  .home-bottom-nav__item--accent .home-bottom-nav__icon .material-symbols-outlined {
    font-size: 20px;
  }

  .home-hero {
    min-height: 0;
    align-items: flex-end;
  }

  .home-hero__content {
    padding: 28px 0 32px;
    max-width: 100%;
  }

  .home-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .home-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.2;
  }

  .home-hero__lead {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-hero__buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
    max-width: 100%;
  }

  .home-hero__buttons .home-btn {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 800;
    min-height: 50px;
    gap: 8px;
    white-space: normal;
    line-height: 1.2;
    border-radius: 14px;
  }

  .home-hero__buttons .home-btn .material-symbols-outlined {
    font-size: 22px;
    flex-shrink: 0;
  }

  .home-btn--hero {
    min-width: 0;
  }

  .home-services {
    padding: 56px 0;
  }

  .home-reasons {
    padding: 40px 0;
  }

  .home-reasons .home-section-head {
    margin-bottom: 28px;
  }

  .home-reasons .home-section-head h2 {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .home-rooms {
    padding: 40px 0;
  }

  .home-rooms .home-section-head {
    margin-bottom: 24px;
  }

  .home-rooms .home-section-head__sub {
    font-size: 12px;
  }

  .home-cta {
    padding: 24px 0 26px;
    text-align: center;
  }

  .home-cta__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }

  .home-cta h2 {
    font-size: 17px;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .home-cta p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
  }

  .home-cta .home-btn--lg {
    padding: 11px 18px;
    font-size: 13px;
    min-height: 40px;
  }

  .home-cta .home-btn--lg .material-symbols-outlined {
    font-size: 17px;
  }

  .home-cta__inner > .home-btn {
    width: 100%;
    justify-content: center;
  }

  .home-rooms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .home-room-card {
    border-radius: 12px;
  }

  .home-room-card__img {
    height: 96px;
  }

  .home-room-card__body {
    padding: 10px 8px 12px;
  }

  .home-room-card__body h3 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .home-room-card__body p {
    font-size: 10px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .home-room-card__body strong {
    font-size: 13px;
  }

  .home-room-card__body .home-btn {
    max-width: none;
    width: 100%;
    padding: 7px 8px;
    font-size: 11px;
    min-height: 32px;
  }

  .home-rooms__grid .home-room-card:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .home-rooms__more {
    margin-top: 20px;
  }

  .home-rooms__more .home-btn {
    min-width: 0;
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    min-height: 44px;
  }

  .home-services {
    padding: 40px 0;
  }

  .home-services .home-section-head {
    margin-bottom: 24px;
  }

  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .home-service-card__img {
    aspect-ratio: 1;
    margin-bottom: 8px;
    border-radius: 10px;
  }

  .home-service-card h3 {
    font-size: 12px;
    line-height: 1.25;
  }

  .home-service-card::after {
    display: none;
  }


  .home-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .home-reason-card {
    padding: 18px 10px 14px;
    border-radius: 12px;
  }

  .home-reason-card__num {
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 4px;
  }

  .home-reason-card__icon {
    width: 40px;
    height: 40px;
    margin: 2px auto 8px;
    border-width: 1.5px;
  }

  .home-reason-card__icon .material-symbols-outlined {
    font-size: 20px;
  }

  .home-reason-card h3 {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .home-reason-card p {
    font-size: 10px;
    line-height: 1.4;
  }

  .home-footer {
    padding: 18px 0 0;
    font-size: 12px;
  }

  .home-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 10px;
    border-bottom: none;
  }

  .home-footer__brand {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .home-footer__brand .home-logo {
    justify-content: center;
    gap: 8px;
  }

  .home-footer__brand .home-logo__mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .home-footer__brand .home-logo__mark img {
    width: 26px;
    height: 26px;
  }

  .home-footer__brand .home-logo__text strong {
    font-size: 13px;
  }

  .home-footer__brand .home-logo__text small {
    font-size: 10px;
  }

  .home-footer__brand p {
    display: none;
  }

  .home-footer__grid > div:nth-child(2),
  .home-footer__grid > div:nth-child(3) {
    display: none;
  }

  .home-footer__grid > div:last-child {
    text-align: center;
  }

  .home-footer__grid > div:last-child h4 {
    display: none;
  }

  .home-footer__grid > div:last-child ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .home-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 4px 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }

  .home-footer__grid > div:last-child a {
    font-size: 12px;
    font-weight: 600;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.05);
    width: auto;
  }

  .home-footer__grid > div:last-child a:hover {
    background: rgba(200, 16, 46, 0.2);
    color: #fff;
  }

  .home-footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 6px 14px;
    padding: 10px 0 2px;
    font-size: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .home-book__layout {
    grid-template-columns: 1fr;
  }

  .page-contacts .home-book__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-contacts .home-book__main {
    order: -1;
  }

  .page-contacts.is-booking-view .home-page-hero {
    padding: 36px 0 28px;
  }

  .page-contacts.is-booking-view .home-page-hero p {
    display: none;
  }

  #book {
    scroll-margin-top: 72px;
    scroll-margin-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .page-contacts .home-book {
    padding-top: 32px;
    padding-bottom: 24px;
  }
}

/* Nav active */
.home-nav a.is-active {
  color: var(--home-red);
  background: rgba(200, 16, 46, 0.08);
}

/* Inner page hero */
.home-page-hero {
  position: relative;
  padding: 72px 0 64px;
  text-align: center;
  overflow: hidden;
}

.home-page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80") center/cover;
}

.home-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.88), rgba(200, 16, 46, 0.35));
}

.home-page-hero__content {
  position: relative;
  z-index: 1;
}

.home-page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
}

.home-page-hero p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-inline: auto;
}

/* Booking page */
.home-book {
  padding: 64px 0 88px;
  background: #f9fafb;
}

.home-book__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

.home-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-contact-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--home-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.home-contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--home-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-contact-card strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-muted);
  margin-bottom: 4px;
}

.home-contact-card a {
  color: var(--home-red);
  font-weight: 600;
}

.home-contact-card a:hover {
  text-decoration: underline;
}

.home-map {
  margin-top: 16px;
  height: 140px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.6)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=80") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* Mode banner */
.booking-mode {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 28px;
  border: 1px solid var(--home-border);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.booking-mode strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.booking-mode span {
  font-size: 14px;
  color: var(--home-muted);
}

.booking-mode--prepay {
  border-color: rgba(200, 16, 46, 0.25);
  background: linear-gradient(135deg, #fff, #fff5f6);
}

.booking-mode--prepay .material-symbols-outlined {
  color: var(--home-red);
}

.booking-mode--quick {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, #fff, #f0fdf4);
}

.booking-mode--quick .material-symbols-outlined {
  color: #16a34a;
}

/* Guest auth card */
.guest-auth-card {
  margin-bottom: 16px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--home-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.guest-auth-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.guest-auth-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--home-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guest-auth-card__icon .material-symbols-outlined {
  font-size: 26px;
}

.guest-auth-card__head h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: var(--home-dark);
}

.guest-auth-card__hint {
  margin: 0;
  font-size: 13px;
  color: var(--home-muted);
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 4px;
  background: #f3f4f6;
  border-radius: 12px;
}

.auth-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--home-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.auth-tab .material-symbols-outlined {
  font-size: 18px;
}

.auth-tab.is-active {
  background: #fff;
  color: var(--home-red);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.auth-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-form__submit {
  width: 100%;
  margin-top: 4px;
  min-height: 48px;
}

.form-field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-field__input-wrap .material-symbols-outlined {
  position: absolute;
  left: 12px;
  font-size: 20px;
  color: var(--home-muted);
  pointer-events: none;
}

.form-field__input-wrap input {
  padding-left: 42px !important;
}

.guest-account {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guest-account__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
  border: 1px solid rgba(200, 16, 46, 0.12);
  border-radius: 14px;
}

.guest-account__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e01a3a 0%, var(--home-red) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.35);
}

.guest-account__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.guest-account__info strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--home-dark);
  line-height: 1.2;
}

.guest-account__login {
  font-size: 12px;
  font-weight: 600;
  color: var(--home-muted);
}

.guest-account__phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--home-dark);
}

.guest-account__phone .material-symbols-outlined {
  font-size: 16px;
  color: var(--home-red);
}

.guest-account__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  font-size: 13px;
  font-weight: 700;
}

.guest-account__badge .material-symbols-outlined {
  font-size: 18px;
}

.guest-account__logout {
  width: 100%;
  min-height: 42px;
}

/* Forms */
.home-form-card,
.payment-panel {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--home-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.home-form-card h3,
.payment-panel h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--home-dark);
}

.booking-form-hint {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--home-muted);
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--home-muted);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--home-border);
  background: #fafafa;
  font-family: inherit;
  font-size: 15px;
  color: var(--home-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--home-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
  background: #fff;
}

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

.form-field input[readonly] {
  background: #f3f4f6;
  color: var(--home-muted);
}

.phone-input-wrap {
  position: relative;
}

.phone-input-wrap .iti {
  display: block;
  width: 100%;
}

.phone-input-wrap .iti__tel-input,
.phone-input-wrap .iti input[type="tel"] {
  width: 100%;
  padding: 13px 16px 13px 98px;
  border-radius: 10px;
  border: 1px solid var(--home-border);
  background: #fafafa;
  font-family: inherit;
  font-size: 15px;
  color: var(--home-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-input-wrap .iti__tel-input:focus,
.phone-input-wrap .iti input[type="tel"]:focus {
  outline: none;
  border-color: var(--home-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
  background: #fff;
}

.phone-input-wrap .iti--separate-dial-code .iti__selected-country {
  background: #f3f4f6;
  border-right: 1px solid var(--home-border);
  border-radius: 10px 0 0 10px;
}

.phone-input-wrap .iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-dark);
}

.phone-input-wrap .iti__selected-country-primary {
  padding-left: 10px;
}

.phone-input-wrap .iti__arrow {
  border-top-color: var(--home-muted);
}

.phone-input-wrap .iti__country-list {
  border-radius: 12px;
  border: 1px solid var(--home-border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  max-height: 240px;
  margin-top: 6px;
  font-size: 14px;
}

.phone-input-wrap .iti__country.iti__highlight {
  background: rgba(200, 16, 46, 0.08);
}

.phone-input-wrap .iti__search-input {
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--home-border);
  font-family: inherit;
  font-size: 14px;
}

.phone-input-wrap .iti--disabled .iti__tel-input,
.phone-input-wrap .iti--disabled input[type="tel"] {
  background: #f3f4f6;
  color: var(--home-muted);
  pointer-events: none;
}

.home-form-card.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Blocked / success / payment */
.booking-blocked {
  padding: 32px;
  text-align: center;
  border-radius: 16px;
  background: #fef2f2;
  border: 2px dashed rgba(200, 16, 46, 0.35);
  margin-bottom: 20px;
}

.booking-blocked .material-symbols-outlined {
  font-size: 40px;
  color: var(--home-red);
}

.booking-blocked h4 {
  margin: 10px 0 8px;
}

.booking-blocked p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
}

.payment-panel {
  margin-top: 0;
}

.payment-booking-info {
  margin: 0 0 12px;
  color: var(--home-muted);
  font-size: 14px;
}

.payment-amount {
  margin: 0 0 20px;
  font-size: 17px;
}

.payment-amount strong {
  color: var(--home-red);
  font-size: 22px;
}

.payment-methods {
  margin-bottom: 16px;
}

.payment-qr-wrap {
  text-align: center;
  padding: 14px 12px 12px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 12px;
}

.payment-qr-wrap img {
  display: block;
  max-width: 220px;
  width: 100%;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.payment-qr-wrap img[hidden],
.payment-qr-loader[hidden] {
  display: none !important;
}

.payment-qr-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--home-muted);
}

.payment-qr-loader .material-symbols-outlined {
  font-size: 22px;
  color: var(--home-red);
  animation: payment-spin 1.2s linear infinite;
}

@keyframes payment-spin {
  to {
    transform: rotate(360deg);
  }
}

.payment-qr-app-link {
  margin-bottom: 0;
  padding: 10px 16px;
  font-size: 13px;
}

.payment-qr-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.16);
  text-align: left;
}

.payment-qr-status__main {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  flex: 1;
}

.payment-qr-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: payment-pulse 1.4s ease-in-out infinite;
}

@keyframes payment-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

.payment-qr-status__text {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #15803d;
}

.payment-qr-status__btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  color: var(--home-dark);
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.payment-qr-status__btn .material-symbols-outlined {
  font-size: 15px;
}

.payment-qr-status__btn:active {
  transform: scale(0.97);
}

.payment-qr-status.is-loading {
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.18);
}

.payment-qr-status.is-loading .payment-qr-status__dot {
  background: #d97706;
  animation: none;
}

.payment-qr-status.is-loading .payment-qr-status__text {
  color: #b45309;
}

.payment-qr-status.is-paid {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.22);
}

.payment-qr-status.is-paid .payment-qr-status__dot {
  animation: none;
  background: #16a34a;
}

.payment-qr-status.is-error {
  background: rgba(220, 38, 38, 0.07);
  border-color: rgba(220, 38, 38, 0.16);
}

.payment-qr-status.is-error .payment-qr-status__dot {
  background: #dc2626;
  animation: none;
}

.payment-qr-status.is-error .payment-qr-status__text {
  color: #b91c1c;
}

.payment-qr-hint {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--home-muted);
}

.payment-warn-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.payment-warn-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.payment-warn-open {
  overflow: hidden;
}

.payment-warn-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
}

.payment-warn-modal__sheet {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 22px 20px 20px;
  border-radius: 20px 20px 0 0;
  background: #fff;
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.18);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-warn-modal.is-visible .payment-warn-modal__sheet {
  transform: translateY(0);
}

.payment-warn-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--home-muted);
  cursor: pointer;
}

.payment-warn-modal__close .material-symbols-outlined {
  font-size: 20px;
}

.payment-warn-modal__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fffbeb;
  color: #d97706;
}

.payment-warn-modal__icon .material-symbols-outlined {
  font-size: 30px;
}

.payment-warn-modal__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--home-dark);
}

.payment-warn-modal__text {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--home-muted);
}

.payment-warn-modal__text--strong {
  margin-bottom: 16px;
  font-weight: 600;
  color: #92400e;
}

.payment-warn-modal__ok {
  width: 100%;
  min-height: 46px;
}

@media (min-width: 520px) {
  .payment-warn-modal {
    align-items: center;
    padding: 20px;
  }

  .payment-warn-modal__sheet {
    border-radius: 20px;
    transform: translateY(16px) scale(0.96);
  }

  .payment-warn-modal.is-visible .payment-warn-modal__sheet {
    transform: translateY(0) scale(1);
  }
}

.payment-bank-alt {
  padding: 16px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px dashed var(--home-border);
  margin-bottom: 16px;
}

.payment-bank-alt h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.payment-bank-alt p {
  margin: 0;
  font-size: 13px;
  color: var(--home-muted);
}

.payment-bank-alt a {
  color: var(--home-red);
  font-weight: 600;
}


.quick-success {
  padding: 40px 32px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0fdf4, #fff);
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
}

.quick-success .material-symbols-outlined {
  font-size: 48px;
  color: #16a34a;
}

.quick-success h4 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.quick-success p {
  margin: 0;
  color: var(--home-muted);
}

/* Bookings table */
.home-bookings-table {
  margin-top: 56px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--home-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.home-bookings-table__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.home-bookings-table__head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.home-bookings-table__wrap {
  overflow-x: auto;
}

.home-bookings-table__grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.home-bookings-table__grid th,
.home-bookings-table__grid td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--home-border);
  vertical-align: top;
}

.home-bookings-table__grid th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-muted);
  background: #fafafa;
}

.home-bookings-table__grid td small {
  display: block;
  color: var(--home-muted);
  margin-top: 4px;
  font-size: 12px;
}

.bookings-empty {
  text-align: center;
  color: var(--home-muted);
  padding: 32px !important;
}

.booking-status-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(200, 16, 46, 0.08);
  color: var(--home-red);
  border: 1px solid rgba(200, 16, 46, 0.15);
}

/* Rooms page */
.home-page-hero__bg--rooms {
  background-image: url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?w=1600&q=80");
}

.rooms-mini-cal {
  padding: 28px 0 8px;
  background: linear-gradient(180deg, #fff7f8 0%, #fff 100%);
}

.rooms-mini-cal--after-rooms {
  padding: 8px 0 48px;
  background: #fff;
  border-top: 1px solid var(--home-border);
}

.rooms-mini-cal__mount {
  max-width: 520px;
  margin: 0 auto;
}

.rooms-mini-cal__mount--accordion {
  max-width: 640px;
}

.rooms-cal-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rooms-cal-acc {
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rooms-cal-acc.is-open {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.1);
}

.rooms-cal-acc.is-unavailable {
  opacity: 0.72;
}

.rooms-cal-acc__head {
  width: 100%;
  border: none;
  background: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--home-dark);
  transition: background 0.15s;
}

.rooms-cal-acc__head:hover:not(:disabled) {
  background: #fff7f8;
}

.rooms-cal-acc.is-open .rooms-cal-acc__head {
  background: #fff7f8;
  border-bottom: 1px solid #fce7ea;
}

.rooms-cal-acc.is-unavailable .rooms-cal-acc__head {
  cursor: not-allowed;
}

.rooms-cal-acc__head-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.rooms-cal-acc__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0f2;
  color: var(--home-red);
  font-size: 20px;
}

.rooms-cal-acc__head-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.rooms-cal-acc__head-text strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.rooms-cal-acc__head-text small {
  font-size: 11px;
  color: var(--home-muted);
  line-height: 1.25;
}

.rooms-cal-acc__chevron {
  flex-shrink: 0;
  color: var(--home-muted);
  font-size: 22px;
  transition: transform 0.2s;
}

.rooms-cal-acc.is-open .rooms-cal-acc__chevron {
  color: var(--home-red);
}

.rooms-cal-acc__badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 4px 8px;
  border-radius: 999px;
}

.rooms-cal-acc__body {
  padding: 0 8px 8px;
}

.rooms-mini-cal__card--nested {
  border: none;
  box-shadow: none;
  padding: 4px 2px 2px;
  background: transparent;
}

@media (min-width: 640px) {
  .rooms-mini-cal__mount--accordion {
    max-width: 720px;
  }

  .rooms-cal-acc__head {
    padding: 16px 18px;
  }
}

.rooms-mini-cal__card {
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  padding: 16px 14px 14px;
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.08);
}

.rooms-mini-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.rooms-mini-cal__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--home-dark);
}

.rooms-mini-cal__title .material-symbols-outlined {
  font-size: 20px;
  color: var(--home-red);
}

.rooms-mini-cal__nav {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: var(--home-dark);
  cursor: pointer;
}

.rooms-mini-cal__hint {
  margin: 0 0 12px;
  text-align: center;
  font-size: 12px;
  color: var(--home-muted);
}

.rooms-mini-cal__weekdays,
.rooms-mini-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.rooms-mini-cal__weekdays {
  margin-bottom: 6px;
}

.rooms-mini-cal__weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--home-muted);
}

.rooms-mini-cal__cell {
  aspect-ratio: 1;
  border: none;
  border-radius: 12px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 2px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.rooms-mini-cal__cell--empty {
  background: transparent;
  pointer-events: none;
}

.rooms-mini-cal__cell--free {
  background: #ecfdf3;
  color: #166534;
}

.rooms-mini-cal__cell--booked {
  background: #fee2e2;
  color: #b91c1c;
}

.rooms-mini-cal__cell--booked:disabled {
  opacity: 1;
  cursor: not-allowed;
}

.rooms-mini-cal__cell.is-booked-mark .rooms-mini-cal__day,
.rooms-mini-cal__cell--booked .rooms-mini-cal__day {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #dc2626;
}

.rooms-mini-cal__cell.is-range-start,
.rooms-mini-cal__cell.is-range-end {
  background: var(--home-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35);
}

.rooms-mini-cal__cell.is-range-start .rooms-mini-cal__day,
.rooms-mini-cal__cell.is-range-end .rooms-mini-cal__day {
  text-decoration: none;
}

.rooms-mini-cal__cell--blocked {
  background: #f3f4f6;
  color: #9ca3af;
}

.rooms-mini-cal__cell--past {
  background: #fafafa;
  color: #d1d5db;
}

.rooms-mini-cal__cell.is-today {
  box-shadow: inset 0 0 0 2px var(--home-red);
}

.rooms-mini-cal__cell.is-selected {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.22);
}

.rooms-mini-cal__cell:disabled {
  cursor: default;
  opacity: 0.75;
}

.rooms-mini-cal__day {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.rooms-mini-cal__mark {
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.rooms-mini-cal__picker {
  margin-bottom: 12px;
}

.rooms-mini-cal__picker-toggle {
  width: 100%;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  background: #f9fafb;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font: inherit;
  color: var(--home-dark);
}

.rooms-mini-cal__picker-toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.rooms-mini-cal__picker-toggle-label .material-symbols-outlined {
  color: var(--home-red);
  font-size: 20px;
}

.rooms-mini-cal__picker-chevron {
  color: var(--home-muted);
}

.rooms-mini-cal__picker-panel {
  margin-top: 8px;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rooms-mini-cal__room-item {
  width: 100%;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--home-dark);
}

.rooms-mini-cal__room-item:last-child {
  border-bottom: none;
}

.rooms-mini-cal__room-item.is-active {
  background: #fff7f8;
}

.rooms-mini-cal__room-item.is-active .material-symbols-outlined {
  color: var(--home-red);
  font-size: 18px;
  margin-left: auto;
}

.rooms-mini-cal__room-item.is-unavailable {
  opacity: 0.65;
}

.rooms-mini-cal__room-item-main {
  font-size: 14px;
  font-weight: 700;
  flex: 1 1 100%;
}

.rooms-mini-cal__room-item-sub {
  font-size: 11px;
  color: var(--home-muted);
}

.rooms-mini-cal__room-item-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #9ca3af;
}

.rooms-mini-cal__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--home-muted);
}

.rooms-mini-cal__legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rooms-mini-cal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.rooms-mini-cal__dot--free {
  background: #22c55e;
}

.rooms-mini-cal__dot--booked {
  background: #ef4444;
}

.rooms-mini-cal__dot--past {
  background: #d1d5db;
}

.rooms-mini-cal__action {
  margin-top: 12px;
  text-align: center;
}

.rooms-mini-cal__action .home-btn {
  width: 100%;
}

.rooms-mini-cal__loading,
.rooms-mini-cal__empty {
  text-align: center;
  font-size: 14px;
  color: var(--home-muted);
  margin: 0;
}

.home-rooms-page {
  padding: 72px 0 48px;
  background: #fff;
}

.home-rooms-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-rooms-page__grid .home-room-card--full {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--home-border);
  background: #fff;
}

.room-photo-carousel__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.room-photo-carousel__dot.is-active {
  background: var(--home-red);
  transform: scale(1.15);
}

.room-photo-carousel {
  position: relative;
}

.room-photo-carousel__viewport {
  overflow: hidden;
}

.room-photo-carousel__track {
  display: flex;
  transition: transform 0.32s ease;
}

.room-photo-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
}

.room-photo-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.room-photo-carousel__btn--prev {
  left: 12px;
}

.room-photo-carousel__btn--next {
  right: 12px;
}

.room-photo-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}

.room-photo-carousel__count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.home-room-card--full .room-photo-carousel + .home-room-card__body {
  border-top: 1px solid var(--home-border);
}

.home-room-card--full .home-room-card__body {
  text-align: left;
  padding: 24px 26px 26px;
}

.home-room-card--full .home-room-card__body p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--home-muted);
  line-height: 1.65;
}

.home-room-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.home-room-card__tags span {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(200, 16, 46, 0.08);
  color: var(--home-red);
}

.home-room-card__status {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.home-room-card__status--warn {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.home-room-card__status--muted {
  background: rgba(100, 116, 139, 0.15);
  color: #64748b;
}

.home-btn.is-disabled {
  pointer-events: none;
  opacity: 0.65;
}

.home-room-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.home-room-card__price {
  font-size: 14px;
  color: var(--home-muted);
}

.home-room-card__price strong {
  color: var(--home-red);
  font-size: 22px;
  font-weight: 800;
}

.home-room-card__price small {
  font-size: 12px;
}

.home-rooms-page__note {
  text-align: center;
  margin: 40px 0 0;
  font-size: 14px;
  color: var(--home-muted);
}

.home-rooms-page__loading,
.home-rooms-page__empty {
  grid-column: 1 / -1;
  text-align: center;
  margin: 24px 0;
  font-size: 15px;
  color: var(--home-muted);
}

.home-amenities {
  padding: 56px 0 72px;
  background: #f9fafb;
}

.home-amenities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.home-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--home-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--home-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-amenity:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.1);
}

.home-amenity .material-symbols-outlined {
  font-size: 28px;
  color: var(--home-red);
}

@media (max-width: 1024px) {
  .home-rooms-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-amenities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-rooms .home-page-hero {
    padding: 20px 0 14px;
    min-height: 0;
  }

  .page-rooms .home-page-hero__content h1 {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .page-rooms .home-page-hero__content p {
    display: none;
  }

  .page-rooms .home-rooms-page .home-section-head {
    margin-bottom: 10px;
  }

  .page-rooms .home-rooms-page .home-section-head h2 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .page-rooms .home-rooms-page .home-section-head__sub {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.35;
  }

  .rooms-mini-cal--after-rooms {
    padding: 4px 0 28px;
  }

  .rooms-mini-cal--after-rooms .home-section-head {
    margin-bottom: 10px;
  }

  .rooms-mini-cal--after-rooms .home-section-head h2 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .rooms-mini-cal--after-rooms .home-section-head__sub {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .rooms-cal-accordion {
    gap: 5px;
  }

  .rooms-cal-acc {
    border-radius: 10px;
  }

  .rooms-cal-acc.is-open {
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.08);
  }

  .rooms-cal-acc__head {
    padding: 7px 10px;
    gap: 6px;
  }

  .rooms-cal-acc__head-main {
    gap: 8px;
  }

  .rooms-cal-acc__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 17px;
  }

  .rooms-cal-acc__head-text {
    gap: 0;
  }

  .rooms-cal-acc__head-text strong {
    font-size: 13px;
  }

  .rooms-cal-acc__head-text small {
    display: none;
  }

  .rooms-cal-acc__chevron {
    font-size: 20px;
  }

  .rooms-cal-acc__badge {
    font-size: 9px;
    padding: 2px 6px;
  }

  .rooms-cal-acc__body {
    padding: 0 4px 6px;
  }

  .rooms-mini-cal__card--nested {
    padding: 2px 0 0;
  }

  .rooms-mini-cal__card {
    border-radius: 16px;
    padding: 10px 8px 8px;
  }

  .rooms-mini-cal__head {
    margin-bottom: 4px;
  }

  .rooms-mini-cal__title {
    font-size: 13px;
    gap: 4px;
  }

  .rooms-mini-cal__title .material-symbols-outlined {
    font-size: 17px;
  }

  .rooms-mini-cal__nav {
    width: 28px;
    height: 28px;
  }

  .rooms-mini-cal__nav .material-symbols-outlined {
    font-size: 20px;
  }

  .rooms-mini-cal__hint {
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.35;
  }

  .rooms-mini-cal__weekdays {
    margin-bottom: 4px;
  }

  .rooms-mini-cal__weekdays span {
    font-size: 10px;
  }

  .rooms-mini-cal__grid {
    gap: 4px;
  }

  .rooms-mini-cal__cell {
    border-radius: 10px;
    gap: 1px;
  }

  .rooms-mini-cal__day {
    font-size: 11px;
  }

  .rooms-mini-cal__mark {
    font-size: 8px;
  }

  .rooms-mini-cal__legend {
    margin-top: 8px;
    gap: 6px 10px;
    font-size: 10px;
  }

  .rooms-mini-cal__action {
    margin-top: 8px;
  }

  .rooms-mini-cal__action .home-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .rooms-mini-cal__free {
    font-size: 9px;
  }

  .home-rooms-page {
    padding: 12px 0 16px;
  }

  .page-rooms .home-rooms-page__grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .page-rooms .home-rooms-page__grid .home-room-card--full {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 76px;
  }

  .page-rooms .home-room-card--bookable:hover,
  .page-rooms .home-room-card--bookable:active {
    transform: none;
  }

  .page-rooms .home-room-card--bookable:active {
    opacity: 0.88;
  }

  .page-rooms .room-photo-carousel {
    flex: 0 0 76px;
    width: 76px;
    min-height: 76px;
  }

  .page-rooms .room-photo-carousel__viewport,
  .page-rooms .room-photo-carousel__track,
  .page-rooms .room-photo-carousel__slide {
    height: 76px;
    min-height: 76px;
  }

  .page-rooms .room-photo-carousel__btn {
    width: 22px;
    height: 22px;
    opacity: 0.9;
  }

  .page-rooms .room-photo-carousel__btn .material-symbols-outlined {
    font-size: 16px;
  }

  .page-rooms .room-photo-carousel__btn--prev {
    left: 3px;
  }

  .page-rooms .room-photo-carousel__btn--next {
    right: 3px;
  }

  .page-rooms .room-photo-carousel__dots {
    bottom: 4px;
    gap: 3px;
  }

  .page-rooms .room-photo-carousel__dot {
    width: 4px;
    height: 4px;
  }

  .page-rooms .room-photo-carousel__count {
    top: 4px;
    right: 4px;
    font-size: 8px;
    padding: 1px 5px;
  }

  .page-rooms .home-room-card--full .home-room-card__body {
    flex: 1;
    min-width: 0;
    padding: 6px 8px 6px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .page-rooms .home-room-card--full .home-room-card__body h3 {
    font-size: 13px;
    margin: 0;
    line-height: 1.15;
    order: 1;
  }

  .page-rooms .home-room-card--full .home-room-card__body p {
    display: none;
  }

  .page-rooms .home-room-card__tags {
    order: 2;
    gap: 4px;
    margin: 0;
  }

  .page-rooms .home-room-card__tags span {
    font-size: 8px;
    padding: 1px 5px;
  }

  .page-rooms .home-room-card__tags span:nth-child(2) {
    display: none;
  }

  .page-rooms .home-room-card__status {
    order: 2;
    margin: 0;
    font-size: 8px;
    padding: 1px 5px;
  }

  .page-rooms .home-room-card__foot {
    order: 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-top: 2px;
  }

  .page-rooms .home-room-card__price {
    font-size: 9px;
    text-align: left;
    line-height: 1.2;
  }

  .page-rooms .home-room-card__price strong {
    font-size: 14px;
    display: block;
  }

  .page-rooms .home-room-card__price small {
    font-size: 8px;
  }

  .page-rooms .home-room-card__foot .home-btn {
    width: auto;
    flex-shrink: 0;
    padding: 5px 8px;
    font-size: 9px;
    min-height: 26px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.22);
  }

  .home-rooms-page__note {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.35;
  }

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

/* About page */
.home-page-hero__bg--about {
  background-image: url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80");
}

.home-about-story {
  padding: 72px 0;
  background: #fff;
}

.home-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-about-story__img {
  min-height: 420px;
  border-radius: 16px;
  background:
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=900&q=80") center/cover no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.home-about-story__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--home-red);
  background: rgba(200, 16, 46, 0.08);
}

.home-about-story__text h2 {
  margin: 0 0 20px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--home-dark);
  line-height: 1.25;
}

.home-about-story__text p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--home-muted);
  line-height: 1.75;
}

.home-about-stats {
  padding: 0 0 72px;
  background: #fff;
}

.home-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-about-stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fafafa, #fff);
  border: 1px solid var(--home-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.home-about-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--home-red);
  margin-bottom: 6px;
  line-height: 1;
}

.home-about-stat span {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-muted);
}

.home-reasons--about {
  padding: 72px 0;
}

.home-reasons__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.home-reasons__grid--4 .home-reason-card__num {
  display: none;
}

.home-about-team {
  padding: 72px 0;
  background: #f9fafb;
}

.home-about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-about-feature {
  padding: 32px 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--home-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s;
}

.home-about-feature:hover {
  transform: translateY(-4px);
}

.home-about-feature .material-symbols-outlined {
  font-size: 36px;
  color: var(--home-red);
  margin-bottom: 16px;
}

.home-about-feature h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
}

.home-about-feature p {
  margin: 0;
  font-size: 14px;
  color: var(--home-muted);
  line-height: 1.65;
}

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

@media (max-width: 1024px) {
  .home-about-story__grid {
    grid-template-columns: 1fr;
  }

  .home-about-story__img {
    min-height: 300px;
  }

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

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

  .home-about-team__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-about-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-reasons__grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .home-cta__buttons {
    width: 100%;
    flex-direction: row;
    gap: 8px;
  }

  .home-cta__buttons .home-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
    min-height: 38px;
  }
}

/* Booking room picker */
.booking-room-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.booking-room-picker--single {
  grid-template-columns: 1fr;
  max-width: 100%;
}

.booking-room-picker--single .booking-room-card {
  cursor: default;
  pointer-events: none;
}

.booking-room-picker--single .booking-room-card--carousel,
.booking-room-picker--single .booking-room-card--carousel .room-photo-carousel {
  pointer-events: auto;
}

.booking-room-picker--hero {
  grid-template-columns: 1fr;
}

.booking-room-picker--hero .booking-room-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.booking-room-picker--hero .booking-room-card.is-selected {
  border: none;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.booking-room-picker--hero .booking-room-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.booking-room-picker--hero .booking-room-card__body {
  display: none;
}

.booking-room-picker--hero .booking-room-carousel {
  width: 100%;
}

.booking-room-picker--hero .booking-room-carousel .room-photo-carousel__slide {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  max-height: 320px;
  background-size: cover;
  background-position: center;
}

.booking-room-picker--hero .booking-room-carousel .room-photo-carousel__btn {
  pointer-events: auto;
}

.booking-date-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 10px;
}

.booking-date-range__sep {
  display: flex;
  align-items: center;
  color: var(--home-muted);
  font-weight: 700;
  padding-top: 18px;
}

.booking-date-field {
  border: 1px solid var(--home-border);
  border-radius: 14px;
  background: #f9fafb;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--home-dark);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.booking-date-field.is-active {
  border-color: var(--home-red);
  background: #fff7f8;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.booking-date-field__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-muted);
  margin-bottom: 4px;
}

.booking-date-field__value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--home-dark);
}

.booking-date-field.is-active .booking-date-field__value {
  color: var(--home-red);
}

.booking-cal-toggle {
  width: 100%;
  border: 1px dashed rgba(200, 16, 46, 0.35);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-red);
  margin-bottom: 10px;
}

.booking-cal-toggle__chevron {
  font-size: 20px;
}

.booking-cal-panel {
  margin-top: 4px;
}

.booking-cal-panel__hint {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--home-muted);
  text-align: center;
  line-height: 1.45;
}

.booking-inline-cal .rooms-mini-cal__card {
  box-shadow: none;
  border: 1px solid var(--home-border);
  padding: 12px;
}

.booking-inline-cal {
  max-width: 100%;
}

.rooms-mini-cal__cell.is-in-range {
  background: #fff1f2;
  color: var(--home-red);
}

.is-focused-booking .home-page-hero,
.is-focused-booking .home-book__side,
.is-focused-booking #publicBookingsList,
.is-focused-booking #bookingModeBanner {
  display: none !important;
}

.is-focused-booking .home-book {
  padding-top: 20px;
}

.is-focused-booking .home-book__layout {
  display: block;
}

.is-focused-booking .home-book__main {
  max-width: 480px;
  margin: 0 auto;
}

.is-focused-booking .home-form-card {
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.12);
  padding: 24px 20px 28px;
}

.is-focused-booking .home-form-card h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 4px;
}

.is-focused-booking .booking-form-hint {
  text-align: center;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--home-muted);
}

.is-pay-first.is-pay-first--payment .book-form-submit {
  display: none;
}

.is-pay-first.is-pay-first--payment #fieldInlineCalendar {
  display: none;
}

.form-required {
  color: #e53935;
  font-weight: 700;
}

.form-field-hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--home-muted);
}

/* Booking steps & summary */
.booking-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--home-border);
}

.booking-steps--compact {
  margin-top: 0;
  margin-bottom: 14px;
  padding: 10px 12px;
}

.booking-steps__item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  opacity: 0.45;
}

.booking-steps__item.is-active,
.booking-steps__item.is-done {
  opacity: 1;
}

.booking-steps__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  background: #e2e8f0;
  color: #475569;
}

.booking-steps__item.is-active .booking-steps__num {
  background: var(--home-red);
  color: #fff;
}

.booking-steps__item.is-done .booking-steps__num {
  background: #16a34a;
  color: #fff;
}

.booking-steps__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--home-dark);
}

.booking-steps__sep {
  flex-shrink: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #cbd5e1;
}

.booking-summary {
  margin: 0 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(200, 16, 46, 0.14);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.booking-summary--payment {
  margin: 0;
}

.booking-summary__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.booking-summary__toggle-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.booking-summary__icon {
  font-size: 18px;
  color: var(--home-red);
  flex-shrink: 0;
}

.booking-summary__toggle-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.booking-summary__toggle-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--home-dark);
  line-height: 1.25;
}

.booking-summary__toggle-text small {
  font-size: 11px;
  line-height: 1.3;
  color: var(--home-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-summary__badge {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--home-red);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.booking-summary__chevron {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--home-muted);
  transition: transform 0.2s ease;
}

.booking-summary.is-expanded .booking-summary__chevron {
  transform: rotate(180deg);
}

.booking-summary__body {
  padding: 0 12px 10px;
  border-top: 1px solid rgba(200, 16, 46, 0.08);
}

.booking-summary--payment .booking-summary__body {
  padding-top: 0;
}

.booking-summary__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--home-dark);
}

.booking-summary__title .material-symbols-outlined {
  font-size: 18px;
  color: var(--home-red);
}

.booking-summary__list {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
}

.booking-summary__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  font-size: 12px;
}

.booking-summary__item + .booking-summary__item {
  border-top: 1px dashed rgba(200, 16, 46, 0.08);
}

.booking-summary__item-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--home-muted);
  flex-shrink: 0;
}

.booking-summary__item-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--home-dark);
  text-align: right;
  min-width: 0;
}

.booking-summary__item--dates .booking-summary__item-value {
  font-size: 11px;
}

.booking-summary__empty {
  padding: 8px 0;
  font-size: 12px;
  color: var(--home-muted);
  text-align: center;
}

.booking-summary__total {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(200, 16, 46, 0.1);
}

.booking-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.booking-summary__row + .booking-summary__row {
  margin-top: 4px;
}

.booking-summary__row--prepay strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--home-red);
}

.booking-summary__row--rest {
  color: var(--home-muted);
}

.booking-summary__row--rest strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--home-dark);
}

.booking-summary__note {
  margin: 6px 0 0;
  padding: 6px 8px;
  border-radius: 8px;
  background: #f8fafc;
  font-size: 11px;
  line-height: 1.35;
  color: var(--home-muted);
  text-align: center;
}

.booking-summary.is-ready .booking-summary__note {
  background: rgba(22, 163, 74, 0.08);
  color: #15803d;
}

.booking-summary__guest {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid var(--home-border);
  font-size: 12px;
  color: var(--home-dark);
}

.book-form-submit.is-ready {
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.28);
}

.book-form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Booking success animation */
body.booking-success-open {
  overflow: hidden;
}

.booking-success {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.booking-success.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-success__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  animation: bookingSuccessFadeIn 0.4s ease both;
}

.booking-success__card {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 24px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
  overflow: hidden;
  transform: translateY(24px) scale(0.94);
  animation: bookingSuccessPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.booking-success__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.booking-success__piece {
  position: absolute;
  top: -12px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  animation: bookingSuccessConfetti 1.4s ease-out forwards;
}

.booking-success__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
}

.booking-success__check-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-success__circle {
  fill: none;
  stroke: #16a34a;
  stroke-width: 3;
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  animation: bookingSuccessCircle 0.55s ease forwards 0.15s;
}

.booking-success__tick {
  fill: none;
  stroke: #16a34a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: bookingSuccessTick 0.4s ease forwards 0.65s;
}

.booking-success__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 5vw, 26px);
  font-weight: 800;
  color: var(--home-dark);
  animation: bookingSuccessText 0.45s ease 0.55s both;
}

.booking-success__message {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--home-muted);
  animation: bookingSuccessText 0.45s ease 0.65s both;
}

.booking-success__details {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--home-border);
  text-align: left;
  animation: bookingSuccessText 0.45s ease 0.75s both;
}

.booking-success__details div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.booking-success__details span {
  color: var(--home-muted);
}

.booking-success__details strong {
  color: var(--home-dark);
  font-weight: 700;
  text-align: right;
}

.booking-success__downloads {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 0 14px;
  animation: bookingSuccessText 0.45s ease 0.8s both;
}

.booking-success__dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--home-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.booking-success__dl-btn .material-symbols-outlined {
  font-size: 18px;
  color: var(--home-red);
}

.booking-success__dl-btn:hover {
  border-color: rgba(200, 16, 46, 0.35);
  background: #fff5f6;
}

.booking-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  animation: bookingSuccessText 0.45s ease 0.85s both;
}

.booking-success__actions .home-btn {
  min-width: 140px;
}

@keyframes bookingSuccessFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bookingSuccessPop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bookingSuccessCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes bookingSuccessTick {
  to { stroke-dashoffset: 0; }
}

@keyframes bookingSuccessText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bookingSuccessConfetti {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(220px) rotate(540deg);
  }
}

.is-focused-booking .booking-room-field label {
  display: none;
}

.is-focused-booking .booking-cal-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-muted);
  margin-bottom: 10px;
  display: block;
}

.is-focused-booking #guestAuthPanel {
  margin-bottom: 16px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .is-focused-booking .home-book {
    padding-top: 8px;
  }

  .is-focused-booking .home-form-card {
    padding: 18px 14px 22px;
    border-radius: 18px;
  }

  .booking-room-picker--single,
  .booking-room-picker--hero {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .is-focused-booking .booking-room-picker--hero .booking-room-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .is-focused-booking .booking-room-picker--hero .booking-room-carousel .room-photo-carousel__slide {
    aspect-ratio: 4 / 3;
    min-height: 200px;
    max-height: 280px;
  }

  .is-focused-booking .home-book__main {
    max-width: 100%;
  }

  .is-focused-booking .home-form-card {
    margin: 0 -4px;
  }

  .is-focused-booking .book-form-submit {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 12px;
    gap: 6px;
    margin-top: 6px;
    box-shadow: 0 4px 16px rgba(200, 16, 46, 0.28);
  }

  .is-focused-booking .book-form-submit .material-symbols-outlined {
    font-size: 20px;
  }

  .is-focused-booking .book-form-submit:active {
    transform: scale(0.98);
  }
}

.book-form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  margin-top: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #e01a3a 0%, var(--home-red) 50%, #a00d24 100%);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.book-form-submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.4);
  color: #fff;
}

.book-form-submit .material-symbols-outlined {
  font-size: 22px;
}

.booking-room-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border: 2px solid var(--home-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.booking-room-card:hover {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.1);
}

.booking-room-card.is-selected {
  border-color: var(--home-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.booking-room-card__img {
  display: block;
  height: 88px;
  background-size: cover;
  background-position: center;
}

.booking-room-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 10px 12px;
}

.booking-room-card__tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--home-red);
}

.booking-room-card__body strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--home-dark);
  line-height: 1.2;
}

.booking-room-card__price {
  font-size: 11px;
  color: var(--home-muted);
}

.booking-room-card__price b {
  color: var(--home-red);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .booking-room-picker:not(.booking-room-picker--single):not(.booking-room-picker--hero) {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .booking-room-card__img {
    height: 72px;
  }

  .booking-room-card__body {
    padding: 8px;
  }

  .booking-room-card__body strong {
    font-size: 12px;
  }

  .booking-room-card__price {
    font-size: 10px;
  }

  .booking-room-card__price b {
    font-size: 12px;
  }

  .guest-auth-card {
    padding: 18px 16px;
    margin-bottom: 12px;
  }

  .guest-auth-card__head h3 {
    font-size: 17px;
  }

  .guest-auth-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .auth-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-tab {
    font-size: 12px;
    padding: 9px 8px;
  }

  .auth-tab .material-symbols-outlined {
    font-size: 16px;
  }

  .guest-account__profile {
    padding: 12px;
  }

  .guest-account__avatar {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .guest-account__info strong {
    font-size: 14px;
  }

  .home-form-card,
  .payment-panel {
    padding: 20px 16px;
  }

  .booking-steps__label {
    font-size: 11px;
  }

  .booking-steps__sep {
    width: 10px;
  }

  .booking-summary {
    margin-bottom: 10px;
  }

  .booking-summary__toggle {
    padding: 8px 10px;
    gap: 6px;
  }

  .booking-summary__toggle-text strong {
    font-size: 12px;
  }

  .booking-summary__toggle-text small {
    font-size: 10px;
    white-space: normal;
  }

  .booking-summary__badge {
    font-size: 10px;
    padding: 3px 7px;
  }

  .booking-summary__body {
    padding: 0 10px 8px;
  }

  .booking-summary__item {
    padding: 5px 0;
    font-size: 11px;
  }

  .booking-summary__row--prepay strong {
    font-size: 15px;
  }

  .booking-summary__note {
    font-size: 10px;
    padding: 5px 6px;
  }

  .phone-input-wrap .iti__tel-input,
  .phone-input-wrap .iti input[type="tel"] {
    padding: 11px 12px 11px 92px;
    font-size: 14px;
  }

  .phone-input-wrap .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 13px;
  }

  .phone-input-wrap .iti__country-list {
    max-height: 200px;
    width: min(100vw - 32px, 320px);
  }

  .payment-qr-wrap {
    padding: 12px 10px 10px;
    margin-bottom: 10px;
  }

  .payment-qr-wrap img {
    max-width: 200px;
    margin-bottom: 8px;
    padding: 7px;
  }

  .payment-qr-loader {
    min-height: 100px;
    font-size: 12px;
  }

  .payment-qr-app-link {
    padding: 8px 12px;
    font-size: 12px;
  }

  .payment-qr-status {
    margin-top: 8px;
    padding: 7px 8px;
    gap: 6px;
  }

  .payment-qr-status__text {
    font-size: 11px;
  }

  .payment-qr-status__btn {
    padding: 4px 8px;
    font-size: 10px;
  }

  .payment-qr-status__btn .material-symbols-outlined {
    font-size: 14px;
  }

  .payment-qr-hint {
    font-size: 10px;
    margin-top: 6px;
  }

  .payment-bank-alt {
    padding: 12px;
    margin-bottom: 10px;
  }

  .payment-bank-alt h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .payment-bank-alt p {
    font-size: 12px;
  }
}

/* ── Contacts page ── */
.home-page-hero__bg--contacts {
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600&q=80");
}

.contacts-hero {
  padding: clamp(56px, 8vw, 88px) 0 clamp(48px, 6vw, 72px);
}

.contacts-hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(200, 16, 46, 0.45) 55%,
    rgba(26, 26, 46, 0.75) 100%
  );
}

.contacts-hero__content {
  max-width: 720px;
}

.contacts-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.contacts-hero__eyebrow .material-symbols-outlined {
  font-size: 18px;
  color: #fca5a5;
}

.contacts-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contacts-hero h1 span {
  color: #fca5a5;
}

.contacts-hero__lead {
  margin: 0 auto 28px !important;
  max-width: 560px !important;
  font-size: clamp(15px, 2vw, 17px) !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.contacts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.contacts-hero__actions .home-btn--white {
  background: rgba(255, 255, 255, 0.95);
  color: var(--home-dark);
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.contacts-hero__actions .home-btn--white:hover {
  background: #fff;
  transform: translateY(-2px);
}

.contacts-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contacts-hero__stat {
  min-width: 110px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  text-align: center;
}

.contacts-hero__stat strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.contacts-hero__stat span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.contacts-quick {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  padding-bottom: 8px;
}

.contacts-quick__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.contacts-quick__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--home-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.contacts-quick__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.25);
}

.contacts-quick__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--home-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-quick__item--wa .contacts-quick__icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.contacts-quick__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contacts-quick__text strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--home-dark);
}

.contacts-quick__text small {
  font-size: 12px;
  color: var(--home-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-contacts .home-book {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200, 16, 46, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.contacts-book-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.contacts-book-head .home-section-head {
  flex: 1;
  min-width: 260px;
  margin-bottom: 0;
}

.contacts-book-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid var(--home-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contacts-book-steps__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--home-muted);
  white-space: nowrap;
}

.contacts-book-steps__item em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3f4f6;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: var(--home-muted);
}

.contacts-book-steps__item.is-active {
  color: var(--home-red);
}

.contacts-book-steps__item.is-active em {
  background: var(--home-red);
  color: #fff;
}

.contacts-book-steps__line {
  width: 20px;
  height: 2px;
  background: var(--home-border);
  border-radius: 1px;
}

.page-contacts .home-book__layout {
  grid-template-columns: 340px 1fr;
  gap: 28px;
}

.contacts-side {
  position: sticky;
  top: calc(var(--contacts-sticky-top, 88px));
}

.contacts-side__card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--home-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  padding: 22px 20px;
  margin-bottom: 14px;
}

.contacts-side__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--home-dark);
}

.contacts-side__title .material-symbols-outlined {
  font-size: 22px;
  color: var(--home-red);
}

.page-contacts .home-contact-cards {
  gap: 10px;
}

.page-contacts .home-contact-card {
  padding: 14px 16px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.page-contacts .home-contact-card:hover {
  transform: translateX(4px);
  border-color: rgba(200, 16, 46, 0.2);
  box-shadow: 0 6px 24px rgba(200, 16, 46, 0.08);
}

.contacts-wa-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(22, 163, 74, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contacts-wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.4);
  color: #fff;
}

.contacts-wa-cta__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-wa-cta strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.contacts-wa-cta small {
  display: block;
  font-size: 12px;
  opacity: 0.88;
  margin-top: 2px;
}

.contacts-wa-cta__arrow {
  margin-left: auto;
  font-size: 20px;
  opacity: 0.8;
}

.contacts-map {
  margin-top: 0;
  height: 180px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contacts-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(rgba(26, 26, 46, 0.35), rgba(26, 26, 46, 0.65));
  color: #fff;
  text-align: center;
}

.contacts-map__overlay .material-symbols-outlined {
  font-size: 32px;
  margin-bottom: 4px;
  opacity: 0.9;
}

.contacts-map__overlay strong {
  font-size: 15px;
  font-weight: 800;
}

.contacts-map__overlay small {
  font-size: 12px;
  opacity: 0.8;
}

.page-contacts .home-form-card {
  border-radius: 20px;
  border: 1px solid rgba(200, 16, 46, 0.1);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.page-contacts .home-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--home-red), #e01a3a, var(--home-red-dark));
}

.page-contacts .home-form-card h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}

.page-contacts .guest-auth-card {
  border-radius: 18px;
  border-color: rgba(200, 16, 46, 0.1);
}

.page-contacts .booking-mode {
  border-radius: 16px;
  animation: contactsFadeIn 0.4s ease;
}

@keyframes contactsFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-contacts .booking-room-picker:not(.booking-room-picker--single):not(.booking-room-picker--hero) {
  gap: 14px;
}

.page-contacts .booking-room-card {
  border-radius: 14px;
}

.page-contacts .booking-room-card__img {
  height: 110px;
}

.page-contacts .booking-room-card__body strong {
  font-size: 14px;
}

.contacts-form-submit {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
  margin-top: 4px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.3);
}

.contacts-form-submit:hover {
  box-shadow: 0 12px 36px rgba(200, 16, 46, 0.4);
}

.contacts-bookings {
  border-radius: 20px;
  overflow: hidden;
}

.contacts-bookings__sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--home-muted);
}

.contacts-trust {
  padding: 56px 0 72px;
  background: var(--home-dark);
  color: #fff;
}

.contacts-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contacts-trust__item {
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, transform 0.2s;
}

.contacts-trust__item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.contacts-trust__item .material-symbols-outlined {
  font-size: 28px;
  color: #fca5a5;
  margin-bottom: 12px;
}

.contacts-trust__item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contacts-trust__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.is-focused-booking .contacts-quick,
.is-focused-booking .contacts-book-head,
.is-focused-booking .contacts-trust,
.is-focused-booking .contacts-side {
  display: none !important;
}

.is-focused-booking.page-contacts .home-book {
  background: linear-gradient(180deg, #fff7f8 0%, #f9fafb 100%);
  padding-top: 12px;
}

@media (max-width: 1024px) {
  .contacts-quick__inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-contacts .home-book__layout {
    grid-template-columns: 1fr;
  }

  .contacts-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .contacts-hero {
    padding: 44px 0 56px;
    text-align: center;
  }

  .contacts-hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px;
  }

  .contacts-hero__actions .home-btn {
    width: 100%;
    justify-content: center;
  }

  .contacts-hero__stats {
    gap: 8px;
  }

  .contacts-hero__stat {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
  }

  .contacts-hero__stat strong {
    font-size: 13px;
  }

  .contacts-quick {
    margin-top: -20px;
    padding: 0 0 4px;
  }

  .contacts-quick__inner {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .contacts-quick__item {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .contacts-quick__icon {
    width: 38px;
    height: 38px;
  }

  .contacts-book-head {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .contacts-book-steps {
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 14px;
  }

  .contacts-book-steps__line {
    width: 12px;
  }

  .page-contacts .home-book__main {
    order: -1;
  }

  .contacts-side__card {
    padding: 18px 16px;
  }

  .contacts-map {
    height: 140px;
  }

  .contacts-trust {
    padding: 40px 0 56px;
  }

  .contacts-trust__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contacts-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .contacts-trust__item .material-symbols-outlined {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .page-contacts.is-booking-view .contacts-hero {
    padding: 32px 0 40px;
  }

  .page-contacts.is-booking-view .contacts-hero__lead,
  .page-contacts.is-booking-view .contacts-hero__actions,
  .page-contacts.is-booking-view .contacts-hero__stats {
    display: none;
  }

  .page-contacts.is-booking-view .contacts-quick {
    display: none;
  }
}

/* ── Contacts-only page ── */
.contacts-main {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.contacts-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contacts-main__book-note {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--home-border);
  font-size: 14px;
  color: var(--home-muted);
}

.contacts-main__book-note a {
  color: var(--home-red);
  font-weight: 700;
}

#contacts-map {
  scroll-margin-top: calc(88px + 12px);
}

.contacts-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 420px;
}

.contacts-map--large {
  flex: 1;
  min-height: 380px;
}

.contacts-map--google {
  padding: 0;
  background: #e8e8ee;
  position: relative;
}

.contacts-map--google iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.contacts-map__panel {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  max-width: 340px;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--home-border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  z-index: 2;
  pointer-events: auto;
}

.contacts-map__pin {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--home-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-map__pin .material-symbols-outlined {
  font-size: 28px;
}

.contacts-map__panel-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contacts-map__panel-body strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--home-dark);
  line-height: 1.2;
}

.contacts-map__panel-body > span {
  font-size: 12px;
  color: var(--home-muted);
  line-height: 1.4;
}

.contacts-map__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.contacts-map__panel-actions .home-btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  padding: 8px 10px;
  font-size: 11px;
  min-height: 36px;
}

.contacts-map__panel-actions .home-btn .material-symbols-outlined {
  font-size: 16px;
}

/* ── Book page ── */
.page-book .home-book {
  padding-top: 40px;
}

.page-book__layout {
  display: block;
  max-width: 640px;
  margin: 0 auto;
}

.page-book__main {
  width: 100%;
}

.page-book__help {
  margin: 24px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--home-muted);
}

.page-book__help a {
  color: var(--home-red);
  font-weight: 600;
}

.is-focused-booking .book-hero,
.is-focused-booking #bookingModeBanner {
  display: none !important;
}

.is-focused-booking.page-book .home-book {
  padding-top: 16px;
}

.book-pick-room {
  max-width: 480px;
  margin: 0 auto 24px;
}

.book-pick-room--calendar {
  max-width: 520px;
}

.book-pick-room--calendar .book-pick-room__head {
  text-align: center;
  margin-bottom: 20px;
}

.book-pick-room__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.book-pick-room__call-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-muted);
}

.book-pick-room__call-link:hover {
  color: var(--home-red);
}

.book-pick-room__card {
  text-align: center;
  padding: 36px 24px 32px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.book-pick-room__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(200, 16, 46, 0.1);
  color: var(--home-red);
  font-size: 32px;
  margin-bottom: 16px;
}

.book-pick-room--warn .book-pick-room__icon {
  background: rgba(251, 191, 36, 0.15);
  color: #d97706;
}

.book-pick-room__card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--home-dark);
}

.book-pick-room__card p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--home-muted);
}

.book-pick-room__card .home-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.book-pick-room__call {
  width: 100%;
  justify-content: center;
}

.book-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-red);
}

.book-back-link:hover {
  text-decoration: underline;
}

.page-book:not(.is-focused-booking) .home-book {
  padding-top: 32px;
}

.page-book.is-focused-booking .page-book__layout {
  max-width: 480px;
}

@media (max-width: 768px) {
  .book-pick-room__card {
    padding: 28px 18px 24px;
    border-radius: 18px;
  }

  .book-pick-room__card h2 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .contacts-main__grid {
    grid-template-columns: 1fr;
  }

  .contacts-map-wrap {
    min-height: 300px;
  }

  .contacts-map--large,
  .contacts-map--google iframe {
    min-height: 300px;
  }

  .contacts-map__panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    padding: 12px 14px;
  }

  .contacts-map__panel-actions {
    flex-direction: column;
  }

  .contacts-map__panel-actions .home-btn {
    width: 100%;
  }
}

/* ——— Чат / вопросы (главная) ——— */
.home-chat {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1200;
  font-family: var(--home-font);
}

.home-chat__fab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-red), var(--home-red-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.home-chat__fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.45);
}

.home-chat__fab .material-symbols-outlined {
  font-size: 22px;
}

.home-chat.is-open .home-chat__fab {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

.home-chat__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(380px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 100px));
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.22);
  overflow: hidden;
}

.home-chat__panel[hidden] {
  display: none !important;
}

.home-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1a1a2e, #2d2d3a);
  color: #fff;
}

.home-chat__head-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.home-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--home-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.home-chat__head strong {
  display: block;
  font-size: 14px;
}

.home-chat__head small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  opacity: 0.85;
  margin-top: 2px;
}

.home-chat__online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
  flex-shrink: 0;
}

.home-chat__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-chat__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.home-chat__footer {
  flex-shrink: 0;
  border-top: 1px solid var(--home-border);
  background: #fff;
}

.home-chat__contact {
  border-bottom: 1px solid var(--home-border);
}

.home-chat__contact summary {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--home-muted);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.home-chat__contact summary::-webkit-details-marker {
  display: none;
}

.home-chat__contact summary::before {
  content: "+ ";
  color: var(--home-red);
  font-weight: 700;
}

.home-chat__contact[open] summary::before {
  content: "− ";
}

.home-chat__guest-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 10px;
}

.home-chat__mini-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--home-border);
  border-radius: 10px;
  font-size: 12px;
  font-family: inherit;
}

.home-chat__mini-input:focus {
  outline: none;
  border-color: var(--home-red);
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.12);
}

.home-chat__suggest {
  flex-shrink: 0;
  padding: 8px 12px 12px;
  background: #f4f6fb;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.home-chat__suggest[hidden] {
  display: none !important;
}

.home-chat__suggest-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-muted);
}

.home-chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.home-chat__chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: #f8f9fc;
  color: var(--home-text);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.home-chat__chip:hover {
  background: #fff5f7;
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--home-red);
}

.home-chat__messages {
  flex: 1 1 auto;
  min-height: 120px;
  overflow-y: auto;
  padding: 14px;
  background: #f4f6fb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-chat__msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.home-chat__msg p {
  margin: 0;
}

.home-chat__msg p + p {
  margin-top: 8px;
}

.home-chat__msg--user {
  align-self: flex-end;
  background: var(--home-red);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.home-chat__msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--home-border);
  border-bottom-left-radius: 4px;
  color: var(--home-text);
}

.home-chat__msg--bot strong {
  color: var(--home-red);
}

.home-chat__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--home-red);
}

.home-chat__link:hover {
  text-decoration: underline;
}

.home-chat__hint {
  font-size: 11px !important;
  color: var(--home-muted) !important;
}

.home-chat__msg--typing {
  padding: 12px 16px;
}

.home-chat__dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.home-chat__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-muted);
  opacity: 0.5;
  animation: home-chat-dot 1.2s ease-in-out infinite;
}

.home-chat__dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.home-chat__dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes home-chat-dot {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.home-chat__form {
  display: flex;
  gap: 8px;
  padding: 12px;
}

.home-chat__input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
}

.home-chat__input:focus {
  outline: none;
  border-color: var(--home-red);
}

.home-chat__send {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--home-red);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-chat__send:hover {
  background: var(--home-red-dark);
}

@media (max-width: 1024px) {
  .home-chat {
    bottom: 88px;
    right: 16px;
  }

  .home-chat__fab-label {
    display: none;
  }

  .home-chat__fab {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .home-chat__guest-fields {
    grid-template-columns: 1fr;
  }
}
