:root {
  --bg: #eef2fb;
  --surface: #ffffff;
  --surface-alt: #eef2fb;
  --text: #131a34;
  --text-muted: #54608a;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #2455a4;
  --accent-2: #193f7d;
  --secondary: #0e1428;
  --on-accent: #ffffff;
  --radius: 4px;
  --radius-pill: 999px;
  --font-heading: Baskerville, "Baskerville Old Face", "Hoefler Text", Georgia, serif;
  --font-body: Candara, "Segoe UI", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(14, 20, 40, 0.06), 0 2px 8px rgba(14, 20, 40, 0.04);
  --shadow-lg: 0 8px 24px rgba(14, 20, 40, 0.12), 0 2px 8px rgba(14, 20, 40, 0.06);
  --max: 1200px;
  --section-pad: 128px;
  --paper: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(15, 17, 26, 0.012) 3px,
    rgba(15, 17, 26, 0.012) 4px
  );
}

*,
*::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);
  background-image: var(--paper);
  -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: 400;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.5vw, 48px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

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

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

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.is-over-hero:not(.is-solid) {
  background: transparent;
}

.nav-inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.4px;
  flex-shrink: 0;
}

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

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

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

.hero {
  padding: 140px 0 0;
  background: linear-gradient(165deg, #d9e3f7 0%, var(--bg) 45%, #f7f9fd 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

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

.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 auto 2rem;
  max-width: 560px;
}

.hero__band {
  width: min(100% - 40px, var(--max));
  margin: 56px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero__band img {
  width: 100%;
  height: clamp(220px, 42vw, 480px);
  object-fit: cover;
  object-position: center;
}

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

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

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

.hotel-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-alt);
}

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

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

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

.hotel-card__name {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.4px;
}

.hotel-card__blurb {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 8px;
  flex: 1;
}

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

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

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
}

.marquee__item {
  flex: 0 0 auto;
  max-width: 340px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  color: var(--text-muted);
}

.marquee__item strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.feature-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.feature-split__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-split__quote {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin: 0 0 1.25rem;
}

