:root {
  --bg: #0d0a1a;
  --surface: #171130;
  --surface-alt: #221844;
  --text: #efeaff;
  --text-muted: #a99ccb;
  --border: rgba(168, 85, 247, 0.18);
  --accent: #a855f7;
  --accent-2: #7c3aed;
  --secondary: #22d3ee;
  --on-accent: #ffffff;
  --deep: #070512;
  --radius: 12px;
  --radius-pill: 999px;
  --font-heading: 'Hoefler Text', 'Goudy Old Style', Garamond, serif;
  --font-body: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  --max-w: 1100px;
  --section-pad: 132px;
  --shadow-sm: 0 4px 16px rgba(7, 5, 18, 0.35), 0 1px 3px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 18px 48px rgba(7, 5, 18, 0.55), 0 6px 16px rgba(168, 85, 247, 0.12);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

iframe {
  height: 360px;
}

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

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

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

h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(24px, 3.4vw, 36px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 24px);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(168, 85, 247, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 26, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

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

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: -0.3px;
}

.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-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
}

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

.nav-cta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--secondary);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.nav-cta:hover {
  color: var(--on-accent);
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

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

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 5;
  }

  .site-header.is-open .nav-cta {
    display: inline-flex;
    margin: 0;
    position: absolute;
    top: calc(var(--header-h) + 16px);
    right: 24px;
    z-index: 6;
  }
}

.hero-stat {
  padding: calc(var(--header-h) + 48px) 0 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(168, 85, 247, 0.22), transparent 55%),
    linear-gradient(180deg, var(--deep), var(--bg));
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(168, 85, 247, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  position: relative;
  padding-bottom: 48px;
}

.hero-stat .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  max-height: 420px;
  max-width: 100%;
  width: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.stat-band article {
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}

.stat-band strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--accent);
  font-weight: 400;
}

.stat-band span {
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.section-alt.dotted::before,
.dotted-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(34, 211, 238, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.5;
}

.section-head {
  max-width: 36em;
  margin-bottom: 48px;
}

.section-head p {
  color: var(--text-muted);
}

.hotel-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hotel-card {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.hotel-card-media {
  min-height: 220px;
  overflow: hidden;
}

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

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

.hotel-card-body h3 {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 28px);
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

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

.hotel-card-body .teaser {
  color: var(--text-muted);
  flex: 1;
}

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

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

.trust-card {
  text-align: center;
  padding: 8px 12px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.18);
  color: var(--secondary);
  margin-bottom: 18px;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

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

.tip-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

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

.tip-row h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.tip-row p {
  margin: 0;
  color: var(--text-muted);
}

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

.feature-panel {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.feature-split img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  margin-bottom: 20px;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-map-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 14px 20px;
  background: rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-map-strip .dot {
  opacity: 0.45;
}

.footer-main {
  width: min(100% - 40px, var(--max-w));
  margin: 0 auto;
  padding: 56px 0 32px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 40em;
}

.footer-brand .brand-lockup {
  justify-content: center;
}

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

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 8px;
}

.footer-cols h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-cols li {
  margin-bottom: 8px;
}

.footer-cols a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-consent {
  width: min(100% - 40px, var(--max-w));
  margin: 0 auto;
  padding: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

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

.footer-bottom {
  width: min(100% - 40px, var(--max-w));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.footer-bottom img {
  width: 28px;
  height: 28px;
}

.footer-requisites {
  width: min(100% - 40px, var(--max-w));
  margin: 0 auto;
  padding: 0 0 36px;
  color: var(--text-muted);
  font-size: 12px;
  opacity: 0.75;
  text-align: left;
}

.page-hero-simple {
  padding: calc(var(--header-h) + 56px) 0 48px;
  background: linear-gradient(180deg, var(--deep), var(--bg));
}

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

.legal-body .container {
  max-width: 760px;
}

.legal-body h2 {
  margin-top: 2em;
}

.legal-body ul,
.legal-body ol {
  color: var(--text-muted);
  padding-left: 1.3em;
}

.legal-body li {
  margin-bottom: 0.55em;
}

.authors-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.author-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  scroll-margin-top: 100px;
}

.monogram {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 22px;
}

.author-card .role {
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.author-articles ul {
  margin: 8px 0 0;
  padding-left: 1.1em;
  color: var(--text-muted);
}

.reserve-wrap {
  max-width: 640px;
  margin: 0 auto;
}

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

.hotel-indicator {
  padding: 14px 18px;
  background: var(--surface-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  margin-bottom: 24px;
  color: var(--text-muted);
}

.hotel-indicator strong {
  color: var(--text);
}

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

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

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

.form-field label {
  font-size: 14px;
  color: var(--text-muted);
}

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

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

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

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

.agree-row label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.agree-row a {
  color: var(--secondary);
}

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

.agree-error,
.form-error {
  color: #f9a8d4;
  font-size: 13px;
  margin: 0 0 12px;
  grid-column: 1 / -1;
}

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

.processing-panel {
  display: none;
}

.processing-panel.is-visible {
  display: block;
}

.reserve-form.is-hidden {
  display: none;
}

.ref-chip {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(34, 211, 238, 0.12);
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 1px;
}

.review-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--text);
}

.review-hero-bg {
  position: absolute;
  inset: 0;
}

.review-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 5, 18, 0.25) 0%, rgba(7, 5, 18, 0.55) 40%, rgba(13, 10, 26, 0.96) 100%);
}

