:root {
  --bg: #f6f0f4;
  --surface: #ffffff;
  --surface-alt: #f6f0f4;
  --text: #251029;
  --text-muted: #634f68;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #8a4f9e;
  --accent-2: #6a3a7c;
  --secondary: #180a1b;
  --on-accent: #ffffff;
  --radius: 28px;
  --radius-btn: 10px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Arial, Helvetica, sans-serif;
  --max: 1100px;
  --section-pad: 132px;
  --shadow-sm: 0 2px 8px rgba(24, 10, 27, 0.06), 0 1px 2px rgba(24, 10, 27, 0.04);
  --shadow-lg: 0 16px 40px rgba(24, 10, 27, 0.12), 0 4px 12px rgba(24, 10, 27, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

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

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: 400;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(24px, 3.4vw, 36px);
}

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

p {
  margin: 0 0 1.1em;
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  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;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 240, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.2px;
}

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

.nav-spacer {
  width: 36px;
}

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

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

.hero-magazine {
  padding: 48px 0 0;
  background: var(--surface);
}

.hero-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.hero-lead {
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.hero-figure {
  margin: 0;
}

.hero-figure img {
  width: 100%;
  height: clamp(280px, 48vw, 520px);
  object-fit: cover;
  border-radius: 0;
}

.hero-figure figcaption {
  width: min(100% - 40px, var(--max));
  margin: 14px auto 0;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

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

.section--bg {
  background: var(--bg);
}

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

.section-intro {
  max-width: 48ch;
  margin-bottom: 48px;
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.hotel-card {
  display: grid;
  grid-template-columns: minmax(180px, 38%) 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.hotel-card:hover {
  box-shadow: var(--shadow-lg);
}

.hotel-card__media {
  min-height: 220px;
}

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

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

.hotel-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

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

.hotel-card__teaser {
  color: var(--text-muted);
  flex: 1;
  margin: 6px 0 12px;
}

.hotel-card__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.tips-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}

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

.tips-featured h3 {
  margin-top: 8px;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tips-list a {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 8px);
  padding: 20px 22px;
  transition: box-shadow 0.25s ease;
}

.tips-list a:hover {
  box-shadow: var(--shadow-sm);
}

.tips-list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 4px;
}

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

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  justify-content: space-between;
}

.step {
  flex: 1 1 160px;
  position: relative;
  padding: 8px 28px 8px 0;
  min-width: 160px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 8px;
  width: calc(100% - 56px);
  height: 1px;
  background: var(--border);
  transform: translateX(100%);
  pointer-events: none;
}

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

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

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

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

.faq-item h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0;
}

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

.voices__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 12px;
}

.voices__quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  margin-bottom: 18px;
  min-height: 4.2em;
}

.voices__attr {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.voices__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.voices__dots {
  display: flex;
  gap: 8px;
}

.voices__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

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

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

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

.site-footer {
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-top: none;
}

.footer-cta {
  background: var(--secondary);
  color: var(--on-accent);
  padding: 56px 0;
  text-align: center;
}

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

.footer-main {
  position: relative;
  padding: 72px 0 40px;
  z-index: 1;
}

.footer-watermark {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: min(420px, 55vw);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

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

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

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

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

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

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

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

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

.footer-bottom p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-consent {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
}

.footer-consent a,
.footer-consent button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  color: var(--accent-2);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.page-hero {
  padding: 72px 0 40px;
  background: var(--surface);
}

.page-hero p.lead {
  max-width: 52ch;
  color: var(--text-muted);
}

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

.legal-body .container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px clamp(24px, 4vw, 56px);
  box-shadow: var(--shadow-sm);
}

.legal-body h1 {
  margin-bottom: 12px;
}

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

.legal-body h3 {
  margin-top: 1.4em;
}

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

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

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

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

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

.author-card__top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

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

.author-card__role {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.author-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

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

.reserve-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}

.hotel-indicator {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 10px);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

.form-field label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input {
  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: 2px;
}

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

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

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

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

.agree-error,
.form-error {
  color: #8a2038;
  font-size: 13px;
  margin: 0 0 12px;
  min-height: 1.2em;
}

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

.processing-panel dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  margin: 24px 0;
  font-size: 15px;
}

.processing-panel dt {
  color: var(--text-muted);
}

.review-page {
  background: var(--surface);
}

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

.review-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
}

.review-lead {
  margin: 0 0 0;
}

.review-lead img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.byline-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  margin: 36px 0 40px;
}

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

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

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

.article-body {
  max-width: 68ch;
  margin: 0 auto 56px;
}

.article-body h3 {
  margin-top: 1.6em;
  font-size: 22px;
}

.facts-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px 32px;
  margin: 0 0 56px;
}

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

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

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

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

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

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

.facts-table th {
  color: var(--text-muted);
  width: 42%;
}

.facts-table tr:last-child th,
.facts-table tr:last-child td {
  border-bottom: none;
}

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

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

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

