/*
 * Atlas × Otello structural layer
 *
 * This stylesheet intentionally owns layout and interaction states only. Colour,
 * typography and theme switching continue to come from the Atlas variables in
 * Atlas.dc.html.
 */

/* -------------------------------------------------------------------------- */
/* Shared layout and controls                                                  */
/* -------------------------------------------------------------------------- */

.ot-page {
  min-width: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

.ot-container {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 30px);
}

.ot-page-main {
  padding-block: clamp(20px, 3vw, 38px) clamp(72px, 8vw, 112px);
}

.ot-card,
.ot-search-card,
.ot-trust-card,
.ot-promo-card,
.ot-deal-card,
.ot-result-card,
.ot-hotel-map,
.ot-info-card,
.ot-room-card,
.ot-booking-card,
.ot-price-card {
  border: 1px solid var(--ink-a09);
  background: var(--surface);
  box-shadow: 0 12px 34px var(--ink-a07);
}

.ot-card {
  border-radius: 20px;
  padding: clamp(18px, 2.4vw, 26px);
}

.ot-muted {
  color: var(--ink-a65);
}

.ot-eyebrow {
  margin: 0 0 8px;
  color: var(--brand-ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ot-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: clamp(32px, 5vw, 58px) 0 18px;
}

.ot-section-head > div {
  min-width: 0;
}

.ot-section-head h1,
.ot-section-head h2,
.ot-section-head h3 {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(21px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.ot-section-head p {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--ink-a65);
  font-size: 14px;
  line-height: 1.55;
}

.ot-section-head > a,
.ot-section-head > button {
  flex: none;
}

.ot-chip,
.ot-filter-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--ink-a12);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-a75);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .16s ease, background .16s ease, color .16s ease,
    transform .16s ease;
}

button.ot-chip,
button.ot-filter-chip {
  appearance: none;
  cursor: pointer;
}

.ot-chip:hover,
.ot-filter-chip:hover {
  border-color: var(--brand-a4);
  background: var(--brand-a05);
  color: var(--brand-ink);
}

.ot-chip.is-active,
.ot-filter-chip.is-active,
.ot-chip[aria-pressed='true'],
.ot-filter-chip[aria-pressed='true'] {
  border-color: var(--brand-ink);
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-chip--soft {
  border-color: transparent;
  background: var(--brand-chip);
  color: var(--brand-ink);
}

.ot-chip--accent {
  border-color: var(--accent-a55);
  background: var(--surface);
  color: var(--accent-ink);
}

.ot-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease,
    border-color .16s ease, color .16s ease;
}

.ot-btn:hover {
  color: var(--on-fill);
  box-shadow: 0 8px 22px var(--brand-a2);
  transform: translateY(-1px);
}

.ot-btn--accent {
  background: var(--accent-fill);
  box-shadow: 0 8px 22px rgba(232, 97, 60, .22);
}

.ot-btn--accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 26px rgba(232, 97, 60, .3);
}

.ot-btn--secondary {
  border-color: var(--brand-a3);
  background: var(--surface);
  color: var(--brand-ink);
}

.ot-btn--secondary:hover {
  border-color: var(--brand-ink);
  background: var(--brand-a05);
  color: var(--brand-ink);
}

.ot-btn--ghost {
  border-color: var(--ink-a12);
  background: transparent;
  color: var(--ink-a75);
}

.ot-btn--ghost:hover {
  border-color: var(--brand-a4);
  color: var(--brand-ink);
}

.ot-btn--wide {
  width: 100%;
}

.ot-btn:disabled,
.ot-btn[aria-disabled='true'] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .48;
  pointer-events: none;
  transform: none;
}

.ot-btn:focus-visible,
.ot-chip:focus-visible,
.ot-filter-chip:focus-visible,
.atlas-nav a:focus-visible,
.atlas-nav button:focus-visible,
.atlas-actions a:focus-visible,
.atlas-actions button:focus-visible {
  outline: 3px solid var(--brand-a35);
  outline-offset: 2px;
}

.ot-field {
  min-width: 0;
}

.ot-field > label,
.ot-field-label {
  display: block;
  margin: 0 0 6px;
  color: var(--ink-a55);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ot-field input,
.ot-field select,
.ot-field-control {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 10px 12px;
  border: 1.5px solid var(--ink-a15);
  border-radius: 12px;
  outline: none;
  background: var(--surface);
  color: var(--ink);
  font-weight: 650;
}

.ot-field input:hover,
.ot-field select:hover,
.ot-field-control:hover {
  border-color: var(--ink-a3);
}

.ot-field input:focus,
.ot-field select:focus,
.ot-field-control:focus-within {
  border-color: var(--brand-ink);
  box-shadow: 0 0 0 3px var(--brand-a18);
  outline: none;
}

/* -------------------------------------------------------------------------- */
/* Atlas header                                                                */
/* -------------------------------------------------------------------------- */

.atlas-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--ink-a09);
  background: var(--bg-header);
  box-shadow: 0 4px 20px var(--ink-a05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.atlas-header {
  display: grid;
  width: min(100%, 1240px);
  min-height: 68px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 30px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

.atlas-header__brand,
.atlas-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.atlas-header__brand:hover,
.atlas-brand:hover {
  color: var(--ink);
}

.atlas-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 4px;
}

.atlas-nav a,
.atlas-nav button {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-a7);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.atlas-nav a:hover,
.atlas-nav button:hover,
.atlas-nav .is-active,
.atlas-nav [aria-current='page'] {
  background: var(--brand-a05);
  color: var(--brand-ink);
}

.atlas-nav .is-active::after,
.atlas-nav [aria-current='page']::after {
  position: absolute;
  right: 12px;
  bottom: 3px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-fill);
  content: '';
}

.atlas-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.atlas-actions > a,
.atlas-actions > button {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--ink-a1);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-a75);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.atlas-actions > a:hover,
.atlas-actions > button:hover {
  border-color: var(--brand-a35);
  color: var(--brand-ink);
}

/* -------------------------------------------------------------------------- */
/* Home                                                                        */
/* -------------------------------------------------------------------------- */

.ot-home-grid {
  display: grid;
  grid-template-areas:
    'hero hero'
    'search trust';
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
  gap: 18px;
  align-items: stretch;
}

.ot-hero {
  position: relative;
  display: flex;
  min-height: clamp(350px, 46vw, 510px);
  overflow: hidden;
  grid-area: hero;
  align-items: flex-end;
  border-radius: clamp(22px, 3vw, 30px);
  isolation: isolate;
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-hero > img,
.ot-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ot-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(195deg, rgba(12, 36, 30, .02) 25%,
    rgba(12, 36, 30, .78) 100%);
  content: '';
}

.ot-hero__content {
  width: min(100%, 760px);
  padding: clamp(26px, 5vw, 56px);
  padding-bottom: clamp(76px, 9vw, 108px);
}

.ot-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-hero h1 {
  max-width: 720px;
  margin: 16px 0 12px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.ot-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(14.5px, 1.5vw, 17px);
  line-height: 1.55;
  text-wrap: pretty;
}

.ot-search-card {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  margin-top: -76px;
  grid-area: search;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  padding: clamp(16px, 2.2vw, 24px);
}

.ot-search-card__tabs,
.ot-search-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 4px;
  overflow-x: auto;
  border-radius: 999px;
  background: var(--bg);
  scrollbar-width: none;
}

.ot-search-card__tabs::-webkit-scrollbar,
.ot-search-tabs::-webkit-scrollbar {
  display: none;
}

.ot-search-card__tabs button,
.ot-search-tabs button {
  min-height: 34px;
  flex: none;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-a65);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.ot-search-card__tabs button.is-active,
.ot-search-card__tabs button[aria-selected='true'],
.ot-search-tabs button.is-active,
.ot-search-tabs button[aria-selected='true'] {
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-search-card__form,
.ot-search-form {
  display: grid;
  grid-template-columns: minmax(150px, 1.45fr) repeat(3, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.ot-search-form .ot-btn,
.ot-search-card__form .ot-btn {
  min-width: 112px;
  height: 46px;
}

.ot-trust-card {
  position: relative;
  z-index: 4;
  display: flex;
  margin-top: -76px;
  overflow: hidden;
  grid-area: trust;
  flex-direction: column;
  justify-content: space-between;
  border-color: var(--brand-a18);
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--brand-bg);
}

.ot-trust-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-trust-card h2,
.ot-trust-card h3 {
  margin: 0 0 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.25;
}

.ot-trust-card p {
  margin: 0;
  color: var(--ink-a7);
  font-size: 13.5px;
  line-height: 1.55;
}

.ot-trust-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ot-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-a75);
  font-size: 12.5px;
  line-height: 1.4;
}

.ot-trust-list li::before {
  flex: none;
  color: var(--brand-ink);
  font-weight: 900;
  content: '\2713';
}

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

.ot-promo-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(20px, 2.7vw, 30px);
  isolation: isolate;
}

.ot-promo-card > img,
.ot-promo-card__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ot-promo-card--image {
  display: flex;
  align-items: flex-end;
  color: var(--on-fill);
}

.ot-promo-card--image::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 36, 30, 0), rgba(12, 36, 30, .74));
  content: '';
}

.ot-promo-card--brand {
  border-color: var(--brand-a28);
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-promo-card--accent {
  border-color: var(--accent-a55);
  background: var(--gold-bg);
}

.ot-promo-card h3 {
  max-width: 350px;
  margin: 0 0 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.22;
}

.ot-promo-card p {
  max-width: 380px;
  margin: 0;
  color: inherit;
  font-size: 13.5px;
  line-height: 1.5;
  opacity: .84;
}

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

.ot-deal-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ot-deal-card:hover {
  border-color: var(--brand-a28);
  box-shadow: 0 16px 38px var(--ink-a12);
  transform: translateY(-2px);
}

.ot-deal-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ph);
}

.ot-deal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.ot-deal-card:hover .ot-deal-card__media img {
  transform: scale(1.025);
}

.ot-deal-card__body {
  padding: 14px 15px 16px;
}

.ot-deal-card h3 {
  margin: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-deal-card__meta {
  margin-top: 5px;
  color: var(--ink-a6);
  font-size: 12.5px;
  line-height: 1.4;
}

.ot-deal-card__price {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 850;
}

/* -------------------------------------------------------------------------- */
/* Search and results                                                          */
/* -------------------------------------------------------------------------- */

.ot-search-strip {
  position: sticky;
  top: 68px;
  z-index: 70;
  border-bottom: 1px solid var(--ink-a09);
  background: var(--bg-header);
  box-shadow: 0 7px 22px var(--ink-a05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.ot-search-strip__inner {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: 12px clamp(16px, 3vw, 30px);
}

.ot-search-strip__form {
  display: grid;
  grid-template-columns: minmax(190px, 1.5fr) repeat(3, minmax(130px, 1fr)) auto;
  gap: 8px;
  align-items: center;
}

.ot-search-strip .ot-field > label,
.ot-search-strip .ot-field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.ot-search-strip .ot-field input,
.ot-search-strip .ot-field select,
.ot-search-strip .ot-field-control,
.ot-search-strip .ot-btn {
  height: 42px;
  min-height: 42px;
}

.ot-filter-chips {
  display: flex;
  width: 100%;
  gap: 8px;
  margin-block: 16px 20px;
  padding-bottom: 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.ot-filter-chips::-webkit-scrollbar {
  display: none;
}

.ot-filter-chips > * {
  flex: none;
  scroll-snap-align: start;
}

.ot-results-shell {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 39%);
  gap: 20px;
  align-items: start;
}

.ot-results-list {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.ot-results-list__head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 2px;
}

.ot-results-list__head h1,
.ot-results-list__head h2 {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.25;
}

.ot-result-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(210px, 34%) minmax(0, 1fr) minmax(150px, auto);
  border-radius: 18px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ot-result-card:hover {
  border-color: var(--brand-a28);
  box-shadow: 0 16px 38px var(--ink-a12);
  transform: translateY(-1px);
}

.ot-result-card__media {
  position: relative;
  min-height: 212px;
  overflow: hidden;
  background: var(--ph);
}

.ot-result-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ot-result-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.ot-result-card__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  color: var(--ink-fill);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .16);
}

.ot-result-card__body {
  min-width: 0;
  padding: 18px;
}

.ot-result-card__title-row {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ot-result-card h2,
.ot-result-card h3 {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 850;
  line-height: 1.25;
}

.ot-result-card__rating {
  display: inline-flex;
  min-width: 38px;
  min-height: 31px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 9px;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 13px;
  font-weight: 850;
}

.ot-result-card__location,
.ot-result-card__meta {
  margin-top: 7px;
  color: var(--ink-a65);
  font-size: 12.5px;
  line-height: 1.45;
}

.ot-result-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.ot-result-card__price {
  display: flex;
  min-width: 158px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  border-left: 1px solid var(--ink-a08);
  text-align: right;
}

.ot-result-card__price small {
  color: var(--ink-a55);
  font-size: 11.5px;
  line-height: 1.4;
}

.ot-result-card__price strong {
  margin: 3px 0 12px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.ot-result-card__price .ot-btn {
  width: 100%;
}

.ot-map-panel {
  position: sticky;
  top: 150px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink-a09);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 34px var(--ink-a07);
}

.ot-map-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ink-a08);
}

.ot-map-panel__head strong {
  font-size: 14px;
}

