:root {
  --bg: #f2f1f8;
  --surface: #ffffff;
  --surface-alt: #f2f1f8;
  --text: #181a33;
  --text-muted: #565879;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #4b4fb0;
  --accent-2: #363a86;
  --secondary: #101127;
  --on-accent: #ffffff;
  --radius: 16px;
  --radius-btn: 6px;
  --shadow: 0 10px 30px rgba(16, 17, 39, 0.08);
  --shadow-glow: 0 12px 40px rgba(75, 79, 176, 0.14);
  --font-heading: 'Century Gothic', 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1160px;
  --section-pad: 112px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

iframe {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

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

h1 {
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
}

p {
  margin: 0 0 1em;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: var(--shadow);
}

.btn:hover {
  background: var(--accent-2);
  color: var(--on-accent);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
  box-shadow: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: var(--nav-h);
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.3px;
}

.brand:hover {
  text-decoration: none;
  color: var(--accent);
}

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

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
}

.nav-cta a {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

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

.nav-reserve-mobile {
  display: none;
}

.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);
}

@media (max-width: 899px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 8px 0;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    display: none;
  }

  .nav-reserve-mobile {
    display: list-item;
  }
}

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-accent);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(16, 17, 39, 0.78) 0%, rgba(54, 58, 134, 0.62) 55%, rgba(16, 17, 39, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100% - 40px, 820px);
  padding: 100px 0 80px;
}

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

.hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  margin-bottom: 36px;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.search-bar label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
}

.search-bar input,
.search-bar select {
  border: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  min-width: 140px;
  outline: none;
}

.search-bar select option {
  color: var(--text);
}

.search-bar .btn {
  border-radius: 999px;
  margin: 2px;
}

@media (max-width: 768px) {
  .search-bar {
    border-radius: var(--radius);
    flex-direction: column;
    align-items: stretch;
  }

  .search-bar label {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--surface);
}

.section-dot {
  position: relative;
}

.section-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(75, 79, 176, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.7;
}

.section-dot > * {
  position: relative;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

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

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

@media (max-width: 640px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }
}

.hotel-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16, 17, 39, 0.12);
}

.hotel-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.star-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--surface);
  color: var(--accent);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.hotel-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hotel-card-body h3 {
  font-size: 20px;
  margin: 0;
}

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

.hotel-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.split-visual {
  border-radius: calc(var(--radius) + 8px);
  min-height: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.split-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.split-mark {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 700;
}

.split-label {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
}

.split-sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promise {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: var(--surface-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--accent-2);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  align-items: stretch;
}

.step {
  flex: 1 1 160px;
  max-width: 220px;
  text-align: center;
  padding: 28px 18px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

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

.step-connector {
  align-self: center;
  width: 36px;
  height: 2px;
  background: var(--border);
  flex: 0 0 36px;
}

@media (max-width: 768px) {
  .step-connector {
    display: none;
  }

  .step {
    max-width: none;
  }
}

.stats-band {
  background: var(--accent);
  color: var(--on-accent);
  padding: 28px 0;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  align-items: center;
}

.stat-item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-heading);
}

.stat-num {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.88;
}

.site-footer {
  background: var(--surface-alt);
  padding: 56px 0 28px;
  margin-top: 0;
}

.footer-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 28px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 40px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-blurb {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.footer-country {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  max-width: 700px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-heading);
}

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

.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.footer-consent {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-consent a,
.footer-consent button {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: underline;
}

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.85;
}

.page-hero {
  padding: 64px 0 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.lead-image {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  margin: 28px 0 0;
  box-shadow: var(--shadow);
}

.lead-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
  padding: 48px 0 24px;
}

@media (max-width: 899px) {
  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-rail {
    position: static !important;
    order: -1;
  }
}

.review-rail {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.rail-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 10px 0 0;
}

.byline {
  text-align: center;
  margin: 0 0 36px;
  padding: 28px 16px;
  border-bottom: 1px solid var(--border);
}

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.byline-name {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 6px;
}

.byline-meta {
  color: var(--text-muted);
  font-size: 14px;
}

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

.article-body h3 {
  margin-top: 1.6em;
}

.facts-strip {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.8;
}

.facts-strip strong {
  color: var(--text);
}

