:root {
  --bg: #0a0714;
  --surface: #140f26;
  --surface-alt: #1e173a;
  --text: #ece7ff;
  --text-muted: #a196c9;
  --border: rgba(139, 92, 246, 0.20);
  --accent: #8b5cf6;
  --accent-2: #6d28d9;
  --secondary: #22d3ee;
  --on-accent: #ffffff;
  --deep: #050310;
  --radius: 16px;
  --radius-btn: 999px;
  --shadow: 0 10px 30px rgba(5, 3, 16, 0.48);
  --font-heading: Copperplate, "Copperplate Gothic Bold", "Times New Roman", serif;
  --font-body: Verdana, Geneva, "Segoe UI", sans-serif;
  --max: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  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(--secondary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

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

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

h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

p {
  margin: 0 0 1em;
}

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

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

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

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

.btn:hover {
  color: var(--on-accent);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn:focus-visible,
.btn-ghost:focus-visible,
.nav-cta:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(139, 92, 246, 0.12);
}

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

.utility-bar .container {
  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-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding: 10px 0;
  position: relative;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: -0.2px;
  line-height: 1.2;
  max-width: 11em;
}

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--on-accent) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  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;
  padding: 0;
}

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

.hero {
  padding: calc(var(--section-pad) - 20px) 0 var(--section-pad);
  background:
    radial-gradient(ellipse at 20% 10%, rgba(139, 92, 246, 0.22), transparent 50%),
    radial-gradient(ellipse at 90% 60%, rgba(34, 211, 238, 0.08), transparent 45%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .kicker {
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin-bottom: 18px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-duo {
  position: relative;
  min-height: 420px;
}

.hero-duo .shot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface-alt);
}

.hero-duo .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-duo .shot-a {
  position: absolute;
  top: 0;
  right: 8%;
  width: 58%;
  aspect-ratio: 3 / 4;
  z-index: 2;
  transform: rotate(2deg);
}

.hero-duo .shot-b {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 68%;
  aspect-ratio: 16 / 10;
  z-index: 1;
  transform: rotate(-3deg);
}

.hero-duo .shot-glow {
  position: absolute;
  inset: 18% 10% 10% 18%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

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

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

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

.dotted-bg {
  position: relative;
}

.dotted-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.55;
}

.dotted-bg > .container {
  position: relative;
  z-index: 1;
}

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

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

.hotel-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

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

.hotel-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 3, 16, 0.88) 100%);
}

.hotel-card-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
}

.hotel-card-overlay h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.stars {
  color: #f5d98a;
  letter-spacing: 1px;
  font-size: 14px;
}

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

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

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

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

#stats-band {
  padding: 0;
}

.stats-strip {
  background: linear-gradient(90deg, var(--accent-2), var(--accent), #4c1d95);
  color: var(--on-accent);
  padding: 18px 0;
}

.stats-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  justify-content: center;
  align-items: center;
}

.stat-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
}

.stat-inline strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
}

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

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

.about-facts li {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

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

.about-facts strong {
  display: block;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 4px;
}

.tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

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

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.16);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--secondary);
}

.tips-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

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

.quote-carousel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px 36px;
  box-shadow: var(--shadow);
  max-width: 820px;
  margin: 0 auto;
}

.quote-carousel .big-mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 18px;
}

.quote-slide {
  display: none;
}

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

.quote-slide blockquote {
  margin: 0 0 18px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
  font-family: var(--font-heading);
  font-weight: 500;
}

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

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

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

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(236, 231, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

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

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

.carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  cursor: pointer;
}

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

.dest-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.dest-visual {
  height: 140px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.35), rgba(34, 211, 238, 0.12)),
    var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.dest-visual svg {
  width: 48px;
  height: 48px;
  color: var(--text);
  opacity: 0.85;
}

.dest-card .body {
  padding: 18px;
}

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

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

.site-footer {
  background: var(--surface-alt);
  padding: 64px 0 28px;
  margin-top: 0;
}

.footer-statement {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.3px;
  font-weight: 500;
  max-width: 18em;
  margin: 0 0 28px;
}

.footer-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 40px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

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

.footer-brand-blurb .brand-lockup {
  margin-bottom: 14px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--text);
}

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

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

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

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

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

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 12px;
}

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

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

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

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

.page-hero {
  padding: 56px 0 28px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

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

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

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

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

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

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

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

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

.monogram {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 15px;
  flex-shrink: 0;
}

.author-card .role {
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 0.4px;
  margin: 0;
}

.author-card h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.author-card .bio {
  color: var(--text-muted);
  font-size: 14px;
}

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

.author-card .articles h3 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text-muted);
}

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

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

.review-meta-row h1 {
  width: 100%;
  margin: 0 0 8px;
  color: var(--text);
}

.review-meta-row .sep {
  opacity: 0.45;
}

.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: 14px 18px;
  margin: 18px 0 32px;
}

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

.byline-left a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

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

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

.byline-right .role-line {
  display: block;
}

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

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

.article-body .lead-figure {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.article-body .lead-figure figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface);
}

.mid-cta {
  margin: 48px 0;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.08));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

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

.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 24px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  color: var(--text);
}

.rating-band {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.rating-band .score-big {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}

.a11y-panel {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}

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

.icon-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-heading svg {
  width: 22px;
  height: 22px;
  color: var(--secondary);
}

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

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

.reach-card h3 {
  margin: 12px 0 8px;
}

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

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

.aside-panel h3,
.aside-panel .muted-h {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

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

.room-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}

.notice-panel {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.notice-panel h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
}

.notice-panel ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--text-muted);
  font-size: 14px;
}

