:root {
  --ink: #1a2b3c;
  --ink-soft: #2c3e50;
  --paper: #f4f7f9;
  --surface: #ffffff;
  --line: rgba(8, 95, 112, 0.14);
  --muted: #5a6b78;
  --accent: #00a896;
  --accent-deep: #008f7a;
  --teal: #085f70;
  --teal-soft: #e0f5f4;
  --night: #043843;
  --gradient-brand: linear-gradient(160deg, #085f70 0%, #00a896 100%);
  --shadow: 0 20px 50px rgba(4, 56, 67, 0.12);
  --radius: 18px;
  --max: 1160px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  /* SV widgets (modals / chat) */
  --bg-base: #032f38;
  --bg-elevated: #054e58;
  --bg-card: rgba(255, 255, 255, 0.1);
  --text-white: #ffffff;
  --text-muted: #b4d0d4;
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(0, 168, 150, 0.42);
  --accent-cyan: #7fe0d4;
  --accent-cyan-bright: #9ff0e6;
  --accent-coral: #ff6b4a;
  --shadow-soft: 0 28px 64px rgba(4, 56, 67, 0.48);
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (max-width: 899px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
body.nav-open,
body:has(.nav-toggle:checked) { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

.header-inner,
.wrap,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Logo: favicon pin + HOSTEL wordmark */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  z-index: 1;
  min-width: 0;
}
.logo__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 168, 150, 0.22);
}
.logo__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  line-height: 1;
  width: max-content;
}
.logo__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}
.logo__tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  word-spacing: 0.05em;
  color: rgba(127, 224, 212, 0.92);
  white-space: nowrap;
  line-height: 1.1;
  /* match HOSTEL width without huge gaps between words */
  width: 0;
  min-width: 100%;
  text-align: center;
}
.logo--footer .logo__title {
  color: #fff;
}
.logo--footer .logo__tagline {
  color: rgba(127, 224, 212, 0.85);
}
.logo--footer .logo__mark {
  width: 40px;
  height: 40px;
}

/* Sticky header like SV Service */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  overflow: visible;
  background: rgba(4, 56, 67, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 168, 150, 0.18);
  transition: box-shadow .2s;
}
.header.is-scrolled {
  box-shadow: 0 10px 28px rgba(4, 56, 67, 0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 100%;
  gap: 1.25rem;
}

.nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
}
.nav a,
.nav__item > a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
  line-height: 1.25;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover,
.nav a.is-active {
  color: #fff;
}
.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 0.4rem;
  padding-top: 0.6rem;
  background: #064853;
  border: 1px solid rgba(0, 168, 150, 0.28);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 120;
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  white-space: normal;
}
.nav__dropdown a::after { display: none; }
.nav__dropdown a i {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--accent);
  background: rgba(0, 168, 150, 0.12);
  border: 1px solid rgba(0, 168, 150, 0.22);
}
.nav__dropdown a:hover {
  background: rgba(0, 168, 150, 0.12);
  color: #fff;
}

