:root {
  --bg: #edf3f6;
  --surface: #ffffff;
  --surface-alt: #edf3f6;
  --text: #08222b;
  --text-muted: #476069;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #0a86a8;
  --accent-2: #076780;
  --secondary: #051a20;
  --on-accent: #ffffff;
  --radius: 8px;
  --radius-btn: 6px;
  --shadow: 0 10px 30px rgba(8, 34, 43, 0.08);
  --font-heading: Constantia, "Palatino Linotype", Georgia, serif;
  --font-body: Corbel, "Lucida Grande", "Segoe UI", sans-serif;
  --max: 1040px;
  --section-pad: 120px;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

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

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

h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 3.8vw, 40px);
}

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

p {
  margin: 0 0 1.1em;
}

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

ul,
ol {
  margin: 0 0 1.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: 5px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  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.3;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

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

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.btn-secondary:hover {
  background: rgba(10, 134, 168, 0.08);
  color: var(--accent-2);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

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

.utility-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 8px 0;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

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

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

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

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

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

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  padding: 88px 0 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 134, 168, 0.14), transparent 70%),
    linear-gradient(180deg, #e4eef3 0%, var(--bg) 100%);
}

.hero .kicker {
  margin-bottom: 16px;
}

.hero h1 {
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 18px;
}

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

.hero-media {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.hero-media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(10, 134, 168, 0.18), transparent 70%),
    linear-gradient(160deg, #d7e6ec 0%, var(--surface) 55%, #e4eef2 100%);
  box-shadow: var(--shadow);
  min-height: 220px;
  padding: 40px 24px;
}

.hero-media-logo img {
  width: min(180px, 42vw);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

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

.section-head {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 56px;
}

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

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

.hotel-card {
  display: grid;
  grid-template-columns: minmax(200px, 38%) 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  align-items: stretch;
}

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

.hotel-card-body {
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  text-align: left;
}

.hotel-card-body h3 {
  margin-bottom: 8px;
}

.hotel-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

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

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

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

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

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

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 134, 168, 0.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

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

.icon-list-row h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

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

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

.method-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  text-align: center;
}

.method-card .icon-circle {
  margin: 0 auto 18px;
  width: 64px;
  height: 64px;
}

.method-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

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

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--accent-2);
  line-height: 1.1;
}

.stat-label {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 0 22px;
  color: var(--text-muted);
}

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

.author-teaser {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  text-align: center;
}

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

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

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

.authors-teaser-link {
  text-align: center;
}

.featured-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}

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

.featured-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px 28px;
  background:
    radial-gradient(ellipse 55% 70% at 50% 30%, rgba(10, 134, 168, 0.16), transparent 70%),
    var(--surface-alt);
}

.featured-mark img {
  width: 96px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.featured-mark span {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.featured-card-body .stars {
  margin: 8px 0 12px;
}

.featured-card-body p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.cta-band {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(10, 134, 168, 0.16), transparent 65%),
    linear-gradient(135deg, #dce8ee 0%, var(--bg) 55%, #e8f1f4 100%);
  text-align: center;
}

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

.footer-main {
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}

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

.footer-brand {
  max-width: 320px;
}

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

.footer-blurb {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 10px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  max-width: 620px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.footer-requisites {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom {
  background: #e4ecf0;
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

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

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

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

.page-hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%, rgba(10, 134, 168, 0.1), transparent 70%),
    var(--bg);
}

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

.page-hero .lede {
  color: var(--text-muted);
  max-width: 40em;
}

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

.legal-content .container {
  max-width: 800px;
}

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

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

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 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);
}

.review-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.review-meta-row h1 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin: 0;
  width: 100%;
  margin-bottom: 4px;
}

.meta-sep {
  opacity: 0.45;
}

.byline {
  text-align: center;
  margin: 36px auto 48px;
  max-width: 420px;
}

.byline .monogram {
  width: 56px;
  height: 56px;
  font-size: 18px;
}

.byline-name {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 6px;
}

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

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

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

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

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