.review-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max-w));
  margin: 0 auto;
  padding: 0 0 40px;
}

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

.review-standfirst {
  max-width: 38em;
  margin: 36px auto 0;
  width: min(100% - 40px, 720px);
  color: var(--text-muted);
  font-size: 1.05rem;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 38em;
  margin: 28px auto 0;
  width: min(100% - 40px, 720px);
}

.byline .monogram {
  width: 52px;
  height: 52px;
  font-size: 16px;
  flex-shrink: 0;
}

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

.byline-text a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
}

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

.pull-guest {
  width: min(100% - 40px, 820px);
  margin: 56px auto;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.35;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}

.pull-guest cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.review-article {
  width: min(100% - 40px, 720px);
  margin: 0 auto 64px;
}

.review-article h2 {
  margin-top: 1.6em;
  font-size: clamp(20px, 2.4vw, 26px);
}

.band-section {
  padding: 88px 0;
  background: var(--bg);
}

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

.facts-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  margin: 40px auto;
  width: min(100% - 40px, 720px);
}

.facts-aside .kicker {
  margin-bottom: 16px;
}

.facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.facts-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

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

.facts-list strong {
  color: var(--text);
  display: inline-block;
  min-width: 7em;
}

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

.fact-tile {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fact-tile svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.fact-tile .kicker {
  margin: 0 0 4px;
  font-size: 10px;
}

.fact-tile strong {
  font-size: 15px;
  font-weight: 600;
}

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

.facts-chips span {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.facts-header-strip {
  width: min(100% - 40px, var(--max-w));
  margin: -24px auto 48px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.rating-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}

.rating-num {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1;
  color: var(--accent);
}

.rating-count {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

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

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

.chip {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--text-muted);
}

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

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

.audience-row .chip {
  background: rgba(168, 85, 247, 0.18);
  color: var(--text);
  text-align: center;
  justify-self: start;
}

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

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

.standout-card h3 {
  font-size: 18px;
  margin: 12px 0 8px;
}

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

.small-caps {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 1.6em 0 0.5em;
  font-family: var(--font-body);
}

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

.quote-aside {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.45;
}

.quote-aside cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
}

.address-panel {
  background: rgba(168, 85, 247, 0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.address-panel svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

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

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

.num-item .n {
  font-family: var(--font-heading);
  font-size: 42px;
  color: rgba(168, 85, 247, 0.35);
  line-height: 1;
  margin-bottom: 8px;
}

.pull-unexpected {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  border-left: 6px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 0;
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

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

.case-card strong {
  display: block;
  margin-bottom: 8px;
}

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

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px dotted var(--secondary);
}

.checkin-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.checkin-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.checkin-step .kicker {
  margin-bottom: 10px;
}

.checkin-connector {
  width: 40px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tick-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text-muted);
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.25);
  box-shadow: inset 0 0 0 3px var(--secondary);
}

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

.season-row {
  background: rgba(168, 85, 247, 0.12);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.narrow-centre {
  max-width: 34em;
  margin: 0 auto;
  text-align: left;
}

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

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

.sleep-icon strong {
  display: block;
  margin-top: 8px;
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pill {
  background: rgba(168, 85, 247, 0.16);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
}

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

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

.icon-list-row:first-child {
  border-top: 1px solid var(--border);
}

.icon-list-row h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

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

.bordered-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  line-height: 1.9;
}

.bordered-panel ol {
  margin: 0;
  padding-left: 1.2em;
}

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

.skip-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.reach-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reach-step {
  flex: 1 1 160px;
  text-align: center;
  padding: 12px;
}

.reach-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.reach-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 34px;
  flex: 0 0 40px;
}

.rating-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(168, 85, 247, 0.12);
  border-radius: var(--radius);
  padding: 32px;
}

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

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

