:root {
  color-scheme: light;
  --graphite: #1b1d1f;
  --graphite-2: #292c2f;
  --ink: #222528;
  --muted: #62676b;
  --off-white: #f6f3ed;
  --paper: #ffffff;
  --line: #d9d5cd;
  --line-dark: #44484c;
  --orange: #e85c1a;
  --orange-dark: #bd4210;
  --green: #2f6b4f;
  --green-soft: #e6f0e9;
  --focus: #0b6ed0;
  --shadow: 0 10px 30px rgba(22, 24, 26, 0.12);
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.25rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.container--wide {
  width: min(1440px, calc(100% - 48px));
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--focus);
}

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

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

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

.muted {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--graphite);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__name {
  font-size: 1.12rem;
  font-weight: 800;
}

.brand__tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.site-nav a {
  padding: 9px 10px;
  color: var(--graphite-2);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange-dark);
  border-bottom-color: var(--orange);
}

.site-nav .nav-owner {
  margin-left: 8px;
  padding-inline: 13px;
  color: var(--paper);
  background: var(--graphite);
  border: 1px solid var(--graphite);
  border-radius: 4px;
}

.site-nav .nav-owner:hover,
.site-nav .nav-owner[aria-current="page"] {
  color: var(--paper);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-toggle span {
  margin-block: 5px;
}

.button,
.button:visited {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button--secondary,
.button--secondary:visited {
  color: var(--ink);
  background: transparent;
  border-color: currentColor;
}

.button--secondary:hover {
  color: var(--orange-dark);
  background: transparent;
  border-color: var(--orange-dark);
}

.button--dark,
.button--dark:visited {
  color: var(--paper);
  background: var(--graphite);
  border-color: var(--graphite);
}

.button--small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--graphite);
}

.hero__media,
.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center 48%;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 15, 0.58);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-block: 72px 88px;
  color: #fff;
}

.hero .eyebrow {
  color: #ffd3bc;
}

.hero h1 {
  max-width: 730px;
  color: #fff;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #f4f4f2;
  font-size: 1.2rem;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 720px;
  margin-top: 28px;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 6px;
}

.hero-search input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 3px 0 0 3px;
}

.hero-search .button {
  min-height: 52px;
  border-radius: 0 3px 3px 0;
}

.hero__actions {
  margin-top: 18px;
}

.hero__actions .text-link {
  color: #fff;
}

.section {
  padding-block: 80px;
}

.section--soft {
  background: var(--off-white);
}

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

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .eyebrow {
  color: #ffb78f;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  max-width: 480px;
  color: var(--muted);
}

.section-heading--compact {
  margin-bottom: 20px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hotel-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.hotel-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--graphite-2);
}

.hotel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.hotel-card__media:hover img {
  transform: scale(1.025);
}

.hotel-card__image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  background: var(--graphite-2);
  font-weight: 750;
}

.hotel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.hotel-card__meta {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.verify-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 8px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.15;
}

.hotel-card__price {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
}

.hotel-card h3 {
  margin: 10px 0 6px;
  font-size: 1.25rem;
}

.hotel-card h3 a {
  text-decoration: none;
}

.hotel-card h3 a:hover {
  color: var(--orange-dark);
}

.hotel-card__location,
.hotel-card__distance,
.hotel-card__note {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hotel-card__distance {
  color: var(--green);
  font-weight: 700;
}

.hotel-card .button {
  margin-top: auto;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  gap: 7px;
}

.feature-list li {
  padding: 5px 8px;
  color: var(--graphite-2);
  background: #f1f2ef;
  border-radius: 3px;
  font-size: 0.78rem;
  line-height: 1.25;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.region-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
  border-radius: 6px;
  text-decoration: none;
}

.region-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.region-card::after {
  position: absolute;
  inset: 0;
  background: rgba(14, 16, 17, 0.5);
  content: "";
}

.region-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px;
}

.region-card h3,
.region-card p {
  color: #fff;
}

.region-card h3 {
  margin-bottom: 6px;
  font-size: 1.55rem;
}