.ot-mock-map {
  position: relative;
  min-height: min(610px, calc(100vh - 220px));
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(33deg, transparent 46%, var(--ink-a08) 47%, var(--ink-a08) 49%, transparent 50%) 0 0 / 170px 120px,
    linear-gradient(145deg, transparent 45%, var(--ink-a09) 46%, var(--ink-a09) 48%, transparent 49%) 25px 10px / 210px 150px,
    radial-gradient(circle at 20% 25%, var(--brand-a18) 0 12%, transparent 12.5%),
    radial-gradient(circle at 85% 80%, var(--gold-a25) 0 14%, transparent 14.5%),
    var(--surface-2);
}

.ot-mock-map::before,
.ot-mock-map::after {
  position: absolute;
  z-index: -1;
  border: 18px solid var(--brand-a18);
  border-radius: 47% 53% 58% 42%;
  content: '';
  transform: rotate(-13deg);
}

.ot-mock-map::before {
  width: 230px;
  height: 360px;
  top: 22%;
  left: -120px;
}

.ot-mock-map::after {
  width: 250px;
  height: 170px;
  right: -90px;
  bottom: -35px;
}

.ot-map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 2px solid var(--surface);
  border-radius: 10px 10px 10px 3px;
  background: var(--brand-fill);
  color: var(--on-fill);
  box-shadow: 0 7px 18px var(--ink-a22);
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1;
  transform: rotate(-4deg);
  white-space: nowrap;
}

.ot-map-pin > span {
  transform: rotate(4deg);
}

.ot-map-pin.is-active,
.ot-map-pin:hover {
  z-index: 3;
  background: var(--accent-fill);
  transform: rotate(-4deg) scale(1.08);
}

/* -------------------------------------------------------------------------- */
/* Hotel                                                                       */
/* -------------------------------------------------------------------------- */

.ot-hotel-nav {
  position: sticky;
  top: 68px;
  z-index: 65;
  display: flex;
  width: 100%;
  gap: 6px;
  padding-block: 10px;
  overflow-x: auto;
  border-bottom: 1px solid var(--ink-a09);
  background: var(--bg-header);
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.ot-hotel-nav::-webkit-scrollbar {
  display: none;
}

.ot-hotel-nav a,
.ot-hotel-nav button {
  min-height: 36px;
  flex: none;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-a65);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.ot-hotel-nav a:hover,
.ot-hotel-nav button:hover,
.ot-hotel-nav .is-active,
.ot-hotel-nav [aria-current='true'] {
  background: var(--brand-a05);
  color: var(--brand-ink);
}

.ot-gallery-grid {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border-radius: 24px;
  background: var(--ink-a09);
}

.ot-gallery-main,
.ot-gallery-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--ph);
}

.ot-gallery-main {
  grid-row: 1 / -1;
}

.ot-gallery-main img,
.ot-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.ot-gallery-main:hover img,
.ot-gallery-tile:hover img {
  transform: scale(1.018);
}

.ot-gallery-more {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 11px;
  background: rgba(28, 43, 39, .75);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-hotel-summary {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: 22px;
  padding-block: clamp(22px, 3vw, 34px);
  align-items: start;
}

.ot-hotel-summary__main {
  min-width: 0;
}

.ot-hotel-summary__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ot-hotel-summary h1 {
  margin: 5px 0 7px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.ot-hotel-summary__address {
  color: var(--ink-a65);
  font-size: 13.5px;
  line-height: 1.5;
}

.ot-hotel-summary__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ot-hotel-map {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(40deg, transparent 45%, var(--ink-a09) 46%, var(--ink-a09) 49%, transparent 50%) 0 0 / 120px 95px,
    radial-gradient(circle at 25% 70%, var(--brand-a18), transparent 25%),
    var(--surface-2);
}

.ot-hotel-map__content {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--ink-a09);
  border-radius: 12px;
  background: var(--glass);
  box-shadow: 0 7px 18px var(--ink-a12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

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

.ot-info-card {
  min-width: 0;
  border-radius: 18px;
  padding: 18px;
}

.ot-info-card__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--brand-chip);
  color: var(--brand-ink);
}

.ot-info-card h3 {
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.35;
}

.ot-info-card p {
  margin: 0;
  color: var(--ink-a65);
  font-size: 12.5px;
  line-height: 1.5;
}

.ot-room-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(200px, 270px) minmax(210px, .75fr) minmax(310px, 1.25fr);
  border-radius: 20px;
}

.ot-room-card + .ot-room-card {
  margin-top: 14px;
}

.ot-room-card__media {
  min-height: 230px;
  overflow: hidden;
  background: var(--ph);
}

.ot-room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ot-room-card__body {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--ink-a08);
}

.ot-room-card__body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.ot-room-card__features {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.ot-room-card__features li {
  display: flex;
  gap: 7px;
  color: var(--ink-a65);
  font-size: 12.5px;
  line-height: 1.4;
}

.ot-room-card__features li::before {
  color: var(--brand-ink);
  content: '\2022';
}

.ot-room-rates {
  display: grid;
  min-width: 0;
  align-content: start;
}

.ot-room-rate {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 17px 18px;
}

.ot-room-rate + .ot-room-rate {
  border-top: 1px solid var(--ink-a08);
}

.ot-room-rate__name {
  font-size: 13.5px;
  font-weight: 800;
}

.ot-room-rate__terms {
  margin-top: 5px;
  color: var(--ink-a6);
  font-size: 11.5px;
  line-height: 1.45;
}

.ot-room-rate__action {
  min-width: 132px;
  text-align: right;
}

.ot-room-rate__price {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* Booking                                                                     */
/* -------------------------------------------------------------------------- */

.ot-booking-head {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px 22px;
}

.ot-booking-head h1 {
  margin: 6px 0 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(23px, 3vw, 35px);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.ot-booking-head__hold {
  display: inline-flex;
  min-height: 38px;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--accent-a55);
  border-radius: 12px;
  background: var(--gold-bg);
  color: var(--accent-ink);
  font-size: 12.5px;
  font-weight: 800;
}

.ot-booking-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
  gap: 22px;
  align-items: start;
}

.ot-booking-main {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.ot-booking-aside {
  min-width: 0;
}

.ot-booking-card,
.ot-price-card {
  min-width: 0;
  border-radius: 20px;
  padding: clamp(18px, 2.5vw, 26px);
}

.ot-booking-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ot-booking-card__head h2,
.ot-booking-card__head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.ot-booking-card__head p {
  margin: 5px 0 0;
  color: var(--ink-a6);
  font-size: 12.5px;
  line-height: 1.45;
}

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

.ot-booking-fields .is-wide {
  grid-column: 1 / -1;
}

.ot-booking-summary {
  display: grid;
  gap: 0;
}

.ot-booking-summary__hotel {
  display: grid;
  min-width: 0;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 16px;
}

.ot-booking-summary__hotel img {
  width: 82px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--ph);
}

.ot-booking-summary__hotel h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.ot-booking-summary__hotel p {
  margin: 4px 0 0;
  color: var(--ink-a6);
  font-size: 11.5px;
  line-height: 1.4;
}

.ot-booking-summary__row,
.ot-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid var(--ink-a08);
  color: var(--ink-a7);
  font-size: 12.5px;
  line-height: 1.4;
}

.ot-booking-summary__row strong,
.ot-price-row strong {
  color: var(--ink);
  text-align: right;
}

.ot-payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ot-payment-method {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 1.5px solid var(--ink-a12);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink-a7);
  font-size: 12.5px;
  font-weight: 800;
  text-align: center;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.ot-payment-method:hover,
.ot-payment-method.is-active,
.ot-payment-method[aria-checked='true'] {
  border-color: var(--brand-ink);
  background: var(--brand-bg);
  color: var(--brand-ink);
}

.ot-payment-method.is-active::after,
.ot-payment-method[aria-checked='true']::after {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 11px;
  content: '\2713';
}

.ot-price-card {
  position: sticky;
  top: 92px;
}

.ot-price-card h2,
.ot-price-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.3;
}

.ot-price-card__total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 16px;
  padding-top: 16px;
  border-top: 1.5px solid var(--ink-a15);
}

.ot-price-card__total span {
  color: var(--ink-a65);
  font-size: 13px;
  font-weight: 700;
}

.ot-price-card__total strong {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1;
  white-space: nowrap;
}

.ot-price-card__note {
  margin-top: 12px;
  color: var(--ink-a55);
  font-size: 11.5px;
  line-height: 1.45;
  text-align: center;
}

.ot-mobile-cta {
  display: none;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .atlas-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .atlas-nav {
    padding-bottom: 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .atlas-nav::-webkit-scrollbar {
    display: none;
  }

  .atlas-actions .atlas-action-label {
    display: none;
  }

  .atlas-actions > a,
  .atlas-actions > button {
    width: 38px;
    padding-inline: 0;
  }

  .ot-home-grid {
    grid-template-areas:
      'hero'
      'search'
      'trust';
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-search-card {
    margin-top: -72px;
  }

  .ot-trust-card {
    margin-top: 0;
  }

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

  .ot-search-form .ot-btn,
  .ot-search-card__form .ot-btn {
    width: 100%;
  }

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

  .ot-promo-card:first-child {
    grid-column: 1 / -1;
  }

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

  .ot-search-strip {
    position: relative;
    top: auto;
  }

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

  .ot-search-strip__form .ot-btn {
    width: 100%;
  }

  .ot-results-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-map-panel {
    display: none;
  }

  .ot-result-card {
    grid-template-columns: minmax(190px, 31%) minmax(0, 1fr) minmax(145px, auto);
  }

  .ot-gallery-grid {
    min-height: 350px;
    grid-template-columns: 2fr 1fr;
  }

  .ot-gallery-tile:nth-of-type(n + 3) {
    display: none;
  }

  .ot-hotel-summary {
    grid-template-columns: minmax(0, 1fr) minmax(235px, 30%);
  }

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

  .ot-room-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .ot-room-card__body {
    border-right: 0;
  }

  .ot-room-rates {
    grid-column: 1 / -1;
    border-top: 1px solid var(--ink-a08);
  }

  .ot-booking-grid {
    grid-template-columns: minmax(0, 1fr) minmax(285px, 34%);
  }

  .ot-payment-methods {
    grid-template-columns: 1fr;
  }

  .ot-payment-method {
    min-height: 58px;
    justify-content: flex-start;
  }
}

.ot-hotel-nav-actions {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.ot-hotel-nav-actions > button:last-child {
  width: 36px;
  padding-inline: 0;
  font-size: 19px;
}

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

.ot-similar-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--ink-a09);
  border-radius: 17px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
}

.ot-similar-card > span {
  min-height: 155px;
  background-position: center;
  background-size: cover;
}

.ot-similar-card > div { display: grid; gap: 5px; padding: 14px; }
.ot-similar-card small { color: var(--ink-a55); font-size: 10px; }
.ot-similar-card b { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.ot-similar-card strong { color: var(--brand-ink); font-size: 13px; }

.ot-faq-section details {
  border-top: 1px solid var(--ink-a09);
  padding: 15px 2px;
}

.ot-faq-section summary { cursor: pointer; font-weight: 800; }
.ot-faq-section details p { max-width: 760px; margin: 10px 0 0; color: var(--ink-a65); font-size: 13px; line-height: 1.55; }

@media (max-width: 720px) {
  .ot-hotel-nav-actions > button:first-child {
    width: 36px;
    min-width: 36px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }
  .ot-hotel-nav-actions > button:first-child::before { content: "↗"; font-size: 17px; }
  .ot-similar-grid { grid-template-columns: minmax(0, 1fr); }
}

.ot-booking-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-a08);
}

.ot-booking-facts > span { display: grid; gap: 2px; }
.ot-booking-facts small { color: var(--ink-a5); font-size: 8.5px; text-transform: uppercase; letter-spacing: .045em; }
.ot-booking-facts b { color: var(--ink-a75); font-size: 10px; line-height: 1.35; }

.ot-sber-login {
  width: 100%;
  min-height: 38px;
  margin: 2px 0 10px;
  border: 1px solid var(--brand-a28);
  border-radius: 10px;
  background: var(--brand-bg);
  color: var(--brand-ink);
  font-size: 10.5px;
  font-weight: 800;
}

@media (max-width: 540px) {
  .ot-booking-facts { grid-template-columns: minmax(0, 1fr); }
}

.atlas-footer-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 38px clamp(14px,3.5vw,28px) 24px;
  border-bottom: 1px solid var(--ink-a08);
}

.atlas-footer-grid > div { display: grid; align-content: start; gap: 8px; }
.atlas-footer-grid b { font-size: 13px; }
.atlas-footer-grid p { max-width: 310px; margin: 0 0 5px; color: var(--ink-a55); font-size: 11.5px; line-height: 1.55; }
.atlas-footer-grid button { width: fit-content; padding: 0; border: 0; background: transparent; color: var(--ink-a55); font-size: 11.5px; text-align: left; }
.atlas-footer-grid button:hover { color: var(--brand-ink); }

@media (max-width: 760px) {
  .atlas-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 440px) {
  .atlas-footer-grid { grid-template-columns: minmax(0, 1fr); }
}

.ot-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: background-image .25s ease;
}

.ot-hero-controls {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ot-hero-controls > button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(16,31,27,.44);
  color: #fff;
}

