:root {
  --bg: #eef1f4;
  --surface: #ffffff;
  --surface-alt: #eef1f4;
  --text: #0f1b2a;
  --text-muted: #4f5f74;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #1d63c9;
  --accent-2: #164a99;
  --secondary: #0a1420;
  --on-accent: #ffffff;
  --radius: 12px;
  --radius-btn: 10px;
  --shadow: 0 10px 30px rgba(15, 27, 42, 0.08);
  --font-heading: Optima, Candara, "Segoe UI", sans-serif;
  --font-body: "Franklin Gothic Book", Arial, Helvetica, sans-serif;
  --max: 1360px;
  --section-pad: 124px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(15, 27, 42, 0.012) 3px,
      rgba(15, 27, 42, 0.012) 4px
    ),
    var(--bg);
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-2);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 0 0 0.55em;
  color: var(--text);
}

h1 {
  font-size: clamp(44px, 7.5vw, 80px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

p {
  margin: 0 0 1em;
}

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

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

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.section--tight {
  padding: 72px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--accent-2);
  color: var(--on-accent);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.guest-photo-btn:focus-visible,
.consent__btn:focus-visible,
.lightbox-close:focus-visible,
.carousel-btn:focus-visible,
.snap-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn--on-dark {
  background: var(--on-accent);
  color: var(--secondary);
}

.btn--on-dark:hover {
  background: var(--bg);
  color: var(--secondary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(238, 241, 244, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

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

.brand img {
  width: 36px;
  height: 54px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 500;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
}

.nav a:hover {
  color: var(--accent);
}

.nav-utility a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-utility a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--on-accent);
  overflow: hidden;
  border-top: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(29, 99, 201, 0.35), transparent 55%),
    linear-gradient(135deg, #0a1420 0%, #12263d 45%, #1d63c9 160%);
}

.hero__media img,
.hero__logo-bg {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 420px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  opacity: 0.18;
  filter: brightness(1.4);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 20, 32, 0.35) 0%, rgba(10, 20, 32, 0.55) 55%, rgba(10, 20, 32, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 920px);
  margin: 0 auto;
  padding: 96px 0 120px;
  text-align: center;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  color: var(--on-accent);
  margin-bottom: 18px;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.86);
  max-width: 42ch;
  margin: 0 auto 36px;
}

.search-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: left;
}

.search-bar label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
}

.search-bar input,
.search-bar select {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  pointer-events: none;
}

.search-bar .btn {
  align-self: end;
  min-width: 148px;
  pointer-events: auto;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-intro p {
  color: var(--text-muted);
  margin: 0;
}

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

.hotel-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.hotel-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.hotel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 20, 32, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--on-accent);
}

.hotel-card__overlay h3 {
  color: var(--on-accent);
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 8px;
}

.stars {
  letter-spacing: 2px;
  color: #f0c75e;
  font-size: 15px;
  line-height: 1;
}

