: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-pill: 999px;
  --font-heading: Garamond, "Goudy Old Style", "Palatino Linotype", serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 8px rgba(16, 17, 39, 0.06), 0 1px 2px rgba(16, 17, 39, 0.04);
  --shadow-lg: 0 16px 40px rgba(16, 17, 39, 0.12), 0 4px 12px rgba(16, 17, 39, 0.06);
  --max: 1360px;
  --section-pad: 124px;
  --header-h: 108px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
  font-size: 17px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

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

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

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

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

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

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

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

.section--dotted {
  background-color: var(--surface-alt);
  background-image: radial-gradient(rgba(75, 79, 176, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}

.section--grid {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(75, 79, 176, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 79, 176, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  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);
  line-height: 1.2;
}

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

.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(--accent);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

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

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

.utility-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
}

.utility-bar .wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-main {
  background: rgba(242, 241, 248, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  min-height: 72px;
}

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

.brand img {
  width: 44px;
  height: 28px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: -0.5px;
  font-weight: 500;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

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

.nav-links .btn {
  margin-left: 8px;
}

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

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

.hero {
  padding: 80px 0 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(75, 79, 176, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(54, 58, 134, 0.10), transparent 50%),
    var(--bg);
}

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

.hero-copy .kicker {
  margin-bottom: 20px;
}

.hero-copy h1 {
  margin-bottom: 24px;
  max-width: 14ch;
}

.hero-copy .lede {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 32px;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

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

.stat-band {
  background: var(--secondary);
  color: var(--on-accent);
  padding: 36px 0;
}

.stat-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.72;
}

.section-head {
  margin-bottom: 56px;
  max-width: 40rem;
}

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

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

.hotel-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

.hotel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 17, 39, 0.85) 0%, rgba(16, 17, 39, 0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.hotel-card__overlay h3 {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 8px;
}

.stars {
  letter-spacing: 2px;
  color: #f0d78c;
  font-size: 16px;
}

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

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

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

.manifesto {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.manifesto .mission {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 28px;
}

.manifesto .lead {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--text-muted);
}

.manifesto .lead p + p {
  margin-top: 16px;
}

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

.method-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.method-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--accent);
}

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

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

.snap-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.snap-row::-webkit-scrollbar {
  height: 6px;
}

.snap-row::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.region-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
}

.region-card__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--on-accent);
  background: var(--secondary);
  margin-bottom: auto;
}

.region-card:nth-child(2) .region-card__mark {
  background: #363a86;
}

.region-card:nth-child(3) .region-card__mark {
  background: #4b4fb0;
}

.region-card:nth-child(4) .region-card__mark {
  background: #181a33;
}

.region-card__name {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: -0.6px;
  line-height: 1.15;
}

.region-card__note {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

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

.quote-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-card--highlight {
  background: var(--secondary);
  color: var(--on-accent);
}

.quote-card--highlight .stars {
  color: #f0d78c;
}

.quote-card--highlight .quote-meta {
  color: rgba(255, 255, 255, 0.7);
}

.quote-card blockquote {
  font-size: 17px;
  line-height: 1.6;
  flex: 1;
}

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

.authors-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 36px;
  align-items: stretch;
}

.author-feature {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.monogram {
  width: 64px;
  height: 64px;
  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: 22px;
  flex-shrink: 0;
  letter-spacing: 0;
}

.monogram--sm {
  width: 48px;
  height: 48px;
  font-size: 16px;
}

.author-feature h3 {
  margin-bottom: 4px;
}

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

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

.authors-teaser__link {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 24px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.authors-teaser__link:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

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

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-bottom: 48px;
}

.footer-stack .brand {
  flex-direction: column;
  gap: 10px;
}

.footer-blurb {
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  max-width: 920px;
  list-style: none;
  padding: 0;
}

.footer-links li {
  display: inline-flex;
  align-items: center;
}

.footer-links li:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: var(--text-muted);
  opacity: 0.5;
}

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

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

.footer-email {
  font-size: 15px;
}

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

.back-to-top {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px;
}

.footer-bottom {
  background: #eae9f3;
  padding: 28px 0 36px;
}

.footer-bottom .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

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

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  list-style: none;
}

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

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

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
  max-width: 48rem;
  line-height: 1.5;
}

.page-hero {
  padding: 72px 0 48px;
}

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

.page-hero .lede {
  color: var(--text-muted);
  max-width: 42rem;
  font-size: 18px;
}

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

.legal-body .wrap {
  max-width: 800px;
}

.legal-body h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 48px 0 16px;
}

.legal-body h3 {
  margin: 28px 0 12px;
}

.legal-body p,
.legal-body li {
  color: var(--text);
  margin-bottom: 14px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.4em;
  margin-bottom: 20px;
}

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

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

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

.review-page {
  padding-bottom: var(--section-pad);
}

.review-header {
  padding: 64px 0 32px;
}

.review-header h1 {
  margin-bottom: 16px;
  max-width: 18ch;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 8px;
}

.review-lead {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0 40px;
  box-shadow: var(--shadow-lg);
  max-height: 620px;
}

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

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

.byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

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

.article-body {
  max-width: 720px;
  margin: 0 auto 72px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h3 {
  margin: 36px 0 14px;
  font-size: clamp(24px, 3vw, 30px);
}

.facts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 72px;
}

.fact-chip {
  background: rgba(75, 79, 176, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text);
}

.fact-chip strong {
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 4px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 0 72px;
}

.fact-tile {
  background: rgba(75, 79, 176, 0.07);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

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

.fact-tile strong {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.5px;
  font-weight: 500;
}

.editorial-section {
  margin-bottom: 72px;
}

.editorial-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}