.ot-hero-controls > span { display: flex; gap: 6px; }
.ot-hero-controls > span button { width: 20px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: #fff; }

@media (max-width: 720px) {
  .ot-hero-controls { right: 16px; bottom: 14px; }
}

@media (max-width: 700px) {
  .ot-container {
    padding-inline: 14px;
  }

  .ot-page-main {
    padding-block: 14px 94px;
  }

  .atlas-topbar {
    position: sticky;
  }

  .atlas-header {
    min-height: 58px;
    padding-inline: 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 9px;
  }

  .atlas-header__brand,
  .atlas-brand {
    font-size: 14px;
  }

  .atlas-header__brand svg,
  .atlas-brand svg {
    width: 25px;
    height: 25px;
  }

  .atlas-nav {
    margin-inline: -2px;
    gap: 2px;
  }

  .atlas-nav a,
  .atlas-nav button {
    min-height: 34px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .atlas-actions {
    gap: 5px;
  }

  .atlas-actions > a,
  .atlas-actions > button {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .atlas-actions > :not(:last-child) {
    display: none;
  }

  .ot-section-head {
    align-items: flex-start;
    margin-top: 34px;
  }

  .ot-section-head h1,
  .ot-section-head h2,
  .ot-section-head h3 {
    font-size: 21px;
  }

  .ot-section-head p {
    font-size: 13px;
  }

  .ot-section-head > a,
  .ot-section-head > button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11.5px;
  }

  .ot-home-grid {
    gap: 12px;
  }

  .ot-hero {
    min-height: 390px;
    border-radius: 20px;
  }

  .ot-hero__content {
    padding: 24px 20px 98px;
  }

  .ot-hero__badge {
    font-size: 9.5px;
  }

  .ot-hero h1 {
    margin-top: 12px;
    font-size: clamp(25px, 8vw, 34px);
  }

  .ot-search-card {
    margin-top: -82px;
    border-radius: 18px;
    padding: 14px;
  }

  .ot-search-card__form,
  .ot-search-form,
  .ot-search-strip__form {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-search-form .ot-field,
  .ot-search-card__form .ot-field,
  .ot-search-strip__form .ot-field {
    width: 100%;
  }

  .ot-search-form .ot-btn,
  .ot-search-card__form .ot-btn,
  .ot-search-strip__form .ot-btn {
    grid-column: 1 / -1;
  }

  .ot-trust-card {
    border-radius: 18px;
  }

  .ot-promo-grid,
  .ot-deal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-promo-card:first-child {
    grid-column: auto;
  }

  .ot-promo-card {
    min-height: 190px;
    border-radius: 18px;
  }

  .ot-deal-grid {
    display: flex;
    margin-inline: -14px;
    padding: 0 14px 8px;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ot-deal-grid::-webkit-scrollbar {
    display: none;
  }

  .ot-deal-card {
    width: min(78vw, 290px);
    flex: none;
    scroll-snap-align: start;
  }

  .ot-search-strip__inner {
    padding: 10px 14px 12px;
  }

  .ot-filter-chips {
    margin-inline: -14px;
    width: calc(100% + 28px);
    padding-inline: 14px;
  }

  .ot-results-list__head {
    align-items: flex-start;
  }

  .ot-results-list__head h1,
  .ot-results-list__head h2 {
    font-size: 19px;
  }

  .ot-result-card {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 17px;
  }

  .ot-result-card__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .ot-result-card__body {
    padding: 15px 15px 10px;
  }

  .ot-result-card__price {
    min-width: 0;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 15px 15px;
    border-top: 1px solid var(--ink-a08);
    border-left: 0;
    text-align: left;
  }

  .ot-result-card__price > div {
    min-width: 0;
  }

  .ot-result-card__price strong {
    display: block;
    margin: 2px 0 0;
    font-size: 19px;
  }

  .ot-result-card__price .ot-btn {
    width: auto;
    flex: none;
  }

  .ot-hotel-nav {
    top: 58px;
    margin-inline: -14px;
    width: calc(100% + 28px);
    padding-inline: 14px;
  }

  .ot-gallery-grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 104px;
    border-radius: 18px;
  }

  .ot-gallery-main {
    aspect-ratio: 16 / 10;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .ot-gallery-tile {
    min-height: 104px;
  }

  .ot-gallery-tile:nth-of-type(n + 3) {
    display: none;
  }

  .ot-hotel-summary {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .ot-hotel-summary__top {
    gap: 10px;
  }

  .ot-hotel-summary h1 {
    font-size: 25px;
  }

  .ot-hotel-map {
    min-height: 160px;
  }

  .ot-info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-info-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
    padding: 15px;
  }

  .ot-info-card__icon {
    margin: 0;
    grid-row: 1 / span 2;
  }

  .ot-room-card {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 17px;
  }

  .ot-room-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .ot-room-card__body {
    padding: 16px;
  }

  .ot-room-rates {
    grid-column: auto;
  }

  .ot-room-rate {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 15px 16px;
  }

  .ot-room-rate__action {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
  }

  .ot-room-rate__price {
    margin: 0;
  }

  .ot-booking-head {
    display: block;
    padding-bottom: 16px;
  }

  .ot-booking-head h1 {
    font-size: 24px;
  }

  .ot-booking-head__hold {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
  }

  .ot-booking-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-booking-aside {
    order: -1;
  }

  .ot-price-card {
    position: static;
  }

  .ot-booking-fields,
  .ot-payment-methods {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-payment-method {
    min-height: 56px;
    justify-content: flex-start;
  }

  .ot-mobile-cta {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--ink-a12);
    background: var(--bg-header);
    box-shadow: 0 -10px 28px var(--ink-a12);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .ot-mobile-cta__price {
    min-width: 0;
  }

  .ot-mobile-cta__price small {
    display: block;
    overflow: hidden;
    color: var(--ink-a55);
    font-size: 10.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ot-mobile-cta__price strong {
    display: block;
    margin-top: 2px;
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
  }

  .ot-mobile-cta .ot-btn {
    min-height: 42px;
    padding-inline: 17px;
  }

  .ot-desktop-only {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .atlas-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .atlas-header__brand span,
  .atlas-brand span {
    display: none;
  }

  .ot-section-head {
    gap: 10px;
  }

  .ot-section-head > a,
  .ot-section-head > button {
    max-width: 112px;
  }

  .ot-result-card__price {
    align-items: stretch;
    flex-direction: column;
  }

  .ot-result-card__price .ot-btn {
    width: 100%;
  }

  .ot-booking-summary__hotel {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .ot-booking-summary__hotel img {
    width: 70px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ot-btn,
  .ot-chip,
  .ot-filter-chip,
  .ot-deal-card,
  .ot-deal-card__media img,
  .ot-result-card,
  .ot-gallery-main img,
  .ot-gallery-tile img,
  .ot-map-pin {
    scroll-behavior: auto;
    transition: none;
  }
}

/* ========================================================================== */
/* Actual Atlas.dc.html compatibility layer                                    */
/*                                                                            */
/* The live template intentionally uses short, flat class names. Keep this     */
/* block after the reusable/BEM layer so those real elements receive the same  */
/* layout without requiring HTML changes.                                      */
/* ========================================================================== */

/* Header variants used by the template. */

.atlas-action {
  appearance: none;
}

button.atlas-brand {
  padding: 0;
  border: 0;
  background: transparent;
}

.atlas-action-muted {
  background: var(--surface);
  color: var(--ink-a7);
}

.atlas-actions > .atlas-action-bonus {
  border-color: var(--brand-a18);
  background: var(--brand-chip);
  color: var(--brand-ink);
}

.atlas-actions > .atlas-action-bonus:hover {
  border-color: var(--brand-a4);
  background: var(--brand-bg);
}

/* Page-width ownership for the four screens. */

.ot-page,
.ot-results-page,
.ot-hotel-page,
.ot-booking-page {
  min-width: 0;
}

.ot-page {
  padding: clamp(18px, 3vw, 32px) 0 clamp(70px, 8vw, 110px);
}

.ot-home-grid,
.ot-preset-row,
.ot-home-section,
.ot-results-page,
.ot-hotel-container,
.ot-booking-page {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 30px);
}

/* -------------------------------------------------------------------------- */
/* Live home markup                                                            */
/* -------------------------------------------------------------------------- */

.ot-home-grid {
  grid-template-areas: none;
  grid-template-columns: minmax(0, 1.6fr) minmax(330px, .72fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.ot-home-grid > .ot-hero {
  min-width: 0;
  min-height: 560px;
  grid-area: auto;
}

.ot-home-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

.ot-hero::after {
  display: none;
}

.ot-hero > img {
  z-index: 0;
}

.ot-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 36, 30, .02) 26%, rgba(12, 36, 30, .78) 100%),
    linear-gradient(90deg, rgba(12, 36, 30, .36), transparent 62%);
  pointer-events: none;
}

.ot-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  padding: clamp(28px, 5vw, 58px);
  color: var(--on-fill);
}

.ot-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-hero-copy h1 {
  margin: 16px 0 12px;
}

.ot-hero-copy p {
  max-width: 580px;
}

.ot-outline-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: var(--on-fill);
  font-size: 13px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .16s ease, transform .16s ease;
}

.ot-outline-cta:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-1px);
}

.ot-home-side > .ot-search-card {
  display: block;
  min-width: 0;
  margin: 0;
  grid-area: auto;
  border-radius: 22px;
  padding: 18px;
}

.ot-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  margin-bottom: 10px;
  padding: 4px;
  border-radius: 13px;
  background: var(--bg);
}

.ot-mode-switch button {
  min-height: 34px;
  padding: 7px 9px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-a65);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ot-search-row {
  display: grid;
  min-width: 0;
  min-height: 62px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 8px 7px;
  border-bottom: 1px solid var(--ink-a09);
  color: var(--ink);
}

.ot-search-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--brand-chip);
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 900;
}

.ot-search-control {
  display: block;
  min-width: 0;
}

.ot-search-control > small {
  display: block;
  margin-bottom: 2px;
  color: var(--ink-a5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1.2;
}

.ot-search-control select,
.ot-search-control input,
.ot-guests-trigger {
  display: block;
  width: 100%;
  height: 26px;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 750;
  line-height: 26px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-search-control select:focus,
.ot-search-control input:focus,
.ot-guests-trigger:focus-visible {
  outline: 2px solid var(--brand-a35);
  outline-offset: 2px;
}

.ot-counter {
  display: grid;
  height: 27px;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
}

.ot-counter button,
.ot-mini-counter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--brand-a28);
  background: var(--surface);
  color: var(--brand-ink);
  font-weight: 850;
}

.ot-counter button {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.ot-counter b {
  overflow: hidden;
  font-size: 13px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-guests-popover {
  position: absolute;
  z-index: 75;
  top: calc(100% + 8px);
  right: 0;
  width: min(310px, calc(100vw - 40px));
  padding: 16px;
  border: 1px solid var(--ink-a09);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 20px 50px var(--ink-a22);
}

.ot-guest-line,
.ot-child-age {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ot-guest-line + .ot-guest-line,
.ot-child-age {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--ink-a09);
}

.ot-guest-line b {
  display: block;
  font-size: 13px;
}

.ot-guest-line small {
  display: block;
  margin-top: 2px;
  color: var(--ink-a5);
  font-size: 10.5px;
}

.ot-mini-counter {
  display: grid;
  grid-template-columns: 30px 24px 30px;
  gap: 5px;
  align-items: center;
  text-align: center;
}

.ot-mini-counter button {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.ot-child-age {
  color: var(--ink-a65);
  font-size: 12px;
}

.ot-child-age select {
  height: 32px;
  padding: 4px 8px;
  border: 1px solid var(--ink-a15);
  border-radius: 9px;
  background: var(--surface);
}

.ot-primary-cta,
.ot-search-submit,
.ot-search-strip-submit,
.ot-pay-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 0;
  border-radius: 12px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 13.5px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(232, 97, 60, .22);
  transition: background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.ot-primary-cta:hover,
.ot-search-submit:hover,
.ot-search-strip-submit:hover,
.ot-pay-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 24px rgba(232, 97, 60, .3);
  transform: translateY(-1px);
}

.ot-guests-popover > .ot-primary-cta {
  width: 100%;
  min-height: 38px;
  margin-top: 14px;
}

.ot-search-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
}

.ot-home-side > .ot-trust-card {
  display: grid;
  margin: 0;
  grid-area: auto;
  gap: 0;
  border-radius: 19px;
  padding: 5px 17px;
}

.ot-trust-card > div {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 12px 0 12px 26px;
}

.ot-trust-card > div + div {
  border-top: 1px solid var(--brand-a18);
}

.ot-trust-card > div::before {
  position: absolute;
  top: 14px;
  left: 0;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 10px;
  font-weight: 900;
  content: '\2713';
}

.ot-trust-card > div > b {
  font-size: 12.5px;
  line-height: 1.3;
}

.ot-trust-card > div > span {
  color: var(--ink-a6);
  font-size: 11px;
  line-height: 1.35;
}

.ot-preset-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ot-preset-row::-webkit-scrollbar {
  display: none;
}

.ot-preset-row > span,
.ot-preset-row > button {
  flex: none;
  white-space: nowrap;
}

.ot-preset-row > span {
  margin-right: 2px;
  color: var(--ink-a55);
  font-size: 11.5px;
  font-weight: 750;
}

.ot-preset-row > button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--brand-a28);
  border-radius: 999px;
  background: var(--brand-a05);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 750;
}

