:root {
  --bg: #eef1f7;
  --surface: #ffffff;
  --surface-alt: #eef1f7;
  --text: #101a30;
  --text-muted: #4f5c78;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #2456c0;
  --accent-2: #e0623f;
  --secondary: #0a1122;
  --on-accent: #ffffff;
  --radius: 0px;
  --radius-btn: 6px;
  --font-heading: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Georgia, serif;
  --font-body: Candara, 'Segoe UI', system-ui, sans-serif;
  --max: 1160px;
  --section-pad: 104px;
  --header-h: 72px;
}

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

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

html {
  scroll-behavior: smooth;
  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: 600;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

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

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

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

p {
  margin: 0 0 1em;
}

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

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

.kicker {
  display: block;
  font-family: var(--font-body);
  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: 14px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.btn-accent2 {
  background: var(--accent-2);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-solid {
  background: rgba(238, 241, 247, 0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
}

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

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  position: relative;
}

.nav-cta::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: transparent;
}

.nav-cta:hover::after,
.nav-cta.is-active::after {
  background: var(--on-accent);
}

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

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

.nav-panel {
  display: contents;
}

.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(36, 86, 192, 0.14), transparent 55%),
    linear-gradient(160deg, #e8ecf6 0%, var(--bg) 45%, #f5e9e4 100%);
  overflow: hidden;
}

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

.hero-copy .kicker {
  color: var(--accent-2);
}

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

.hero-visual {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--border);
  background: var(--secondary);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.92;
}

.hero-visual-logo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(36, 86, 192, 0.45), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(224, 98, 63, 0.35), transparent 45%),
    var(--secondary);
}

.hero-visual-logo img {
  width: 180px;
  height: 180px;
  min-height: 0;
  object-fit: contain;
  opacity: 1;
}

.stat-band {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.stat-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
}

.stat-item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

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

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

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

.hotel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.hotel-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--secondary);
}

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

.hotel-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 34, 0.78) 0%, rgba(10, 17, 34, 0.15) 55%, transparent 100%);
}

.hotel-card-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--on-accent);
}

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

.stars {
  letter-spacing: 2px;
  color: #f0c14b;
  font-size: 14px;
}

.hotel-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.voices {
  text-align: center;
}

.voices-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 48px 16px;
}

.voices-mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 12px;
}

.voice-slide {
  display: none;
}

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

.voice-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin: 0 0 20px;
  color: var(--text);
}

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

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

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

.voices-dots button,
.voices-nav {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-btn);
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
}

.voices-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: var(--border);
}

.voices-dots button.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.faq-intro p {
  color: var(--text-muted);
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.accordion-btn span:last-child {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.accordion-panel {
  display: none;
  padding: 0 4px 20px;
  color: var(--text-muted);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.accordion-item.is-open .accordion-btn span:last-child {
  transform: rotate(45deg);
  display: inline-block;
}

.featured-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-visual {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(36, 86, 192, 0.92), rgba(10, 17, 34, 0.92)),
    var(--secondary);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.4px;
  padding: 24px;
  text-align: center;
}

.featured-body {
  padding: 32px 28px 36px;
}

.featured-body p {
  color: var(--text-muted);
}

.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 48px 0;
}

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

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

.dest-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-image:
    linear-gradient(145deg, rgba(36, 86, 192, 0.08), transparent 60%),
    linear-gradient(to bottom, var(--surface), var(--surface-alt));
}

.dest-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(36, 86, 192, 0.1);
  color: var(--accent);
}

.dest-card h3 {
  margin: 0;
  font-size: 22px;
}

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

.site-footer {
  background: #141c2e;
  color: #d5dbe8;
  margin-top: 0;
}

.site-footer a {
  color: #d5dbe8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-main {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 0 28px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.footer-brand .brand {
  color: #ffffff;
}

.footer-blurb {
  font-size: 14px;
  line-height: 1.65;
  color: #aeb6c8;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  max-width: 720px;
  font-size: 14px;
}

.footer-bottom {
  background: #0d1320;
}

.footer-legal-tier {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-copy-tier {
  text-align: center;
  padding: 14px 0 10px;
  font-size: 13px;
  color: #9aa3b5;
}

.footer-requisites {
  text-align: center;
  padding: 0 0 22px;
  font-size: 12px;
  color: #7f889b;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero {
  padding: calc(var(--header-h) + 56px) 0 56px;
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(224, 98, 63, 0.12), transparent 50%),
    linear-gradient(180deg, #e5eaf5, var(--bg));
}

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

.page-hero p {
  color: var(--text-muted);
  max-width: 38em;
  margin: 0;
}

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

.legal-content .container {
  max-width: 820px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
}

.legal-content h1 {
  font-size: clamp(32px, 4vw, 44px);
}

.legal-content h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-top: 1.6em;
}

.legal-content h3 {
  margin-top: 1.3em;
}

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

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

.legal-content th {
  background: var(--surface-alt);
}

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

.author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.monogram {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.author-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.author-articles {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.author-articles li {
  margin-bottom: 6px;
}

.reserve-wrap {
  display: grid;
  gap: 28px;
  max-width: 640px;
}

.reserve-hotel {
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 16px;
}

.reserve-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
}

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

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

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

.form-field input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font: inherit;
  background: var(--surface-alt);
  color: var(--text);
}

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

.agree-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

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

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

.agree-row.is-error input,
.agree-row input[aria-invalid="true"] {
  outline: 2px solid var(--accent-2);
}