.header__aside {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
  order: 2;
}
.header__booking {
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0 0.9rem;
  border: 1px solid rgba(0, 168, 150, 0.4);
  border-radius: 999px;
  background: linear-gradient(135deg, #00a896 0%, #085f70 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(4, 56, 67, 0.28);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.header__booking i {
  font-size: 0.95rem;
}
.header__booking:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 20px rgba(4, 56, 67, 0.34);
}
.header__booking:focus-visible {
  outline: 2px solid #7fe0d4;
  outline-offset: 2px;
}
@media (min-width: 961px) {
  .header__booking {
    display: inline-flex;
  }
}
.header__contacts {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  line-height: 1;
}
.header__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #7fe0d4;
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}
.header__phone:hover { color: #fff; }
.header__call {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.lang-switch a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.lang-switch a:hover { color: #fff; }
.lang-switch a.is-active {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.28);
}
.lang-switch--footer {
  margin-top: 0.85rem;
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 210;
  flex-shrink: 0;
  order: 3;
  position: relative;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle:checked + .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked + .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle:checked ~ .nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  max-height: calc(100dvh - var(--header-h));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem max(1rem, calc((100% - var(--max)) / 2)) 1.75rem;
  background: rgba(4, 56, 67, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 168, 150, 0.22);
  box-shadow: var(--shadow);
  gap: 0;
}

@media (max-width: 959px) {
  /* Fixed header on mobile: sticky breaks when body.nav-open sets overflow:hidden */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  body {
    padding-top: var(--header-h);
  }
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.35rem;
  }
  .header-inner > .logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  .header__aside {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
    order: unset;
  }
  .nav-burger {
    grid-column: 3;
    grid-row: 1;
    order: unset;
  }
  .logo__title { font-size: 1.15rem; letter-spacing: 0.06em; }
  .logo__tagline { font-size: 0.62rem; }
  .nav-toggle:checked ~ .nav > a,
  .nav-toggle:checked ~ .nav > .nav__item {
    width: 100%;
  }
  .nav-toggle:checked ~ .nav > .nav__item {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-toggle:checked ~ .nav > a {
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    font-size: 1rem;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-toggle:checked ~ .nav > a::after { display: none; }
  .nav-toggle:checked ~ .nav .nav__item > a {
    display: flex;
    width: 100%;
    padding: 0.85rem 0;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-toggle:checked ~ .nav .nav__item > a::after { display: none; }
  .nav-toggle:checked ~ .nav .nav__dropdown {
    display: grid;
    gap: 0.1rem;
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0.25rem 0 0.65rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .nav-toggle:checked ~ .nav .nav__dropdown::before { display: none; }
  body.nav-open .contact-fab,
  body:has(.nav-toggle:checked) .contact-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (min-width: 960px) {
  :root { --header-h: 88px; }
  .nav-burger { display: none; }
  .header-inner {
    justify-content: space-between;
    gap: 2.5rem;
  }
  .nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    order: 2;
    margin: 0;
    gap: 0.5rem 2rem;
  }
  .header__aside {
    order: 3;
    margin-left: 0;
    gap: 1.25rem;
  }
  .header-inner > .logo { order: 1; }
  .header__contacts { display: flex; }
  .logo { gap: 0.85rem; }
  .logo__mark {
    width: 50px;
    height: 50px;
  }
  .logo__title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
  .logo__tagline {
    font-size: 0.72rem;
  }
  .nav__item:hover .nav__dropdown,
  .nav__item:focus-within .nav__dropdown {
    display: block;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary,
.btn--primary {
  background: var(--gradient-brand, linear-gradient(160deg, #085f70 0%, #00a896 100%));
  color: #fff;
}
.btn-primary:hover,
.btn--primary:hover {
  filter: brightness(1.05);
  background: var(--gradient-brand, linear-gradient(160deg, #085f70 0%, #00a896 100%));
}
.btn-dark,
.btn--dark { background: var(--night); color: #fff; }
.btn-ghost,
.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--teal);
}
.btn-ghost:hover,
.btn--ghost:hover {
  background: var(--teal-soft);
  border-color: transparent;
}
.btn-light { background: #fff; color: var(--teal); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-deep); }

.hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.42) 100%),
    var(--hero-image, url("/images/banners/hero-hostel.jpg")) center/cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero--hostel .hero-title {
  margin: 0 0 16px;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-content {
  position: relative;
  width: min(720px, calc(100% - 32px));
  /* left edge matches logo / page text column */
  margin-left: max(16px, calc((100% - min(var(--max), calc(100% - 32px))) / 2));
  margin-right: auto;
  padding-block: 1rem;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7fe0d4;
}
.hero-title,
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 700;
}
.hero-title {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 76px);
}
.lead {
  margin: 0;
  max-width: none;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.hero-price {
  margin: 0.65rem 0 0;
}
.hero-price span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.95), rgba(8, 145, 168, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-shadow: none;
}
.lead__br {
  display: none;
}
@media (max-width: 900px) {
  .lead {
    white-space: normal;
    max-width: none;
  }
  .lead__br {
    display: block;
  }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
@media (max-width: 899px) {
  .hero-actions {
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.92rem;
    white-space: nowrap;
  }
  .hero-actions__phone {
    display: none;
  }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.section { padding: 82px 0; }
.section--flush { padding-top: 0; }
.text-center { text-align: center; }
.gtm-noscript { display: none; visibility: hidden; }
.star--muted { opacity: 0.28; }
.section--soft {
  background: linear-gradient(180deg, rgba(224, 245, 244, 0.55) 0%, transparent 100%);
}
.section--guide {
  padding-top: 2.25rem;
  padding-bottom: 3.25rem;
}
@media (max-width: 900px) {
  .section--guide {
    padding-top: 1.35rem;
    padding-bottom: 2.5rem;
  }
  /* Homepage: tighten blocks except Reviews + Guide */
  main:has(> .hero) > .section:not(.section--guide):not(.reviews-teaser) {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  main:has(> .hero) > .section:not(.section--guide):not(.reviews-teaser) .section-head {
    margin-bottom: 1.1rem;
  }
}
#booking {
  background: #fff;
  border-bottom: 1px solid rgba(8, 95, 112, 0.1);
}
.section--rules {
  background: linear-gradient(180deg, rgba(224, 245, 244, 0.7) 0%, rgba(224, 245, 244, 0.25) 55%, transparent 100%);
  border-top: 1px solid rgba(8, 95, 112, 0.12);
  box-shadow: inset 0 18px 28px -24px rgba(8, 95, 112, 0.18);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head--center {
  justify-content: center;
  text-align: center;
}
.section-head h1,
.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
}
.section-head__title--compact {
  font-size: clamp(1.35rem, 2.7vw, 2.05rem) !important;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .section-head__title--compact {
    white-space: normal;
    font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
  }
}
.kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.muted { color: var(--muted); }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hostel-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.hostel-tiles--rows {
  grid-template-columns: 1fr;
  gap: 12px;
}
.hostel-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(8, 95, 112, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hostel-tile--row {
  flex-direction: row;
  align-items: stretch;
  height: auto;
  min-height: 7.5rem;
}
.hostel-tile--row .hostel-tile__media {
  width: min(38%, 220px);
  flex: 0 0 min(38%, 220px);
  aspect-ratio: auto;
  align-self: stretch;
  min-height: 7.5rem;
}
.hostel-tile--row .hostel-tile__body {
  flex: 1 1 auto;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  gap: 0.28rem;
}
.hostel-tile--row .hostel-tile__title {
  min-height: 0;
}
.hostel-tile--row .hostel-tile__addr {
  margin-top: 0;
  min-height: 0;
}
.hostel-tile--row .hostel-tile__price {
  margin-top: 0.25rem;
}
@media (max-width: 560px) {
  .hostel-tile--row .hostel-tile__media {
    width: 34%;
    flex-basis: 34%;
    min-height: 6.5rem;
  }
  .hostel-tile--row .hostel-tile__body {
    padding: 0.7rem 0.8rem;
  }
}
.hostel-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 150, 0.35);
  box-shadow: 0 12px 26px rgba(8, 95, 112, 0.1);
}
.hostel-tile__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d7dde7;
  flex-shrink: 0;
}
.hostel-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.hostel-tile:hover .hostel-tile__media img {
  transform: scale(1.04);
}
.hostel-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0.35rem;
  padding: 0.85rem 0.9rem 1rem;
}
.hostel-tile__body .badge {
  align-self: flex-start;
  margin-bottom: 0.1rem;
}
.hostel-tile__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  min-height: calc(1.25em * 2);
}
.hostel-tile__addr {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
}
@media (max-width: 899px) {
  .hostel-tile__addr {
    min-height: 0;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
  }
  .page-hero__addr,
  .hostel-map__addr {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(0.78rem, 3.4vw, 1rem);
  }
}
.hostel-tile__price {
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hostel-tile__price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.05);
}
.card-media {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #d7dde7;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.card:hover .card-media img { transform: scale(1.04); }
.card-body,
.panel { padding: 22px; }
.price {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 28px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}
.badge-closed {
  background: #f6ddd8;
  color: #9a3b2b;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -0.35rem;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px 14px;
  text-align: center;
}
.feature .ico {
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d7f5f1, #e8f7fb);
  color: var(--accent);
  font-size: 1.15rem;
}
.feature p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.section--soft > .wrap > .section-head--center:has(+ .features) {
  margin-bottom: 1rem;
}

.amenities {
  display: grid;
  gap: 1.35rem;
}
.amenities > .section-head {
  margin-bottom: 0;
}
.amenities__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem) !important;
}
.features--amenities {
  margin-top: 0;
}
.amenities__rules {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.25rem 1.25rem;
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.05);
}
.amenities__rules-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.amenities__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.amenities__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(224, 245, 244, 0.55) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid rgba(8, 95, 112, 0.08);
}
a.amenities__item--link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
a.amenities__item--link:hover {
  border-color: rgba(8, 95, 112, 0.22);
  box-shadow: 0 8px 20px rgba(8, 95, 112, 0.08);
  background: linear-gradient(180deg, rgba(224, 245, 244, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
}
a.amenities__item--link:hover .amenities__text strong {
  color: var(--accent);
}
.amenities__ico {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #d7f5f1, #e8f7fb);
  color: var(--accent);
  flex-shrink: 0;
}
.amenities__text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.amenities__text strong {
  font-size: 0.92rem;
  color: var(--ink);
}
.amenities__text span {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--muted);
}
@media (min-width: 900px) {
  .amenities__list {
    grid-template-columns: 1fr 1fr;
  }
}

.about {
  background: linear-gradient(160deg, #043843 0%, #085f70 55%, #0a7380 100%);
  color: #edf3f5;
}
.about .wrap {
  display: grid;
  gap: 1.35rem;
}
.about__head h2 {
  margin: 0;
}
.about .kicker { color: #7fe0d4; }
.about a { color: #7fe0d4; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.about__media {
  margin: 0;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}
.about__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 0.15rem 0;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.45;
}
.about__body p {
  margin: 0 0 0.7rem;
}
.about__body p:first-child { margin-top: 0; }
.about__body p:last-of-type { margin-bottom: 0.55rem; }
.about__body ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.28rem;
}
.about__body li {
  margin: 0;
}
@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__media img {
    min-height: 16rem;
    aspect-ratio: 16 / 10;
    height: auto;
  }
  .about__body {
    height: auto;
    font-size: 0.98rem;
  }
}

.phone-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}
.phone-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--teal);
}
.phone-list img {
  width: 22px;
  height: auto;
  display: inline-block;
}
.home-booking__notes ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.home-booking__notes li { margin: 0.35rem 0; }