.ot-preset-row > button:hover {
  border-color: var(--brand-ink);
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-home-section {
  margin-top: clamp(34px, 5vw, 62px);
}

.ot-home-section > .ot-section-head {
  margin-top: 0;
}

.ot-home-section > .ot-section-head > button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--ink-a12);
  border-radius: 11px;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 12.5px;
  font-weight: 800;
}

.ot-home-section > .ot-section-head > span {
  color: var(--ink-a55);
  font-size: 12.5px;
  white-space: nowrap;
}

.ot-home-section .ot-deal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

button.ot-deal-card {
  display: block;
  width: 100%;
  padding: 0;
  color: var(--ink);
  text-align: left;
}

.ot-deal-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--ph);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ot-deal-photo > span {
  position: absolute;
  top: 11px;
  left: 11px;
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ot-deal-body {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 14px 15px 16px;
}

.ot-deal-rating {
  color: var(--brand-ink);
  font-size: 10.5px;
  font-weight: 800;
}

.ot-deal-body > b {
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-deal-body > small {
  overflow: hidden;
  color: var(--ink-a55);
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-deal-body > strong {
  margin-top: 6px;
  font-size: 16px;
}

.ot-home-section .ot-promo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

button.ot-promo-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px;
  color: var(--ink);
  text-align: left;
}

.ot-promo-card > small {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .7;
}

.ot-promo-card > b {
  margin: 7px 0 5px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.ot-promo-card > span {
  font-size: 12.5px;
  line-height: 1.4;
  opacity: .8;
}

.ot-promo-one {
  border-color: var(--brand-a28);
  background: var(--brand-bg);
  color: var(--brand-ink);
}

.ot-promo-two {
  border-color: var(--accent-a55);
  background: var(--gold-bg);
}

.ot-promo-three {
  border-color: var(--brand-a28);
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-promo-loyalty {
  background: var(--surface-2);
}

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

.ot-destination-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--ink-a09);
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 10px 28px var(--ink-a07);
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ot-destination-card:hover {
  border-color: var(--brand-a28);
  box-shadow: 0 15px 34px var(--ink-a12);
  transform: translateY(-2px);
}

.ot-destination-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background-color: var(--ph);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ot-destination-photo > span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink-fill);
  font-size: 9.5px;
  font-weight: 850;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-destination-body {
  display: grid;
  gap: 5px;
  padding: 14px 15px 16px;
}

.ot-destination-body > b {
  font-size: 15px;
}

.ot-destination-body > small {
  overflow: hidden;
  color: var(--ink-a55);
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-destination-body > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}

.ot-destination-body strong {
  color: var(--brand-ink);
  font-size: 13.5px;
}

.ot-destination-body em {
  color: var(--ink-a5);
  font-size: 10.5px;
  font-style: normal;
  text-align: right;
}

.ot-care-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  border-radius: 26px;
  padding: clamp(26px, 4vw, 46px);
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-care-banner > div:first-child > small {
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}

.ot-care-banner h2 {
  margin: 8px 0 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(21px, 2.7vw, 32px);
  line-height: 1.2;
}

.ot-care-banner p {
  max-width: 650px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  opacity: .82;
}

.ot-care-banner > div:first-child > button {
  min-height: 42px;
  margin-top: 18px;
  padding: 9px 14px;
  border: 0;
  border-radius: 11px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 12.5px;
  font-weight: 850;
}

.ot-care-points {
  display: grid;
  gap: 9px;
}

.ot-care-points > span {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 13px;
  background: rgba(255, 255, 255, .09);
  font-size: 11.5px;
  line-height: 1.35;
}

.ot-care-points b {
  font-size: 13px;
}

/* -------------------------------------------------------------------------- */
/* Live results markup                                                         */
/* -------------------------------------------------------------------------- */

.ot-results-page {
  padding-top: clamp(16px, 2.6vw, 28px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.ot-results-page > .ot-search-strip {
  display: grid;
  grid-template-columns: minmax(210px, 1.45fr) repeat(2, minmax(150px, 1fr)) auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--ink-a09);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 32px var(--ink-a07);
}

.ot-search-strip > button:not(.ot-search-strip-submit) {
  display: grid;
  min-width: 0;
  min-height: 48px;
  gap: 2px;
  align-content: center;
  padding: 7px 12px;
  border: 1px solid var(--ink-a09);
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--ink);
  text-align: left;
}

.ot-search-strip > button:not(.ot-search-strip-submit):hover {
  border-color: var(--brand-a28);
  background: var(--brand-a05);
}

.ot-search-strip > button small {
  overflow: hidden;
  color: var(--ink-a5);
  font-size: 9.5px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-search-strip > button b {
  overflow: hidden;
  font-size: 12.5px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-search-strip-submit {
  min-width: 104px;
  min-height: 48px;
}

.ot-results-page > .ot-filter-chips {
  margin-block: 14px 18px;
}

.ot-filter-chip > span {
  display: inline-flex;
  min-width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 9.5px;
}

.ot-filter-ai {
  border-color: var(--brand-a35);
  background: var(--brand-bg);
  color: var(--brand-ink);
}

.ot-filter-select {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--ink-a12);
  border-radius: 999px;
  background: var(--surface);
}

.ot-filter-select select {
  height: 32px;
  padding: 0 20px 0 3px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-a75);
  font-size: 12px;
  font-weight: 750;
}

.ot-filter-panel {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(260px, 1.4fr) auto;
  gap: 18px;
  align-items: end;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--ink-a09);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 12px 30px var(--ink-a07);
}

.ot-filter-panel > div,
.ot-filter-panel > label {
  display: grid;
  gap: 8px;
}

.ot-filter-panel small {
  color: var(--ink-a55);
  font-size: 10.5px;
  font-weight: 800;
}

.ot-star-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ot-star-filter button {
  min-height: 31px;
  padding: 6px 10px;
  border: 1px solid var(--ink-a12);
  border-radius: 9px;
  font-size: 11.5px;
  font-weight: 800;
}

.ot-filter-panel input[type='range'] {
  width: 100%;
}

.ot-filter-panel > button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--ink-a15);
  border-radius: 10px;
  background: transparent;
  color: var(--ink-a65);
  font-size: 12px;
  font-weight: 750;
}

.ot-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 4px 0 17px;
}

.ot-results-head h1 {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.ot-results-head p {
  margin: 6px 0 0;
  color: var(--ink-a6);
  font-size: 13px;
}

.ot-results-head > b {
  flex: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-chip);
  color: var(--brand-ink);
  font-size: 12px;
}

.ot-empty-state {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 28px;
  border: 1px dashed var(--ink-a18);
  border-radius: 18px;
  background: var(--surface);
}

.ot-empty-state > b {
  font-size: 16px;
}

.ot-empty-state > span {
  color: var(--ink-a6);
  font-size: 13px;
}

.ot-empty-state > button {
  min-height: 38px;
  margin-top: 5px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 12px;
  font-weight: 800;
}

.ot-result-photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background-color: var(--ph);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--on-fill);
}

.ot-result-photo > span,
.ot-result-photo > em {
  position: absolute;
  left: 11px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9.5px;
  font-style: normal;
  font-weight: 850;
}

.ot-result-photo > span {
  top: 11px;
  background: var(--glass);
  color: var(--ink-fill);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-result-photo > em {
  bottom: 11px;
  background: var(--accent-fill);
  color: var(--on-fill);
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ot-result-main {
  min-width: 0;
  padding: 17px 18px;
}

.ot-result-meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink-a55);
  font-size: 10.5px;
  line-height: 1.3;
}

.ot-result-meta > span:last-child {
  flex: none;
}

.ot-result-meta b {
  display: inline-flex;
  min-width: 27px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
  padding: 4px 5px;
  border-radius: 7px;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 10.5px;
}

.ot-result-title {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-result-title:hover {
  color: var(--brand-ink);
}

.ot-result-main > p {
  margin: 6px 0 0;
  color: var(--ink-a65);
  font-size: 12px;
  line-height: 1.4;
}

.ot-result-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.ot-result-benefits > span {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--brand-chip);
  color: var(--brand-ink);
  font-size: 9.5px;
  font-weight: 750;
  line-height: 1.2;
}

.ot-result-desc {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: var(--ink-a55);
  font-size: 11px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ot-result-price {
  display: flex;
  min-width: 164px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 17px;
  border-left: 1px solid var(--ink-a08);
  text-align: right;
}

.ot-result-price > small,
.ot-result-price > span {
  color: var(--ink-a55);
  font-size: 10.5px;
  line-height: 1.35;
}

.ot-result-price > strong {
  margin-top: 3px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.15;
  white-space: nowrap;
}

.ot-result-price > b {
  margin-top: 7px;
  color: var(--brand-ink);
  font-size: 10.5px;
}

.ot-result-price > em {
  margin-top: 5px;
  color: var(--accent-ink);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.ot-result-price > button {
  width: 100%;
  min-height: 39px;
  margin-top: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 12.5px;
  font-weight: 850;
}

.ot-map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--ink-a08);
}

.ot-map-actions button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--ink-a12);
  border-radius: 9px;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 11px;
  font-weight: 800;
}

.ot-map-road,
.ot-map-water {
  position: absolute;
  pointer-events: none;
}

.ot-map-road {
  z-index: 0;
  height: 18px;
  border: 5px solid var(--surface);
  border-radius: 999px;
  background: var(--ink-a12);
  box-shadow: 0 0 0 1px var(--ink-a08);
}

.ot-map-road-a {
  width: 130%;
  top: 33%;
  left: -18%;
  transform: rotate(24deg);
}

.ot-map-road-b {
  width: 110%;
  right: -22%;
  bottom: 24%;
  transform: rotate(-31deg);
}

.ot-map-water {
  width: 44%;
  height: 55%;
  right: -14%;
  bottom: -8%;
  border-radius: 48% 52% 35% 65%;
  background: var(--brand-a18);
  transform: rotate(-12deg);
}

.ot-map-note {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid var(--ink-a09);
  border-radius: 12px;
  background: var(--glass);
  box-shadow: 0 8px 20px var(--ink-a12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.ot-map-note b {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-map-note span {
  color: var(--ink-a55);
  font-size: 9.5px;
}

/* -------------------------------------------------------------------------- */
/* Live hotel markup                                                           */
/* -------------------------------------------------------------------------- */

.ot-hotel-page {
  min-height: 100vh;
}

.ot-hotel-page > .ot-hotel-nav {
  width: 100%;
  margin: 0;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
}

.ot-hotel-container {
  padding-top: clamp(18px, 3vw, 30px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.ot-gallery-wrap {
  position: relative;
}

.ot-gallery-main,
.ot-gallery-tile {
  display: block;
  padding: 0;
  border: 0;
}

.ot-gallery-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 11px;
  background: rgba(28, 43, 39, .76);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-hotel-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: 18px;
  align-items: stretch;
  padding-block: 20px;
}

.ot-hotel-summary-grid > .ot-hotel-summary {
  display: block;
  min-width: 0;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid var(--ink-a09);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 34px var(--ink-a07);
}

.ot-hotel-rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-a6);
  font-size: 11.5px;
  line-height: 1.3;
}

.ot-hotel-rating-line b {
  display: inline-flex;
  min-width: 34px;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 5px 7px;
  border-radius: 8px;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 12px;
}

.ot-hotel-summary-grid .ot-hotel-summary h1 {
  margin: 12px 0 7px;
}

.ot-hotel-summary-grid .ot-hotel-summary > p {
  margin: 0;
  color: var(--ink-a65);
  font-size: 13px;
  line-height: 1.5;
}

.ot-hotel-chips,
.ot-review-chips,
.ot-room-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ot-hotel-chips {
  margin-top: 15px;
}

.ot-hotel-chips > span,
.ot-review-chips > span,
.ot-room-filters > span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand-chip);
  color: var(--brand-ink);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

.ot-hotel-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--ink-a09);
}

.ot-hotel-cta > button {
  min-height: 42px;
  padding: 9px 15px;
  border: 0;
  border-radius: 11px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 12.5px;
  font-weight: 850;
}

.ot-hotel-cta > span {
  color: var(--ink-a55);
  font-size: 11px;
  text-align: right;
}

.ot-hotel-cta > span b {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 18px;
}

.ot-hotel-summary-grid > .ot-hotel-map {
  min-height: 0;
  padding: 14px;
}

.ot-mini-map {
  position: relative;
  display: flex;
  min-height: 130px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background:
    linear-gradient(31deg, transparent 46%, var(--ink-a09) 47%, var(--ink-a09) 50%, transparent 51%) 0 0 / 110px 80px,
    radial-gradient(circle at 20% 75%, var(--brand-a18), transparent 28%),
    var(--surface-2);
}

.ot-mini-map > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--surface);
  border-radius: 50% 50% 50% 8px;
  background: var(--accent-fill);
  color: var(--on-fill);
  box-shadow: 0 7px 18px var(--ink-a22);
  font-weight: 900;
  transform: rotate(-8deg);
}