.facts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.fact-chip {
  background: rgba(75, 79, 176, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.fact-chip strong {
  color: var(--text);
  font-weight: 500;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 28px;
}

.fact-tile {
  background: rgba(75, 79, 176, 0.07);
  border-radius: var(--radius);
  padding: 16px;
}

.fact-tile .kicker {
  margin-bottom: 6px;
  font-size: 11px;
}

.fact-tile strong {
  font-family: var(--font-heading);
  font-size: 16px;
  display: block;
}

.content-block {
  padding: 48px 0;
  background: var(--bg);
}

.content-block .block-inner {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.verdict-pull {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--accent-2);
  margin: 20px 0;
  line-height: 1.25;
}

.if-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.if-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.if-row svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.narrow-center {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.rating-split {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 640px) {
  .rating-split {
    grid-template-columns: 1fr;
  }
}

.score-big {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 16px;
  border: 1px solid var(--border);
}

.score-big .num {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
}

.meters {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.meter-track {
  height: 8px;
  background: rgba(75, 79, 176, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.access-panel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.access-panel svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--accent);
}

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

.icon-split {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 640px) {
  .icon-split {
    grid-template-columns: 1fr;
  }
}

.icon-split .big-icon {
  width: 72px;
  height: 72px;
  color: var(--accent);
}

.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .two-cards {
    grid-template-columns: 1fr;
  }
}

.border-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}

.border-card svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 10px;
}

.eat-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .eat-split {
    grid-template-columns: 1fr;
  }
}

.tinted-card {
  background: rgba(75, 79, 176, 0.09);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--accent-2);
}

.num-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .num-grid {
    grid-template-columns: 1fr;
  }
}

.num-item {
  position: relative;
  padding: 18px 18px 18px 64px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.num-item .n {
  position: absolute;
  left: 14px;
  top: 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: rgba(75, 79, 176, 0.28);
  font-weight: 500;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .notes-grid {
    grid-template-columns: 1fr;
  }
}

.note-block {
  padding: 18px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.note-block strong {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.access-rows .access-row {
  padding: 14px 0;
}

.access-rows .access-row + .access-row {
  border-top: 1px solid var(--border);
}

.access-rows .label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

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

.audience-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
}

@media (max-width: 640px) {
  .audience-row {
    grid-template-columns: 1fr;
  }
}

.chip {
  display: inline-block;
  background: rgba(75, 79, 176, 0.1);
  color: var(--accent-2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-heading);
  text-align: center;
}

.room-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .room-split {
    grid-template-columns: 1fr;
  }
}

.notice-list {
  background: rgba(75, 79, 176, 0.08);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0;
  list-style: none;
}

.notice-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.notice-list li:last-child {
  border-bottom: none;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 768px) {
  .qa-grid {
    grid-template-columns: 1fr;
  }
}

.qa-item strong {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.qa-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.sleep-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.sleep-icon {
  text-align: center;
  padding: 16px 10px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.sleep-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin: 0 auto 8px;
}

.sleep-icon .v {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent-2);
}

.rating-band {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(75, 79, 176, 0.08);
  border-radius: var(--radius);
  padding: 28px;
}

@media (max-width: 768px) {
  .rating-band {
    grid-template-columns: 1fr;
  }
}

.alt-list .alt-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.badge-plus,
.badge-minus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--on-accent);
}

.badge-plus {
  background: var(--accent);
}

.badge-minus {
  background: var(--secondary);
}

.area-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .area-split {
    grid-template-columns: 1fr;
  }
}

.address-panel {
  background: rgba(75, 79, 176, 0.09);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-heading);
  line-height: 1.5;
}

.address-panel svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 24px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  color: var(--secondary);
  letter-spacing: -0.4px;
}

.icon-list {
  display: flex;
  flex-direction: column;
}

.icon-list-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.icon-list-row:last-child {
  border-bottom: none;
}

.icon-list-row svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.two-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

@media (max-width: 640px) {
  .two-step {
    grid-template-columns: 1fr;
  }

  .two-step .connector {
    display: none;
  }
}

.two-step .step-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.two-step .connector {
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.verdict-panels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verdict-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.verdict-panel.positive {
  background: rgba(75, 79, 176, 0.08);
  border-color: rgba(75, 79, 176, 0.2);
}

.verdict-panel.caution {
  background: var(--surface-alt);
}

.where-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .where-split {
    grid-template-columns: 1fr;
  }
}

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

.best-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .best-grid {
    grid-template-columns: 1fr;
  }
}

.best-tile {
  background: rgba(75, 79, 176, 0.08);
  border-radius: var(--radius);
  padding: 20px;
}

.best-tile .kicker {
  margin-bottom: 8px;
}

.takeaway {
  font-family: var(--font-heading);
  font-weight: 500;
  margin-top: 12px;
  color: var(--accent-2);
}

