@font-face { font-family: 'Noah'; src: url('assets/fonts/Noah-Thin.woff2') format('woff2'); font-weight: 100; font-style: normal; font-display: swap }
@font-face { font-family: 'Noah'; src: url('assets/fonts/Noah-UltraLight.woff2') format('woff2'); font-weight: 200; font-style: normal; font-display: swap }
@font-face { font-family: 'Noah'; src: url('assets/fonts/Noah-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap }
@font-face { font-family: 'Noah'; src: url('assets/fonts/Noah-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap }
@font-face { font-family: 'Noah'; src: url('assets/fonts/Noah-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap }
@font-face { font-family: 'Noah'; src: url('assets/fonts/Noah-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap }

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

:root {
  --f-heading: 'Tenor Sans', sans-serif;
  --f-body: 'Noah', sans-serif;
  --accent: #0056A2;
  --accent-light: #3a7ec8;
  --accent-dark: #004080;
  --beige: #d4c5b3;
  --beige-light: #f0ebe4;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --bg-alt: #f8f5f1;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-accent: 0 8px 28px rgba(0,86,162,.3);
  --border: 1px solid rgba(0,0,0,.04);
}

html { scroll-behavior: smooth }

body {
  font: 400 16px/1.7 var(--f-body);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .25s;
}
a:hover { color: var(--accent-dark) }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s }
.reveal-delay-2 { transition-delay: .2s }
.reveal-delay-3 { transition-delay: .3s }
.reveal-delay-4 { transition-delay: .4s }
.reveal-delay-5 { transition-delay: .5s }

/* ===== TOP BAR ===== */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 101;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .4s, border-color .4s, transform .4s;
}
.topbar.scrolled {
  background: var(--accent-dark);
  border-color: transparent;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  font: 400 .78rem/1.4 var(--f-body);
  color: rgba(255,255,255,.75);
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__item {
  display: none;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .7;
}
.topbar__item a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  transition: color .25s;
}
.topbar__item a:hover { color: #fff }

.topbar__address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  letter-spacing: .02em;
}
.topbar__address svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .7;
}

.topbar__social {
  display: none;
  align-items: center;
  gap: 12px;
}
.topbar__social a {
  color: rgba(255,255,255,.65);
  transition: color .25s;
  display: flex;
}
.topbar__social a:hover { color: #fff }
.topbar__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .4s, box-shadow .4s, top .4s;
}
.header.scrolled {
  top: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.06);
}
.header.scrolled .topbar-spacer { display: none }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  transition: opacity .4s;
  flex-shrink: 0;
}
.logo img {
  height: 44px;
  width: auto;
}
.logo--white img { filter: brightness(0) invert(1) }
.header.scrolled .logo--white img { filter: none }

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .02em;
  padding-bottom: 4px;
  position: relative;
  transition: color .25s;
}
.header.scrolled .nav a { color: var(--muted) }
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width .35s, left .35s;
}
.nav a:hover { color: #fff }
.header.scrolled .nav a:hover { color: var(--accent) }
.nav a:hover::after { width: 100%; left: 0 }


.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__phone {
  display: none;
  flex-direction: column;
  text-align: right;
  text-decoration: none;
}
.header__phone-number {
  font: 700 1rem/1.2 var(--f-body);
  color: #fff;
  letter-spacing: .03em;
  transition: color .4s;
}
.header.scrolled .header__phone-number { color: var(--text) }
.header__phone-label {
  font: 400 .7rem/1.3 var(--f-body);
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
  transition: color .4s;
}
.header.scrolled .header__phone-label { color: var(--muted) }
.header__phone:hover .header__phone-number { color: var(--accent) !important }

.header__cta {
  display: none;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
  transform-origin: center;
}
.header.scrolled .burger span { background: var(--text) }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px) }
.burger.active span:nth-child(2) { opacity: 0 }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px) }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,.98);
  backdrop-filter: blur(24px);
  z-index: 99;
  padding: 130px 32px 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  overflow-y: auto;
}
.mobile-menu.active { opacity: 1; pointer-events: all }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu__nav a {
  font: 400 1.35rem/1.3 var(--f-heading);
  letter-spacing: .02em;
  color: rgba(255,255,255,.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .25s, padding-left .25s;
}
.mobile-menu__nav a:hover { color: var(--accent); padding-left: 12px }

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu__phone {
  font: 700 1.4rem/1.3 var(--f-body);
  color: #fff;
}
.mobile-menu__phone:hover { color: var(--accent) }
.mobile-menu__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font: 400 .9rem/1.5 var(--f-body);
  color: rgba(255,255,255,.5);
}
.mobile-menu__address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
  opacity: .6;
}
.mobile-menu__cta {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: .88rem;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 600 .9rem/1.4 var(--f-body);
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: .03em;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--secondary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}
.btn--white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  font-size: 1rem;
  padding: 18px 48px;
}
.btn--white:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding: 8px 0;
  border-radius: 0;
  font: 600 .85rem/1.4 var(--f-body);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s;
}
.btn--ghost:hover { transform: none; color: var(--accent-dark) }
.btn--ghost:hover::after { transform: scaleX(1); transform-origin: left }

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('./assets/img/top-bg.webp') center / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.5) 0%, transparent 30%),
    linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.1) 100%),
    linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 50%);
}