.ot-mini-map > button {
  position: absolute;
  right: 9px;
  bottom: 9px;
  min-height: 31px;
  padding: 6px 9px;
  border: 1px solid var(--ink-a09);
  border-radius: 9px;
  background: var(--glass);
  color: var(--brand-ink);
  font-size: 10.5px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-hotel-map > p {
  margin: 12px 0 4px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.ot-hotel-map > small {
  color: var(--ink-a5);
  font-size: 10px;
  line-height: 1.35;
}

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

.ot-bonus-card {
  border-color: var(--gold-a25);
  background: var(--gold-bg);
}

.ot-info-card > small {
  color: var(--ink-a55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ot-info-card > h3 {
  max-width: 540px;
  margin: 7px 0 14px;
  font-size: 16px;
}

.ot-info-card > button,
.ot-ai-question > div > button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--brand-a28);
  border-radius: 9px;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 10.5px;
  font-weight: 800;
}

.ot-ai-question {
  border-color: var(--brand-a28);
  background: var(--brand-bg);
}

.ot-ai-question > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ot-date-card,
.ot-safety-card {
  margin-top: 16px;
  border: 1px solid var(--ink-a09);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 34px var(--ink-a07);
}

.ot-date-card {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
}

.ot-date-card h2 {
  margin: 0;
  font-size: 17px;
}

.ot-date-card p {
  margin: 5px 0 0;
  color: var(--ink-a6);
  font-size: 11.5px;
}

.ot-date-offers {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ot-date-offers::-webkit-scrollbar {
  display: none;
}

.ot-date-offers > button {
  display: grid;
  min-width: 110px;
  gap: 3px;
  padding: 10px;
  border: 1.5px solid var(--ink-a12);
  border-radius: 11px;
  background: var(--surface-2);
  text-align: left;
}

.ot-date-offers small {
  color: var(--ink-a5);
  font-size: 9.5px;
}

.ot-date-offers b {
  font-size: 12.5px;
}

.ot-date-offers span {
  color: var(--brand-ink);
  font-size: 9.5px;
}

.ot-safety-card {
  padding: 20px;
  border-color: var(--brand-a18);
  background: var(--brand-bg);
}

.ot-safety-card > .ot-section-head {
  margin: 0 0 15px;
}

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

.ot-safety-grid > div {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid var(--brand-a18);
  border-radius: 12px;
  background: var(--surface);
}

.ot-safety-grid b {
  color: var(--brand-ink);
  font-size: 12.5px;
}

.ot-safety-grid span {
  color: var(--ink-a6);
  font-size: 10.5px;
  line-height: 1.4;
}

.ot-hotel-section {
  margin-top: clamp(36px, 5vw, 60px);
  scroll-margin-top: 130px;
}

.ot-hotel-section > .ot-section-head {
  margin-top: 0;
}

.ot-room-filters,
.ot-review-chips {
  margin-bottom: 14px;
}

.ot-room-filters > span,
.ot-review-chips > span {
  border-color: var(--ink-a09);
  background: var(--surface);
  color: var(--ink-a65);
}

.ot-room-list {
  display: grid;
  gap: 14px;
}

.ot-room-list .ot-room-card {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.ot-room-photo {
  position: relative;
  min-height: 270px;
  background-color: var(--ph);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ot-room-photo > span {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink-fill);
  font-size: 9.5px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-room-content {
  min-width: 0;
  padding: 20px;
}

.ot-room-content > h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.ot-room-content > p {
  margin: 5px 0 0;
  color: var(--ink-a6);
  font-size: 11.5px;
}

.ot-room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.ot-room-features > span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-a65);
  font-size: 10px;
  font-weight: 700;
}

.ot-room-content > .ot-room-rates {
  display: grid;
  margin: 16px -20px -20px;
  border-top: 1px solid var(--ink-a09);
}

.ot-room-content .ot-room-rate {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 15px 20px;
}

.ot-room-rate > div {
  display: grid;
  gap: 3px;
}

.ot-room-rate > div:last-child {
  justify-items: end;
  text-align: right;
}

.ot-room-rate > div > b {
  font-size: 12px;
}

.ot-room-rate > div > span,
.ot-room-rate > div > small {
  color: var(--ink-a55);
  font-size: 9.5px;
  line-height: 1.35;
}

.ot-room-rate > div > strong {
  font-size: 16px;
  line-height: 1.2;
}

.ot-room-rate > div:last-child > button {
  min-height: 34px;
  margin-top: 5px;
  padding: 7px 11px;
  border: 0;
  border-radius: 9px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 11px;
  font-weight: 850;
}

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

.ot-review-grid > article {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--ink-a09);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 28px var(--ink-a07);
}

.ot-review-grid > article > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  column-gap: 9px;
  align-items: center;
}

.ot-review-grid > article > div > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-chip);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 850;
}

.ot-review-grid > article > div > b {
  font-size: 12px;
}

.ot-review-grid > article > div > small {
  color: var(--ink-a5);
  font-size: 9.5px;
}

.ot-review-grid > article > div > strong {
  display: inline-flex;
  min-width: 30px;
  min-height: 26px;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-fill);
  color: var(--on-fill);
  font-size: 10.5px;
}

.ot-review-grid > article > p {
  margin: 13px 0 0;
  color: var(--ink-a7);
  font-size: 11.5px;
  line-height: 1.5;
}

.ot-location-section {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.ot-location-section > div:first-child,
.ot-description-section {
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid var(--ink-a09);
  border-radius: 19px;
  background: var(--surface);
}

.ot-location-section h2,
.ot-description-section h2 {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.ot-location-section p,
.ot-description-section > p {
  margin: 9px 0 0;
  color: var(--ink-a65);
  font-size: 12.5px;
  line-height: 1.55;
}

.ot-location-section > div:first-child > button {
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 12px;
  border: 1px solid var(--brand-a28);
  border-radius: 10px;
  background: var(--brand-bg);
  color: var(--brand-ink);
  font-size: 11.5px;
  font-weight: 800;
}

.ot-wide-map {
  position: relative;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid var(--ink-a09);
  border-radius: 19px;
  background:
    linear-gradient(32deg, transparent 47%, var(--ink-a09) 48%, var(--ink-a09) 50%, transparent 51%) 0 0 / 145px 105px,
    radial-gradient(circle at 78% 20%, var(--gold-a25), transparent 22%),
    radial-gradient(circle at 12% 85%, var(--brand-a18), transparent 27%),
    var(--surface-2);
}

.ot-wide-map > span {
  padding: 7px 10px;
  border: 1px solid var(--ink-a09);
  border-radius: 9px;
  background: var(--glass);
  color: var(--ink-a65);
  font-size: 10.5px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-description-section > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.ot-description-section > div > span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--ink-a65);
  font-size: 11px;
}

.ot-description-section > div b {
  color: var(--ink);
  font-size: 11.5px;
}

/* -------------------------------------------------------------------------- */
/* Live one-page checkout markup                                               */
/* -------------------------------------------------------------------------- */

.ot-booking-page {
  padding-top: clamp(18px, 3vw, 30px);
  padding-bottom: clamp(90px, 10vw, 130px);
}

.ot-booking-page > .ot-booking-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
}

.ot-booking-head > button {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--ink-a12);
  border-radius: 10px;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 11.5px;
  font-weight: 800;
}

.ot-booking-head > div {
  min-width: 0;
}

.ot-booking-head > div > h1 {
  margin-top: 0;
}

.ot-booking-head > div > p {
  margin: 7px 0 0;
  color: var(--ink-a6);
  font-size: 12.5px;
  line-height: 1.45;
}

.ot-booking-head > span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid var(--accent-a55);
  border-radius: 10px;
  background: var(--gold-bg);
  color: var(--accent-ink);
  font-size: 10.5px;
  font-weight: 750;
  white-space: nowrap;
}

.ot-booking-main > .ot-booking-summary {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.ot-booking-image {
  width: 100%;
  min-height: 115px;
  border-radius: 14px;
  background-color: var(--ph);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ot-booking-summary > div:last-child {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.ot-booking-summary h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.ot-booking-summary p {
  margin: 0;
  color: var(--ink-a7);
  font-size: 12px;
}

.ot-booking-summary span {
  color: var(--ink-a55);
  font-size: 10.5px;
}

.ot-booking-summary > div:last-child > b {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--brand-chip);
  color: var(--brand-ink);
  font-size: 9.5px;
}

.ot-booking-title {
  margin-bottom: 17px;
}

.ot-booking-title h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.ot-booking-title p {
  margin: 5px 0 0;
  color: var(--ink-a6);
  font-size: 11.5px;
  line-height: 1.45;
}

.ot-guest-fields {
  display: grid;
  gap: 12px;
}

.ot-guest-fields > div {
  display: grid;
  grid-template-columns: auto repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  padding: 13px;
  border-radius: 13px;
  background: var(--surface-2);
}

.ot-guest-fields > div > b {
  min-width: 86px;
  align-self: center;
  font-size: 11.5px;
}

.ot-contact-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ot-guest-fields label,
.ot-contact-fields label,
.ot-wishes-field {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.ot-guest-fields label > span,
.ot-contact-fields label > span,
.ot-wishes-field > span {
  color: var(--ink-a55);
  font-size: 9.5px;
  font-weight: 750;
}

.ot-guest-fields input,
.ot-contact-fields input,
.ot-contact-fields select,
.ot-wishes-field textarea {
  width: 100%;
  min-width: 0;
  border: 1.5px solid var(--ink-a15);
  border-radius: 10px;
  outline: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 12.5px;
}

.ot-guest-fields input,
.ot-contact-fields input,
.ot-contact-fields select {
  height: 42px;
  padding: 9px 10px;
}

.ot-wishes-field {
  margin-top: 11px;
}

.ot-wishes-field textarea {
  min-height: 84px;
  padding: 10px;
  line-height: 1.45;
  resize: vertical;
}

.ot-guest-fields input:focus,
.ot-contact-fields input:focus,
.ot-contact-fields select:focus,
.ot-wishes-field textarea:focus {
  border-color: var(--brand-ink);
  box-shadow: 0 0 0 3px var(--brand-a18);
}

.ot-care-checkout {
  border-color: var(--brand-a28);
  background: var(--brand-bg);
}

.ot-care-checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ot-care-checkout-head > div > small {
  color: var(--brand-ink);
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ot-care-checkout-head h2 {
  margin: 5px 0 4px;
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.ot-care-checkout-head p {
  margin: 0;
  color: var(--ink-a65);
  font-size: 11px;
  line-height: 1.4;
}

.ot-care-checkout-head > span {
  flex: none;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 9.5px;
  font-weight: 800;
  white-space: nowrap;
}

.ot-experiment-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid var(--brand-a18);
  border-radius: 12px;
  background: var(--surface);
}

.ot-experiment-bar > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ot-experiment-bar > div > small {
  color: var(--ink-a5);
  font-size: 9.5px;
  font-weight: 800;
}

.ot-experiment-bar > div > span {
  display: flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--bg);
}

.ot-experiment-bar button {
  min-height: 28px;
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  white-space: nowrap;
}

.ot-ai-state {
  margin-top: 11px;
  padding: 9px 11px;
  border: 1px solid var(--brand-a18);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-a65);
  font-size: 10.5px;
  line-height: 1.4;
}

.ot-ai-active {
  border-color: var(--brand-a35);
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-care-list {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.ot-care-list > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border: 1px solid var(--brand-a18);
  border-radius: 11px;
  background: var(--surface);
}

.ot-care-list > label > span {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 8px;
  align-items: center;
}

.ot-care-list input {
  grid-row: 1 / span 2;
}

.ot-care-list b {
  font-size: 11.5px;
}

.ot-care-list small {
  color: var(--ink-a5);
  font-size: 9px;
}

.ot-care-list > label > strong {
  flex: none;
  font-size: 12.5px;
}

.ot-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.ot-care-grid > article {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 15px;
  border: 1px solid var(--brand-a18);
  border-radius: 14px;
  background: var(--surface);
}

.ot-care-grid > article > em {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ot-care-icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 11px;
  background: var(--brand-chip);
  color: var(--brand-ink);
}

.ot-care-icon svg {
  width: 20px;
  height: 20px;
}

.ot-care-grid h3 {
  margin: 0;
  padding-right: 74px;
  font-size: 13.5px;
  line-height: 1.3;
}

.ot-care-grid > article > small {
  margin-top: 3px;
  color: var(--ink-a5);
  font-size: 9px;
}

.ot-care-grid > article > p {
  margin: 9px 0 0;
  color: var(--ink-a65);
  font-size: 10.5px;
  line-height: 1.45;
}

.ot-care-reason {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  padding: 9px;
  border-radius: 9px;
  background: var(--brand-a05);
}

.ot-care-reason > b {
  color: var(--brand-ink);
  font-size: 9px;
}

.ot-care-reason > span {
  color: var(--ink-a6);
  font-size: 9.5px;
  line-height: 1.4;
}

.ot-care-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
}

.ot-care-price > strong {
  font-size: 14px;
  white-space: nowrap;
}

.ot-care-price > button {
  min-height: 32px;
  padding: 6px 9px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 850;
}

.ot-care-bundle {
  margin-top: 14px;
  padding: 18px;
  border-radius: 16px;
  background: var(--brand-fill);
  color: var(--on-fill);
}

.ot-care-bundle > small {
  font-size: 9.5px;
  font-weight: 800;
  opacity: .72;
}

.ot-care-bundle > h3 {
  margin: 6px 0 13px;
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.ot-care-bundle > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.ot-care-bundle > div > span {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 11px;
  background: rgba(255, 255, 255, .09);
}

.ot-care-bundle > div b {
  font-size: 10.5px;
}

.ot-care-bundle > div small {
  overflow: hidden;
  font-size: 8.5px;
  opacity: .7;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-care-bundle > div strong {
  margin-top: 3px;
  font-size: 11px;
}

.ot-care-bundle > p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 10px;
}

.ot-care-bundle > p > b {
  font-size: 18px;
}

.ot-care-bundle del {
  font-size: 10.5px;
  opacity: .6;
}

.ot-care-bundle em {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  font-size: 9px;
  font-style: normal;
}

.ot-care-bundle > button {
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 9px;
  color: var(--on-fill);
  font-size: 10.5px;
  font-weight: 850;
}

.ot-care-bundle > button:last-child {
  margin-left: 6px;
  background: transparent;
}

.ot-care-rest {
  display: grid;
  gap: 7px;
  margin-top: 9px;
}

.ot-care-rest > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--brand-a18);
  border-radius: 10px;
  background: var(--surface);
  font-size: 10.5px;
}

.ot-care-rest button {
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid var(--brand-a28);
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 9.5px;
  font-weight: 800;
}

.ot-debug-panel {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed var(--ink-a22);
  border-radius: 9px;
  background: var(--ink-a05);
  color: var(--ink-a55);
  font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace;
  font-size: 9px;
  line-height: 1.35;
}

.ot-debug-panel > b {
  color: var(--brand-ink);
}

.ot-legal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-a65);
  font-size: 11px;
  line-height: 1.5;
}