.hotel-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.hotel-card__meta {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.hotel-card__body p {
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.hotel-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.help-nudge {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.help-nudge p {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion__btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.accordion__btn span:last-child {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.accordion__panel {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: left;
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(29, 99, 201, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.method-card h3 {
  margin-bottom: 10px;
}

.method-card p {
  margin: 0;
  color: var(--text-muted);
}

.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 56px 0;
}

.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat__label {
  color: var(--text-muted);
  margin: 0;
}

.site-footer {
  background: rgba(10, 20, 32, 0.94);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

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

.footer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 72px 0 48px;
}

.footer-split__left,
.footer-split__right {
  padding: 8px 40px;
}

.footer-split__left {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 0;
}

.footer-split__right {
  padding-right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-content: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-brand img {
  width: 32px;
  height: 48px;
  object-fit: contain;
}

.footer-blurb {
  max-width: 42ch;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  background: rgba(10, 20, 32, 0.98);
}

.footer-bottom__inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 22px 0 28px;
}

.footer-bottom__tier {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.footer-bottom__tier button {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  cursor: pointer;
}

.footer-bottom__tier button:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-requisites {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.back-top {
  margin-left: auto;
}

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
}

.page-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.rating-line {
  color: var(--text-muted);
  margin: 12px 0 0;
}

.byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 36px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.monogram {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 16px;
  flex-shrink: 0;
}

.byline__text {
  color: var(--text-muted);
  font-size: 15px;
}

.byline__text strong a {
  color: var(--text);
  text-decoration: none;
}

.byline__text strong a:hover {
  color: var(--accent);
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 1.4em;
}

.facts-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin: 0;
}

.fact dt {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.fact dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
}

.note-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-list li {
  padding: 18px 22px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  color: var(--text-muted);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.highlight-card p {
  margin: 0;
  color: var(--text-muted);
}

.verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.verdict__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.verdict__col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.verdict__col li + li {
  margin-top: 10px;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tag-block {
  padding: 22px 24px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tag-block strong {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.tag-block p {
  margin: 0;
  color: var(--text-muted);
}

.why-list {
  color: var(--text-muted);
}

.reserve-cta {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid transparent;
}

.reserve-cta h2,
.reserve-cta .kicker {
  color: #fff;
}

.reserve-cta .kicker {
  color: rgba(255, 255, 255, 0.65);
}

.reserve-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.map-frame {
  border: 0;
  width: 100%;
  max-width: 100%;
  height: 360px;
  border-radius: var(--radius);
  background: #d9dee6;
}

.address-line {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}

.guest-section .section-intro {
  margin-bottom: 36px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.review-card__quote {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  flex-grow: 0;
}

.review-card__meta {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.review-card__meta .avatar-init {
  display: inline-grid;
  margin: 0;
  vertical-align: middle;
}

.guest-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  flex-basis: 100%;
}

.guest-photo-btn {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.guest-photo-btn img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  max-width: 100%;
}

.guest-photo-btn--wide img {
  width: min(420px, 100%);
  height: auto;
  max-height: 280px;
  object-fit: cover;
}

.guest-photo-caption {
  width: 100%;
  flex-basis: 100%;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.carousel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 56px 40px;
  overflow: hidden;
}

.carousel__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.7;
  color: rgba(29, 99, 201, 0.18);
  margin-bottom: 8px;
}

.carousel__track {
  position: relative;
  min-height: 220px;
}

.carousel__slide {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.carousel__slide.is-active {
  display: flex;
}

.carousel__quote {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  margin: 0;
  font-family: var(--font-heading);
}

.carousel__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn,
.snap-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 27, 42, 0.2);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: var(--accent);
}

.masonry-reviews {
  columns: 2;
  column-gap: 24px;
}

.masonry-reviews .review-card {
  break-inside: avoid;
  margin-bottom: 24px;
}

.avatar-init {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(29, 99, 201, 0.12);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 13px;
  vertical-align: middle;
  flex-shrink: 0;
}

.snap-wrap {
  position: relative;
}

.snap-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.snap-strip::-webkit-scrollbar {
  display: none;
}

.snap-strip .review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  height: auto;
  align-self: stretch;
}

.snap-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.stack-reviews .review-row {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stack-reviews .review-row:first-child {
  border-top: 1px solid var(--border);
}

.stack-reviews .review-row__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.stack-reviews .review-row__meta {
  margin: 0;
  text-align: right;
  color: var(--text-muted);
  font-size: 14px;
}

.authors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.author-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  scroll-margin-top: 100px;
}

.author-card__head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.author-card__role {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.author-card h2 {
  font-size: 28px;
  margin: 0 0 4px;
}

.author-articles {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.author-articles li + li {
  margin-top: 8px;
}

.reserve-layout {
  padding: 72px 0 100px;
}

.reserve-panel,
.processing-panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.hotel-indicator {
  padding: 16px 18px;
  background: var(--surface-alt);
  border-radius: 10px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-family: var(--font-heading);
  font-size: 14px;
}

.form-field input {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 10px;
  grid-column: 1 / -1;
}

.agree-row input {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.agree-row label {
  color: var(--text-muted);
  font-size: 15px;
}

.agree-row.is-error input,
.form-field input[aria-invalid="true"] {
  outline: 2px solid #b42318;
  outline-offset: 1px;
}

.form-error {
  color: #b42318;
  font-size: 14px;
  margin: 0 0 12px;
  grid-column: 1 / -1;
}

.form-micro {
  color: var(--text-muted);
  font-size: 14px;
  margin: 14px 0 0;
}

.processing-panel[hidden],
.reserve-panel[hidden],
[hidden] {
  display: none !important;
}

.summary-box {
  margin: 24px 0;
  padding: 20px;
  background: var(--surface-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.summary-box p {
  margin: 0 0 8px;
}

.legal-page {
  padding: 72px 0 100px;
}

.legal-page .prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 1.6em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hotel-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.hotel-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.hotel-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.hotel-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.hotel-grid .reveal:nth-child(6) { transition-delay: 0.3s; }
.hotel-grid .reveal:nth-child(7) { transition-delay: 0.36s; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(10, 20, 32, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__inner {
  position: relative;
  max-width: 92vw;
  text-align: center;
}

.lightbox__inner img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3500;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.consent-banner p {
  color: var(--text-muted);
  font-size: 15px;
}

.consent__options {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}

.consent__option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}

.consent__option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent__btn {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  font-family: var(--font-heading);
  cursor: pointer;
}

.consent__btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

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

.docs-list li {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.docs-list h3 {
  margin-bottom: 8px;
}

.docs-list p {
  margin: 0;
  color: var(--text-muted);
}

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

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

  .page-hero__grid,
  .faq-layout,
  .reserve-cta__grid,
  .footer-split {
    grid-template-columns: 1fr;
  }

  .footer-split__left {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0 0 36px;
  }

  .footer-split__right {
    padding: 36px 0 0;
  }

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

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

  .snap-strip .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav,
  .nav-utility {
    display: none;
  }

  .site-header.is-open .nav,
  .site-header.is-open .nav-utility {
    display: flex;
  }

  .site-header.is-open .site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .site-header.is-open .brand {
    margin-right: auto;
  }

  .site-header.is-open .nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0 8px;
  }

  .site-header.is-open .nav-utility {
    order: 4;
    width: 100%;
    padding-bottom: 12px;
  }

  .site-header.is-open {
    height: auto;
    min-height: var(--header-h);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 88px;
  }

  .container,
  .site-header__inner,
  .footer-split,
  .footer-bottom__inner,
  .hero__content {
    width: min(100% - 32px, var(--max));
  }

  .search-bar {
    grid-template-columns: 1fr;
  }

  .hotel-grid,
  .method-grid,
  .authors-grid,
  .verdict,
  .tag-grid,
  .highlight-grid,
  .form-grid,
  .stats-band__inner,
  .masonry-reviews {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .carousel {
    padding: 36px 24px 28px;
  }

  .page-hero__grid {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 72px;
  }

  body {
    font-size: 16px;
  }

  .facts-panel,
  .footer-split__right {
    grid-template-columns: 1fr;
  }

  .snap-strip .review-card {
    flex: 0 0 100%;
  }

  .reserve-panel,
  .processing-panel {
    padding: 28px 20px;
  }

  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__btn {
    width: 100%;
  }

  .back-top {
    margin-left: 0;
  }

  .guest-photo-btn img {
    width: 110px;
    height: 110px;
  }
}
