:root {
  --bg: #060814;
  --surface: #0e1224;
  --surface-alt: #161d38;
  --text: #e5eafc;
  --text-muted: #8c96bf;
  --border: rgba(59, 130, 246, 0.20);
  --accent: #3b82f6;
  --accent-2: #1d4ed8;
  --secondary: #f59e0b;
  --on-accent: #ffffff;
  --deep: #03040d;
  --radius: 16px;
  --radius-btn: 10px;
  --font-heading: 'Segoe UI Semibold', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --content: 1040px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(3, 4, 13, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(59, 130, 246, 0.12);
  --section-pad: 120px;
}

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

html {
  scroll-behavior: smooth;
}

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

iframe {
  max-width: 100%;
  border: 0;
}

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

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

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

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

.kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

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

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

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

.band-deep {
  background: var(--deep);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 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;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

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

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

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

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

.utility-bar {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 8px 0;
}

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

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

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.brand:hover {
  color: var(--text);
}

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

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

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

.nav-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 420px);
  height: auto;
  object-fit: contain;
  opacity: 0.12;
  filter: saturate(0.8);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 18%, rgba(6, 8, 20, 0.82) 55%, rgba(6, 8, 20, 0.55) 100%),
    linear-gradient(180deg, rgba(6, 8, 20, 0.35), var(--bg));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(59, 130, 246, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(3, 4, 13, 0.2), transparent 70%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 720px;
  padding-bottom: 48px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 540px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.stat-band > div {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
}

.stat-band strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.3px;
}

.stat-band span {
  color: var(--text-muted);
  font-size: 14px;
}

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

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

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

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

.hotel-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  align-items: center;
}

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

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

.city-line,
.rating-line {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.hotel-card .teaser {
  color: var(--text-muted);
  font-size: 15px;
  margin: 4px 0 8px;
}

.hotel-card .btn {
  margin-top: auto;
}

.tip-list {
  display: flex;
  flex-direction: column;
}

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

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

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
}

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

.tip-row p {
  margin: 0;
  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: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

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

.quote-carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 40px;
}

.quote-mark {
  font-size: 96px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.35;
  font-family: Georgia, serif;
  margin-bottom: 24px;
}

.quote-slide {
  display: none;
}

.quote-slide.is-active {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.quote-slide p {
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
}

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

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

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

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

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

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.destinations-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border);
}

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

.chip {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(59, 130, 246, 0.08);
  color: var(--text);
  font-size: 14px;
}

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

.trust-list {
  display: flex;
  flex-direction: column;
}

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

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

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

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

.featured-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-band > a,
.featured-band > .featured-visual {
  display: grid;
  place-items: center;
  min-height: 280px;
  background:
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.2), transparent 55%),
    var(--surface);
}

.featured-band .featured-logo {
  width: min(60%, 280px);
  height: auto;
  margin: 48px auto;
  opacity: 0.35;
  object-fit: contain;
  min-height: 0;
}
.featured-band img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-copy {
  padding: 40px 40px 40px 0;
}

.cta-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(245, 158, 11, 0.12), transparent 50%),
    linear-gradient(90deg, rgba(59, 130, 246, 0.08), transparent);
  pointer-events: none;
}

.site-footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  right: -40px;
  bottom: 40px;
  width: 320px;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}

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

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0 18px;
}

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

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

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

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

.footer-accordion {
  display: none;
}

.footer-bottom {
  margin-top: 56px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 16px;
}

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

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

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

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

.page-hero .lead {
  color: var(--text-muted);
  max-width: 640px;
}

.legal-content {
  padding: 40px 0 100px;
}

.legal-content h2 {
  margin-top: 2em;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25em;
  color: var(--text);
}

.legal-content li {
  margin-bottom: 0.5em;
}

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

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

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

.authors-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.author-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
}

.author-card .role {
  color: var(--secondary);
  font-size: 14px;
  margin: 0 0 12px;
}

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

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

.review-header {
  padding: 56px 0 24px;
}

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

.lead-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 24px 0 0;
}

.verdict-band {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  margin: 40px 0 0;
}

.verdict-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.verdict-score {
  font-size: clamp(56px, 8vw, 84px);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -1px;
}

.verdict-score span {
  font-size: 0.4em;
  color: var(--text-muted);
}

.verdict-copy {
  flex: 1;
  min-width: 240px;
}

.byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 28px;
}

.byline .monogram {
  width: 48px;
  height: 48px;
  margin: 0;
  font-size: 15px;
  flex-shrink: 0;
}

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

.byline-text .muted {
  color: var(--text-muted);
}

.article-body {
  max-width: 720px;
}

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

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

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

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