.hero__body {
  padding: 0 0 24px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.hero__body .container { width: 100% }
.hero__content {
  max-width: 660px;
}

.hero__accent-line {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font: 400 1.7rem/1.15 var(--f-heading);
  letter-spacing: .03em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--beige);
}
.hero__subtitle {
  font: 400 .88rem/1.65 var(--f-body);
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  max-width: 500px;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__buttons .btn {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: .85rem;
}

/* stats strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgb(35 35 35 / 8%);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero__stat {
  padding: 16px 16px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(16px);
}
.hero__stat-value {
  font: 400 1.15rem/1.2 var(--f-heading);
  letter-spacing: .02em;
  color: var(--beige);
  margin-bottom: 2px;
}
.hero__stat-label {
  font: 400 .72rem/1.5 var(--f-body);
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
}

/* vertical side text */
.hero__side {
  display: none;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font: 500 .7rem/1 var(--f-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}


/* breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: .8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.breadcrumbs a {
  color: rgba(255,255,255,.5);
  transition: color .25s;
}
.breadcrumbs a:hover { color: #fff }
.breadcrumbs__sep {
  color: rgba(255,255,255,.3);
  font-size: .65rem;
}
.breadcrumbs__current {
  color: rgba(255,255,255,.8);
}

/* sections */
.section { padding: 80px 0 }
.section--alt { background: var(--bg-alt) }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__label, .promo-card__label, .cta__label {
  display: inline-block;
  font: 600 .75rem/1.4 var(--f-body);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__header h2 {
  font: 400 1.55rem/1.2 var(--f-heading);
  letter-spacing: .02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section__header p {
  color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.4;
}

.section__divider {
  display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 16px;
}
.section__divider::before,
.section__divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: .5;
}
.section__divider-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* about & cafe shared */
.about, .cafe__content {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about__image-wrap, .cafe__image-wrap { position: relative }
.about__image, .cafe__image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img, .cafe__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s;
}
.about__image:hover img, .cafe__image:hover img { transform: scale(1.05) }
.about__text, .cafe__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.about__image-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  opacity: .3;
}
.about__text p + p { margin-top: 20px }

/* rooms — top row: 2 horizontal cards, bottom row: 3 vertical */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
/* ===== ROOMS TABS ===== */
.rooms-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rooms-tab {
  background: none;
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 50px;
  padding: 10px 24px;
  font: 500 .85rem/1.4 var(--f-body);
  letter-spacing: .02em;
  color: var(--muted);
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}
.rooms-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.rooms-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.rooms-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
}
.rooms-tab-panel.active {
  display: block;
  animation: tabIn .4s ease forwards;
}
@keyframes tabIn {
  from { opacity: 0; transform: translateY(12px) }
  to { opacity: 1; transform: none }
}

/* ===== ROOMS SLIDER ===== */
.rooms-slider {
  position: relative;
  margin-right: -20px;
}
.rooms-slider__track {
  display: flex;
  gap: 1.4%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 0 16px;
  margin: -12px 0 -16px;
}
.rooms-slider__track::-webkit-scrollbar { display: none }
.rooms-slider__track::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
}

.rooms-slider__arrows {
  display: none;
  position: absolute;
  top: 200px;
  left: -20px;
  right: -20px;
  transform: translateY(-50%);
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.rooms-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all .3s;
  color: var(--text);
}
.rooms-slider__arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.rooms-slider__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== ROOM CARD ===== */
.room-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
  transition: transform .4s, box-shadow .4s;
  display: flex;
  flex-direction: column;
}