.home-booking__head {
  margin-bottom: 1rem;
}
.home-booking__head .kicker {
  margin-bottom: 0.35rem;
}
.home-booking__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .home-booking__title {
    white-space: normal;
    font-size: 1.05rem;
  }
}
.home-booking {
  align-items: stretch;
  gap: 1.5rem;
}
.home-booking__lead {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.5;
}
.home-booking .booking.form {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  gap: 0.55rem;
  padding: 0.9rem 1rem 1rem;
  border-radius: 14px;
  margin-top: 0;
}
.booking__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
}
.home-booking .booking__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  flex-shrink: 0;
}
.home-booking .form-row {
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
}
.home-booking .form-row:has(input[type="date"]) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-booking .form label {
  gap: 0.28rem;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.home-booking .form label:has(textarea) {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.home-booking .form input,
.home-booking .form select,
.home-booking .form textarea {
  padding: 0.5rem 0.7rem;
  border-radius: 9px;
  font-size: 0.88rem;
  line-height: 1.25;
}
.home-booking .form textarea {
  flex: 1 1 auto;
  min-height: 4.25rem;
  height: auto;
  resize: vertical;
}
.home-booking .form__status {
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.home-booking .btn {
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  margin-top: auto;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .home-booking {
    align-items: start;
  }
  .home-booking .booking.form {
    height: auto;
  }
  .home-booking .form label:has(textarea) {
    flex: 0 0 auto;
  }
  .home-booking .form textarea {
    flex: 0 0 auto;
    min-height: 4.25rem;
  }
  .home-booking .form-row:has(input[type="date"]) {
    grid-template-columns: 1fr 1fr;
  }
  .home-booking .form-row:has(input[type="date"]) > label:has(input[name="guests"]) {
    grid-column: 1 / -1;
  }
  .home-booking .form input[type="date"] {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    box-sizing: border-box;
    color-scheme: dark;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }
  .home-booking .form input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.9;
    filter: invert(1);
    cursor: pointer;
  }
}

.home-faq {
  max-width: 820px;
  margin-inline: auto;
}
.home-faq .faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.35rem 1.15rem;
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.05);
}
.home-rules {
  max-width: none;
  width: 100%;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.75rem;
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.05);
}
.home-rules.prose {
  max-width: none;
}
.home-rules__intro {
  text-align: center;
  margin-top: 0;
  color: var(--muted);
}
.home-rules ul {
  columns: 2;
  column-gap: 2.5rem;
  padding-left: 1.15rem;
  margin: 0;
}
@media (min-width: 1100px) {
  .home-rules ul {
    columns: 3;
    column-gap: 2rem;
  }
}
.home-rules li {
  break-inside: avoid;
  margin: 0.35rem 0;
}

.prose { max-width: 78ch; }
.prose img {
  border-radius: 16px;
  margin: 18px auto;
}
.prose h2, .prose h3 { margin-top: 1.35em; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}
.gallery a {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hostel-page__body {
  margin-top: 1.5rem;
}
.hostel-offer__media {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
  margin-top: 1.35rem;
}
.hostel-offer__main {
  min-width: 0;
  display: grid;
  gap: 0;
}
.section--hostel.page-hero--hostel {
  padding-top: 52px;
}
.section--hostel.page-hero--hostel-after-hero {
  padding-top: 1.75rem;
}
.page-hero--hostel-after-hero .hostel-hero__name {
  margin: 0 0 0.45rem;
  font-size: clamp(28px, 4vw, 42px);
}
.section--hostel.page-hero--hostel > .wrap:first-child {
  margin-bottom: 0.35rem;
}
.hostel-page__about {
  margin: 0;
  max-width: none;
}
.hostel-main__amenities {
  margin-top: 0;
}
.hostel-hero {
  display: grid;
  gap: 1.1rem;
}
.hostel-hero__info h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(34px, 5vw, 58px);
}
.hostel-hero__price {
  margin-top: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(224, 245, 244, 0.95), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(8, 95, 112, 0.12);
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.05);
  max-width: 36rem;
}
.hostel-hero__price-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.hostel-hero__price-body {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
}
.hostel-hero__price-body strong {
  font-weight: 700;
}
.hostel-hero__closed {
  margin: 0.75rem 0 0;
  color: #c62828;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.3;
}
.hostel-hero__closed strong {
  color: #c62828;
  font-weight: 800;
}
.hostel-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.hostel-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.5rem;
  align-items: start;
}
.hostel-offer__book {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 0.85rem;
}
.hostel-offer__note {
  margin: 0;
  padding: 0 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.hostel-page__amenities {
  margin-top: 2.25rem;
}
/* Hostel detail: tighter gaps after Rules → Reviews → CTA */
.section--hostel.page-hero--hostel {
  padding-bottom: 1.5rem;
}
.section--hostel + .reviews-teaser {
  padding-top: 1.35rem;
  padding-bottom: 1.5rem;
}
.section--hostel + .reviews-teaser .reviews-teaser__more {
  margin-top: 1.25rem;
}
@media (max-width: 900px) {
  .section--hostel.page-hero--hostel {
    padding-bottom: 1rem;
  }
  .section--hostel + .reviews-teaser {
    padding-top: 0.85rem;
    padding-bottom: 1rem;
  }
  .section--hostel + .reviews-teaser .reviews-teaser__more {
    margin-top: 1rem;
  }
}
.hostel-page__story {
  margin-top: 2rem;
  display: grid;
  gap: 1.75rem;
}
.hostel-map {
  margin-top: 0;
  display: grid;
  gap: 0.85rem;
}
.hostel-map__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}
.hostel-map__addr {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 600;
}
.hostel-map__frame {
  width: 100%;
}
.hostel-page__cta {
  margin: 2.25rem 0 0.5rem;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  background: linear-gradient(145deg, #043843 0%, #085f70 60%, #0a7380 100%);
  color: #edf3f5;
  box-shadow: 0 14px 34px rgba(4, 56, 67, 0.18);
}
.hostel-page__cta-section {
  padding-top: 0;
  padding-bottom: 1.25rem;
}
@media (max-width: 900px) {
  .hostel-page__cta-section {
    padding-bottom: 0.85rem;
  }
  .hostel-page__cta {
    margin-top: 1.25rem;
    margin-bottom: 0;
  }
}
.hostel-page__cta-title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: #fff;
}
.hostel-page__cta-text {
  margin: 0;
  color: rgba(237, 243, 245, 0.86);
  font-size: 0.98rem;
}
.hostel-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
@media (max-width: 900px) {
  .hostel-page__cta-actions {
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
  }
  .hostel-page__cta-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 0.88rem;
    white-space: nowrap;
    text-align: center;
  }
}
.hostel-page__cta .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.hostel-page__cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 900px) {
  .section--hostel.page-hero--hostel {
    padding-top: 1.15rem;
  }
  .section--hostel.page-hero--hostel > .wrap:first-child {
    margin-bottom: 0.15rem;
  }
  .hostel-offer {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: 100%;
  }
  .hostel-offer__main {
    display: grid;
    gap: 0;
    min-width: 0;
    max-width: 100%;
  }
  .hostel-hero,
  .hostel-hero__info,
  .hostel-offer__media,
  .gallery,
  .hostel-page__about,
  .hostel-map,
  .hostel-page__cta {
    min-width: 0;
    max-width: 100%;
  }
  .hostel-offer__book {
    display: none !important;
  }
  .hostel-offer__media {
    margin-top: 1rem;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.page-hero { padding: 42px 0 12px; }
.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 58px);
}
.page-hero__addr {
  margin: 0 0 14px;
  color: var(--ink, #0b1f2a);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.page-hero--places {
  padding-bottom: 0.5rem;
}
.page-hero--article {
  padding: 1.4rem 0 0.25rem;
}
.page-hero__lead {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}
.page-hero__lead--one {
  max-width: none;
  white-space: normal;
}
@media (min-width: 900px) {
  .page-hero__lead--one {
    white-space: nowrap;
  }
}
.places-h1 {
  line-height: 1.18;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}
.crumbs__sep { opacity: 0.55; }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs [aria-current="page"] { color: var(--ink-soft); font-weight: 600; }

/* Places — SV blog-like listing & articles (no author) */
.place-list { padding-top: 1.5rem; }
.place-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .place-list__grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
}
@media (min-width: 1020px) {
  .place-list__grid { grid-template-columns: repeat(3, 1fr); }
}