.ot-legal-check > input {
  flex: none;
  margin-top: 1px;
}

.ot-booking-card.ot-payment-methods {
  display: block;
}

.ot-payment-methods > h2 {
  margin: 0 0 13px;
  font-size: 16px;
}

.ot-payment-methods > div {
  display: grid;
  gap: 7px;
}

.ot-payment-methods > div > button {
  display: grid;
  min-height: 56px;
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 9px;
  align-content: center;
  padding: 10px;
  border: 1.5px solid var(--ink-a12);
  border-radius: 11px;
  background: var(--surface);
  text-align: left;
}

.ot-payment-methods > div > button > span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink-a22);
  border-radius: 50%;
}

.ot-payment-methods > div > button i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ot-payment-methods > div > button b {
  font-size: 11.5px;
}

.ot-payment-methods > div > button small {
  color: var(--ink-a5);
  font-size: 9px;
}

.ot-payment-methods > p {
  margin: 11px 0 0;
  color: var(--ink-a55);
  font-size: 9.5px;
  line-height: 1.4;
}

.ot-booking-aside > .ot-price-card {
  margin-top: 14px;
}

.ot-price-card > h2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.ot-price-card > h2 > strong {
  font-family: 'Unbounded', sans-serif;
  font-size: 19px;
  white-space: nowrap;
}

.ot-price-lines {
  display: grid;
}

.ot-price-lines > p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid var(--ink-a08);
  color: var(--ink-a65);
  font-size: 10.5px;
}

.ot-price-lines b {
  color: var(--ink);
  text-align: right;
}

.ot-promo-toggle {
  margin-top: 5px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--brand-ink);
  font-size: 10.5px;
  font-weight: 800;
  text-decoration: underline;
}

.ot-promo-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  margin-top: 8px;
}

.ot-promo-input input {
  min-width: 0;
  height: 38px;
  padding: 8px 9px;
  border: 1px solid var(--ink-a15);
  border-radius: 9px;
  background: var(--surface);
}

.ot-promo-input button {
  min-height: 38px;
  padding: 8px 9px;
  border: 1px solid var(--brand-a28);
  border-radius: 9px;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 9.5px;
  font-weight: 800;
}

.ot-bonus-return {
  margin-top: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  background: var(--brand-bg);
  color: var(--brand-ink);
  font-size: 9.5px;
  line-height: 1.4;
  text-align: center;
}

.ot-price-card > .ot-pay-cta {
  width: 100%;
  margin-top: 12px;
}

.ot-price-card > small:last-child {
  display: block;
  margin-top: 9px;
  color: var(--ink-a45);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.ot-payment-overlay {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--overlay);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.ot-payment-overlay > div {
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid var(--ink-a09);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 24px 70px var(--ink-a22);
}

.ot-payment-overlay p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 9px 0 0;
  font-size: 12px;
}

.ot-payment-overlay p > b {
  width: 18px;
  flex: none;
  text-align: center;
}

.ot-payment-overlay small {
  display: block;
  margin-top: 15px;
  color: var(--ink-a5);
  font-size: 10px;
  line-height: 1.45;
}

.ot-payment-spinner {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 17px;
  border: 4px solid var(--brand-a18);
  border-top-color: var(--brand-ink);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

/* Shared mobile CTA uses flat children in the live template. */

.ot-mobile-cta > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.ot-mobile-cta > div > span,
.ot-mobile-cta > div > small {
  overflow: hidden;
  color: var(--ink-a55);
  font-size: 9.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ot-mobile-cta > div > b {
  font-size: 16px;
  line-height: 1.2;
}

.ot-mobile-cta > button {
  min-height: 42px;
  padding: 9px 15px;
  border: 0;
  border-radius: 11px;
  background: var(--accent-fill);
  color: var(--on-fill);
  font-size: 12px;
  font-weight: 850;
}

/* -------------------------------------------------------------------------- */
/* Compatibility responsive layer: tablet                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .ot-home-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-home-grid > .ot-hero {
    min-height: 470px;
  }

  .ot-home-side {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, .72fr);
    align-items: stretch;
  }

  .ot-home-side > .ot-search-card,
  .ot-home-side > .ot-trust-card {
    margin: 0;
  }

  .ot-home-section .ot-deal-grid,
  .ot-home-section .ot-promo-grid,
  .ot-destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ot-care-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-care-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ot-results-page > .ot-search-strip {
    position: relative;
    top: auto;
    grid-template-columns: minmax(200px, 1.3fr) repeat(2, minmax(130px, 1fr)) auto;
  }

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

  .ot-filter-panel > button {
    width: fit-content;
  }

  .ot-results-page .ot-result-card {
    grid-template-columns: minmax(200px, 30%) minmax(0, 1fr);
  }

  .ot-result-price {
    grid-column: 1 / -1;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--ink-a08);
    border-left: 0;
  }

  .ot-result-price > strong {
    margin: 0;
  }

  .ot-result-price > b,
  .ot-result-price > em {
    margin: 0;
  }

  .ot-result-price > button {
    width: auto;
    min-width: 110px;
    margin: 0 0 0 4px;
  }

  .ot-hotel-summary-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 30%);
  }

  .ot-gallery-grid > .ot-gallery-tile:nth-of-type(3) {
    display: block;
  }

  .ot-gallery-grid > .ot-gallery-tile:nth-of-type(n + 4) {
    display: none;
  }

  .ot-date-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-date-offers {
    padding-bottom: 3px;
  }

  .ot-room-list .ot-room-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

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

  .ot-booking-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-booking-aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .ot-booking-aside > .ot-price-card {
    position: static;
    margin-top: 0;
  }

  .ot-payment-methods > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ot-payment-methods > div > button {
    min-height: 70px;
  }
}

/* -------------------------------------------------------------------------- */
/* Compatibility responsive layer: mobile                                     */
/* -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .ot-home-grid,
  .ot-preset-row,
  .ot-home-section,
  .ot-results-page,
  .ot-hotel-container,
  .ot-booking-page {
    padding-inline: 14px;
  }

  .atlas-header {
    min-height: 58px;
    padding-inline: 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .atlas-header__brand,
  .atlas-brand {
    font-size: 13.5px;
  }

  .atlas-nav {
    gap: 1px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .atlas-nav::-webkit-scrollbar {
    display: none;
  }

  .atlas-nav a,
  .atlas-nav button {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 11.5px;
  }

  .atlas-actions > .atlas-action {
    display: none;
  }

  .atlas-actions > a,
  .atlas-actions > button {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    padding: 0;
  }

  .ot-page {
    padding-top: 14px;
  }

  .ot-home-grid > .ot-hero {
    min-height: 410px;
  }

  .ot-hero-copy {
    padding: 24px 20px 30px;
  }

  .ot-hero-copy h1 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .ot-home-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-home-side > .ot-search-card,
  .ot-home-side > .ot-trust-card {
    border-radius: 18px;
  }

  .ot-preset-row {
    width: 100%;
    padding-bottom: 3px;
  }

  .ot-home-section .ot-deal-grid {
    display: flex;
    grid-template-columns: none;
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding: 0 14px 8px;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ot-home-section .ot-deal-grid::-webkit-scrollbar {
    display: none;
  }

  .ot-home-section .ot-deal-card {
    width: min(78vw, 290px);
    flex: none;
    scroll-snap-align: start;
  }

  .ot-home-section .ot-promo-grid,
  .ot-destination-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  button.ot-promo-card {
    min-height: 155px;
  }

  .ot-destination-grid {
    display: flex;
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding: 0 14px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ot-destination-grid::-webkit-scrollbar {
    display: none;
  }

  .ot-destination-card {
    width: min(76vw, 280px);
    flex: none;
    scroll-snap-align: start;
  }

  .ot-care-banner {
    padding: 22px;
    border-radius: 20px;
  }

  .ot-care-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-results-page {
    padding-top: 13px;
  }

  .ot-results-page > .ot-search-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
    border-radius: 15px;
  }

  .ot-search-strip > button:first-child,
  .ot-search-strip-submit {
    grid-column: 1 / -1;
  }

  .ot-search-strip-submit {
    width: 100%;
  }

  .ot-results-page > .ot-filter-chips {
    width: calc(100% + 28px);
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .ot-filter-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-results-head {
    align-items: flex-start;
  }

  .ot-results-head h1 {
    font-size: 21px;
  }

  .ot-results-page .ot-result-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-result-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .ot-result-main {
    padding: 15px;
  }

  .ot-result-price {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 13px 15px 15px;
    text-align: left;
  }

  .ot-result-price > button {
    min-width: 112px;
    margin-left: auto;
  }

  .ot-hotel-page > .ot-hotel-nav {
    top: 58px;
    padding-inline: 14px;
  }

  .ot-hotel-container {
    padding-top: 14px;
  }

  .ot-gallery-count {
    right: 9px;
    bottom: 9px;
  }

  .ot-gallery-grid > .ot-gallery-tile:nth-of-type(3) {
    display: block;
  }

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

  .ot-hotel-summary-grid > .ot-hotel-summary {
    padding: 18px;
  }

  .ot-hotel-summary-grid .ot-hotel-summary h1 {
    font-size: 24px;
  }

  .ot-hotel-container > .ot-info-grid,
  .ot-safety-grid,
  .ot-review-grid,
  .ot-location-section,
  .ot-description-section > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-info-card {
    display: block;
  }

  .ot-date-card {
    padding: 15px;
  }

  .ot-date-offers {
    display: flex;
    width: calc(100% + 15px);
  }

  .ot-date-offers > button {
    width: 122px;
    flex: none;
  }

  .ot-safety-card {
    padding: 17px;
  }

  .ot-room-list .ot-room-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-room-photo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .ot-room-content {
    padding: 16px;
  }

  .ot-room-content > .ot-room-rates {
    margin: 15px -16px -16px;
  }

  .ot-room-content .ot-room-rate {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 14px 16px;
  }

  .ot-room-rate > div:last-child {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .ot-room-rate > div:last-child > button {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .ot-location-section {
    gap: 10px;
  }

  .ot-wide-map {
    min-height: 210px;
  }

  .ot-description-section > div > span {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .ot-booking-page > .ot-booking-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }

  .ot-booking-head > div > h1 {
    font-size: 23px;
  }

  .ot-booking-head > span {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .ot-booking-main > .ot-booking-summary {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .ot-booking-image {
    min-height: 84px;
  }

  .ot-guest-fields > div,
  .ot-contact-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-guest-fields > div > b {
    min-width: 0;
  }

  .ot-care-checkout-head {
    display: grid;
  }

  .ot-care-checkout-head > span {
    width: fit-content;
  }

  .ot-experiment-bar,
  .ot-experiment-bar > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .ot-experiment-bar > div > span {
    max-width: 100%;
    overflow-x: auto;
  }

  .ot-care-grid,
  .ot-care-bundle > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-care-grid h3 {
    padding-right: 86px;
  }

  .ot-care-bundle > button {
    width: 100%;
  }

  .ot-care-bundle > button:last-child {
    margin: 7px 0 0;
  }

  .ot-care-rest > span {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ot-care-rest button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ot-booking-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    order: 0;
  }

  .ot-payment-methods > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-payment-methods > div > button {
    min-height: 56px;
  }

  .ot-mobile-cta {
    display: grid;
  }
}

@media (max-width: 430px) {
  .atlas-brand > span {
    display: none;
  }

  .ot-result-price > small,
  .ot-result-price > span,
  .ot-result-price > b,
  .ot-result-price > em {
    width: calc(50% - 5px);
  }

  .ot-result-price > button {
    width: 100%;
    margin-left: 0;
  }

  .ot-booking-main > .ot-booking-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .ot-booking-image {
    min-height: 0;
    aspect-ratio: 16 / 8;
  }

  .ot-care-grid h3 {
    padding-right: 0;
  }

  .ot-care-grid > article > em {
    position: static;
    width: fit-content;
    margin: -3px 0 9px;
    order: -1;
  }
}

.ot-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform .28s ease;
}

.ot-gallery-main:hover .ot-gallery-image,
.ot-gallery-tile:hover .ot-gallery-image {
  transform: scale(1.018);
}

@media (min-width: 981px) {
  .ot-booking-aside {
    position: sticky;
    top: 84px;
  }

  .ot-booking-aside > .ot-price-card {
    position: static;
  }
}

.ot-result-photo-hit {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  border: 0;
  background: transparent;
}

.ot-result-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(20,32,29,.72);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ot-booking-page input[aria-invalid="true"] {
  border-color: var(--danger-ink) !important;
  box-shadow: 0 0 0 3px var(--danger-a07) !important;
}

.ot-legal-check:has(input[aria-invalid="true"]) {
  border-color: var(--danger-ink);
  box-shadow: 0 0 0 3px var(--danger-a07);
}

.atlas-success-page,
.atlas-success-card,
.rcpt,
.rcpt-paper {
  box-sizing: border-box;
}

#dc-root,
#dc-root > .sc-host {
  width: 100%;
  min-width: 0;
}

@media (max-width: 430px) {
  .atlas-success-card {
    padding: 20px !important;
    border-radius: 20px !important;
  }

  .rcpt-paper {
    padding: 20px 14px 144px;
    font-size: 11.5px;
  }

  .rcpt .rr {
    gap: 4px;
  }
}

.ot-mobile-map-toggle {
  display: none;
  width: 100%;
  min-height: 42px;
  margin: -6px 0 16px;
  border: 1px solid var(--brand-a35);
  border-radius: 12px;
  background: var(--brand-bg);
  color: var(--brand-ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .ot-mobile-map-toggle { display: block; }
  .ot-results-page .ot-map-panel { position: relative; top: auto; min-height: 420px; }
}

/* ==========================================================
   INTERACTIVE SURFACES · modals, drawers, maps, gallery
   ========================================================== */
.ot-surface-layer {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .18s ease;
}

.ot-surface-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(12, 22, 20, .62);
  cursor: default;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.ot-surface-shell {
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid var(--ink-a12);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(8, 25, 21, .34);
  animation: surfaceIn .24s cubic-bezier(.2, .85, .35, 1);
}

@keyframes surfaceIn {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.ot-surface-modal {
  width: min(560px, calc(100vw - 32px));
  border-radius: 26px;
  padding: 34px;
}

.ot-surface-drawer {
  width: min(500px, 100vw);
  height: 100vh;
  max-height: 100vh;
  margin-left: auto;
  margin-right: -20px;
  border-radius: 26px 0 0 26px;
  padding: 34px;
  animation-name: drawerIn;
}

@keyframes drawerIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: none; }
}

.ot-surface-full {
  width: min(1180px, calc(100vw - 32px));
  height: min(820px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  border-radius: 26px;
  overflow: hidden;
}

.ot-surface-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 12;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink-a12);
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.ot-surface-close > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ot-surface-shell h2 {
  margin: 0 48px 8px 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.2;
}

.ot-surface-shell h3 { margin: 20px 0 10px; }
.ot-surface-shell p { color: var(--ink-a65); line-height: 1.55; }

.ot-surface-primary,
.ot-surface-secondary,
.ot-sber-id-button {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border-radius: 13px;
  font-weight: 800;
}

.ot-surface-primary {
  border: 0;
  background: var(--accent-fill);
  color: var(--on-fill);
}

.ot-surface-secondary {
  border: 1px solid var(--ink-a14);
  background: var(--surface-2);
}

.ot-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 13px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-a65);
}