.room-card__image {
  height: 200px;
  background: #e8e4df;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.room-card:hover .room-card__image > img { transform: scale(1.06) }
.room-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.15), transparent 50%);
  pointer-events: none;
}

.room-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font: 600 .7rem/1.3 var(--f-body);
  letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 1;
}

.room-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card__title {
  font: 400 1.05rem/1.3 var(--f-heading);
  letter-spacing: .01em;
  margin-bottom: 10px;
}
.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.room-card__meta-item {
  display: flex;
    align-items: center;
    gap: 5px;
    font: 400 .9em / 1.4 var(--f-body);
    color: var(--muted);
}
.room-card__meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  flex: 1;
  flex-direction: row;
  align-content: flex-start;
  align-items: center;
}
.room-card__amenity {
  font: 400 .8rem / 1.3 var(--f-body);
    color: var(--muted);
    background: var(--bg-alt);
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: auto;
}
.room-card__book {
  font: 600 .78rem/1.3 var(--f-body);
  color: var(--accent);
  letter-spacing: .03em;
  transition: color .25s;
}
.room-card__book:hover { color: var(--accent-dark) }
.room-card__view {
  display: flex;
  align-items: center;
  gap: 4px;
  font: 400 .72rem/1.3 var(--f-body);
  color: var(--muted);
}
.room-card__view svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rooms-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.rooms-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.rooms-slider__dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* included */
/* ===== INCLUDED / INFRASTRUCTURE ===== */
.infra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.infra__block {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: var(--border);
}
.infra__block--dark {
  background: linear-gradient(135deg, #0e1a2e, #162240);
  border: none;
  color: #fff;
}
.infra__block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.infra__block-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,86,162,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infra__block--dark .infra__block-icon {
  background: rgba(255,255,255,.08);
}
.infra__block-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.infra__block--dark .infra__block-icon svg { stroke: var(--accent-light) }
.infra__block-title {
  font: 400 1.1rem/1.3 var(--f-heading);
  letter-spacing: .01em;
}
.infra__block-subtitle {
  font: 400 .78rem/1.4 var(--f-body);
  color: var(--muted);
  margin-top: 2px;
}
.infra__block--dark .infra__block-subtitle { color: rgba(255,255,255,.45) }

.infra__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.infra__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.infra__block--dark .infra__item { border-color: rgba(255,255,255,.06) }
.infra__item:last-child { border-bottom: none }
.infra__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infra__block--dark .infra__item-icon { background: rgba(255,255,255,.06) }
.infra__item-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.infra__block--dark .infra__item-icon svg { stroke: var(--accent-light) }
.infra__item-text {
  font: 500 .98rem/1.45 var(--f-body);
}
.infra__block--dark .infra__item-text { color: rgba(255,255,255,.85) }

.infra__info-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.infra__info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border: var(--border);
}
.infra__info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infra__info-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.infra__info-label {
  font: 500 .96rem / 1.3 var(--f-body);
    color: var(--text);
    letter-spacing: .02em;
}
.infra__info-value {
  font: 400 .82rem/1.4 var(--f-body);
  color: var(--muted);
}

/* cafe */
.cafe { position: relative; overflow: hidden }
.cafe__image-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  left: 12px;
  top: 12px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  opacity: .3;
}
.cafe__text h3 {
  font: 400 1.5rem/1.25 var(--f-heading);
  letter-spacing: .01em;
  color: var(--text);
  margin-bottom: 20px;
}

/* promo */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.promo-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: var(--border);
  display: grid;
  grid-template-columns: 1fr;
  transition: transform .4s, box-shadow .4s;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.promo-card--featured {
  background: #fff;
  border: var(--border);
}
.promo-card--featured .promo-card__body { color: var(--text) }
.promo-card--featured .promo-card__desc { color: var(--muted) }
.promo-card--featured .promo-card__title { color: var(--text) }

.promo-card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.promo-card:hover .promo-card__image img { transform: scale(1.06) }
.promo-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.25), transparent 60%);
  pointer-events: none;
}

.promo-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font: 700 1.3rem/1 var(--f-body);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,86,162,.5);
  z-index: 2;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,86,162,.5) }
  50% { box-shadow: 0 4px 32px rgba(0,86,162,.7), 0 0 0 8px rgba(0,86,162,.1) }
}