.place-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
}
.place-carousel__viewport {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.15rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.place-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.place-carousel .place-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  max-width: 300px;
}
.place-carousel__btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--teal);
  box-shadow: 0 6px 16px rgba(8, 95, 112, 0.1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.place-carousel__btn:hover {
  background: var(--teal);
  color: #fff;
}
.place-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 560px) {
  .place-carousel {
    gap: 0.4rem;
  }
  .place-carousel__btn {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.85rem;
  }
}

.place-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.05);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.place-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 150, 0.35);
  box-shadow: 0 16px 36px rgba(8, 95, 112, 0.1);
}
.place-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d7dde7;
}
.place-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.place-card:hover .place-card__media img { transform: scale(1.04); }
.place-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
}
.place-card__city {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.place-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
}
.place-card__title a:hover { color: var(--accent-deep); }
.place-card__excerpt {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}
.place-card__more {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal);
}
.place-card__more i {
  margin-left: 0.3rem;
  font-size: 0.75rem;
}

.place-article-wrap { padding-top: 0.35rem; }
.place-article {
  max-width: 920px;
  margin: 0 auto;
}
.place-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0.2rem 0 1rem;
}
.place-article__info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1.35rem;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.place-article__stat {
  font-size: 0.86rem;
  color: var(--ink);
  white-space: nowrap;
}
.place-article__stat .b {
  color: var(--muted);
  font-weight: 600;
  margin-right: 0.2rem;
}
.place-article__stat a { color: var(--teal); font-weight: 700; }
.place-article__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
  font-size: 0.86rem;
  white-space: nowrap;
}
.place-article__rating .b {
  color: var(--muted);
  font-weight: 600;
}
.place-article__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
  color: #0a8f7e;
}
.place-rate__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.08rem;
  color: rgba(8, 95, 112, 0.22);
  cursor: pointer;
  line-height: 1;
  font-size: 1.12rem;
}
.place-rate__btn.is-on,
.place-rate__btn:hover,
.place-rate__btn:focus-visible {
  color: #0a8f7e;
}
.place-article__rating.is-voted .place-rate__btn { cursor: default; }
.place-article__rating-num { color: var(--muted); }
.place-article__rating-msg { color: var(--teal); font-size: 0.8rem; }
.place-article__hero {
  margin: 0 0 1.5rem;
  text-align: center;
}
.place-article__hero img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.place-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.place-content h2 {
  margin: 1.6em 0 0.65em;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.place-content h2.place-toc__title {
  margin-top: 0;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}
.place-content p { margin: 0 0 1em; }
.place-content a { color: var(--teal); font-weight: 600; }
.place-content a:hover { color: var(--accent-deep); }
.place-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}
.place-content .toc {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: rgba(0, 168, 150, 0.06);
  border: 1px solid rgba(0, 168, 150, 0.18);
  border-radius: 12px;
}
.place-content .toc li { margin: 0.35rem 0; }
.place-content img,
.place-content .place-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  margin: 1.25rem auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f0f4f6;
}
.place-content .place-figure {
  margin: 0 0 1.25rem;
  text-align: center;
}
.place-content p:has(> img) { text-align: center; }
.place-article__footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.15rem;
}
.place-share__label {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.place-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.place-share__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.place-share__links a:hover {
  background: var(--teal-soft);
  border-color: transparent;
  transform: translateY(-1px);
}
.place-related { padding-top: 1rem; }
.place-related__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}
.place-list__grid--row3 {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .place-list__grid--row3 { grid-template-columns: repeat(3, 1fr); }
}

/* Side rail: like + share — readable on light pages */
.place-rail {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right, 0px) + 0.85rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}
.place-rail__btn,
.place-rail__sheet { pointer-events: auto; }
.place-rail__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  min-width: 3.1rem;
  font: inherit;
}
.place-rail__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  background: #085f70;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 1.15rem;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 22px rgba(4, 56, 67, 0.28);
}
.place-rail__btn:hover .place-rail__icon,
.place-rail__btn:focus-visible .place-rail__icon {
  transform: scale(1.06);
  background: #00a896;
  border-color: rgba(255, 255, 255, 0.55);
}
.place-rail__btn.is-pop .place-rail__icon {
  animation: place-rail-pop 0.42s ease;
}
.place-rail__btn--like.is-liked .place-rail__icon {
  background: #fff;
  border-color: rgba(254, 44, 85, 0.55);
  color: #fe2c55;
  box-shadow: 0 8px 22px rgba(254, 44, 85, 0.22);
}
.place-rail__count,
.place-rail__label {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  color: #043843;
  background: #fff;
  border: 1px solid rgba(8, 95, 112, 0.2);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  max-width: 5.5rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(4, 56, 67, 0.12);
}
.place-rail__label {
  font-size: 0.72rem;
  color: #085f70;
}
.place-rail__sheet {
  position: absolute;
  right: calc(100% + 0.55rem);
  bottom: 0;
  min-width: 10.5rem;
}
.place-rail__sheet-inner {
  display: grid;
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(8, 95, 112, 0.16);
  box-shadow: 0 12px 32px rgba(4, 56, 67, 0.18);
}
.place-rail__sheet-link {
  display: block;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: #043843;
  font-size: 0.86rem;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.place-rail__sheet-link:hover {
  background: rgba(0, 168, 150, 0.12);
  color: #085f70;
}
.place-rail__toast {
  position: absolute;
  right: calc(100% + 0.65rem);
  bottom: 0;
  margin: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #085f70;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #edf3f5;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(4, 56, 67, 0.28);
  pointer-events: none;
}
@keyframes place-rail-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
@media (max-width: 899px) {
  .place-rail {
    top: auto;
    bottom: max(6.25rem, env(safe-area-inset-bottom, 0px) + 5.75rem);
    transform: none;
  }
  .place-rail__sheet:not([hidden]),
  .place-rail__toast:not([hidden]) {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 1300;
  }
}

.cta-band {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0, 168, 150, 0.14) 0%, transparent 55%),
    linear-gradient(160deg, #043843 0%, #085f70 100%);
  color: #edf3f5;
  border-block: 1px solid rgba(0, 168, 150, 0.2);
}
.cta-band__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 700;
}
.cta-band__text {
  margin: 0 auto 1.35rem;
  max-width: 42rem;
  color: rgba(237, 243, 245, 0.78);
  font-size: 1.05rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}
.contact-panel {
  padding: 1.05rem 1.1rem 1.15rem;
}
.contact-info {
  display: grid;
  gap: 0.85rem;
}
.contact-info__lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.contact-info__group {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(8, 95, 112, 0.12);
}
.contact-info__city,
.section .contact-info__city {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  letter-spacing: 0;
}
.contact-info__city i {
  color: var(--accent);
  font-size: 0.8rem;
}
.contact-info__list,
.contact-info__phones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.contact-info__place {
  display: grid;
  gap: 0.1rem;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(224, 245, 244, 0.65) 0%, rgba(255, 255, 255, 0.5) 100%);
  border: 1px solid rgba(8, 95, 112, 0.1);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-info__place:hover {
  border-color: rgba(0, 168, 150, 0.35);
  background: linear-gradient(180deg, rgba(224, 245, 244, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
  box-shadow: 0 8px 20px rgba(8, 95, 112, 0.08);
}
.contact-info__name {
  font-weight: 800;
  color: var(--ink);
  font-size: 0.9rem;
}
.contact-info__addr {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}
.contact-info__addr em {
  font-style: normal;
  color: rgba(42, 49, 60, 0.72);
}
.contact-info__phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
}
.contact-info__phones a:hover {
  color: var(--teal);
}
.contact-info__phones img {
  width: 22px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
}
.contact-info__phones .fa-building {
  width: 22px;
  text-align: center;
  color: var(--accent);
  font-size: 0.85rem;
}
.contact-info__phones li {
  display: grid;
  gap: 0.1rem;
}
.contact-info__note {
  margin-left: calc(22px + 0.45rem);
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.3;
}
.contact-info__email {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #043843 0%, #085f70 70%, #0a7380 100%);
  color: #edf3f5;
}
.contact-info__email-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237, 243, 245, 0.72);
}
.contact-info__email a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  word-break: break-all;
}
.contact-info__email a:hover {
  text-decoration: underline;
}
.contact-maps {
  padding-top: 0.5rem;
}
.contact-maps .section-head {
  margin-bottom: 1.25rem;
}
.contact-maps__list {
  display: grid;
  gap: 1.5rem;
}
.contact-maps__item {
  margin: 0;
}
.contact-maps__caption {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--ink);
}
.contact-maps__frame {
  height: min(450px, 58vw);
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--teal-soft);
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.06);
}
.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
}