.ot-field input,
.ot-field select,
.ot-field textarea,
.ot-trip-surface input,
.ot-trip-surface select,
.ot-ai-compose textarea,
.ot-chat-compose textarea,
.ot-share-surface input,
.ot-full-map-toolbar input {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--ink-a16);
  border-radius: 12px;
  background: var(--surface);
  padding: 11px 13px;
  font-size: 14px;
  font-weight: 600;
}

.ot-field textarea,
.ot-ai-compose textarea,
.ot-chat-compose textarea { resize: vertical; }
.ot-field-note, .ot-legal-note { display: block; margin-top: 8px; color: var(--ink-a5); line-height: 1.45; }

/* login/profile */
.ot-login-art {
  min-height: 150px;
  margin: -18px -18px 26px;
  padding: 25px;
  border-radius: 21px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(circle at 75% 15%, rgba(255,255,255,.34) 0 9%, transparent 10%),
    linear-gradient(135deg, #0f5d52, #238c76 58%, #e8613c);
  overflow: hidden;
}

.ot-login-art > span { align-self: flex-end; font-size: 40px; margin-bottom: auto; }
.ot-login-art > b { font-family: 'Unbounded', sans-serif; font-size: 17px; }
.ot-login-art > small { margin-top: 7px; max-width: 360px; color: rgba(255,255,255,.8); line-height: 1.4; }
.ot-or { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; margin: 16px 0 0; color: var(--ink-a45); font-size: 11px; }
.ot-or > span { height: 1px; background: var(--ink-a12); }
.ot-sber-id-button { display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--ink-a14); background: var(--surface); }
.ot-sber-id-button > span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,#18a85b,#36a8ea); color:#fff; }
.ot-profile-surface { text-align: center; }
.ot-profile-avatar { width: 86px; height: 86px; margin: 22px auto 12px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-fill); color: var(--on-fill); font-family: 'Unbounded', sans-serif; font-size: 25px; }
.ot-profile-surface h3 { margin: 8px 0 4px; font-size: 20px; }
.ot-profile-links { margin: 24px 0; border: 1px solid var(--ink-a1); border-radius: 16px; overflow: hidden; }
.ot-profile-links > button { width: 100%; min-height: 48px; padding: 0 15px; border: 0; border-bottom: 1px solid var(--ink-a08); display: flex; justify-content: space-between; background: var(--surface); font-weight: 700; }
.ot-profile-links > button:last-child { border-bottom: 0; }