.region-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.region-card:hover img {
  transform: scale(1.035);
}

.criteria-grid,
.trust-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.criteria-item,
.trust-item {
  padding-top: 18px;
  border-top: 3px solid var(--orange);
}

.criteria-item strong,
.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.criteria-item p,
.trust-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.map-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 560px;
  border: 1px solid var(--line-dark);
}

.map-canvas,
.browser-map,
.detail-map {
  width: 100%;
  min-height: 520px;
  background: #e7e8e4;
}

.map-band__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #fff;
}

.map-band__aside p {
  color: var(--muted);
}

.map-count {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 1.6rem;
  font-weight: 800;
}

.kk-map-marker {
  background: transparent;
  border: 0;
}

.kk-map-marker span {
  display: block;
  width: 26px;
  height: 26px;
  background: var(--orange);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.map-popup {
  width: 286px;
}

.map-popup img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.map-popup__body {
  display: grid;
  padding-top: 10px;
  gap: 6px;
}

.map-popup__body strong {
  color: var(--ink);
  font-size: 1rem;
}

.map-popup__body span,
.map-popup__body li {
  color: var(--muted);
  font-size: 0.78rem;
}

.map-popup__body ul {
  padding-left: 18px;
  margin: 2px 0;
}

.map-popup__body a {
  color: var(--orange-dark);
  font-weight: 750;
}

.map-popup__price {
  color: var(--ink) !important;
  font-weight: 700;
}

.map-message {
  display: grid;
  min-height: inherit;
  margin: 0;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.operator-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 48px;
}

.operator-band p {
  max-width: 720px;
  color: #d4d6d7;
}

.page-hero {
  padding-block: 70px 54px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 850px;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: 3rem;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.browser-filters {
  padding-block: 26px;
  background: var(--graphite);
  color: #fff;
}

.browser-filters h2 {
  color: #fff;
  font-size: 1rem;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(5, minmax(120px, 0.7fr));
  gap: 12px;
}

.field {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.field > span,
.field > label {
  font-size: 0.78rem;
  font-weight: 700;
}

.input,
.select,
.textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #aeb2b4;
  border-radius: 4px;
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.feature-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 18px;
}

.check {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.feature-filters .button {
  margin-left: auto;
}

.location-status {
  margin: 10px 0 0;
  color: #d9dcde;
  font-size: 0.82rem;
}

.browser-section {
  padding-block: 38px 70px;
}

.browser-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.browser-toolbar strong {
  font-size: 1rem;
}

.view-switch {
  display: none;
  grid-template-columns: 1fr 1fr;
  width: 220px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  overflow: hidden;
}

.view-switch button {
  min-height: 42px;
  padding: 8px;
  background: #fff;
  border: 0;
}

.view-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--graphite);
}

.browser-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(440px, 1.15fr);
  min-height: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.browser-list {
  max-height: 760px;
  padding: 18px 20px 18px 0;
  overflow-y: auto;
}

.browser-list .hotel-grid {
  grid-template-columns: 1fr;
}

.browser-list .hotel-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
}

.browser-list .hotel-card__media {
  height: 100%;
  aspect-ratio: auto;
}

.browser-list .hotel-card__body {
  padding: 16px;
}

.browser-list .hotel-card__meta {
  display: grid;
}

.browser-list .hotel-card__price {
  text-align: left;
}

.browser-list .feature-list {
  margin-bottom: 14px;
}

.browser-map-wrap {
  min-width: 0;
  border-left: 1px solid var(--line);
}

.browser-map {
  height: 100%;
  min-height: 680px;
}

.empty-state {
  padding: 42px;
  background: var(--off-white);
  border: 1px solid var(--line);
}

.empty-state p {
  color: var(--muted);
}

.detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding-block: 18px;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hotel-detail-hero {
  padding-bottom: 30px;
}

.detail-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 18px 0 28px;
}

.detail-heading h1 {
  margin-bottom: 10px;
  font-size: 3.2rem;
}