.manifesto {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.manifesto__mission {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 1.5rem;
}

.manifesto__lead {
  max-width: 540px;
  margin-inline: auto;
  color: var(--text-muted);
  text-align: center;
}

.destinations {
  background: linear-gradient(180deg, rgba(36, 85, 164, 0.08), transparent);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  border: 1px solid var(--border);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: calc(100% - 56px);
  left: calc(50% + 28px);
  height: 1px;
  background: var(--border);
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

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

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

.trust-list {
  max-width: 720px;
  margin-inline: auto;
}

.trust-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

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

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(36, 85, 164, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

.footer-col h3,
.footer-acc summary {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  margin: 0 0 16px;
  list-style: none;
  cursor: default;
}

.footer-col h3::after,
.footer-acc summary::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

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

.footer-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.footer-acc summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  background: none;
  margin: 0 4px 4px 0;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.footer-acc[open] summary::after {
  transform: rotate(-135deg);
  margin-bottom: 0;
  margin-top: 4px;
}

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

.footer-acc ul {
  padding: 12px 0 8px;
}

.footer-col a,
.footer-acc a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
}

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

.footer-acc {
  display: none;
}

.footer-bottom {
  background: #e6ebf6;
  border-top: 1px solid var(--border);
}

.footer-bottom-upper {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

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

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

.footer-affiliate {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-lower {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 14px 0 28px;
  border-top: 1px solid var(--border);
}

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

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

.page-hero {
  padding: 120px 0 48px;
  background: linear-gradient(180deg, #dce6f7, var(--bg));
  border-bottom: 1px solid var(--border);
}

.page-hero--compact {
  padding-bottom: 32px;
}

.prose {
  max-width: 720px;
}

.prose--narrow {
  max-width: 560px;
}

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

.legal-body h1 {
  margin-bottom: 0.4em;
}

.legal-body h2 {
  margin-top: 2.2em;
  font-size: clamp(24px, 3vw, 32px);
}

.legal-body h3 {
  margin-top: 1.6em;
  font-size: 20px;
}

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

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

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

.review-header {
  padding: 120px 0 40px;
  text-align: center;
}

.review-header .stars {
  margin: 12px 0;
  font-size: 18px;
}

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

.review-lead {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.review-lead img {
  width: 100%;
  height: clamp(260px, 48vw, 560px);
  object-fit: cover;
}

.byline {
  text-align: center;
  padding: 8px 0 40px;
}

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

.byline__name {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 0 0 6px;
}

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

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

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

.article-flow {
  width: min(100% - 40px, 720px);
  margin-inline: auto;
  padding-bottom: 48px;
}

.article-flow h3 {
  margin-top: 1.8em;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin: 0 auto 48px;
  width: min(100% - 40px, var(--max));
}

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

.facts-row__cell:last-child {
  border-right: none;
}

.facts-row__value {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.facts-row__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.facts-chips {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 40px;
  padding: 18px 22px;
  background: rgba(36, 85, 164, 0.06);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.facts-chips .kicker {
  margin-bottom: 12px;
}

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

.facts-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.facts-chip strong {
  color: var(--text);
  font-weight: 600;
}

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

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

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

.facts-aside li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

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

.review-layout-rail {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.review-layout-rail .facts-aside {
  position: sticky;
  top: 96px;
}

.content-sections {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 24px 0 64px;
}

.ed-section {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.ed-section__num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: rgba(84, 96, 138, 0.35);
  line-height: 1;
  letter-spacing: -1px;
}

.ed-section__body h2 {
  margin-top: 0;
  font-size: clamp(26px, 3.5vw, 36px);
}

.takeaway {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
}

.takeaway + p {
  color: var(--text-muted);
}

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

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

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

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

.tick-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

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

.access-rows {
  display: grid;
  gap: 0;
}

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

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

.access-row strong {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.audience-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-card {
  text-align: center;
  padding: 22px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.audience-card svg {
  margin: 0 auto 10px;
  color: var(--accent);
}

.audience-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

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

.guest-block {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.guest-block h2 {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 40px;
}

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

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

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

.quote-row > .stars {
  align-self: flex-end;
}

.quote-row__meta {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 12px;
  margin-top: auto;
  font-size: 14px;
  color: var(--text-muted);
}

.quote-row blockquote {
  margin: 0;
  font-size: 16px;
}

.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: var(--radius);
  overflow: hidden;
  display: block;
}

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

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

.carousel {
  width: min(100% - 40px, 800px);
  margin-inline: auto;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 48px 36px;
  box-shadow: var(--shadow-sm);
  min-height: 280px;
}

.carousel__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: rgba(36, 85, 164, 0.2);
  position: absolute;
  top: 24px;
  left: 28px;
}

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

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

.carousel__slide blockquote {
  margin: 0;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  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__nav {
  display: flex;
  gap: 8px;
}

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

.masonry {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  columns: 3;
  column-gap: 20px;
}

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

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(36, 85, 164, 0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.quote-grid {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.quote-card.is-highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #f4f7fd, var(--surface));
}

.quote-card blockquote {
  margin: 0;
  font-size: 15px;
}

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

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

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

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

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

.snap-card blockquote {
  margin: 0;
  font-size: 15px;
}

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

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

.snap-arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.reserve-cta {
  width: min(100% - 40px, var(--max));
  margin: 0 auto var(--section-pad);
  padding: 48px;
  background: var(--secondary);
  color: var(--on-accent);
  border-radius: var(--radius);
}

.reserve-cta h2 {
  color: var(--on-accent);
  margin-bottom: 12px;
}

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

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

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

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

.reserve-cta .btn:hover {
  background: #d9e3f7;
  color: var(--secondary);
}

.numbered-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.numbered-step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.numbered-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 28px);
  right: 0;
  height: 1px;
  background: var(--border);
}

.two-step {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 12px;
  align-items: stretch;
}

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

.two-step__panel strong {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.two-step__conn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
}

.scale-track {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}

.scale-bar {
  height: 12px;
  background: var(--surface-alt);
  border-radius: var(--radius-pill);
  position: relative;
  border: 1px solid var(--border);
}

.scale-bar__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
  border-radius: var(--radius-pill);
}

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

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

.acc-list details {
  border-bottom: 1px solid var(--border);
}

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

.acc-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.acc-list summary::-webkit-details-marker {
  display: none;
}

.acc-list summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}

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

.acc-list details p {
  color: var(--text-muted);
  padding-bottom: 18px;
  margin: 0;
}

.panel-stack {
  display: grid;
  gap: 16px;
}

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

.panel--accent {
  background: rgba(36, 85, 164, 0.08);
}

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

.panel h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.panel ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--text-muted);
}

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

.pill {
  background: rgba(36, 85, 164, 0.1);
  color: var(--accent-2);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.aside-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  max-width: 480px;
}

.aside-panel h3 {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 12px;
}

.aside-panel ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--text-muted);
}

.meters {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
}

.meters__score {
  text-align: center;
}

.meters__score strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}

.meter {
  margin-bottom: 14px;
}

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

.meter__track {
  height: 8px;
  background: var(--surface-alt);
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid var(--border);
}

.meter__fill {
  height: 100%;
  background: var(--accent);
}

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

.addr-panel {
  background: rgba(36, 85, 164, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.addr-panel address {
  font-style: normal;
  line-height: 1.6;
}

.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: 24px;
  box-shadow: var(--shadow-sm);
}

.standout-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(36, 85, 164, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.standout-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

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

.narrow-accent {
  max-width: 520px;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  color: var(--text-muted);
}

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

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

.note-block strong {
  display: block;
  margin-bottom: 6px;
}

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

.quiet-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 640px;
  margin-left: 40px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.dropcap::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 68px;
  line-height: 0.8;
  padding-right: 10px;
  color: var(--accent);
}

.icon-list {
  display: grid;
  gap: 0;
}

.icon-list__row {
  display: grid;
  grid-template-columns: 44px 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 {
  font-size: 18px;
  margin: 0 0 4px;
}

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

.authors-grid {
  display: grid;
  gap: 32px;
}

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

.author-card__mono {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
}

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

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

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

.author-articles h3 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 8px;
}

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

.reserve-page {
  padding: 120px 0 var(--section-pad);
}

.reserve-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.hotel-indicator {
  background: rgba(36, 85, 164, 0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 15px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
}

.form-row input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  background: var(--surface);
  color: var(--text);
}

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

.agree-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 4px;
}

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

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

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

.agree-error {
  grid-column: 2;
  color: #b42318;
  font-size: 13px;
  margin: 0;
  display: none;
}

.agree-row[data-error="1"] .agree-error {
  display: block;
}

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

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

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

.processing-panel {
  display: none;
}

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

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

.summary-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin: 20px 0;
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(14, 20, 40, 0.82);
  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-inline: auto;
}

.lightbox__caption {
  color: #fff;
  margin-top: 12px;
  font-size: 14px;
}

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

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: min(380px, calc(100vw - 32px));
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: none;
}

.consent-banner.is-visible {
  display: block;
}

.consent-banner p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
}