.promo-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-card__label { margin-bottom: 10px }
.promo-card__title {
  font: 400 1.25rem/1.25 var(--f-heading);
  letter-spacing: .01em;
  color: var(--text);
  margin-bottom: 12px;
}
.promo-card__desc {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.promo-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.promo-card__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 500 .78rem/1.4 var(--f-body);
  color: var(--accent);
  background: rgba(0,86,162,.06);
  padding: 5px 14px;
  border-radius: 50px;
}
.promo-card--featured .promo-card__feature {
  background: rgba(0,86,162,.06);
  color: var(--accent);
}
.promo-card__feature svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.promo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 .85rem/1.4 var(--f-body);
  color: var(--accent);
  letter-spacing: .02em;
  transition: gap .3s, color .25s;
  align-self: flex-start;
}
.promo-card__cta:hover { gap: 12px; color: var(--accent-dark) }
.promo-card--featured .promo-card__cta { color: var(--accent) }
.promo-card--featured .promo-card__cta:hover { color: var(--accent-dark) }
.promo-card__cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s;
}
.promo-card__cta:hover svg { transform: translateX(2px) }

/* dark card icon overrides */
.promo-card--dark-mini {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: none;
  grid-template-columns: 1fr;
}
.promo-card--dark-mini .promo-card__body { color: #fff; padding: 32px 28px }
.promo-card--dark-mini .promo-card__title { color: #fff; font-size: 1.15rem }
.promo-card--dark-mini .promo-card__desc { color: rgba(255,255,255,.55); font-size: .88rem }
.promo-card--dark-mini .promo-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,86,162,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.promo-card--dark-mini .promo-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.promo-card--dark-mini .promo-card__cta { color: var(--accent-light) }
.promo-card--dark-mini .promo-card__feature {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
}

/* promo-grid__secondary — светлая тема */
.promo-grid__secondary .promo-card {
  background: #fff;
  border: var(--border);
  box-shadow: var(--shadow);
}
.promo-grid__secondary .promo-card:hover {
  box-shadow: var(--shadow-lg);
}
.promo-grid__secondary .promo-card .promo-card__body {
  color: var(--text);
  padding: 32px 28px;
}
.promo-grid__secondary .promo-card .promo-card__title {
  color: var(--text);
  font-size: 1.15rem;
}
.promo-grid__secondary .promo-card .promo-card__desc {
  color: var(--muted);
  font-size: .88rem;
}
.promo-grid__secondary .promo-card .promo-card__icon {
  background: rgba(0,86,162,.08);
}
.promo-grid__secondary .promo-card .promo-card__icon svg {
  stroke: var(--accent);
}
.promo-grid__secondary .promo-card .promo-card__cta {
  color: var(--accent);
}
.promo-grid__secondary .promo-card .promo-card__cta:hover {
  color: var(--accent-dark);
}
.promo-grid__secondary .promo-card .promo-card__feature {
  background: rgba(0,86,162,.06);
  color: var(--accent);
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background .25s;
}
.gallery-grid__item:hover::after { background: rgba(0,0,0,.15) }
.gallery-grid__item:hover img { transform: scale(1.08) }
.gallery-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

/* location */
.location__text {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.location__map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: var(--border);
}
.location__map iframe { width: 100%; height: 100%; border: 0 }

/* cta */
.cta {
  position: relative;
  text-align: center;
  padding: 64px 0;
  color: #fff;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('./assets/img/footer-banner.webp') center / cover no-repeat;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15,15,15,.85), rgba(30,30,30,.8));
}
.cta__label { color: var(--beige); margin-bottom: 10px }
.cta-form__title {
  max-width: 620px;
  margin: 0 auto 20px;
  font: 400 clamp(1.4rem, 2.4vw, 1.8rem)/1.25 var(--f-heading);
  letter-spacing: .01em;
}
.cta-form {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  text-align: left;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(12,18,28,.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form input[type="text"],
.cta-form input[type="tel"],
.cta-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: 400 .95rem/1.4 var(--f-body);
  transition: border-color .25s, box-shadow .25s;
}
.cta-form textarea {
  resize: vertical;
  min-height: 80px;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255,255,255,.5);
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--beige);
  box-shadow: 0 0 0 3px rgba(200,167,112,.25);
}
.cta-form__bottom {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 4px;
}
.cta-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font: 400 .78rem/1.5 var(--f-body);
  color: rgba(255,255,255,.7);
  flex: 1;
}
.cta-form__consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.cta-form__consent a {
  color: var(--beige);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.cta-form__submit {
  flex-shrink: 0;
  min-width: 180px;
}
.cta-form__submit:hover {
  transform: translateY(-1px);
}

/* footer */
.footer {
  background: #111;
  color: #d0d0d0;
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__title {
  font: 400 .95rem/1.4 var(--f-heading);
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 20px;
}
.footer__logo {
  margin-bottom: 14px;
}
.footer__logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__desc {
  font-size: .9rem;
  line-height: 1.7;
  color: #888;
}

.footer__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  line-height: 1.6;
}
.footer__contacts svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 3px;
}
.footer__contacts a, .footer__nav a {
  color: #ccc;
  font-size: .9rem;
  line-height: 1.6;
  transition: color .25s;
}
.footer__contacts a:hover, .footer__nav a:hover { color: var(--accent) }