.detail-location {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-price {
  min-width: 240px;
  padding-left: 24px;
  border-left: 3px solid var(--orange);
}

.detail-price span,
.detail-price strong {
  display: block;
}

.detail-price span {
  color: var(--muted);
  font-size: 0.8rem;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 230px);
  gap: 8px;
  overflow: hidden;
  border-radius: 6px;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery img:first-child {
  grid-row: 1 / 3;
}

.detail-gallery img:nth-child(n + 6) {
  display: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 58px;
}

.detail-main {
  min-width: 0;
}

.verification-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 36px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  gap: 8px 18px;
}

.verification-bar strong {
  color: var(--green);
}

.verification-bar span {
  color: #3f5649;
}

.verification-bar a {
  margin-left: auto;
  color: var(--green);
  font-weight: 700;
}

.prose {
  max-width: 780px;
}

.prose p {
  color: #3f4346;
}

.detail-section {
  padding-top: 42px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.detail-list {
  display: grid;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
}

.detail-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.feature-list--detail {
  margin-bottom: 28px;
}

.feature-list--detail li {
  padding: 8px 11px;
  font-size: 0.88rem;
}

.detail-map {
  min-height: 420px;
  border: 1px solid var(--line);
}

.booking-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 26px 0 26px 26px;
  border-left: 1px solid var(--line);
}

.booking-aside h2 {
  font-size: 1.45rem;
}

.booking-aside p {
  color: var(--muted);
}

.booking-aside .button,
.booking-aside .text-link {
  width: 100%;
  margin-top: 10px;
}

.booking-aside .text-link {
  display: inline-block;
  padding-block: 8px;
}

.contact-facts {
  display: grid;
  padding: 20px 0;
  margin: 22px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.contact-facts li,
.contact-facts strong,
.contact-facts span,
.contact-facts a {
  display: block;
}

.contact-facts strong {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 60px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.legal-nav a {
  display: block;
  padding-block: 6px;
  color: var(--muted);
}

.legal-content section + section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 1.35rem;
}

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

.contact-option {
  padding: 26px 0;
  border-top: 2px solid var(--graphite);
}

.contact-option p {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: process;
  gap: 22px;
}

.process-item {
  counter-increment: process;
  padding-top: 18px;
  border-top: 3px solid var(--orange);
}

.process-item::before {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 1.4rem;
  font-weight: 800;
  content: "0" counter(process);
}

.countdown {
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.countdown__values {
  display: grid;
  grid-template-columns: repeat(4, 84px);
  margin-top: 16px;
  gap: 8px;
}

.countdown__part {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--line-dark);
}

.countdown__part strong,
.countdown__part span {
  display: block;
}

.countdown__part strong {
  color: #fff;
  font-size: 1.5rem;
}

.countdown__part span {
  color: #cfd1d2;
  font-size: 0.7rem;
}

.site-footer {
  padding-block: 54px 26px;
  color: #d8dadb;
  background: #141617;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.3rem;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 10px;
  color: #aeb2b4;
}

.footer-column strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding-block: 4px;
  color: #c4c7c8;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 34px;
  color: #929799;
  border-top: 1px solid #303436;
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding-inline: 7px;
    font-size: 0.82rem;
  }

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

  .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .browser-layout {
    grid-template-columns: minmax(320px, 0.85fr) minmax(380px, 1.15fr);
  }

  .detail-layout {
    gap: 36px;
  }
}

