:root {
  --bg: #f2f1f8;
  --surface: #ffffff;
  --surface-alt: #f2f1f8;
  --text: #191634;
  --text-muted: #565377;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #6d43d6;
  --accent-2: #5230aa;
  --secondary: #100e26;
  --on-accent: #ffffff;
  --radius: 16px;
  --radius-btn: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(16, 14, 38, 0.06), 0 1px 2px rgba(16, 14, 38, 0.04);
  --shadow-md: 0 8px 28px rgba(16, 14, 38, 0.10), 0 2px 8px rgba(16, 14, 38, 0.06);
  --shadow-lg: 0 18px 48px rgba(109, 67, 214, 0.16), 0 6px 16px rgba(16, 14, 38, 0.08);
  --font-heading: 'Segoe UI Semibold', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max: 1160px;
  --section-pad: 112px;
  --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.72;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

iframe {
  max-width: 100%;
}

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.4px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

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

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

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

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

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

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

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 11px 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

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

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(109, 67, 214, 0.08);
}

.nav-links .btn {
  margin-left: 8px;
  color: var(--on-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);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

  .nav-links {
    position: absolute;
    top: calc(var(--header-h) + 4px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    gap: 4px;
    display: none;
  }

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

  .nav-links .btn {
    margin-left: 0;
    margin-top: 6px;
  }
}

.hero {
  position: relative;
  padding: calc(var(--section-pad) * 0.75) 0 var(--section-pad);
  overflow: hidden;
}

.hero-blobs,
.band-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-blobs::before,
.hero-blobs::after,
.band-blobs::before,
.band-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.hero-blobs::before {
  width: 420px;
  height: 420px;
  background: rgba(109, 67, 214, 0.28);
  top: -80px;
  right: 10%;
}

.hero-blobs::after {
  width: 320px;
  height: 320px;
  background: rgba(82, 48, 170, 0.18);
  bottom: -40px;
  left: 5%;
}

.band-blobs::before {
  width: 380px;
  height: 380px;
  background: rgba(109, 67, 214, 0.22);
  top: 10%;
  left: -60px;
}

.band-blobs::after {
  width: 280px;
  height: 280px;
  background: rgba(16, 14, 38, 0.08);
  bottom: -40px;
  right: 8%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .btn {
  margin-top: 8px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 28px;
}

.hero-duo {
  position: relative;
  min-height: 420px;
}

.hero-duo .frame {
  position: absolute;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-duo .frame img {
  width: 55%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.15);
}

.hero-duo .portrait {
  width: 48%;
  aspect-ratio: 3 / 4;
  right: 8%;
  top: 0;
  z-index: 2;
  background: linear-gradient(160deg, #2a2150, #100e26);
}

.hero-duo .landscape {
  width: 62%;
  aspect-ratio: 16 / 10;
  left: 0;
  bottom: 8%;
  z-index: 1;
  background: linear-gradient(140deg, #5230aa, #6d43d6 60%, #2a2150);
}

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

.section-tight {
  padding: calc(var(--section-pad) * 0.7) 0;
}

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

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

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

.hotel-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

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

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

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

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

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

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

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

.hotel-card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

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

.split-visual {
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, #2a2150, #6d43d6);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.split-visual img {
  width: 42%;
  filter: brightness(1.2);
}

.about-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-align: center;
  padding: 32px;
}

.about-panel img {
  width: 96px;
  height: auto;
  filter: brightness(1.15);
}

.about-panel p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: -0.4px;
}

.about-panel span {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.75;
}

.promise {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(109, 67, 214, 0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-weight: 600;
  color: var(--secondary);
}

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

.author-feature {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

.monogram.sm {
  width: 36px;
  height: 36px;
  font-size: 13px;
  margin-bottom: 0;
}

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

.tip-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.tip-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(109, 67, 214, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}

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

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

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.text-link:hover {
  color: var(--accent-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.faq-item {
  padding: 8px 0;
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

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

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

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 16px;
  max-width: 34ch;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text);
}

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

.footer-col li {
  margin-bottom: 10px;
}

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

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

.footer-col summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.footer-col summary::-webkit-details-marker {
  display: none;
}

.footer-col summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.footer-col details[open] summary::after {
  transform: rotate(-135deg);
}

.footer-col details .footer-acc-body {
  padding: 14px 0 8px;
}

.footer-desktop-head {
  display: block;
}

.footer-mobile-acc {
  display: none;
}

.footer-affiliate {
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 16px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-bottom-right a,
.footer-bottom-right button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
}

.footer-bottom-right a:hover,
.footer-bottom-right button:hover {
  color: var(--accent);
}

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
  padding-bottom: 28px;
  line-height: 1.5;
}

.review-hero {
  position: relative;
  height: 62vh;
  min-height: 380px;
  max-height: 720px;
  overflow: hidden;
  color: var(--on-accent);
}

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

.review-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 38, 0.15) 0%, rgba(16, 14, 38, 0.72) 70%, rgba(16, 14, 38, 0.92) 100%);
  display: flex;
  align-items: flex-end;
}

.review-hero-overlay .container {
  padding-bottom: 48px;
  width: min(100% - 40px, var(--max));
}

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

.review-hero .stars {
  color: #f0e9ff;
}

.review-hero .meta-line {
  color: rgba(255, 255, 255, 0.85);
}

.review-intro {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
  font-size: 15px;
}

.byline .stay {
  color: var(--text-muted);
  font-style: italic;
}

.pull-quote {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: var(--secondary);
}

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

.article-measure {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

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

.content-section {
  padding: calc(var(--section-pad) * 1.4) 0;
}

.content-section .section-head.centered {
  margin-bottom: 40px;
}

.content-section .standfirst {
  color: var(--text-muted);
  max-width: 52ch;
  margin: -8px auto 0;
}

.facts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.fact-chip {
  background: rgba(109, 67, 214, 0.08);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text);
}

.fact-chip span {
  color: var(--text-muted);
}

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

.fact-tile {
  background: rgba(109, 67, 214, 0.08);
  border-radius: var(--radius);
  padding: 16px;
}

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

.fact-tile strong {
  display: block;
  font-size: 16px;
}

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

.review-layout-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.rail-aside {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.rail-aside h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

.inline-subhead {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 1.8em 0 0.6em;
}

.rating-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.rating-numeral {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -2px;
}

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

.procon-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.badge-pm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.badge-pm.plus {
  background: rgba(109, 67, 214, 0.15);
  color: var(--accent-2);
}

.badge-pm.minus {
  background: rgba(16, 14, 38, 0.08);
  color: var(--text-muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.audience-tile {
  background: rgba(109, 67, 214, 0.08);
  border-radius: var(--radius);
  padding: 22px;
}

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

.takeaway {
  font-weight: 700;
  margin-top: 1em;
}

.qa-stack {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.qa-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.qa-row .q {
  display: block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.tinted-band {
  background: rgba(109, 67, 214, 0.08);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.evening-band {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  padding: calc(var(--section-pad) * 0.8) 20px;
  text-align: center;
}

.evening-band .inner {
  max-width: 520px;
  margin: 0 auto;
}

.evening-band svg {
  color: #c4b5f5;
  margin-bottom: 16px;
}

.evening-band h2 {
  color: #fff;
}

.icon-list {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.audience-rows {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.audience-row .chip {
  background: rgba(109, 67, 214, 0.12);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.scale-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.rating-scale {
  position: relative;
  height: 12px;
  background: rgba(109, 67, 214, 0.12);
  border-radius: 999px;
}

.rating-scale-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
  border-radius: 999px;
}

.rating-scale-marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border: 3px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rating-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.verdict-pull {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  text-align: center;
  color: var(--accent-2);
  margin: 24px 0;
  letter-spacing: -0.4px;
  max-width: 720px;
  margin-inline: auto;
  padding: 0 20px;
}

.sleep-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
}

.sleep-icons div {
  background: rgba(109, 67, 214, 0.08);
  border-radius: var(--radius);
  padding: 18px 12px;
}

.sleep-icons strong {
  display: block;
  margin-top: 6px;
  color: var(--accent-2);
}

.arrival-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: stretch;
}

.arrival-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.arrival-connector {
  width: 40px;
  height: 2px;
  background: var(--accent);
  align-self: center;
  position: relative;
}

.arrival-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--accent);
}

.neighbourhood {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.n-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.n-chips span {
  background: rgba(109, 67, 214, 0.1);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.score-meters {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.meter-row {
  margin-bottom: 14px;
}

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

.meter-track {
  height: 8px;
  background: rgba(109, 67, 214, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.season-rows {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.season-row {
  background: rgba(109, 67, 214, 0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.reviews-strip-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.guest-card .quote {
  font-size: 15px;
  color: var(--text);
}

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

.guest-card .guest-meta {
  margin-top: auto;
}

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

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

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

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

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

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

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

.quote-carousel {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 28px;
  background: var(--surface);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.quote-carousel .big-mark {
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  font-family: Georgia, serif;
}

.carousel-slide {
  display: none;
}

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

.carousel-slide .quote {
  font-size: clamp(17px, 2vw, 20px);
  margin: 8px 0 20px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

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

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

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

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.quote-grid .guest-card.highlight {
  background: var(--secondary);
  color: #fff;
  border-color: transparent;
}

.quote-grid .guest-card.highlight .quote,
.quote-grid .guest-card.highlight .guest-meta,
.quote-grid .guest-card.highlight .stars,
.quote-grid .guest-card.highlight .guest-photo-caption {
  color: rgba(255, 255, 255, 0.92);
}

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

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

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

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

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

.page-hero-simple {
  padding: calc(var(--section-pad) * 0.65) 0 calc(var(--section-pad) * 0.45);
  position: relative;
  overflow: hidden;
}

.authors-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.author-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.author-card .monogram {
  width: 72px;
  height: 72px;
  font-size: 22px;
}

.author-card ul {
  margin-top: 12px;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px var(--section-pad);
}

.legal-body h1 {
  margin-bottom: 16px;
}

.legal-body h2 {
  margin-top: 2em;
  font-size: clamp(22px, 3vw, 28px);
}

.legal-body h3 {
  margin-top: 1.4em;
}

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

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

.legal-body th {
  background: rgba(109, 67, 214, 0.08);
}

.reserve-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px var(--section-pad);
}

.reserve-form {
  background: var(--surface);
  border-radius: calc(var(--radius) + 8px);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.hotel-indicator {
  background: rgba(109, 67, 214, 0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 15px;
}

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

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font: inherit;
  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: 24px 0 16px;
}

.agree-row input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 2px;
  accent-color: var(--accent);
}

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

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

.agree-error {
  color: #b42318;
  font-size: 13px;
  margin-top: -8px;
  margin-bottom: 12px;
  display: none;
}

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

.form-error {
  color: #b42318;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

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

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

.processing-panel {
  background: var(--surface);
  border-radius: calc(var(--radius) + 8px);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.summary-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(16, 14, 38, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

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

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
}

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

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
}

.footer-col button[data-cookie-settings] {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-col button[data-cookie-settings]:hover {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(16, 14, 38, 0.12);
  padding: 20px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.consent-banner.is-visible {
  transform: translateY(0);
}

.consent-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.consent-inner h2 {
  font-size: 20px;
  margin: 0;
}

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

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

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

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

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

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

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

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (max-width: 1024px) {
  .hero-grid {
    gap: 36px;
  }

  .review-layout-rail {
    grid-template-columns: 1fr;
  }

  .rail-aside {
    position: static;
    order: -1;
  }

  .scale-block,
  .score-meters {
    grid-template-columns: 1fr;
  }
}

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

  .hero-grid,
  .split,
  .authors-teaser-grid,
  .tips-grid,
  .faq-grid,
  .audience-grid,
  .neighbourhood,
  .quote-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .hotel-card-media {
    max-height: 220px;
  }

  .hero-duo {
    min-height: 320px;
    order: -1;
  }

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

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

  .arrival-connector {
    width: 2px;
    height: 28px;
    justify-self: center;
  }

  .arrival-connector::after {
    top: auto;
    bottom: -6px;
    right: -4px;
    border: 5px solid transparent;
    border-top-color: var(--accent);
  }

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

  .footer-desktop-head {
    display: none;
  }

  .footer-mobile-acc {
    display: block;
  }

  .footer-col ul.desktop-only {
    display: none;
  }

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

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

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

  .rating-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions .btn {
    width: 100%;
  }

  .reserve-form,
  .processing-panel {
    padding: 24px 18px;
  }

  .sleep-icons {
    grid-template-columns: 1fr;
  }
}
