:root {
  --bg: #0a0d07;
  --surface: #131a0d;
  --surface-alt: #1d2714;
  --text: #eef7e2;
  --text-muted: #a1b287;
  --border: rgba(163, 230, 53, 0.20);
  --accent: #a3e635;
  --accent-2: #7ab51d;
  --secondary: #22d3ee;
  --on-accent: #12180b;
  --deep: #050803;
  --radius: 8px;
  --radius-pill: 999px;
  --font-heading: Perpetua, "Times New Roman", Georgia, serif;
  --font-body: Calibri, "Segoe UI", system-ui, sans-serif;
  --content: 1120px;
  --section-pad: 88px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(163, 230, 53, 0.08);
  --header-h: 72px;
}

*,
*::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.62;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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(34px, 5vw, 52px);
  line-height: 1.14;
}

h2 {
  font-size: clamp(24px, 3.2vw, 34px);
}

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

p {
  margin: 0 0 1em;
}

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

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

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

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

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

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

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

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

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

.nav-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  justify-self: start;
}

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

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

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

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

.nav-cta {
  justify-self: end;
}

.nav-cta .btn {
  padding: 8px 20px;
  font-size: 14px;
}

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

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

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

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

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 3, 0.72) 0%, rgba(10, 13, 7, 0.88) 55%, var(--bg) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(163, 230, 53, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(34, 211, 238, 0.12), transparent 45%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-blobs::before,
.hero-blobs::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blobs::before {
  background: var(--accent);
  top: -80px;
  left: -60px;
}

.hero-blobs::after {
  background: var(--secondary);
  bottom: -100px;
  right: -40px;
  opacity: 0.22;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  margin-bottom: 16px;
}

.hero-content .subtitle {
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px;
  margin: 0 auto 36px;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  background: rgba(19, 26, 13, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 12px 10px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.search-field {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

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

.search-field input,
.search-field select {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 4px 0;
  outline: none;
}

.search-field select {
  cursor: pointer;
}

.search-bar .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

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

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 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: 24px;
}

.hotel-card {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 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.25s ease, transform 0.25s ease;
}

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

.hotel-card-media {
  min-height: 220px;
  overflow: hidden;
}

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

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

.hotel-card-body h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
}

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

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

.hotel-teaser {
  color: var(--text-muted);
  margin: 4px 0 8px;
  flex: 1;
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  position: relative;
  font-weight: 600;
  font-size: 17px;
}

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

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

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

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

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

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

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

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

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

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-grid .story {
  color: var(--text-muted);
}

.facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.facts-list li {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

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

.facts-list li span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 600;
}

.feature-band {
  position: relative;
  overflow: hidden;
}

.feature-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.12;
  top: -120px;
  right: -80px;
  pointer-events: none;
}

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

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--text-muted);
  font-size: 15px;
}

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

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

.site-footer {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  padding-top: 64px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

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

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

.footer-col h3,
.footer-acc summary {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: 0;
  text-transform: none;
}

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

.footer-col li,
.footer-acc li {
  margin-bottom: 8px;
}

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

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

.footer-acc {
  display: none;
  border-bottom: 1px solid var(--border);
}

.footer-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  position: relative;
  margin: 0;
}

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