/* bonus */
.ot-kicker-dark, .ot-ai-badge, .ot-secure { display: inline-flex; width: fit-content; padding: 5px 9px; border-radius: 999px; background: var(--brand-bg); color: var(--brand-ink); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.ot-bonus-balance { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.ot-bonus-balance > span { padding: 16px; border-radius: 16px; background: var(--brand-fill); color: var(--on-fill); }
.ot-bonus-balance small, .ot-bonus-balance strong { display: block; }
.ot-bonus-balance strong { margin-top: 6px; font-family: 'Unbounded', sans-serif; font-size: 21px; }
.ot-bonus-rule { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--ink-a09); }
.ot-bonus-rule > b { color: var(--brand-ink); font-size: 18px; }
.ot-bonus-rule > span { color: var(--ink-a65); font-size: 13px; }
.ot-promo-ticket { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 16px; border: 1px dashed var(--accent-a55); border-radius: 16px; background: var(--gold-bg); }
.ot-promo-ticket small, .ot-promo-ticket b, .ot-promo-ticket span { display: block; }
.ot-promo-ticket b { margin: 3px 0; font-family: 'Unbounded', sans-serif; color: var(--accent-ink); }
.ot-promo-ticket button { border: 0; border-radius: 11px; padding: 10px 12px; background: var(--accent-fill); color: #fff; font-weight: 800; }

/* support + AI */
.ot-online { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-ink); font-weight: 800; }
.ot-online i { width: 9px; height: 9px; border-radius: 50%; background: #2bc56d; box-shadow: 0 0 0 4px rgba(43,197,109,.15); }
.ot-chat-history { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.ot-chat-history > span { max-width: 88%; padding: 12px 14px; border-radius: 16px; line-height: 1.45; font-size: 13px; }
.ot-chat-history > span b { display: block; margin-bottom: 4px; }
.ot-chat-user { align-self: flex-end; background: var(--brand-fill); color: var(--on-fill); border-bottom-right-radius: 5px !important; }
.ot-chat-agent { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--ink-a09); border-bottom-left-radius: 5px !important; }
.ot-chat-compose, .ot-ai-compose { position: relative; }
.ot-chat-compose textarea, .ot-ai-compose textarea { min-height: 88px; padding-right: 76px; }
.ot-chat-compose button, .ot-ai-compose button { position: absolute; right: 8px; bottom: 8px; border: 0; border-radius: 10px; padding: 9px 11px; background: var(--accent-fill); color: #fff; font-weight: 800; }
.ot-support-contacts { display: flex; gap: 8px 16px; flex-wrap: wrap; margin-top: 16px; font-size: 13px; }
.ot-ai-context { margin: 18px 0; padding: 14px; border-radius: 14px; background: var(--surface-2); }
.ot-ai-context b, .ot-ai-context span { display: block; }
.ot-ai-context span { margin-top: 5px; color: var(--ink-a65); }
.ot-ai-suggestions { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.ot-ai-suggestions button, .ot-surface-chips button { min-height: 36px; padding: 7px 11px; border: 1px solid var(--ink-a14); border-radius: 999px; background: var(--surface); font-size: 12px; font-weight: 750; }
.ot-ai-answer { margin: 14px 0; padding: 14px; border: 1px solid var(--brand-a2); border-radius: 14px; background: var(--brand-bg); }
.ot-ai-answer p { margin: 5px 0 0; color: var(--ink); }

/* filters */
.ot-filter-surface { min-height: 100%; padding-bottom: 82px; }
.ot-filter-surface > section { padding: 15px 0 18px; border-bottom: 1px solid var(--ink-a09); }
.ot-filter-surface h3 { margin: 0 0 11px; font-size: 15px; }
.ot-filter-price { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink-a65); font-size: 13px; }
.ot-filter-surface input[type=range] { width: 100%; }
.ot-surface-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.ot-surface-chips button[aria-pressed="true"] { border-color: var(--brand-ink); background: var(--brand-fill); color: var(--on-fill); }
.ot-surface-chips button:disabled { opacity: .48; cursor: default; }
.ot-filter-footer { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1.5fr; gap: 8px; padding: 14px 24px; border-top: 1px solid var(--ink-a1); background: var(--surface); }
.ot-filter-footer button { min-height: 46px; border: 1px solid var(--ink-a14); border-radius: 12px; background: var(--surface); font-weight: 800; }
.ot-filter-footer button:last-child { border-color: var(--accent-fill); background: var(--accent-fill); color: #fff; }

/* map */
.ot-map-search-card { position: absolute; z-index: 7; top: 58px; left: 12px; right: 12px; padding: 12px; border: 1px solid var(--ink-a12); border-radius: 16px; background: var(--surface); box-shadow: 0 10px 30px rgba(20,34,29,.16); }
.ot-map-search-card input { width: 100%; min-height: 42px; border: 1px solid var(--ink-a16); border-radius: 10px; padding: 9px 11px; background: var(--surface); }
.ot-map-search-card p { margin: 8px 0 0; font-size: 11px; }
.ot-map-preview { position: absolute; z-index: 9; left: 12px; right: 12px; bottom: 56px; display: grid; grid-template-columns: 92px 1fr; gap: 11px; padding: 10px; border: 1px solid var(--ink-a12); border-radius: 16px; background: var(--surface); box-shadow: 0 14px 38px rgba(20,34,29,.24); }
.ot-map-preview > button:first-child { position: absolute; top: 7px; right: 7px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: var(--surface-2); font-size: 18px; }
.ot-map-preview > span { min-height: 78px; border-radius: 11px; background-position: center; background-size: cover; }
.ot-map-preview > div { min-width: 0; padding-right: 23px; }
.ot-map-preview b, .ot-map-preview small { display: block; }
.ot-map-preview b { padding-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ot-map-preview small { margin: 4px 0 8px; color: var(--ink-a6); }
.ot-map-preview > div > button { border: 0; border-radius: 8px; padding: 7px 9px; background: var(--accent-fill); color: #fff; font-size: 11px; font-weight: 800; }
.ot-map-status { position: absolute; z-index: 10; left: 50%; bottom: 14px; transform: translateX(-50%); padding: 8px 12px; border-radius: 999px; background: var(--ink-fill); color: var(--on-fill); font-size: 11px; white-space: nowrap; }
.ot-full-map-surface { height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr); }
.ot-full-map-toolbar { position: relative; z-index: 2; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding: 18px 70px 16px 22px; border-bottom: 1px solid var(--ink-a1); background: var(--surface); }
.ot-full-map-toolbar h2 { margin: 0; font-size: 19px; }
.ot-full-map-toolbar p { margin: 3px 0 0; font-size: 12px; }
.ot-full-map-toolbar input { flex: 1 1 260px; min-height: 42px; }
.ot-full-map-toolbar > button { min-height: 42px; border: 0; border-radius: 11px; padding: 0 14px; background: var(--brand-fill); color: #fff; font-weight: 800; }
.ot-full-map {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(22deg, transparent 0 33%, rgba(255,255,255,.72) 33% 35%, transparent 35% 63%, rgba(255,255,255,.62) 63% 65%, transparent 65%),
    linear-gradient(148deg, #dcebc1, #edf0cf 54%, #c5dfad);
}
.ot-full-map::before, .ot-full-map::after { content: ''; position: absolute; border: 3px solid rgba(255,255,255,.86); border-radius: 50%; }
.ot-full-map::before { width: 72%; height: 60%; left: -15%; top: 18%; transform: rotate(11deg); }
.ot-full-map::after { width: 64%; height: 48%; right: -12%; bottom: -10%; transform: rotate(-17deg); }
.ot-full-map .ot-map-pin { z-index: 5; }
.ot-map-zoom { position: absolute; z-index: 8; right: 16px; bottom: 16px; display: grid; border: 1px solid var(--ink-a12); border-radius: 13px; overflow: hidden; background: var(--surface); box-shadow: 0 8px 20px rgba(20,34,29,.16); }
.ot-map-zoom button, .ot-map-zoom b { width: 42px; height: 38px; display: grid; place-items: center; border: 0; background: var(--surface); }
.ot-map-zoom b { height: 24px; color: var(--ink-a5); font-size: 10px; }
.ot-hotel-main-pin { position: absolute; z-index: 6; left: 50%; top: 48%; transform: translate(-50%,-50%); display: flex; align-items: center; gap: 7px; border: 0; background: transparent; }
.ot-hotel-main-pin i { width: 26px; height: 34px; border-radius: 50% 50% 50% 7px; transform: rotate(-45deg); background: var(--ink-fill); box-shadow: 0 5px 14px rgba(0,0,0,.25); }
.ot-hotel-main-pin b { padding: 6px 9px; border-radius: 8px; background: var(--surface); box-shadow: 0 5px 14px rgba(0,0,0,.18); white-space: nowrap; }
.ot-place-pin { position: absolute; z-index: 4; width: 32px; height: 32px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; background: #e79b56; }
.ot-place-a { left: 28%; top: 28%; }.ot-place-b { right: 28%; top: 22%; }.ot-place-c { right: 20%; bottom: 25%; }

/* gallery */
.ot-gallery-surface { height: 100%; overflow: auto; padding: 18px; }
.ot-gallery-surface > header { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 0 58px 15px 4px; }
.ot-gallery-surface > header h2 { margin: 0; font-size: 17px; }
.ot-gallery-surface > header p { margin: 3px 0 0; font-size: 12px; }
.ot-gallery-surface > header > button { border: 0; border-radius: 11px; padding: 11px 16px; background: var(--accent-fill); color: #fff; font-weight: 800; }
.ot-gallery-focus { display: grid; grid-template-columns: 44px minmax(0,1fr) 44px; gap: 10px; align-items: center; margin-bottom: 10px; }
.ot-gallery-focus-img { width: 100%; height: min(50vh, 460px); border-radius: 18px; background-position: center; background-size: cover; }
.ot-gallery-focus > button { width: 44px; height: 44px; border: 1px solid var(--ink-a12); border-radius: 50%; background: var(--surface-2); }
.ot-gallery-wall { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 5px; }
.ot-gallery-wall button { min-height: 180px; padding: 0; border: 3px solid transparent; border-radius: 14px; overflow: hidden; background: var(--surface-2); }
.ot-gallery-wall button[aria-pressed="true"] { border-color: var(--brand-ink); }
.ot-gallery-thumb-img { display: block; width: 100%; height: 180px; background-position: center; background-size: cover; }

/* trip/payment/share/info/partner */
.ot-share-surface > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; margin-top: 18px; }
.ot-share-surface > div > button { border: 0; border-radius: 11px; padding: 0 14px; background: var(--brand-fill); color: #fff; font-weight: 800; }
.ot-inline-success { display: block; margin-top: 12px; color: var(--brand-ink); font-weight: 800; }
.ot-nearby-card, .ot-trip-hint, .ot-pay-later-card { margin-top: 16px; padding: 14px; border-radius: 14px; background: var(--surface-2); }
.ot-nearby-card b, .ot-nearby-card span { display: block; }.ot-nearby-card span { margin-top: 4px; color: var(--ink-a6); font-size: 12px; }
.ot-calendar-mock { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; margin-top: 20px; }
.ot-calendar-mock > div { padding: 14px; border: 1px solid var(--ink-a12); border-radius: 14px; }
.ot-calendar-mock b { display: block; margin-bottom: 10px; font-size: 12px; }
.ot-calendar-mock input { width: 100%; min-height: 42px; border: 0; background: transparent; font-weight: 800; }
.ot-field-pair, .ot-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 10px; }
.ot-card-preview { min-height: 156px; margin: 18px 0; padding: 20px; border-radius: 20px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: radial-gradient(circle at 78% 22%,rgba(255,255,255,.24),transparent 25%),linear-gradient(135deg,#0e5c51,#143c36); box-shadow: 0 14px 30px rgba(15,93,82,.25); }
.ot-card-preview > b { font-family: ui-monospace, Menlo, monospace; font-size: clamp(17px,4vw,23px); letter-spacing: .08em; }
.ot-sberpay-card { display: flex; align-items: center; gap: 12px; margin: 22px 0; padding: 17px; border: 1px solid var(--brand-a2); border-radius: 16px; background: var(--brand-bg); }
.ot-sberpay-card > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,#18a85b,#36a8ea); color:#fff; font-size:20px; font-weight:900; }
.ot-sberpay-card > div { flex: 1; }.ot-sberpay-card b,.ot-sberpay-card small { display:block; }.ot-sberpay-card i { color:var(--brand-ink);font-size:12px;font-weight:800;font-style:normal; }
.ot-payment-total { display: flex; justify-content: space-between; align-items: baseline; margin: 20px 0 0; padding-top: 15px; border-top: 1px solid var(--ink-a12); }
.ot-payment-total strong { font-family: 'Unbounded',sans-serif; font-size: 21px; }
.ot-info-steps { display: grid; gap: 10px; margin: 22px 0; }
.ot-info-steps > span { display: grid; grid-template-columns: 34px 1fr; gap: 2px 10px; padding: 13px; border-radius: 14px; background: var(--surface-2); }
.ot-info-steps > span > b { grid-row: 1 / 3; width: 32px; height: 32px; display:grid;place-items:center;border-radius:50%;background:var(--brand-fill);color:#fff; }
.ot-info-steps small { color: var(--ink-a55); line-height:1.4; }
.ot-about-metrics { display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:22px 0; }
.ot-about-metrics span { padding:13px 8px;border-radius:14px;background:var(--surface-2);text-align:center;font-size:11px; }.ot-about-metrics b{display:block;font-family:'Unbounded',sans-serif;font-size:20px;color:var(--brand-ink);}

/* pages: deals, favorites, bookings */
.ot-library-page { width: 100%; max-width: 1180px; margin: 0 auto; padding: 28px clamp(14px,3.5vw,28px) 60px; }
.ot-library-hero { min-height: 250px; padding: clamp(24px,5vw,52px); border-radius: 26px; display:flex;flex-direction:column;justify-content:center;color:#fff;background:linear-gradient(120deg,rgba(15,93,82,.96),rgba(15,93,82,.5)),url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover; }
.ot-library-hero small { font-weight:900;text-transform:uppercase;letter-spacing:.08em; }.ot-library-hero h1,.ot-page-title h1{margin:8px 0;font-family:'Unbounded',sans-serif;font-size:clamp(26px,5vw,44px);}.ot-library-hero p{max-width:600px;margin:0 0 18px;color:rgba(255,255,255,.82);}.ot-library-hero button{width:fit-content;border:0;border-radius:12px;padding:11px 17px;background:var(--accent-fill);color:#fff;font-weight:800;}
.ot-library-head { display:flex;justify-content:space-between;align-items:flex-end;gap:14px;margin:30px 0 16px; }.ot-library-head h1,.ot-library-head h2{margin:0;font-family:'Unbounded',sans-serif;}.ot-library-head p{margin:5px 0 0;color:var(--ink-a55);}.ot-library-head>button{border:1px solid var(--ink-a14);border-radius:11px;padding:9px 13px;background:var(--surface);font-weight:800;}
.ot-page-title{align-items:center;margin-top:8px;margin-bottom:24px;}.ot-library-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}.ot-library-card,.ot-favorite-card,.ot-booking-list-card{position:relative;border:1px solid var(--ink-a09);border-radius:18px;background:var(--surface);overflow:hidden;}.ot-library-photo{width:100%;height:190px;border:0;background-position:center;background-size:cover;text-align:left;}.ot-library-photo>span{display:inline-block;margin:12px;padding:6px 9px;border-radius:999px;background:var(--accent-fill);color:#fff;font-weight:900;}.ot-library-card>div{padding:14px;}.ot-library-card small{color:var(--brand-ink);font-weight:800;}.ot-library-card h3{margin:7px 0 4px;}.ot-library-card p{margin:0 0 8px;color:var(--ink-a55);}.ot-library-card del{display:block;color:var(--ink-a45);font-size:12px;}.ot-library-card strong{display:block;margin:3px 0 11px;font-size:18px;}.ot-library-card>div>button{width:100%;border:0;border-radius:10px;padding:10px;background:var(--accent-fill);color:#fff;font-weight:800;}
.ot-favorites-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}.ot-favorite-photo{width:100%;height:210px;border:0;background-position:center;background-size:cover;}.ot-favorite-remove{position:absolute;right:12px;top:12px;width:38px;height:38px;border:0;border-radius:50%;background:rgba(20,32,29,.75);color:#fff;font-size:20px;}.ot-favorite-card>div{padding:16px;}.ot-favorite-card h2{margin:7px 0;font-size:18px;}.ot-favorite-card p{margin:0 0 9px;font-size:13px;}.ot-favorite-card>div>strong{display:block;margin-bottom:12px;}.ot-favorite-card>div>button{border:0;border-radius:10px;padding:10px 12px;background:var(--accent-fill);color:#fff;font-weight:800;}.ot-library-empty{max-width:520px;margin:70px auto;text-align:center;}.ot-library-empty>span{font-size:70px;color:var(--brand-ink);}.ot-library-empty button{border:0;border-radius:11px;padding:11px 17px;background:var(--accent-fill);color:#fff;font-weight:800;}
.ot-booking-list{display:grid;gap:14px;}.ot-booking-list-card{display:grid;grid-template-columns:280px 1fr;}.ot-booking-list-photo{min-height:260px;background-position:center;background-size:cover;}.ot-booking-list-card>div{position:relative;padding:22px;}.ot-booking-status{float:right;padding:6px 9px;border-radius:999px;background:var(--surface-2);font-size:11px;font-weight:900;}.ot-booking-status[data-active="true"]{background:var(--brand-bg);color:var(--brand-ink);}.ot-booking-list-card h2{margin:8px 0 5px;}.ot-booking-list-card p{margin:0 0 14px;}.ot-booking-list-card>div>div{padding:11px;border-radius:12px;background:var(--surface-2);}.ot-booking-list-card>div>div b,.ot-booking-list-card>div>div span{display:block;}.ot-booking-list-card>div>strong{display:block;margin:15px 0;font-size:20px;}.ot-booking-list-actions{display:flex;gap:8px;flex-wrap:wrap;}.ot-booking-list-actions button{border:1px solid var(--ink-a14);border-radius:10px;padding:9px 12px;background:var(--surface);font-weight:800;}.ot-booking-list-actions button:first-child{border-color:var(--accent-fill);background:var(--accent-fill);color:#fff;}

.ot-room-filters button,.ot-review-chips button{border:1px solid var(--ink-a12);border-radius:999px;padding:7px 11px;background:var(--surface);color:var(--ink-a7);font-size:12px;font-weight:700;}.ot-room-filters button[aria-pressed="true"],.ot-review-chips button[aria-pressed="true"]{border-color:var(--brand-ink);background:var(--brand-fill);color:var(--on-fill);}
.ot-room-empty { display: grid; gap: 4px; margin: 14px 0; padding: 18px; border: 1px dashed var(--ink-a18); border-radius: 16px; background: var(--surface-2); }
.ot-room-empty b { font-size: 14px; }.ot-room-empty span { color: var(--ink-a55); font-size: 12px; }

@media (max-width: 860px) {
  .ot-surface-layer { padding: 0; align-items: flex-end; }
  .ot-surface-modal, .ot-surface-drawer { width:100%;max-width:none;max-height:92vh;height:auto;margin:0;border-radius:24px 24px 0 0;padding:25px 18px calc(22px + env(safe-area-inset-bottom));animation-name:surfaceIn; }
  .ot-surface-drawer { overflow:auto; }
  .ot-surface-full { width:100%;height:100vh;max-height:100vh;border-radius:0; }
  .ot-library-grid,.ot-favorites-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.ot-booking-list-card{grid-template-columns:200px 1fr;}.ot-booking-list-photo{min-height:230px;}
  .ot-gallery-wall{grid-template-columns:repeat(2,minmax(0,1fr));}.ot-gallery-wall button{min-height:140px;}
}

@media (max-width: 560px) {
  .ot-bonus-balance,.ot-field-pair,.ot-form-grid,.ot-calendar-mock,.ot-about-metrics{grid-template-columns:1fr;}
  .ot-library-grid,.ot-favorites-grid{grid-template-columns:1fr;}.ot-booking-list-card{grid-template-columns:1fr;}.ot-booking-list-photo{min-height:190px;}.ot-page-title{align-items:flex-start;}.ot-page-title h1{font-size:26px;}.ot-gallery-focus{grid-template-columns:34px minmax(0,1fr) 34px;}.ot-gallery-focus>button{width:34px;height:34px;}.ot-gallery-focus-img{height:40vh;}.ot-gallery-wall{grid-template-columns:1fr;}.ot-full-map-toolbar .ot-surface-chips{display:none;}.ot-map-preview{grid-template-columns:72px 1fr;}.ot-surface-shell h2{font-size:20px;}.ot-login-art{min-height:130px;}
}