@media (max-width: 959px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .container--wide {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: var(--header-height);
  }

  .brand__tagline {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px 24px;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding: 12px 8px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-owner {
    margin: 12px 0 0;
    text-align: center;
    border-bottom: 1px solid var(--graphite);
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: 570px;
  }

  .hero__content {
    padding-block: 64px 72px;
  }

  .section {
    padding-block: 64px;
  }

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

  .map-band {
    grid-template-columns: 1fr;
  }

  .map-band__aside {
    min-height: 240px;
  }

  .criteria-grid,
  .trust-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-band,
  .detail-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .booking-aside,
  .legal-nav {
    position: static;
  }

  .booking-aside {
    padding: 30px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
  }

  .detail-gallery {
    grid-template-rows: repeat(2, 180px);
  }

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

@media (max-width: 760px) {
  .section-heading,
  .detail-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-price {
    width: 100%;
    padding: 12px 0 0;
    border-top: 3px solid var(--orange);
    border-left: 0;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .feature-filters .button {
    width: 100%;
    margin-left: 0;
  }

  .view-switch {
    display: grid;
  }

  .browser-layout {
    display: block;
    min-height: 0;
    border: 0;
  }

  .browser-list {
    max-height: none;
    padding: 0;
    overflow: visible;
  }

  .browser-map-wrap {
    display: none;
    border: 0;
  }

  [data-hotel-browser][data-mobile-view="map"] .browser-list {
    display: none;
  }

  [data-hotel-browser][data-mobile-view="map"] .browser-map-wrap {
    display: block;
  }

  .browser-map {
    min-height: 560px;
  }

  .browser-list .hotel-card {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .browser-list .feature-list {
    display: none;
  }

  .browser-list .hotel-card__meta {
    min-height: 0;
  }

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

  .verification-bar a {
    width: 100%;
    margin-left: 0;
  }

  .detail-gallery {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 160px);
  }

  .detail-gallery img:nth-child(n + 4) {
    display: none;
  }

  .detail-gallery img:first-child {
    grid-row: 1 / 3;
  }
}

@media (max-width: 560px) {
  .container,
  .container--wide {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: 1rem;
  }

  h1,
  .page-hero h1,
  .detail-heading h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    min-height: 610px;
    align-items: end;
  }

  .hero__media img {
    object-position: center 46%;
  }

  .hero__content {
    padding-block: 54px 60px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero-search {
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
    gap: 8px;
  }

  .hero-search input,
  .hero-search .button {
    width: 100%;
    border-radius: 4px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding-block: 52px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .hotel-grid,
  .region-grid,
  .criteria-grid,
  .trust-grid,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .region-card {
    min-height: 220px;
  }

  .map-canvas,
  .browser-map {
    min-height: 480px;
  }

  .map-band__aside {
    padding: 22px;
  }

  .page-hero {
    padding-block: 50px 40px;
  }

  .browser-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .view-switch {
    width: 100%;
  }

  .browser-list .hotel-card {
    display: flex;
  }

  .browser-list .hotel-card__media {
    aspect-ratio: 4 / 3;
  }

  .detail-gallery {
    display: block;
  }

  .detail-gallery img {
    display: none;
    aspect-ratio: 4 / 3;
  }

  .detail-gallery img:first-child {
    display: block;
  }

  .detail-map {
    min-height: 360px;
  }

  .countdown__values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .countdown__part {
    padding-inline: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* MODERN-REFRESH-START */
:root {
  --graphite: #171a1c;
  --graphite-2: #25292c;
  --ink: #202326;
  --muted: #686d70;
  --off-white: #f5f5f1;
  --line: #dedfd9;
  --line-dark: #454a4d;
  --orange: #f05a22;
  --orange-dark: #c84313;
  --shadow: 0 18px 50px rgba(22, 24, 26, 0.12);
  --shadow-soft: 0 8px 28px rgba(22, 24, 26, 0.08);
  --header-height: 78px;
}

body {
  background: #fafaf8;
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-weight: 760;
  line-height: 1.08;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-header {
  background: rgba(250, 250, 248, 0.9);
  border-bottom-color: rgba(32, 35, 38, 0.1);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand__name {
  font-size: 1.15rem;
  font-weight: 850;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav .nav-owner,
.button,
.hero-search,
.hero-search input,
.hero-search .button {
  border-radius: 7px;
}

.button {
  box-shadow: 0 7px 18px rgba(240, 90, 34, 0.18);
  font-weight: 780;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button--secondary,
.button--dark {
  box-shadow: none;
}

.hero {
  min-height: min(720px, calc(100vh - var(--header-height)));
}

.hero::after {
  background: linear-gradient(90deg, rgba(12, 14, 15, 0.82) 0%, rgba(12, 14, 15, 0.56) 48%, rgba(12, 14, 15, 0.16) 100%);
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
}

.hero__lead {
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-search {
  border-width: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.hero-search .button {
  box-shadow: none;
}

.section {
  padding-block: 92px;
}

.section-heading {
  margin-bottom: 38px;
}

.hotel-grid {
  gap: 24px;
}

.hotel-card {
  border-color: rgba(32, 35, 38, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hotel-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.hotel-card__media {
  aspect-ratio: 3 / 2;
}

.hotel-card__media img {
  transition-duration: 300ms;
}

.hotel-card__media:hover img {
  transform: scale(1.045);
}

.hotel-card__body {
  padding: 22px;
}

.verify-badge {
  border: 1px solid rgba(47, 107, 79, 0.14);
  border-radius: 999px;
}

.feature-list li {
  background: #f1f2ee;
  border: 1px solid #e5e7e0;
  border-radius: 999px;
}

.region-grid {
  gap: 20px;
}

.region-card {
  min-height: 290px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.region-card img {
  transition-duration: 360ms;
}

.region-card::after {
  background: linear-gradient(180deg, rgba(14, 16, 17, 0.04) 28%, rgba(14, 16, 17, 0.88) 100%);
}

.region-card__body {
  padding: 26px;
}

.region-card h2,
.region-card h3,
.region-card p {
  color: #fff;
}

.region-card h2,
.region-card h3 {
  margin-bottom: 7px;
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 1.8rem;
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.region-card p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.region-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.region-card:hover img {
  transform: scale(1.06);
}

.criteria-item,
.trust-item {
  padding-top: 24px;
  border-top-width: 2px;
}

.map-band {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.map-band__aside {
  padding: 32px;
  background: #f8f8f5;
}

.map-count {
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 2rem;
}

.kk-map-marker span {
  width: 28px;
  height: 28px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.35), 0 0 0 5px rgba(240, 90, 34, 0.18);
}

.leaflet-popup-content-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
  margin: 0;
}

.map-popup img {
  height: 165px;
}

.map-popup__body {
  padding: 14px 16px 16px;
}

.browser-toolbar,
.filter-panel {
  border-color: rgba(32, 35, 38, 0.1);
}

.view-switch {
  border-radius: 7px;
}

.browser-layout {
  overflow: hidden;
  border: 1px solid rgba(32, 35, 38, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.browser-list {
  padding: 20px;
  background: #f5f5f1;
}

.browser-map-wrap {
  border-left-color: rgba(32, 35, 38, 0.1);
}

.page-hero {
  background: linear-gradient(180deg, #f1f2ee 0%, #fafaf8 100%);
  border-bottom: 1px solid rgba(32, 35, 38, 0.08);
}

.detail-gallery,
.booking-aside,
.empty-state {
  border-radius: 8px;
}

.site-footer {
  border-top: 4px solid var(--orange);
}

@media (max-width: 980px) {
  .section {
    padding-block: 68px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
  }
}

@media (max-width: 760px) {
  .browser-layout {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .browser-list {
    padding: 0;
    background: transparent;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(12, 14, 15, 0.25) 0%, rgba(12, 14, 15, 0.86) 72%);
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section {
    padding-block: 58px;
  }

  .region-card {
    min-height: 245px;
  }

  .region-card h2,
  .region-card h3 {
    font-size: 1.65rem;
  }

  .map-band__aside {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotel-card,
  .region-card,
  .hotel-card__media img,
  .region-card img,
  .button {
    transition: none;
  }

  .hotel-card:hover,
  .region-card:hover,
  .button:hover {
    transform: none;
  }
}
/* MODERN-REFRESH-END */

/* PRODUCTION-HARDENING-START */
[hidden] {
  display: none !important;
}

.hero__media picture {
  display: block;
}

.region-card picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.region-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-card__image-fallback {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--graphite-2);
}

.hotel-card__image-fallback span {
  color: var(--orange);
  font-size: 2rem;
  font-weight: 850;
}

.hotel-card__image-fallback small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
}

.detail-image-placeholder {
  min-height: 420px;
  display: grid;
  place-content: center;
  padding: 40px;
  color: var(--paper);
  background: var(--graphite-2);
  border-radius: 8px;
  text-align: center;
}

.detail-image-placeholder span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-image-placeholder strong {
  margin-top: 10px;
  font-size: 1.5rem;
}

.detail-image-placeholder small {
  max-width: 52ch;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.detail-address {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
}

.region-map-wrap {
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.region-map-wrap h2 {
  margin-bottom: 22px;
}

@media (max-width: 560px) {
  .detail-image-placeholder {
    min-height: 300px;
    padding: 28px 20px;
  }
}
.browser-filters .button--secondary,
.browser-filters .button--secondary:visited {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.58);
}

.browser-filters .button--secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: #fff;
}

.browser-filters .button--secondary:disabled {
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  opacity: 1;
}

/* PRODUCTION-HARDENING-END */
/* 2026-07-12 hotel analytics */
.search-suggest {
  position: relative;
  width: 100%;
  min-width: 0;
}

.search-suggest > input {
  width: 100%;
}

.search-suggest__list {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  max-height: min(360px, 55vh);
  overflow-y: auto;
  padding: 6px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #b9b4aa;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(18, 20, 21, 0.22);
}

.search-suggest__option {
  display: grid;
  width: 100%;
  min-height: 54px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  border-radius: 4px;
  text-align: left;
  gap: 1px;
}

.search-suggest__option:hover,
.search-suggest__option[aria-selected="true"] {
  background: #f3eee5;
}

.search-suggest__option span {
  color: var(--ink);
  font-weight: 750;
}

.search-suggest__option small {
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-search .search-suggest input {
  height: 52px;
  border-radius: 3px 0 0 3px;
}

.hotel-card__meta {
  justify-content: flex-end;
}

.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 8px;
}

.hotel-gallery__item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  border-radius: 6px;
}

.hotel-gallery__item--lead {
  grid-column: span 2;
  grid-row: span 2;
}

.hotel-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.hotel-gallery__item:hover img {
  transform: scale(1.015);
}

.verification-bar {
  color: var(--ink);
  background: var(--off-white);
  border-left-color: var(--graphite);
}

.verification-bar strong,
.verification-bar span {
  color: inherit;
}

.operator-hero {
  padding-block: clamp(64px, 8vw, 104px);
}

.operator-hero__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.operator-hero__inner > div {
  max-width: 760px;
}

.operator-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.operator-hero p {
  max-width: 64ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.analytics-heading {
  align-items: end;
}

.analytics-period {
  display: inline-flex;
  padding: 3px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.analytics-period button {
  min-height: 38px;
  padding: 6px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 750;
}

.analytics-period button[aria-pressed="true"] {
  color: #fff;
  background: var(--graphite);
}

.analytics-status {
  min-height: 26px;
  margin: -16px 0 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.analytics-kpis article {
  display: grid;
  min-width: 0;
  padding: 24px;
  gap: 4px;
}

.analytics-kpis article + article {
  border-left: 1px solid var(--line);
}

.analytics-kpis span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.analytics-kpis strong {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.analytics-kpis small {
  color: var(--muted);
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: start;
  gap: 48px;
}

.analytics-grid h3 {
  margin-bottom: 22px;
  font-size: 1.15rem;
}

.analytics-chart {
  display: flex;
  height: 260px;
  min-width: calc(var(--analytics-days, 30) * 11px);
  align-items: end;
  padding: 12px 4px 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 4px;
}

.analytics-chart-panel {
  min-width: 0;
  overflow-x: auto;
}

.analytics-chart__bar {
  display: flex;
  flex: 1 0 7px;
  height: 100%;
  min-width: 7px;
  align-items: end;
}

.analytics-chart__bar > span {
  display: block;
  width: 100%;
  min-height: 2px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
}

.analytics-table-panel {
  min-width: 0;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.analytics-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.analytics-table th,
.analytics-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.analytics-table th:first-child,
.analytics-table td:first-child {
  text-align: left;
}

.analytics-table tbody th {
  color: var(--ink);
  font-weight: 700;
}

.operator-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(36px, 7vw, 90px);
}

.operator-form-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}

.operator-form {
  position: relative;
  max-width: 960px;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.operator-form--compact {
  max-width: 760px;
}

.operator-form--dark {
  color: #fff;
  background: var(--graphite-2);
  border-color: var(--line-dark);
}

.operator-form--dark .field > span,
.operator-form--dark .consent,
.operator-form--dark .consent a {
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field--full {
  grid-column: 1 / -1;
}

.operator-form textarea.input {
  min-height: 130px;
  resize: vertical;
}

.promo-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0 0 30px;
  border: 0;
  gap: 10px;
}

.promo-options legend {
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.promo-options label {
  position: relative;
  display: block;
  min-width: 0;
}

.promo-options input {
  position: absolute;
  inset: 12px auto auto 12px;
  width: 18px;
  height: 18px;
}

.promo-options label > span {
  display: grid;
  min-height: 112px;
  padding: 18px 14px 14px 42px;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: 6px;
  gap: 3px;
}

.promo-options input:checked + span {
  background: #fff2ea;
  border-color: var(--orange);
}

.promo-options strong {
  color: var(--ink);
}

.promo-options small {
  color: var(--muted);
}

.consent {
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
  color: var(--muted);
  gap: 10px;
  font-size: 0.8rem;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
  gap: 14px 20px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-status[data-status="success"] {
  color: var(--green);
  font-weight: 750;
}

.form-status[data-status="error"] {
  color: #b42318;
  font-weight: 750;
}

.operator-form--dark .form-status {
  color: rgba(255, 255, 255, 0.78);
}

.operator-form--dark .form-status[data-status="success"] {
  color: #a7e1bf;
}

.operator-form--dark .form-status[data-status="error"] {
  color: #ffb4ab;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.text-link--light,
.text-link--light:visited {
  color: #fff;
}

@media (max-width: 980px) {
  .hotel-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .analytics-grid,
  .operator-form-layout {
    grid-template-columns: 1fr;
  }

  .operator-form-layout > div:first-child {
    position: static;
  }

  .promo-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .operator-hero__inner,
  .analytics-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .analytics-kpis {
    grid-template-columns: 1fr;
  }

  .analytics-kpis article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .form-grid,
  .form-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hotel-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-gallery__item--lead {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .analytics-period {
    width: 100%;
  }

  .analytics-period button {
    flex: 1;
    min-width: 0;
    padding-inline: 6px;
  }

  .promo-options {
    grid-template-columns: 1fr;
  }

  .operator-form {
    padding: 20px 16px;
  }

  .hero-search .search-suggest input {
    border-radius: 3px;
  }
}
/* Hotel image lightbox */
.hotel-gallery__link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.hotel-gallery__link:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

body.lightbox-open {
  overflow: hidden;
}

.hotel-lightbox[hidden] {
  display: none;
}

.hotel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  padding: 64px 20px 20px;
  background: rgba(18, 19, 20, 0.97);
}

.hotel-lightbox__stage {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.hotel-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
}

.hotel-lightbox__caption {
  margin: 0;
  color: #fff;
  font-weight: 500;
}

.hotel-lightbox__close,
.hotel-lightbox__nav {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(27, 29, 31, 0.82);
  font: inherit;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.hotel-lightbox__close:hover,
.hotel-lightbox__nav:hover,
.hotel-lightbox__close:focus-visible,
.hotel-lightbox__nav:focus-visible {
  color: var(--graphite);
  background: var(--orange);
  border-color: var(--orange);
}

.hotel-lightbox__close {
  position: absolute;
  top: 12px;
  right: 16px;
}

@media (max-width: 560px) {
  .hotel-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 4px;
    padding: 60px 6px 14px;
  }

  .hotel-lightbox__close,
  .hotel-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .hotel-lightbox__image {
    max-height: calc(100vh - 108px);
  }
}
/* Location, radius and price filters */
.browser-filters select:disabled {
  color: #6f7477;
  background: #e6e8e9;
  cursor: not-allowed;
}

.browser-filters optgroup {
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}