.noticed-panel li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.access-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.drop-cap::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 3.6em;
  line-height: 0.85;
  padding-right: 10px;
  color: var(--accent);
}

.verdict-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.verdict-col {
  padding: 8px 28px;
}

.verdict-col:first-child {
  border-right: 1px solid var(--border);
}

.verdict-col h3 {
  margin-bottom: 16px;
}

.verdict-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.verdict-col li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text-muted);
}

.verdict-col.love li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.verdict-col.know li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-head svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

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

.guest-stack .guest-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-stack .guest-card:first-child {
  border-top: 1px solid var(--border);
}

.guest-card .stars {
  align-self: flex-end;
}

.guest-card blockquote {
  margin: 0;
  font-size: 1.02rem;
}

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

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

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

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

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

.guest-strip-wrap {
  position: relative;
}

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

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

.guest-strip .guest-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.guest-strip .guest-card blockquote {
  flex: none;
  flex-grow: 0;
}

.guest-strip .guest-card .guest-photos {
  margin-top: 0;
}

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

.strip-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

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

.guest-masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

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

.guest-grid-3 .guest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.guest-grid-3 .guest-card.is-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm);
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.18), var(--surface));
}

.reserve-cta {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168, 85, 247, 0.2), transparent 50%),
    var(--deep);
}

.reserve-cta .map-wrap {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.reserve-cta iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.reserve-cta .address {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(7, 5, 18, 0.88);
  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: var(--text-muted);
  margin-top: 12px;
  font-size: 14px;
}

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

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

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 300;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  box-shadow: var(--shadow-lg);
}

.consent-banner::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 2px;
}

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

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

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.consent-actions button {
  flex: 1 1 auto;
  min-height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  padding: 8px 12px;
}

.consent-actions button.consent-accept {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: var(--on-accent);
}

.consent-policy {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(7, 5, 18, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consent-modal.is-open {
  display: flex;
}

.consent-modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: none;
}

.consent-cat p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-cat input {
  width: 44px;
  height: 24px;
}

.article-rail {
  width: min(100% - 40px, var(--max-w));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
}

.article-rail .sticky-facts {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.article-rail .review-article {
  width: auto;
  margin: 0;
}

.float-facts {
  float: right;
  width: min(280px, 38%);
  margin: 0 0 24px 28px;
}

@media (max-width: 1024px) {
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .feature-split,
  .trust-grid,
  .standout-grid,
  .people-split,
  .why-split,
  .room-split,
  .verdict-cols,
  .guest-grid-3,
  .article-rail {
    grid-template-columns: 1fr;
  }

  .float-facts {
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

  .hotel-card-media {
    min-height: 200px;
    max-height: 240px;
  }

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

  .trust-grid,
  .area-split,
  .audience-row,
  .num-grid,
  .checkin-steps,
  .rating-band,
  .sleep-icons,
  .form-grid,
  .guest-masonry {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .checkin-connector {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }

  .checkin-steps {
    grid-template-columns: 1fr;
  }

  .guest-strip .guest-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .reach-connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-inner,
  .footer-main,
  .footer-bottom,
  .footer-consent,
  .footer-requisites,
  .review-hero-content {
    width: min(100% - 28px, var(--max-w));
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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


@media (max-width: 900px) {
  .float-facts {
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }
  .article-rail {
    grid-template-columns: 1fr;
  }
}