.booking {
  background: linear-gradient(145deg, #16343a, #0f1c22);
  color: #fff;
  border-radius: 22px;
  padding: 26px;
}
.form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}
/* Native dropdown: light field so options stay readable on Windows */
.form select {
  background: #ffffff;
  color: #1a2b3c;
  border-color: rgba(255, 255, 255, 0.35);
}
.form select option {
  color: #1a2b3c;
  background: #ffffff;
}
.form select option:disabled {
  color: #6b7c88;
}
.form__status {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}
.form__status.is-ok {
  color: #d8fff6;
  background: rgba(0, 168, 150, 0.22);
  border: 1px solid rgba(0, 212, 180, 0.35);
}
.form__status.is-err {
  color: #ffe4de;
  background: rgba(220, 80, 60, 0.2);
  border: 1px solid rgba(255, 120, 90, 0.35);
}
.form textarea { min-height: 90px; resize: vertical; }

.faq [data-accordion-item] { border-bottom: 1px solid var(--line); }
.faq button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}
.faq .answer {
  display: none;
  padding: 0 0 16px;
  color: var(--muted);
}
.faq .is-open .answer { display: block; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.88);
}
.lightbox[hidden] { display: none !important; }
.lightbox__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: min(1180px, 100%);
  max-width: 100%;
}
.lightbox__figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.lightbox__img,
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  display: block;
}
.lightbox__counter {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox__nav {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.32);
  outline: none;
}
@media (max-width: 720px) {
  .lightbox {
    padding: 56px 10px 24px;
  }
  .lightbox__stage {
    gap: 0.4rem;
  }
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
}