.consent-banner a {
  color: #9ec0ff;
}

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

.consent-actions button {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 10px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.consent-actions button:hover,
.consent-actions button:focus-visible {
  background: #fff;
  color: var(--secondary);
  outline: none;
}

.consent-actions button:focus-visible {
  outline: 2px solid #9ec0ff;
  outline-offset: 2px;
}

.consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 320;
  background: rgba(14, 20, 40, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.consent-dialog__panel {
  width: min(420px, 100%);
  background: var(--secondary);
  color: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.consent-dialog__panel h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}

.consent-cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
}

.consent-cat p {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.consent-cat label {
  font-weight: 600;
  font-size: 14px;
}

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

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

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

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

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

  .feature-split,
  .destinations,
  .why-split,
  .neighbour-split,
  .loc-split,
  .scale-track,
  .meters,
  .review-layout-rail {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .audience-row,
  .standout-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry {
    columns: 2;
  }

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

  .facts-row__cell:nth-child(2) {
    border-right: none;
  }

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

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

  .quiet-panel {
    margin-left: 0;
  }
}

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 28px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    display: none;
    box-shadow: var(--shadow-lg);
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col {
    display: none;
  }

  .footer-acc {
    display: block;
  }

  .hotel-grid,
  .audience-row,
  .standout-grid,
  .quote-grid,
  .note-grid,
  .numbered-steps {
    grid-template-columns: 1fr;
  }

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

  .masonry {
    columns: 1;
  }

  .two-step {
    grid-template-columns: 1fr;
  }

  .two-step__conn {
    transform: rotate(90deg);
    height: 24px;
  }

  .ed-section {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .destinations {
    padding: 28px;
  }

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

  .numbered-step:not(:last-child)::after {
    display: none;
  }
}

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

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

  .container,
  .nav-inner,
  .hero__inner,
  .hero__band,
  .review-lead,
  .facts-row,
  .facts-chips,
  .content-sections,
  .guest-block h2,
  .quote-stack,
  .quote-grid,
  .masonry,
  .snap-wrap,
  .reserve-cta,
  .footer-main,
  .footer-bottom-upper,
  .footer-bottom-lower,
  .footer-affiliate {
    width: min(100% - 28px, var(--max));
  }

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

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

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

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

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

  .rating-unpack,
  .scale-track,
  .meters {
    grid-template-columns: 1fr;
  }

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

  .reserve-card {
    padding: 28px 20px;
  }

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