.agree-error,
.form-error {
  color: var(--accent-2);
  font-size: 13px;
  margin: 0;
}

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

.processing-panel {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
}

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

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

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

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

.review-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 34, 0.88) 0%, rgba(10, 17, 34, 0.35) 45%, rgba(10, 17, 34, 0.2) 100%);
}

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

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

.review-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}

.review-standfirst {
  max-width: 680px;
  margin: 36px auto 0;
  padding: 0 20px;
  font-size: 19px;
  color: var(--text-muted);
}

.byline-bar {
  margin: 36px auto 0;
  width: min(100% - 40px, var(--max));
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.byline-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.byline-left .monogram {
  width: 42px;
  height: 42px;
  font-size: 14px;
}

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

.pull-quote {
  width: min(100% - 40px, 820px);
  margin: 48px auto;
  padding: 0 20px;
}

.pull-quote blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: var(--text);
}

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

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

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

.review-section {
  padding: 56px 0;
  background: var(--bg);
}

.review-section .container > .rule-kicker {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.rule-kicker .kicker {
  margin-bottom: 8px;
}

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

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

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

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

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

.facts-strip {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 8px;
  padding: 18px 0 8px;
}

.facts-defs {
  width: 100%;
  border-collapse: collapse;
}

.facts-defs th,
.facts-defs td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-weight: 400;
}

.facts-defs th {
  color: var(--text-muted);
  width: 40%;
  font-size: 14px;
}

.facts-cells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 28px;
}

.facts-cell {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.facts-cell:last-child {
  border-right: 0;
}

.facts-cell strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 6px;
}

.facts-cell span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.review-layout.has-rail {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.facts-rail {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

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

.score-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

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

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

.takeaway-block .takeaway {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
}

.takeaway-block p {
  color: var(--text-muted);
  margin: 0;
}

.season-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

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

.season-table th {
  background: var(--surface-alt);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.icon-verdicts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

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

.icon-verdict strong {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.icon-verdict span {
  display: block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 18px;
  margin-top: 4px;
}

.panel-list {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 24px 28px;
  line-height: 1.85;
}

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

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

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

.around-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: start;
}

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

.chip {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.tinted-band {
  background: rgba(36, 86, 192, 0.08);
  border: 1px solid var(--border);
  padding: 28px;
}

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

.score-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(36, 86, 192, 0.08);
  border: 1px solid var(--border);
  padding: 28px;
}

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

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

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

.qa-grid .qa-q {
  font-weight: 700;
  margin-bottom: 6px;
}

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

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

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

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

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

.badge-plus,
.badge-minus {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--border);
}

.badge-plus {
  color: var(--accent);
  background: rgba(36, 86, 192, 0.08);
}

.badge-minus {
  color: var(--accent-2);
  background: rgba(224, 98, 63, 0.08);
}

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

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

.theme-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(36, 86, 192, 0.1);
  margin-bottom: 12px;
  color: var(--accent);
}

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

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

.caution-aside {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 24px;
}

.caution-aside h3 {
  color: var(--text-muted);
  font-size: 16px;
}

.guest-reviews {
  padding: 56px 0;
}

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

.guest-stack .stars {
  text-align: right;
}

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

.guest-quote {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

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

.guest-photo-btn {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  display: block;
}

.guest-photo-btn img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.guest-photos:has(.guest-photo-btn:only-of-type) .guest-photo-btn img {
  width: min(420px, 100%);
  height: auto;
  max-height: 280px;
}

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

.guest-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.guest-featured {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guest-featured .guest-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.4;
}

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

.guest-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guest-side .guest-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.guest-cols .guest-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-cols .guest-card.is-highlight {
  border-color: var(--accent);
  background: rgba(36, 86, 192, 0.05);
}

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

.reserve-cta {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(224, 98, 63, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg), #e4e9f4);
  border-top: 1px solid var(--border);
}

.reserve-cta-inner {
  display: grid;
  gap: 20px;
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  background: var(--surface);
}

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

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

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

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

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

.lightbox-caption {
  color: #dfe5f2;
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 22px;
}

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1500;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px;
  color: var(--text);
}

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

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

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

.consent-cats {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.consent-cat {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
}

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

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

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

@media (max-width: 1024px) {
  .hotel-grid,
  .dest-grid,
  .theme-grid,
  .reason-cards,
  .guest-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .faq-split,
  .review-layout.has-rail,
  .around-split,
  .case-split,
  .guest-two-col,
  .score-band {
    grid-template-columns: 1fr;
  }

  .facts-rail {
    position: static;
  }

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

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

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

  .nav-panel {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 20px;
  }

  .nav-panel.is-open {
    display: block;
  }

  .nav-panel .nav-cta {
    width: 100%;
  }

  .stat-band-inner,
  .stats-strip-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .hotel-grid,
  .dest-grid,
  .qa-grid,
  .icon-verdicts,
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-row {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .voices-carousel {
    padding: 16px 8px;
  }
}

@media (max-width: 480px) {
  .container,
  .review-hero-content,
  .byline-bar,
  .review-layout,
  .facts-strip {
    width: min(100% - 28px, var(--max));
  }

  .hotel-grid,
  .guest-cols,
  .theme-grid,
  .reason-cards,
  .facts-cells {
    grid-template-columns: 1fr;
  }

  .legal-content .container {
    padding: 24px 18px;
  }

  .consent-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px;
  }

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