.footer-acc 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-acc[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.footer-acc ul {
  padding-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0 36px;
  text-align: center;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.locale-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

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

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

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

.footer-requisites {
  color: var(--text-muted);
  font-size: 12px;
  opacity: 0.75;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
}

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

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

.legal-content {
  padding: 24px 0 var(--section-pad);
  max-width: 760px;
}

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

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

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

.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-header {
  padding: 48px 0 0;
}

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

.review-lead {
  margin: 28px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.review-lead img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.byline-bar {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
}

.byline-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

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

.monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

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

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

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

.facts-panel {
  margin: 0 0 36px;
}

.facts-panel h2,
.facts-kicker {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 600;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

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

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

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

.facts-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.facts-tile {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.facts-tile svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
  margin-bottom: 10px;
}

.facts-tile .tile-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.facts-strip-wrap {
  margin: 20px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.facts-strip {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.facts-strip .dot {
  margin: 0 8px;
  opacity: 0.5;
}

.content-section {
  padding: calc(var(--section-pad) * 1.4) 0;
  text-align: center;
}

.content-section .standfirst {
  color: var(--text-muted);
  max-width: 520px;
  margin: -8px auto 36px;
  font-size: 16px;
}

.content-section .measure,
.content-section .passage {
  text-align: left;
  max-width: 640px;
  margin-inline: auto;
  color: var(--text-muted);
}

.verdict-pull {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--accent);
  text-align: center;
  margin: 28px auto;
  max-width: 560px;
  line-height: 1.25;
  font-weight: 500;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.a11y-panel {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.a11y-panel svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
}

.a11y-note {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  font-style: italic;
}

.takeaway {
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
}

.sleep-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 520px;
  margin: 28px auto 0;
}

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

.sleep-icon-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  margin: 0 auto 8px;
}

.sleep-icon-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sleep-icon-item strong {
  color: var(--accent);
  font-size: 14px;
}

.split-icon {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

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

.split-icon .icon-side h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.split-icon svg {
  width: 72px;
  height: 72px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.4;
  margin: 0 auto;
}

.tinted-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 20px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.tinted-band .narrow {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
}

.tinted-band .band-icon {
  margin: 0 auto 16px;
  width: 40px;
  height: 40px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.offset-panel {
  max-width: 560px;
  margin: 0 auto 0 8%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
}

.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

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

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

.season-cell svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  margin: 0 auto 10px;
}

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

.season-cell span {
  color: var(--text-muted);
  font-size: 13px;
}

.score-band {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

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

.score-band p {
  color: var(--text-muted);
  margin: 0 0 12px;
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tag-block {
  flex: 1 1 140px;
  max-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}

.tag-block svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  margin: 0 auto 10px;
}

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

.tag-block span {
  color: var(--text-muted);
  font-size: 13px;
}

.evening-split {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 32px;
  align-items: center;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

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

.caution-block {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  color: var(--text-muted);
}

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

.guest-block h2 {
  text-align: center;
  margin-bottom: 36px;
}

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

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

.guest-card .stars {
  font-size: 13px;
}

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

.guest-card .guest-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

.guest-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
}

.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: 4px;
  overflow: hidden;
  display: block;
}

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

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

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

.guest-grid-3 .guest-card.highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.guest-stack {
  display: flex;
  flex-direction: column;
}

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

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

.guest-stack-row > .stars {
  order: 0;
}

.guest-stack-row > blockquote {
  margin: 0;
  color: var(--text-muted);
  order: 1;
}

.guest-stack-row > .guest-photos {
  order: 2;
}

.guest-stack-row > .guest-name-src {
  order: 3;
  margin-top: auto;
  text-align: right;
  font-size: 13px;
  color: var(--text-muted);
}

.guest-stack-row > .guest-name-src strong {
  display: block;
  color: var(--text);
}

.guest-stack-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.guest-stack-top .guest-name-src {
  text-align: right;
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
}

.guest-stack-top .guest-name-src strong {
  display: block;
  color: var(--text);
}

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

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

.map-wrap {
  max-width: 900px;
  margin: 0 auto 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

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

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

.author-card .monogram {
  width: 72px;
  height: 72px;
  font-size: 22px;
}

.author-role {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

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

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

.reserve-layout {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 0 var(--section-pad);
}

.reserve-hotel-indicator {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
}

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

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

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

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

.agree-row a {
  color: var(--accent);
}

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

.form-error {
  color: #e85d5d;
  font-size: 13px;
  margin: 0 0 12px;
  display: none;
}

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

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

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

.processing-panel dl {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 12px;
  font-size: 14px;
}

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

.processing-panel dd {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 8, 3, 0.92);
  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);
  font-size: 14px;
  margin-top: 12px;
}

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

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

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

.consent-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

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

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

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 16px;
}

.consent-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.consent-actions .btn {
  padding: 10px 18px;
  font-size: 13px;
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guest-masonry {
    columns: 2;
  }

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

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

  .split-icon {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    justify-self: stretch;
  }

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

  .nav-cta {
    display: none;
  }

  .nav-links .mobile-cta {
    display: block;
  }

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

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

  .hotel-card-media {
    max-height: 240px;
  }

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

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

  .season-strip {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .evening-split .giant-mark {
    font-size: 80px;
  }

  .offset-panel {
    margin: 0 auto;
  }
}

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

  .footer-grid .footer-col-links {
    display: none;
  }

  .footer-acc {
    display: block;
  }

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

  .search-bar {
    border-radius: var(--radius);
    flex-direction: column;
    padding: 16px;
  }

  .search-bar .btn {
    width: 100%;
  }

  .guest-masonry {
    columns: 1;
  }

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

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

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

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

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

  .consent-actions {
    flex-direction: column;
  }

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

  .season-strip {
    grid-template-columns: 1fr;
  }

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

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

  .tag-block {
    max-width: none;
    flex: 1 1 100%;
  }

  .a11y-panel {
    grid-template-columns: 1fr;
  }
}

.nav-links .mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .nav-links .mobile-cta {
    display: block;
  }

  .nav-links .mobile-cta .btn {
    width: 100%;
  }
}