.editorial-num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  color: rgba(75, 79, 176, 0.22);
  letter-spacing: -2px;
  line-height: 1;
  font-weight: 500;
}

.editorial-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
}

.split-surprise {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.split-surprise__icon {
  width: 88px;
  height: 88px;
  color: var(--accent);
}

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

.reason-item {
  position: relative;
  padding: 28px 24px 24px 28px;
  border-top: 1px solid var(--border);
}

.reason-num {
  font-family: var(--font-heading);
  font-size: 48px;
  color: rgba(75, 79, 176, 0.18);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.people-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.pull-quote {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.pull-quote cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  background: rgba(75, 79, 176, 0.1);
  color: var(--accent-2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

.verdict-list {
  list-style: none;
}

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

.verdict-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

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

.verdict-badge--minus {
  background: var(--text-muted);
}

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

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

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

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

.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
}

.access-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.access-row .label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

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

.qa-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.qa-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

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

.around-block {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.around-block p + p {
  margin-top: 16px;
}

.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.season-cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.season-cell:last-child {
  border-right: none;
}

.season-cell svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 auto 12px;
}

.season-cell h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.season-cell p {
  font-size: 14px;
  color: var(--text-muted);
}

.star-verdict {
  max-width: 40rem;
}

.star-verdict .display-line {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--accent);
  margin: 28px 0;
}

.guest-reviews {
  margin-bottom: 80px;
}

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

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

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

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

.guest-card--highlight {
  background: var(--secondary);
  color: var(--on-accent);
}

.guest-card--highlight .guest-meta,
.guest-card--highlight .guest-photo-caption {
  color: rgba(255, 255, 255, 0.7);
}

.guest-card--highlight .stars {
  color: #f0d78c;
}

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(75, 79, 176, 0.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.guest-card--highlight .guest-avatar {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.guest-card blockquote {
  font-size: 15px;
  line-height: 1.6;
}

.guest-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 13px;
  color: var(--text-muted);
}

.guest-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 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: 140px;
  height: 100px;
  object-fit: cover;
  display: block;
}

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

.carousel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.carousel-mark {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 0.6;
  color: rgba(75, 79, 176, 0.18);
  position: absolute;
  top: 28px;
  left: 36px;
}

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

.carousel-slide {
  display: none;
  flex-direction: column;
  gap: 20px;
}

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

.carousel-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.4px;
}

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

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

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

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

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

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

.reserve-cta {
  background: var(--secondary);
  color: var(--on-accent);
  border-radius: var(--radius);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}

.reserve-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.reserve-cta .address {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.reserve-cta iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
  margin-bottom: 28px;
  background: #ddd;
}

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

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

.author-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  scroll-margin-top: 120px;
}

.author-card .monogram {
  width: 88px;
  height: 88px;
  font-size: 28px;
}

.author-card .role {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 6px 0 16px;
}

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

.author-card .articles h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  letter-spacing: 0;
  font-weight: 600;
}

.author-card .articles ul {
  list-style: none;
}

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

.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.reserve-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.hotel-indicator {
  background: rgba(75, 79, 176, 0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

.form-field label {
  font-size: 14px;
  font-weight: 600;
}

.form-field input {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
}

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

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

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

.agree-row input[aria-invalid="true"] {
  outline: 2px solid #b03a4a;
  outline-offset: 2px;
}

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

.agree-error {
  color: #b03a4a;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
  grid-column: 1 / -1;
}

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

.form-actions {
  grid-column: 1 / -1;
  margin-top: 12px;
}

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

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

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

.processing-panel {
  display: none;
}

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

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

.processing-summary {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  font-size: 14px;
}

.processing-summary dt {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.processing-summary dd {
  margin: 2px 0 0;
  font-weight: 600;
}

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

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

.consent-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.consent-copy h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

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

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

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

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

.consent-actions .btn {
  font-size: 13px;
  padding: 12px 20px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(16, 17, 39, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

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

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

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

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

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

@media (max-width: 1024px) {
  :root {
    --section-pad: 96px;
  }

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

  .hero-visual {
    max-height: 420px;
    aspect-ratio: 16 / 10;
    order: -1;
  }

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

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

  .authors-teaser {
    grid-template-columns: 1fr;
  }

  .authors-teaser__link {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .split-surprise {
    grid-template-columns: 1fr;
  }

  .people-split {
    grid-template-columns: 1fr;
  }

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

  .consent-inner {
    grid-template-columns: 1fr;
  }

  .season-strip {
    grid-template-columns: 1fr 1fr;
  }

  .season-cell:nth-child(2) {
    border-right: none;
  }

  .season-cell:nth-child(1),
  .season-cell:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .guest-grid-3,
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: none;
  }

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

  .nav-links .btn {
    margin-left: 0;
    width: 100%;
  }

  .nav-main {
    position: relative;
  }

  .hotel-grid,
  .quote-grid,
  .guest-grid-3,
  .qa-grid,
  .reasons-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .masonry {
    columns: 1;
  }

  .editorial-head {
    flex-direction: column;
    gap: 8px;
  }

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

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

  .carousel {
    padding: 40px 24px;
  }

  .reserve-cta {
    padding: 40px 24px;
  }
}

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

  .hero {
    padding-top: 48px;
  }

  .utility-bar {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .brand-name {
    font-size: 16px;
  }

  .season-strip {
    grid-template-columns: 1fr;
  }

  .season-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .season-cell:last-child {
    border-bottom: none;
  }

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

.hero-visual--logo {
  aspect-ratio: 1 / 1;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #101127, #4b4fb0);
  padding: 48px;
}

.hero-visual--logo img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