.guest-section {
  padding: 64px 0;
  background: var(--surface);
}

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

.snap-wrap {
  position: relative;
}

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

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

.guest-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .guest-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 480px) {
  .guest-card {
    flex-basis: 100%;
  }
}

.guest-stars {
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 14px;
}

.guest-quote {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.guest-meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--text-muted);
}

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

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

.guest-photo-btn img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  display: block;
}

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

.snap-arrows {
  display: flex;
  gap: 8px;
}

.snap-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
}

.quote-rows .quote-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-rows .quote-row:last-child {
  border-bottom: none;
}

.quote-rows .guest-quote {
  margin: 0;
}

.quote-rows .guest-meta {
  margin-top: auto;
}

.quote-rows .guest-photos {
  margin-top: 0;
}

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

@media (max-width: 768px) {
  .masonry {
    columns: 1;
  }
}

.masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 20px;
  flex: none;
  width: 100%;
  display: inline-flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  margin-right: 8px;
  vertical-align: middle;
}

.carousel {
  position: relative;
  background: var(--bg);
  border-radius: calc(var(--radius) + 4px);
  padding: 48px 48px 36px;
  border: 1px solid var(--border);
  min-height: 280px;
}

.carousel-mark {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: rgba(75, 79, 176, 0.25);
  position: absolute;
  top: 12px;
  left: 28px;
}

.carousel-slide {
  display: none;
}

.carousel-slide.is-active {
  display: block;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

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

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(75, 79, 176, 0.25);
  cursor: pointer;
  padding: 0;
}

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

.reserve-cta {
  padding: 72px 0;
  background: var(--secondary);
  color: #fff;
}

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

.reserve-cta p,
.reserve-cta address {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.map-frame {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-frame iframe {
  width: 100%;
  max-width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

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

@media (max-width: 768px) {
  .authors-grid {
    grid-template-columns: 1fr;
  }
}

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

.author-card .monogram {
  margin-bottom: 14px;
}

.author-card h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.author-role {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 14px;
  margin-bottom: 14px;
}

.author-articles {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.author-articles ul {
  margin: 8px 0 0;
  padding-left: 1.1em;
}

.reserve-wrap {
  padding: 64px 0 96px;
}

.reserve-form,
.processing-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.hotel-indicator {
  background: rgba(75, 79, 176, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-family: var(--font-heading);
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-row input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
}

.form-row input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

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

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

.agree-row label {
  font-size: 14px;
  line-height: 1.55;
}

.agree-row.is-error input {
  outline: 2px solid #b04040;
}

.agree-error,
.form-error {
  color: #b04040;
  font-size: 13px;
  margin: 0 0 12px;
  display: none;
}

.agree-error.is-visible,
.form-error.is-visible {
  display: block;
}

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

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

.legal-body {
  padding: 56px 0 96px;
}

.legal-body .container {
  max-width: 800px;
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-body h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.legal-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-top: 1.6em;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 14px;
}

.legal-body th,
.legal-body td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-body th {
  background: var(--surface-alt);
  font-family: var(--font-heading);
}

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

.reveal.is-in {
  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: 300;
  background: rgba(16, 17, 39, 0.84);
  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;
  border-radius: 8px;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  box-shadow: var(--shadow);
}

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 250;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(16, 17, 39, 0.18);
  padding: 22px 24px;
  max-width: 720px;
  margin: 0 auto;
}

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

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

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

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.consent-cat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

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

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

.consent-actions .btn {
  font-size: 13px;
  padding: 10px 16px;
}

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

  .container {
    width: min(100% - 24px, var(--max));
  }

  .legal-body .container {
    padding: 28px 20px;
  }

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

  .carousel {
    padding: 40px 20px 28px;
  }
}

.stars {
  letter-spacing: 1px;
  color: var(--accent);
}

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


.hero-bg-brand {
  background-color: #101127;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(75, 79, 176, 0.45), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(54, 58, 134, 0.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(75, 79, 176, 0.25), transparent 35%),
    url('../images/logo/logo.webp');
  background-size: auto, auto, auto, min(42vw, 380px);
  background-repeat: no-repeat;
  background-position: center, center, center, center 22%;
  filter: none;
}

.hero-bg-brand::after {
  background: linear-gradient(165deg, rgba(16, 17, 39, 0.72) 0%, rgba(16, 17, 39, 0.55) 45%, rgba(16, 17, 39, 0.82) 100%);
}

.fact-tile svg {
  color: var(--accent);
  margin-bottom: 8px;
}