.facts-stats__value {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  display: block;
  margin-bottom: 8px;
}

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

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

.review-section .container > .rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 18px;
}

.two-col-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  position: relative;
}

.two-col-lists::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.two-col-lists h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.two-col-lists li {
  position: relative;
  padding: 0 0 12px 22px;
  color: var(--text-muted);
}

.two-col-lists li::before {
  position: absolute;
  left: 0;
}

.list-love li::before {
  content: "✓";
  color: var(--accent);
}

.list-trade li::before {
  content: "–";
  color: var(--text-muted);
}

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

.score-read__num {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  color: var(--accent);
}

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

.where-slept h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.6em 0 0.5em;
  font-weight: 700;
}

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

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

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

.access-row strong {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.evening-feel {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  font-size: 20px;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
}

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

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-weight: 700;
}

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

.accordion summary::after {
  content: "+";
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.accordion details[open] summary::after {
  content: "×";
}

.accordion details p {
  color: var(--text-muted);
  margin: 0 0 18px;
}

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

.split-icon__left {
  text-align: center;
}

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

.scale-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.rating-scale {
  position: relative;
  height: 12px;
  background: rgba(138, 79, 158, 0.15);
  border-radius: 999px;
  margin: 28px 0 8px;
}

.rating-scale__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
  border-radius: 999px;
}

.rating-scale__marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--accent);
  transform: translate(-50%, -50%);
}

.rating-scale__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

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

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

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

.notes-panel ol {
  margin: 0;
  padding-left: 22px;
  line-height: 2;
  color: var(--text-muted);
}

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

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

.find-card svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 12px;
}

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

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

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

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

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

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

.why-intro {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-muted);
}

.notes-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

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

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

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

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

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

.badge--plus {
  background: rgba(138, 79, 158, 0.15);
  color: var(--accent-2);
}

.badge--minus {
  background: rgba(24, 10, 27, 0.06);
  color: var(--text-muted);
}

.sleep-highlight {
  color: var(--accent);
  font-weight: 700;
}

.rating-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(138, 79, 158, 0.08);
  border-radius: var(--radius);
  padding: 36px;
}

.rating-band__left {
  text-align: center;
}

.rating-band__score {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}

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

.aside-panel .muted-h {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

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

.sleep-icons div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 10px);
  padding: 18px 12px;
}

.sleep-icons strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
  margin-top: 6px;
}

.guest-block {
  padding: 72px 0;
  background: var(--surface);
}

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

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

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

.guest-card--hl .stars {
  color: #e8c9f2;
}

.guest-card--hl .guest-meta,
.guest-card--hl .guest-photos__cap {
  color: rgba(255, 255, 255, 0.7);
}

.guest-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  flex: none;
  flex-grow: 0;
}

.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%;
  margin-top: 0;
  flex-grow: 0;
}

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

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

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

.snap-wrap {
  position: relative;
}

.snap-strip {
  display: flex;
  gap: 16px;
  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 .guest-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  height: auto;
  align-self: flex-start;
}

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

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

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

.stack-quotes .guest-row .stars {
  align-self: flex-end;
}

.stack-quotes blockquote {
  margin: 0;
  flex: none;
}

.stack-quotes .guest-photos {
  width: 100%;
}

.stack-quotes .guest-meta {
  margin-top: 0;
  align-self: flex-end;
  text-align: right;
}

.reserve-cta {
  padding: 80px 0 var(--section-pad);
  background: var(--bg);
  text-align: center;
}

.reserve-cta address {
  font-style: normal;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.map-embed {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.consent-cat {
  display: flex;
  gap: 10px;
  align-items: flex-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 {
  font-size: 13px;
  padding: 10px 16px;
}

.is-hidden {
  display: none !important;
}

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

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

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

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

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

  .scale-row,
  .score-read,
  .rating-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-spacer {
    display: none;
  }

  .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-lg);
  }

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

  .nav-links a {
    display: block;
    padding: 12px 4px;
    font-size: 15px;
  }

  .tips-layout,
  .faq-grid,
  .footer-grid,
  .authors-grid,
  .two-col-lists,
  .find-cards,
  .notes-2col,
  .split-icon,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .two-col-lists::before {
    display: none;
  }

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

  .hotel-card__media {
    min-height: 200px;
    max-height: 260px;
  }

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

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

  .stack-quotes .guest-row .stars,
  .stack-quotes .guest-meta {
    align-self: flex-start;
    text-align: left;
  }
}

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

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

  .footer-cta {
    padding: 44px 0;
  }

  .byline-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .byline-bar__right {
    text-align: left;
  }
}

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

  .hero-utility {
    gap: 6px 14px;
    letter-spacing: 2px;
    font-size: 11px;
  }

  .hotel-card__body {
    padding: 22px;
  }

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

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

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

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

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

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

  .sleep-icons {
    grid-template-columns: 1fr;
  }

  .guest-photo-btn img {
    width: 100px;
    height: 76px;
  }
}