.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: 0;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0 40px;
  background: var(--surface);
}

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

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

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

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

.facts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.fact-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.fact-chip strong {
  color: var(--text);
  font-weight: 500;
}

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

.content-band:nth-of-type(odd) {
  background: var(--bg);
}

.content-band:nth-of-type(even) {
  background: var(--surface-alt);
}

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

.split-icon .icon-panel {
  text-align: center;
}

.split-icon svg {
  width: 72px;
  height: 72px;
  color: var(--accent);
  margin: 12px auto 0;
}

.class-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.class-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.class-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}

.not-for-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.not-for-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

.theme-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--accent);
}

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

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

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

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-weight: 600;
}

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

.sleep-icons div {
  text-align: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.sleep-icons strong {
  display: block;
  margin-top: 8px;
  color: var(--secondary);
}

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

.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  position: relative;
  font-weight: 500;
}

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

.acc summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.acc details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.acc-plus summary::after {
  content: "+";
  border: 0;
  width: auto;
  height: auto;
  font-size: 22px;
  color: var(--accent);
  transform: none;
  top: 14px;
  right: 8px;
}

.acc-plus details[open] summary::after {
  content: "×";
  transform: none;
}

.acc details > div {
  padding: 0 0 18px;
  color: var(--text-muted);
}

.tinted-narrow {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
}

.tinted-narrow p {
  max-width: 560px;
  margin: 0 auto;
}

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

.evening-split .giant-mark {
  font-size: 140px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, serif;
  text-align: center;
}

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

.qa-grid h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.qa-grid p {
  color: var(--text-muted);
  margin: 0;
}

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

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

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

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

.numbered-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 32px 36px;
}

.numbered-panel ol {
  margin: 0;
  padding-left: 1.2em;
  line-height: 2;
}

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

.who-tile {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

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

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

.narrow-measure {
  max-width: 640px;
  margin-inline: auto;
}

.drop-cap::first-letter {
  float: left;
  font-size: 3.6em;
  line-height: 0.8;
  padding-right: 10px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 500;
}

.score-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

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

.snap-wrap {
  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-strip .review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

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

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

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

.review-card.is-highlight {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.12), var(--surface));
}

.review-card .quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

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

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

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

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

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

.guest-carousel .guest-photos {
  justify-content: center;
  margin: 0;
}

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

.map-frame {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0;
}

.reserve-form-wrap,
.processing-panel {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

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

.hotel-indicator {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 28px 0 16px;
}

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

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

.agree-row a {
  text-decoration: underline;
}

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

.field-error {
  color: #f87171;
  font-size: 13px;
  margin-top: 8px;
}

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

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 4, 13, 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: var(--text-muted);
  margin-top: 12px;
  font-size: 14px;
}

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

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
}

.consent-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1px 1fr;
  gap: 24px;
  align-items: center;
}

.consent-divider {
  background: var(--border);
  width: 1px;
  align-self: stretch;
}

.consent-copy h2 {
  font-size: 18px;
  margin: 0 0 8px;
}

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

.consent-copy a {
  font-size: 13px;
}

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

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.consent-actions .btn,
.consent-controls .btn {
  width: 100%;
  padding: 12px 10px;
  font-size: 13px;
}

.consent-cats {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.consent-banner.is-manage .consent-intro {
  display: none;
}

.consent-banner.is-manage .consent-cats {
  display: flex;
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

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

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

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

  .hotel-grid,
  .quote-cards,
  .theme-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .facts-aside {
    position: static;
  }

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

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

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

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

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

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

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

  .site-header {
    position: sticky;
  }

  .site-header.is-open .nav-panel {
    display: flex;
  }

  .stat-band {
    grid-template-columns: 1fr;
  }

  .hotel-grid,
  .authors-teaser-grid,
  .quote-cards,
  .theme-grid,
  .qa-grid,
  .who-grid,
  .steps-row,
  .sleep-icons,
  .reason-cards,
  .destinations-band,
  .featured-band,
  .split-icon,
  .evening-split,
  .score-band,
  .consent-inner {
    grid-template-columns: 1fr;
  }

  .consent-divider {
    display: none;
  }

  .featured-copy {
    padding: 28px;
  }

  .footer-grid {
    display: none;
  }

  .footer-accordion {
    display: block;
  }

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

  .footer-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
  }

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

  .footer-accordion summary::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .footer-accordion details[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
  }

  .footer-accordion ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
  }

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

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

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

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

  .hotel-grid,
  .facts-row,
  .consent-actions {
    grid-template-columns: 1fr;
  }

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

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

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

  .utility-bar .wrap {
    justify-content: center;
    text-align: center;
  }

  .agree-row label {
    font-size: 13px;
  }
}