.site-footer {
  background: var(--night);
  color: #d7dde7;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.social { display: flex; gap: 8px; margin: 14px 0; }
.social img { width: 36px; height: 36px; border-radius: 50%; }
.ratings { display: flex; flex-wrap: wrap; gap: 8px; }
.ratings a {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
}
.copy {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #9aa3b0;
}

.sticky-call { display: none; }

/* Map above footer (SV Service pattern) */
.map-section {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(0, 168, 150, 0.28);
}
.map-section__frame {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  overflow: hidden;
  background: #e8eef2;
}
.map-section__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}
.map-section__placeholder i {
  font-size: 1.35rem;
  color: var(--accent);
  opacity: 0.9;
}
.map-section__frame.is-ready .map-section__placeholder {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.map-section__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.map-section__frame.is-ready iframe { opacity: 1; }
.map-section__caption {
  background: var(--night);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.map-section__caption p {
  margin: 0;
  padding: 0.85rem 0;
  color: #9aa3b0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.map-section__caption i { color: var(--accent); }

/* Footer (SV Service structure, Hostel palette) */
.footer {
  padding: 2rem 0 1.1rem;
  background: rgba(13, 17, 23, 0.98);
  color: #d7dde7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__inner {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 1.35rem;
}
.footer__inner--site {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
  row-gap: 1.35rem;
}
.footer__inner--site .footer__brand,
.footer__inner--site .footer__social {
  grid-column: 1 / -1;
}
.footer__brand p {
  margin-top: 0.55rem;
  color: #9aa3b0;
  font-size: 0.9rem;
  max-width: 22rem;
  line-height: 1.45;
}
.footer__cols,
nav.footer__cols {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  padding: 0;
  align-content: start;
}
.footer__cols-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.2rem;
}
.footer__cols a {
  display: block;
  font-size: 0.875rem;
  color: #9aa3b0;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.footer__cols a:hover { color: var(--accent); }
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.footer__social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #9aa3b0;
  font-size: 0.9rem;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.social-link:hover {
  color: #fff;
  border-color: var(--teal);
  background: rgba(31, 111, 106, 0.2);
  transform: translateY(-2px);
}
.social-link--static {
  cursor: default;
  opacity: 0.85;
}
.social-link--static:hover {
  transform: none;
  color: #9aa3b0;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.footer__reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.4rem 0.55rem 0.45rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer__reviews-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__reviews-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  line-height: 1;
}
.footer__reviews-stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #f4c430;
  font-size: 0.72rem;
}
.footer__reviews-google {
  font-size: 0.95rem;
  line-height: 1;
}
.footer__reviews-google i {
  background: conic-gradient(from 0deg, #ea4335 0 25%, #fbbc05 25% 50%, #34a853 50% 75%, #4285f4 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__reviews-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: #9aa3b0;
  text-align: center;
}
.footer__reviews:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 150, 0.45);
  background: rgba(0, 168, 150, 0.08);
}
.footer__reviews:hover .footer__reviews-label { color: #e8eef6; }
.footer__bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9aa3b0;
  font-size: 0.8125rem;
}
.footer__bottom p { margin: 0; }
.footer__credit a {
  color: rgba(232, 241, 250, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(0, 168, 150, 0.4);
  text-underline-offset: 0.18em;
}
.footer__credit a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

@media (min-width: 768px) {
  .footer__inner--site {
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(10rem, 1fr)) auto;
    column-gap: 2rem;
  }
  .footer__inner--site .footer__brand,
  .footer__inner--site .footer__social {
    grid-column: auto;
  }
  .footer__inner--site .footer__social {
    align-items: stretch;
    width: max-content;
  }
  .footer__inner--site .footer__social-links {
    justify-content: flex-start;
  }
}

/* Side contact FAB (arc from kondicionery / SV Service) */
.contact-fab {
  position: fixed;
  right: max(1.75rem, env(safe-area-inset-right, 0px) + 1.25rem);
  bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}
body.nav-open .contact-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.contact-fab__menu {
  position: absolute;
  inset-inline: 0;
  bottom: calc(100% + 0.65rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}
.contact-fab.is-open .contact-fab__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.contact-fab__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.contact-fab.is-open .contact-fab__row {
  opacity: 1;
  transform: none;
}
.contact-fab.is-open .contact-fab__row:nth-child(1) { transition-delay: 0.02s; }
.contact-fab.is-open .contact-fab__row:nth-child(2) { transition-delay: 0.06s; }
.contact-fab.is-open .contact-fab__row:nth-child(3) { transition-delay: 0.1s; }
.contact-fab.is-open .contact-fab__row:nth-child(4) { transition-delay: 0.14s; }
.contact-fab.is-open .contact-fab__row:nth-child(5) { transition-delay: 0.18s; }
.contact-fab.is-open .contact-fab__row:nth-child(6) { transition-delay: 0.22s; }

/* Second phone only on mobile FAB */
@media (min-width: 601px) {
  .contact-fab__row:has(.contact-fab__item--phone-extra) {
    display: none !important;
  }
}

/* Chat on: fan buttons along an arc around the toggle */
.contact-fab.is-chat-enabled {
  bottom: max(2.75rem, env(safe-area-inset-bottom, 0px) + 2.25rem);
}
.contact-fab.is-chat-enabled .contact-fab__menu {
  inset: auto;
  right: 0;
  bottom: 0.85rem;
  width: 64px;
  height: 64px;
  gap: 0;
  transform: none;
}
.contact-fab.is-chat-enabled.is-open .contact-fab__menu {
  transform: none;
}
.contact-fab.is-chat-enabled .contact-fab__row {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -28px 0 0 -28px;
  opacity: 0;
  transform: rotate(var(--a, -90deg)) translateY(0) rotate(calc(var(--a, -90deg) * -1)) scale(0.55);
  pointer-events: none;
}
.contact-fab.is-chat-enabled.is-open .contact-fab__row {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(var(--a, -90deg)) translateY(calc(var(--r, 5.25rem) * -1)) rotate(calc(var(--a, -90deg) * -1)) scale(1);
}
.contact-fab__hint {
  position: absolute;
  right: calc(100% + 0.5rem);
  top: 50%;
  z-index: 1;
  max-width: min(168px, calc(100vw - 8rem));
  padding: 0.34rem 0.58rem;
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.96);
  border: 1px solid rgba(0, 168, 150, 0.28);
  box-shadow: 0 6px 16px rgba(8, 18, 30, 0.35);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(232, 241, 250, 0.94);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.contact-fab__row:hover .contact-fab__hint,
.contact-fab__row:focus-within .contact-fab__hint {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.contact-fab__item {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 18, 30, 0.35);
  font-size: 1.55rem;
  line-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  color: inherit;
}
.contact-fab__item > i {
  display: block;
  width: 1em;
  height: 1em;
  margin: 0;
  line-height: 1;
  text-align: center;
}
.contact-fab__item:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(8, 18, 30, 0.42);
}
.contact-fab__item--telegram { color: #2aabee; }
.contact-fab__item--viber { color: #7360f2; }
.contact-fab__item--callback {
  color: #fff;
  background: linear-gradient(145deg, #ffb347 0%, #f08a24 100%);
  font-size: 1.25rem;
  box-shadow: 0 8px 22px rgba(240, 138, 36, 0.4);
}
.contact-fab__item--callback:hover {
  box-shadow: 0 10px 26px rgba(240, 138, 36, 0.5);
}
.contact-fab__item--chat {
  color: #fff;
  background: linear-gradient(145deg, #00c4b0 0%, #0891a8 100%);
  font-size: 1.25rem;
}
.contact-fab__item--phone {
  color: #fff;
  background: var(--gradient-brand);
  font-size: 1.3rem;
}
.contact-fab__toggle {
  position: relative;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 95, 112, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 0;
  z-index: 2;
}
.contact-fab__toggle:hover { filter: brightness(1.05); }
.contact-fab__toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.contact-fab__toggle-icon,
.contact-fab__toggle-close {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-fab__toggle-icon > i,
.contact-fab__toggle-close > i {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
}
.contact-fab__toggle-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}
.contact-fab.is-open .contact-fab__toggle {
  background: var(--night);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.contact-fab.is-open .contact-fab__toggle-icon {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}
.contact-fab.is-open .contact-fab__toggle-close {
  opacity: 1;
  transform: none;
}
.contact-fab__toggle::before,
.contact-fab__toggle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 168, 150, 0.45);
  animation: fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.contact-fab__toggle::after { animation-delay: 1.1s; }
.contact-fab.is-open .contact-fab__toggle::before,
.contact-fab.is-open .contact-fab__toggle::after { display: none; }
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}
.contact-fab__tip {
  position: absolute;
  right: calc(100% + 0.75rem);
  bottom: 0.35rem;
  width: min(220px, calc(100vw - 7rem));
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(4, 56, 67, 0.96);
  color: #edf3f5;
  border: 1px solid rgba(0, 168, 150, 0.28);
  box-shadow: 0 12px 28px rgba(4, 56, 67, 0.4);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 3;
}
.contact-fab__tip::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 1.35rem;
  width: 12px;
  height: 12px;
  background: rgba(4, 56, 67, 0.96);
  border-right: 1px solid rgba(0, 168, 150, 0.28);
  border-top: 1px solid rgba(0, 168, 150, 0.28);
  transform: rotate(45deg);
  box-shadow: none;
}
.contact-fab.is-tip-visible .contact-fab__tip {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.contact-fab.is-open .contact-fab__tip {
  opacity: 0;
  visibility: hidden;
}
.contact-fab__tip-title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
}
.contact-fab__tip-title i {
  color: #7fe0d4 !important;
}
.contact-fab__tip-text {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(237, 243, 245, 0.72);
}

@media (max-width: 600px) {
  .contact-fab__toggle {
    width: 58px;
    height: 58px;
  }
  .contact-fab__item,
  .contact-fab__row {
    width: 50px;
    height: 50px;
  }
  .contact-fab__item { font-size: 1.35rem; }
  .contact-fab.is-chat-enabled .contact-fab__menu {
    width: 58px;
    height: 58px;
  }
  .contact-fab.is-chat-enabled .contact-fab__row {
    margin: -25px 0 0 -25px;
  }
  .contact-fab__tip {
    right: 0;
    bottom: calc(100% + 0.75rem);
    width: min(200px, calc(100vw - 5rem));
  }
  .contact-fab__tip::after {
    right: 1.4rem;
    bottom: -6px;
  }
  .contact-fab__hint { display: none; }
  /* Equal-width phone number labels on mobile (always visible when FAB open) */
  .contact-fab.is-open .contact-fab__row:has(.contact-fab__item--phone) .contact-fab__hint {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: none;
    min-width: 9.75rem;
    max-width: none;
    padding: 0.3rem 0.5rem;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fab__toggle::before,
  .contact-fab__toggle::after { display: none; }
  .contact-fab__row { transition: none; }
  .scroll-top { transition: none; }
}

/* Scroll to top — round, left, HostelKh teal */
.scroll-top {
  position: fixed;
  left: max(1.25rem, env(safe-area-inset-left, 0px) + 1rem);
  bottom: max(1.75rem, env(safe-area-inset-bottom, 0px) + 1.75rem);
  z-index: 1200;
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 168, 150, 0.35);
  border-radius: 50%;
  background: var(--gradient-brand, linear-gradient(160deg, #085f70 0%, #00a896 100%));
  color: #fff;
  box-shadow: 0 12px 28px rgba(4, 56, 67, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.28s var(--ease, ease),
    visibility 0.28s var(--ease, ease),
    transform 0.28s var(--ease, ease),
    filter 0.2s ease,
    box-shadow 0.2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(4, 56, 67, 0.34);
}
.scroll-top:focus-visible {
  outline: 2px solid var(--accent, #00a896);
  outline-offset: 3px;
}
.scroll-top i {
  font-size: 1.05rem;
  line-height: 1;
}
body.nav-open .scroll-top,
body:has(.nav-toggle:checked) .scroll-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 600px) {
  .scroll-top {
    width: 2.95rem;
    height: 2.95rem;
    left: max(0.85rem, env(safe-area-inset-left, 0px) + 0.65rem);
    bottom: max(1.35rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
  }
}

@media (max-width: 960px) {
  .cards,
  .grid-2,
  .grid-3,
  .about .wrap,
  .contact-grid,
  .footer-grid,
  .form-row { grid-template-columns: 1fr; }
  .hostel-tiles { grid-template-columns: 1fr 1fr; }
  .features,
  .gallery { grid-template-columns: 1fr 1fr; }
  .home-rules ul { columns: 1; }
  .hero { min-height: 72vh; }
  .place-list__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hostel-tiles { grid-template-columns: 1fr; }
}

/* ===== Reviews page — layout like SV sample (light Hostel theme) ===== */
.section.reviews.reviews--page {
  --bg-card: #ffffff;
  --text-white: var(--ink);
  --text-muted: var(--muted);
  --border: var(--line);
  --border-strong: rgba(8, 95, 112, 0.28);
  --accent-coral: #ff6b4a;
  padding: 0 0 clamp(2.25rem, 4vw, 3.25rem);
}

.section.reviews.reviews--page > .wrap {
  width: min(1200px, calc(100% - 32px));
}

.section.reviews.reviews--page .reviews-top {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .section.reviews.reviews--page .reviews-top {
    grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
  }
}

.section.reviews.reviews--page .reviews-rating-wrap {
  display: flex;
  margin: 0;
  height: 100%;
}

.section.reviews.reviews--page .reviews-rating-wrap .reviews-rating {
  width: 100%;
  min-width: 0;
  height: 100%;
}

.section.reviews.reviews--page .reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 8px 22px rgba(8, 95, 112, 0.05);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.section.reviews.reviews--page .reviews-rating:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 150, 0.4);
  box-shadow: 0 14px 32px rgba(8, 95, 112, 0.1);
}

.section.reviews.reviews--page .reviews-rating__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
}

.section.reviews.reviews--page .reviews-rating__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent-coral);
  line-height: 1;
}

.section.reviews.reviews--page .reviews-rating__stars {
  display: inline-flex;
  gap: 0.22rem;
  color: #f4c430;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1;
}

.section.reviews.reviews--page .reviews-rating__google {
  display: inline-flex;
  align-items: center;
  margin-left: 0.2rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1;
}

.section.reviews.reviews--page .reviews-rating__google .fa-google {
  background: conic-gradient(from 0deg, #ea4335 0 25%, #fbbc05 25% 50%, #34a853 50% 75%, #4285f4 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section.reviews.reviews--page .reviews-rating__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  text-align: center;
}

.section.reviews.reviews--page .reviews-rating__hint {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

.section.reviews.reviews--page .site-rating {
  display: grid;
  margin: 0;
  padding: 0.95rem 1rem;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(8, 95, 112, 0.05);
  height: 100%;
}

@media (min-width: 640px) {
  .section.reviews.reviews--page .site-rating {
    grid-template-columns: minmax(8.5rem, 10.5rem) minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem 1.1rem;
  }
}

.section.reviews.reviews--page .site-rating__avg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.section.reviews.reviews--page .site-rating__avg-label,
.section.reviews.reviews--page .site-rating__cat-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.section.reviews.reviews--page .site-rating__avg-score {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  min-width: 3.1rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
}

.section.reviews.reviews--page .site-rating__avg-count {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.section.reviews.reviews--page .site-rating__cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .section.reviews.reviews--page .site-rating__cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.section.reviews.reviews--page .site-rating__cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--teal-soft);
  text-align: center;
}

.section.reviews.reviews--page .site-rating__cat-title {
  width: 100%;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.section.reviews.reviews--page .site-rating__cat-score {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.section.reviews.reviews--page .reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.section.reviews.reviews--page .reviews__grid--page {
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .section.reviews.reviews--page .reviews__grid--page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .section.reviews.reviews--page .reviews__grid--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.section.reviews.reviews--page .review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(8, 95, 112, 0.05);
  overflow: visible;
  height: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
}

.section.reviews.reviews--page .review-card.is-hidden-review {
  display: none !important;
}

.section.reviews.reviews--page .review-card__stars {
  color: var(--accent-coral);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  line-height: 1;
}

.section.reviews.reviews--page .review-card__quote {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.65;
  flex: 1 1 auto;
  margin: 0;
}

.section.reviews.reviews--page .review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.5rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.section.reviews.reviews--page .review-card__author strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}

.section.reviews.reviews--page .review-card__author span {
  color: var(--muted);
  font-size: 0.875rem;
}

.section.reviews.reviews--page .reviews-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}

.section.reviews.reviews--page .reviews-more {
  min-width: 10rem;
}

/* “Додати відгук” form */
.section.reviews.reviews--page .site-review-form {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(8, 95, 112, 0.05);
}

.section.reviews.reviews--page .site-review-form__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  color: var(--ink);
}

.section.reviews.reviews--page .site-review-form__body {
  gap: 0.85rem 1.15rem;
}

@media (min-width: 780px) {
  .section.reviews.reviews--page .site-review-form__body {
    grid-template-columns: minmax(13rem, 15.5rem) minmax(0, 1fr);
  }
}

.section.reviews.reviews--page .site-review-form__criteria {
  gap: 0.35rem;
}

.section.reviews.reviews--page .site-review-form__row-label {
  font-size: 0.86rem;
}

.section.reviews.reviews--page .site-review-stars__btn {
  color: rgba(8, 95, 112, 0.22);
  font-size: 0.95rem;
}

.section.reviews.reviews--page .site-review-stars__btn.is-on,
.section.reviews.reviews--page .site-review-stars__btn.is-hover {
  color: #f4c430;
}

.section.reviews.reviews--page .site-review-form__fields {
  gap: 0.6rem;
}

@media (min-width: 560px) {
  .section.reviews.reviews--page .site-review-form__fields {
    grid-template-columns: minmax(11rem, 14rem) minmax(0, 1fr);
  }
}

.section.reviews.reviews--page .site-review-form__meta {
  gap: 0.5rem;
}

.section.reviews.reviews--page .site-review-form__field {
  gap: 0.25rem;
}

.section.reviews.reviews--page .site-review-form__field span {
  font-size: 0.84rem;
  color: var(--ink);
}

.section.reviews.reviews--page .site-review-form__field input,
.section.reviews.reviews--page .site-review-form__field textarea {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
  border-radius: 8px;
}

.section.reviews.reviews--page .site-review-form__field textarea {
  min-height: 6rem;
}

.section.reviews.reviews--page .site-review-form__footer {
  margin-top: 0.7rem;
  gap: 0.55rem 1rem;
}

.section.reviews.reviews--page .site-review-form__note {
  font-size: 0.8rem;
}

.section.reviews.reviews--page .site-review-form__submit {
  padding: 0.55rem 1.15rem;
  font-size: 0.95rem;
}

/* Keep page hero tight above reviews composition */
.page-hero:has(+ .reviews--page) {
  padding-bottom: 1rem;
}

/* ===== Hostels page reviews teaser (SV Service homepage pattern) ===== */
.reviews-teaser {
  background: linear-gradient(180deg, rgba(224, 245, 244, 0.55) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-block: 1px solid rgba(8, 95, 112, 0.1);
  padding-top: 2.25rem;
  padding-bottom: 3.25rem;
}
@media (max-width: 900px) {
  .reviews-teaser {
    padding-top: 1.35rem;
    padding-bottom: 2.5rem;
  }
}
.reviews-teaser__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
.reviews-teaser__head .kicker {
  margin-bottom: 0.45rem;
}
.reviews-teaser__head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
}
.reviews-teaser__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0.15rem 0 0.85rem;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.reviews-teaser__google:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.reviews-teaser__google-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 1.85rem);
  color: #00a896 !important;
  -webkit-text-fill-color: #00a896;
  line-height: 1;
  letter-spacing: -0.02em;
}
.reviews-teaser__google-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #f4c430;
  font-size: 1.05rem;
  line-height: 1;
}
.reviews-teaser__google-stars i,
.reviews-teaser__google-stars .fa-star {
  color: #f4c430 !important;
  -webkit-text-fill-color: #f4c430;
}
.reviews-teaser__google-icon {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  line-height: 1;
}
.reviews-teaser__google-icon i,
.reviews-teaser__google-icon .fa-google {
  color: #4285f4 !important;
  -webkit-text-fill-color: #4285f4;
  background: none;
}
.reviews-teaser__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}
.reviews-teaser__carousel {
  position: relative;
}
.reviews-teaser__btn {
  display: none;
}
.reviews-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .reviews-teaser__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (max-width: 799px) {
  .reviews-teaser__carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.4rem;
  }
  .reviews-teaser__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--teal);
    box-shadow: 0 6px 16px rgba(8, 95, 112, 0.1);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  }
  .reviews-teaser__btn:hover {
    background: var(--teal);
    color: #fff;
  }
  .reviews-teaser__btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
  .reviews-teaser__grid {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.15rem 0.1rem;
  }
  .reviews-teaser__grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .reviews-teaser__grid .review-card {
    flex: 0 0 min(78vw, 20.5rem);
    scroll-snap-align: start;
    min-height: 100%;
  }
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 1.25rem 1.3rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(8, 95, 112, 0.12);
  box-shadow: 0 10px 28px rgba(8, 95, 112, 0.06);
}
.review-card__stars {
  color: #00a896;
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.review-card__quote {
  margin: 0;
  flex: 1;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(8, 95, 112, 0.1);
}
.review-card__author strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal);
}
.review-card__author span {
  color: var(--muted);
  font-size: 0.88rem;
}
.reviews-teaser__more {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ===== Mobile bottom nav (SV Service pattern; desktop unchanged) ===== */
.site-mobile-nav {
  display: none;
}

@media (max-width: 899px) {
  body.has-site-mobile-nav {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
  }

  body.has-site-mobile-nav .contact-fab,
  body.has-site-mobile-nav .scroll-top {
    display: none !important;
  }

  body.nav-open .site-mobile-nav,
  body:has(.nav-toggle:checked) .site-mobile-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    width: 100%;
    gap: 0;
    min-height: 3.85rem;
    padding: 0.35rem 0.15rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(8, 95, 112, 0.18);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 24px rgba(8, 18, 30, 0.12);
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .site-mobile-nav > .site-mobile-nav__btn,
  .site-mobile-nav > .site-mobile-nav__contact {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  a.site-mobile-nav__btn {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
  }

  .site-mobile-nav__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    width: 100%;
    min-width: 0;
    min-height: 3.15rem;
    margin: 0;
    padding: 0.15rem 0.1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3a5163;
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .site-mobile-nav__btn:hover,
  .site-mobile-nav__btn:focus-visible,
  .site-mobile-nav__btn.is-active,
  .site-mobile-nav__contact.is-open .site-mobile-nav__btn {
    color: #085f70;
  }

  .site-mobile-nav__btn.is-disabled {
    opacity: 0.42;
  }

  .site-mobile-nav__btn--like.is-liked {
    color: #fe2c55;
  }

  .site-mobile-nav__btn--booking,
  .site-mobile-nav__btn--booking .site-mobile-nav__icon--booking {
    color: #00a896;
  }

  .site-mobile-nav__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.35rem;
    line-height: 1;
    font-size: 1.2rem;
  }

  .site-mobile-nav__label {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.15;
  }

  .site-mobile-nav__badge {
    position: absolute;
    top: -0.35rem;
    right: -0.55rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.22rem;
    border-radius: 999px;
    background: #00a896;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1rem;
    text-align: center;
  }

  .site-mobile-nav__btn--like.is-liked .site-mobile-nav__badge {
    background: #fe2c55;
  }

  .site-mobile-nav__contact {
    position: relative;
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    align-items: stretch;
  }

  .site-mobile-nav__contact .site-mobile-nav__btn {
    flex: 1 1 0;
    width: 100%;
  }

  .site-mobile-nav__icon--pulse {
    color: #00a896;
  }

  .site-mobile-nav__icon--pulse::before,
  .site-mobile-nav__icon--pulse::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.65rem;
    height: 1.65rem;
    margin: -0.825rem 0 0 -0.825rem;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 168, 150, 0.45);
    animation: siteMobileNavRing 2s ease-out infinite;
    pointer-events: none;
  }

  .site-mobile-nav__icon--pulse::after {
    animation-delay: 1s;
  }

  .site-mobile-nav__contact.is-open .site-mobile-nav__icon--pulse::before,
  .site-mobile-nav__contact.is-open .site-mobile-nav__icon--pulse::after {
    animation: none;
    opacity: 0;
  }

  @keyframes siteMobileNavRing {
    0% { transform: scale(0.85); opacity: 0.75; }
    100% { transform: scale(1.85); opacity: 0; }
  }

  .site-mobile-nav__contact-menu {
    position: absolute;
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(100% + 0.55rem);
    z-index: 2;
    display: grid;
    gap: 0.2rem;
    width: min(15.5rem, calc(100vw - 1rem));
    min-width: 0;
    padding: 0.45rem;
    border: 1px solid rgba(8, 95, 112, 0.16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(8, 18, 30, 0.18);
  }

  .site-mobile-nav__contact-menu[hidden] {
    display: none !important;
  }

  .site-mobile-nav__contact-menu a,
  .site-mobile-nav__chat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #1a2b3c;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
  }

  .site-mobile-nav__contact-menu a:hover,
  .site-mobile-nav__contact-menu a:focus-visible,
  .site-mobile-nav__chat:hover,
  .site-mobile-nav__chat:focus-visible {
    background: rgba(0, 168, 150, 0.1);
    color: #085f70;
    outline: none;
  }

  .site-mobile-nav__contact-menu i {
    display: inline-grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.95rem;
  }

  .site-mobile-nav__contact-menu .fa-telegram {
    color: #fff;
    background: #2aabee;
  }

  .site-mobile-nav__contact-menu .fa-viber {
    color: #fff;
    background: #7360f2;
  }

  .site-mobile-nav__contact-menu .fa-phone {
    color: #fff;
    background: #7cb342;
  }

  .site-mobile-nav__chat i {
    color: #fff;
    background: #085f70;
  }

  .site-mobile-nav__callback {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.65rem 0.7rem;
    border: 1px solid rgba(0, 168, 150, 0.28);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.12) 0%, rgba(8, 95, 112, 0.08) 100%);
    color: #085f70;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
  }

  .site-mobile-nav__callback i {
    display: inline-grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, #00a896 0%, #085f70 100%);
  }

  .site-mobile-nav__tip {
    position: fixed;
    right: max(0.65rem, env(safe-area-inset-right, 0px) + 0.5rem);
    left: auto;
    bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px) + 0.45rem);
    z-index: 1260;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    max-width: min(280px, calc(100vw - 1.25rem));
    padding: 0.5rem 2.1rem 0.5rem 0.5rem;
    border-radius: 11px;
    background: rgba(12, 22, 34, 0.98);
    border: 1px solid rgba(0, 168, 150, 0.28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(6px);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .site-mobile-nav__tip.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-mobile-nav__tip-close {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
    display: grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 2;
  }

  .site-mobile-nav__tip::after {
    content: "";
    position: absolute;
    right: 1.15rem;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: rgba(12, 22, 34, 0.98);
    border-right: 1px solid rgba(0, 168, 150, 0.28);
    border-bottom: 1px solid rgba(0, 168, 150, 0.28);
    transform: rotate(45deg);
  }

  .site-mobile-nav__tip-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #00a896 0%, #085f70 100%);
    color: #fff;
    font-size: 0.95rem;
  }

  .site-mobile-nav__tip-copy {
    min-width: 0;
  }

  .site-mobile-nav__tip-title {
    margin: 0;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    color: #7fe0d4;
  }

  .site-mobile-nav__tip-text {
    margin: 0.1rem 0 0;
    font-size: 0.72rem;
    color: rgba(232, 241, 250, 0.78);
    white-space: nowrap;
  }

  body.has-site-mobile-nav .blog-tiktok__sheet:not([hidden]),
  body.has-site-mobile-nav .blog-tiktok__toast:not([hidden]) {
    bottom: calc(5.1rem + env(safe-area-inset-bottom, 0px));
  }
}