.facts-strip {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 28px 0;
}

.facts-strip .sep {
  margin: 0 8px;
  opacity: 0.45;
}

.facts-strip h2 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 8px;
}

.facts-cells {
  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 28px;
}

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

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

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

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

.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
}

.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 caption {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
}

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

.sticky-rail {
  position: sticky;
  top: 100px;
}

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

.checkin-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

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

.checkin-step h3 {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

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

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

.badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}

.badge.plus {
  background: rgba(34, 211, 238, 0.15);
  color: var(--secondary);
}

.badge.minus {
  background: rgba(139, 92, 246, 0.18);
  color: var(--accent);
}

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

.decor-cap {
  font-family: var(--font-heading);
  font-size: 160px;
  line-height: 0.8;
  color: rgba(139, 92, 246, 0.35);
  text-align: center;
}

.a11y-rows .row {
  padding: 14px 0;
}

.a11y-rows .row + .row {
  border-top: 1px solid var(--border);
}

.a11y-rows .lbl {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.faq-acc details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 10px;
  padding: 0 18px;
}

.faq-acc summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  position: relative;
  padding-right: 28px;
}

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

.faq-acc summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

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

.faq-acc details p {
  color: var(--text-muted);
  padding-bottom: 16px;
}

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

.evening-rule-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  font-size: 18px;
  line-height: 1.7;
}

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

.good-bit {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.good-bit .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--secondary);
}

.good-bit h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

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

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

.tinted-band {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.tinted-band .kicker {
  margin-bottom: 8px;
}

.practical-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 24px 28px;
}

.practical-panel ol {
  margin: 0;
  line-height: 2;
}

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

.icon-rows li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.takeaway {
  font-weight: 700;
  margin-top: 12px;
}

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

.rating-scale {
  position: relative;
  height: 12px;
  background: var(--surface-alt);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.rating-scale .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--fill, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--secondary));
}

.rating-scale .knob {
  position: absolute;
  top: 50%;
  left: var(--pos, 0%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--on-accent);
  border: 3px solid var(--accent);
  transform: translate(-50%, -50%);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.chip {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
}

.not-for-rows {
  display: grid;
  gap: 12px;
}

.not-for-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 18px;
}

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

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

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

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--secondary);
  flex-shrink: 0;
}

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

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

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

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

.guest-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.guest-featured .feature {
  align-self: start;
}

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

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

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

.guest-rows .top {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.guest-carousel .guest-slide {
  display: none;
}

.guest-carousel .guest-slide.is-active {
  display: block;
}

.reserve-cta {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(139, 92, 246, 0.18), transparent 50%),
    var(--surface);
  border-top: 1px solid var(--border);
}

.reserve-cta .map-wrap {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.guest-stack-more {
  margin-top: 18px;
}

.back-hotels {
  margin-top: 16px;
}

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

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

.guest-photo-caption-center {
  text-align: center;
}

.facts-rail-title {
  margin: 0 0 10px;
}

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

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

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

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

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

.reserve-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.hotel-indicator {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.hotel-indicator strong {
  color: var(--text);
}

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

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

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

.form-field label {
  font-size: 13px;
  color: var(--text-muted);
}

.form-field input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}

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

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

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

.agree-row.error input,
.form-field input[aria-invalid="true"] {
  outline: 2px solid #f472b6;
  border-color: #f472b6;
}

.field-error {
  color: #f9a8d4;
  font-size: 13px;
  margin: 0;
}

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

.processing-panel {
  display: none;
}

.processing-panel.is-visible,
.reserve-form.is-hidden {
  display: block;
}

.reserve-form.is-hidden {
  display: none;
}

.processing-panel.is-visible {
  display: block;
}

.summary-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.summary-box strong {
  color: var(--text);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 16, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  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;
  border-radius: 12px;
  margin: 0 auto;
}

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

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  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: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  max-width: 720px;
  margin: 0 auto;
  display: none;
}

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

.consent-banner h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

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

.consent-options {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.consent-options label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: var(--text-muted);
}

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

.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) {
  .hotel-grid,
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .about-grid,
  .room-split,
  .evening-split,
  .guest-featured,
  .review-layout-rail,
  .scale-row,
  .rating-band {
    grid-template-columns: 1fr;
  }

  .hero-duo {
    min-height: 360px;
  }

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

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

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

  .good-bits {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-cols > :first-child {
    grid-column: 1 / -1;
  }
}

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

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

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

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

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

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

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .site-header {
    position: sticky;
  }

  .hero-grid {
    gap: 32px;
  }

  .authors-grid,
  .reach-grid,
  .checkin-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkin-connector {
    width: 2px;
    height: 28px;
    justify-self: center;
  }

  .checkin-connector::after {
    right: -4px;
    top: auto;
    bottom: -6px;
    border-left-color: transparent;
    border-top-color: var(--accent);
  }

  .masonry {
    columns: 1;
  }

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

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

  .quote-carousel {
    padding: 32px 22px 28px;
  }
}

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

  .hotel-grid,
  .dest-grid,
  .good-bits,
  .footer-cols,
  .authors-grid {
    grid-template-columns: 1fr;
  }

  .hero-duo {
    min-height: 300px;
  }

  .hero-duo .shot-a {
    width: 52%;
  }

  .hero-duo .shot-b {
    width: 72%;
  }

  .stats-strip .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

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

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

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

  .reserve-card {
    padding: 22px;
  }

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

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