.footer__nav {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer__bottom {
  text-align: center;
  padding: 28px 0;
  font-size: .82rem;
  line-height: 1.6;
  color: #666;
}
.footer__bottom a { color: var(--accent); transition: color .25s }
.footer__bottom a:hover { color: var(--accent-light) }
.footer__legal {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.footer__legal a {
  color: #555;
  font-size: .78rem;
  transition: color .25s;
}
.footer__legal a:hover { color: var(--accent-light) }
.footer__legal a + a::before {
  content: '·';
  margin-right: 8px;
  color: #444;
}


/* breakpoints */
@media (min-width: 480px) {
  .hero h1 { font-size: 2rem }
  .hero__subtitle { font-size: .92rem; line-height: 1.7 }
  .hero__body { padding-bottom: 32px }
  .hero__buttons { flex-direction: row; flex-wrap: wrap }
  .hero__buttons .btn { width: auto; padding: 14px 28px }
  .hero__stat { padding: 20px 18px }
  .hero__stat-value { font-size: 1.25rem }
  .hero__stat-label { font-size: .75rem }
}

@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(3,1fr); gap: 16px }
  .gallery-grid__item--wide { grid-column: span 2 }
  .hero h1 { font-size: 2.4rem }
  .hero__subtitle { font-size: 1rem }
  .hero__body { padding-bottom: 48px }
  .hero__accent-line { width: 48px; margin-bottom: 20px }
  .hero__buttons .btn { padding: 16px 36px; font-size: .9rem }
  .room-card { flex: 0 0 300px }
  .room-card__image { height: 220px }
}

@media (min-width: 768px) {
  .container { padding: 0 40px }
  .section { padding: 110px 0 }
  .section__header { margin-bottom: 64px }
  .section__header h2 { font-size: 2.4rem }
  .topbar__item { display: flex }
  .topbar__social { display: flex }
  .hero h1 { font-size: 3rem }
  .hero__subtitle { font-size: 1.1rem; line-height: 1.75 }
  .hero__body { padding-bottom: 64px }
  .hero__accent-line { margin-bottom: 24px }
  .hero__subtitle { margin-bottom: 36px }
  .hero__stats { grid-template-columns: repeat(4, 1fr) }
  .hero__stat { padding: 28px 24px }
  .hero__stat-value { font-size: 1.4rem }
  .hero__stat-label { font-size: .8rem }
  .about { grid-template-columns: 1fr 1fr; gap: 60px }
  .about__image img { height: 440px }
  .infra { grid-template-columns: 1fr 1fr; gap: 32px }
  .infra__list { grid-template-columns: 1fr }
  .infra__info-bar { grid-template-columns: 1fr 1fr }
  .cafe__content { grid-template-columns: 1fr 1fr; gap: 60px }
  .cafe__image img { height: 100%; min-height: 360px }
  .location__map { height: 480px }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr }
  .gallery-grid { grid-template-columns: repeat(4,1fr) }
  .gallery-grid__item--wide { grid-column: span 2 }
  .room-card { flex: 0 0 320px }
  .room-card__image { height: 230px }
  .room-card__title { font-size: 1.1rem }
  .rooms-slider { margin-right: 0 }
  .rooms-slider__track { padding-right: 4px }
  .rooms-slider__track::after { display: none }
  .rooms-slider__arrows { display: flex }
  .promo-card--featured { grid-template-columns: 1fr 1fr }
  .promo-card--featured .promo-card__image { height: 100%; min-height: 340px }
  .promo-card--featured .promo-card__body { padding: 40px 40px }
  .promo-card--featured .promo-card__title { font-size: 1.5rem }
  .promo-grid__secondary { grid-template-columns: 1fr 1fr !important }
}