.article-figure {
  margin: 36px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-figure figcaption {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 4px 0;
}

.mid-cta {
  margin: 56px auto;
  max-width: var(--max);
  width: min(100% - 40px, var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mid-cta p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
}

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

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

.narrow-center {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.facts-strip {
  margin: 28px 0 0;
}

.facts-strip .kicker {
  margin-bottom: 10px;
}

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

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

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

.facts-cell .value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}

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

.facts-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(10, 134, 168, 0.08);
  padding: 24px;
  border-radius: var(--radius);
}

.facts-tile {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.facts-tile svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.facts-tile .kicker {
  margin-bottom: 4px;
  font-size: 11px;
}

.facts-tile strong {
  font-size: 16px;
}

.score-band {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(10, 134, 168, 0.1);
  border-radius: var(--radius);
  padding: 36px;
}

.score-band .score-big {
  text-align: center;
}

.score-band .score-num {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  color: var(--accent-2);
}

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

.reason-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.reason-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

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

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

.audience-tile {
  background: rgba(10, 134, 168, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

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

.audience-tile p {
  margin: 0;
  font-size: 15px;
}

.tinted-band {
  background: rgba(10, 134, 168, 0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.verdict-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.verdict-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-accent);
}

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

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

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

.two-step-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

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

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

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

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

.evening-rule {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  max-width: 640px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.7;
}

.not-for-rows {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

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

.not-for-row svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

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

.order-again {
  background: rgba(10, 134, 168, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 20px;
}

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

.accordion-native summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  position: relative;
}

.accordion-native summary::-webkit-details-marker {
  display: none;
}

.accordion-native summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.accordion-native details[open] summary::after {
  content: "×";
  transform: translateY(-50%) rotate(0deg);
}

.accordion-native .acc-body {
  padding: 0 0 18px;
  color: var(--text-muted);
}

.people-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.people-heading svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.moon-band {
  background: rgba(5, 26, 32, 0.06);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
}

.moon-band svg {
  width: 32px;
  height: 32px;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.moon-band .narrow-center {
  text-align: left;
}

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

.note-block {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.note-block strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

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

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

.chip {
  background: rgba(10, 134, 168, 0.12);
  color: var(--accent-2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.pull-accent {
  color: var(--accent);
  font-weight: 600;
}

.verdict-line {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  text-align: center;
  margin: 28px 0;
  letter-spacing: -0.3px;
}

.season-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}

.season-table div {
  padding: 20px;
  background: var(--surface);
}

.season-table div:first-child {
  border-right: 1px solid var(--border);
}

.season-table strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.theme-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.theme-pill {
  background: rgba(10, 134, 168, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
}

.guest-reviews {
  padding: var(--section-pad) 0;
  background: var(--surface-alt);
}

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

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

.guest-card.highlighted {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

.guest-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

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

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

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

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

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

.reviews-snap-wrap {
  position: relative;
}

.reviews-snap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 16px;
}

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

.reviews-snap .guest-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
}

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

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

.snap-nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.guest-masonry {
  columns: 3;
  column-gap: 20px;
}

.guest-masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-flex;
  width: 100%;
}

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.guest-masonry .guest-card {
  flex-direction: column;
}

.reserve-cta-block {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 80%, rgba(10, 134, 168, 0.14), transparent 65%),
    var(--bg);
}

.reserve-cta-block h2 {
  margin-bottom: 12px;
}

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

.map-embed {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  height: 360px;
  margin-bottom: 28px;
  background: var(--surface);
}

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

.review-layout-with-rail .article-body {
  margin: 0;
  max-width: none;
}

.facts-aside {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

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

.facts-aside .facts-cell {
  border-right: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

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

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

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

.author-card .monogram {
  margin: 0;
  width: 72px;
  height: 72px;
}

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

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

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

.reserve-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
}

.hotel-indicator {
  background: rgba(10, 134, 168, 0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

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

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

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

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

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

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

.agree-error {
  color: #9b1c1c;
  font-size: 13px;
  margin-top: 6px;
  grid-column: 1 / -1;
}

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

.submit-error {
  color: #9b1c1c;
  font-size: 14px;
  margin-top: 12px;
}

.processing-panel {
  text-align: left;
}

.processing-panel .summary {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
  font-size: 15px;
}

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

.processing-panel .summary dt:first-child {
  margin-top: 0;
}

.processing-panel .summary dd {
  margin: 2px 0 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 26, 32, 0.88);
  z-index: 1000;
  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: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-size: 14px;
}

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

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

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

.hotel-grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.hotel-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.hotel-grid .reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.hotel-grid .reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.hotel-grid .reveal:nth-child(5) {
  transition-delay: 0.33s;
}

.method-grid .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.method-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.method-grid .reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.method-grid .reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.consent-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(400px, calc(100% - 40px));
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(8, 34, 43, 0.18);
  z-index: 900;
  overflow: hidden;
}

.consent-banner::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--accent);
}

.consent-inner {
  padding: 22px 22px 18px;
}

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

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

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

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

.consent-manage-btn {
  background: none;
  border: none;
  color: var(--accent-2);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-cats {
  display: none;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.consent-cats.is-open {
  display: block;
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
}

.consent-cat label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.consent-cat small {
  color: var(--text-muted);
  font-size: 12px;
}

.consent-policy {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}

.visually-hidden {
  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;
  }

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

  .reason-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .guest-masonry {
    columns: 2;
  }

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

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

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

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

  .facts-aside .facts-cell {
    border-bottom: none;
    border-right: 1px solid var(--border);
    text-align: center;
  }
}

@media (max-width: 900px) {
  .facts-aside {
    order: -1;
  }
}

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

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

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

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 14px 4px;
  }

  .site-header {
    position: relative;
  }

  .site-header.is-fixed-nav {
    position: sticky;
  }

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

  .hotel-card-media img {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .score-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .two-step-connector::after {
    right: -4px;
    top: auto;
    bottom: -2px;
    border: 5px solid transparent;
    border-top-color: var(--accent);
    border-left-color: transparent;
  }

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

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

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

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

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

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

  .guest-masonry {
    columns: 1;
  }

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

  .author-card .monogram {
    margin: 0 auto;
  }

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

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

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

  .audience-grid,
  .notes-grid,
  .facts-grid-2x2,
  .season-table {
    grid-template-columns: 1fr;
  }

  .season-table div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .reason-cards {
    grid-template-columns: 1fr;
  }
}

@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: 56px;
  }

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

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

  .hero {
    padding: 56px 0 32px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

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

  .facts-cells,
  .facts-aside .facts-cells {
    grid-template-columns: 1fr;
  }

  .facts-cell,
  .facts-aside .facts-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

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

  .mid-cta {
    flex-direction: column;
    text-align: center;
  }

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

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