@media (min-width: 1024px) {
  .section { padding: 130px 0 }
  .section__header h2 { font-size: 2.8rem }
  .nav { display: flex }
  .header__phone { display: flex }
  .header__cta { display: inline-flex }
  .burger { display: none }
  .hero h1 { font-size: 3.6rem }
  .hero__subtitle { font-size: 1.15rem; max-width: 540px }
  .hero__body { padding-bottom: 100px }
  .hero__side { display: block }
  .hero__stat { padding: 32px 28px }
  .hero__stat-value { font-size: 1.6rem }
  .cta { padding: 80px 0 }
  .room-card { flex: 0 0 32.65%; }
  .room-card__image { height: 240px }
  .rooms-slider__arrows { left: -24px; right: -24px }
  .promo-card--featured .promo-card__body { padding: 48px 48px }
  .promo-card--featured .promo-card__title { font-size: 1.7rem }
}

@media (max-width: 768px) {
  .header__cta { display: inline-flex; padding: 6px 10px; font-size: 12px; }
  .header__right { gap: 10px }
  .rooms-tab {padding: 4px 10px;}
  .cta-form__row {
    grid-template-columns: 1fr;
  }
  .cta-form {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .cta-form__bottom {
    flex-direction: column;
    gap: 12px;
  }
  .cta-form__submit {
    width: 100%;
  }
}

/* ===== REVIEWS SLIDER ===== */
.reviews-slider {
  position: relative;
}
.reviews-slider__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.reviews-slider__track::-webkit-scrollbar { display: none }

.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .3s, transform .3s;
}
.review-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 1rem/1 var(--f-body);
  flex-shrink: 0;
}
.review-card__name {
  font: 600 .92rem/1.3 var(--f-body);
  color: var(--text);
}
.review-card__date {
  font: 400 .78rem/1.4 var(--f-body);
  color: var(--muted);
}
.review-card__stars {
  color: #f5a623;
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card__text {
  font: 400 .98rem / 1.4em var(--f-body);
  color: var(--muted);
  line-height: 1.2em;
}
.reviews-slider__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.reviews-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s;
}
.reviews-slider__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.reviews-slider__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--text);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}
.reviews-slider__arrow:hover svg { stroke: #fff }

@media (max-width: 639px) {
  .review-card { flex: 0 0 280px; padding: 22px; }
}
@media (min-width: 1024px) {
  .review-card { flex: 0 0 380px; }
}

/* ===== FORM MESSAGES ===== */
.cta-form__message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 10px;
  font: 500 .9rem/1.5 var(--f-body);
  text-align: center;
  animation: formMsgIn .3s ease;
}
.cta-form__message--ok {
  background: rgba(40, 167, 69, .15);
  color: #1a7d37;
  border: 1px solid rgba(40, 167, 69, .25);
}
.cta-form__message--error {
  background: rgba(220, 53, 69, .12);
  color: #c0392b;
  border: 1px solid rgba(220, 53, 69, .2);
}
.cta .cta-form__message--ok {
  background: rgba(255, 255, 255, .15);
  color: #a8f0c0;
  border-color: rgba(255, 255, 255, .2);
}
.cta .cta-form__message--error {
  background: rgba(255, 80, 80, .15);
  color: #ffb4b4;
  border-color: rgba(255, 80, 80, .2);
}
@keyframes formMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.cta-form__submit:disabled {
  opacity: .6;
  cursor: wait;
}

/* ===== ROOM CARD CAROUSEL ===== */
.room-card__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.room-card__carousel-track {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
  cursor: pointer;
}
.room-card__carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity .25s, background .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.room-card:hover .room-card__carousel-btn,
.room-card__image:hover .room-card__carousel-btn { opacity: 1 }
.room-card__carousel-btn:hover { background: #fff }
.room-card__carousel-btn--prev { left: 8px }
.room-card__carousel-btn--next { right: 8px }
.room-card__carousel-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--text);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.room-card__carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.room-card__carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s, width .25s;
}
.room-card__carousel-dot.active {
  background: #fff;
  width: 16px;
  border-radius: 3px;
}