:root {
  --bg: #05070f;
  --surface: #0d1424;
  --surface-alt: #152037;
  --text: #e3edff;
  --text-muted: #8399bd;
  --border: rgba(56, 189, 248, 0.16);
  --accent: #38bdf8;
  --accent-2: #2563eb;
  --secondary: #f472b6;
  --on-accent: #04121e;
  --deep: #02030a;
  --font-heading: 'Hoefler Text', 'Goudy Old Style', Garamond, serif;
  --font-body: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  --radius: 4px;
  --radius-btn: 6px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(2, 3, 10, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(37, 99, 235, 0.18);
  --content: 1060px;
  --section-pad: 124px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.82;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

iframe {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

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

h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

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

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
}

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

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

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

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

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

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

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  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: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  width: 44px;
  height: 44px;
  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-poster {
  padding: calc(var(--section-pad) * 0.72) 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(56, 189, 248, 0.12), transparent 45%),
    var(--bg);
}

.hero-poster::before,
.hero-poster::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-poster::before {
  width: 420px;
  height: 420px;
  background: rgba(56, 189, 248, 0.22);
  top: -80px;
  left: 10%;
}

.hero-poster::after {
  width: 360px;
  height: 360px;
  background: rgba(244, 114, 182, 0.14);
  top: 40px;
  right: 8%;
}

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

.hero-poster .subtitle {
  max-width: 620px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-band {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-band img {
  width: 100%;
  height: clamp(220px, 42vw, 480px);
  object-fit: cover;
}

.hero-band-logo {
  display: grid;
  place-items: center;
  min-height: 280px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(56, 189, 248, 0.18), transparent 55%),
    var(--surface);
}

.hero-band-logo img {
  width: auto;
  height: 200px;
  object-fit: contain;
}

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

.hotel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  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 img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hotel-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.hotel-card .stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.hotel-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.hotel-card .meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.hotel-card .teaser {
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  flex: 1;
}

.hotel-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.dest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dest-mark {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.dest-card h3 {
  position: relative;
  margin: 0 0 0.15em;
}

.dest-card p {
  position: relative;
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

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

.author-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

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

.author-feature p,
.author-card p {
  color: var(--text-muted);
  margin: 0.4em 0 0;
}

.quote-carousel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.quote-carousel .big-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.45;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}

.quote-slide {
  display: none;
}

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

.quote-slide blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  font-style: italic;
}

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

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dots button,
.carousel-nav {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
}

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

.carousel-nav {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.steps-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 160px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step + .step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.4rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.step-num {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35em;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}

.faq-item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
}

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

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

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

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.tips-list h3 {
  margin: 0 0 0.2em;
  font-size: 1.2rem;
}

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

.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.feature-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  filter: blur(90px);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.site-footer {
  background: linear-gradient(180deg, rgba(13, 20, 36, 0.4), transparent 30%), var(--bg);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 5.5rem 0 0;
}

.footer-mega {
  background: var(--deep);
  padding: 4.5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 1rem;
  color: var(--text);
}

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

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  margin: 0;
}

.footer-bottom {
  padding: 1.25rem 0 1.75rem;
}

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

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

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
}

.footer-requisites {
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0.75;
  margin: 0;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse at 30% 0%, rgba(37, 99, 235, 0.2), transparent 50%), var(--bg);
}

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

.legal-body {
  padding: 3rem 0 var(--section-pad);
}

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

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

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

.legal-body th {
  background: var(--surface);
  color: var(--text-muted);
  font-weight: 600;
}

.review-header {
  padding: 3rem 0 0;
}

.review-header .stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.review-header .loc,
.review-header .rating-line {
  color: var(--text-muted);
  margin: 0.25rem 0;
}

.lead-image {
  margin: 1.75rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.facts-kicker-strip {
  margin-top: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.facts-kicker-strip .kicker {
  margin-bottom: 0.75rem;
}

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

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

.facts-table th {
  color: var(--text-muted);
  width: 40%;
  padding-right: 1rem;
}

.facts-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}

.facts-inline span:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  color: var(--border);
}

.facts-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.fact-tile {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.fact-tile svg {
  flex-shrink: 0;
  color: var(--accent);
}

.fact-tile .kicker {
  margin-bottom: 0.25rem;
  font-size: 11px;
}

.fact-tile strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
}

.review-layout {
  padding: 3rem 0 var(--section-pad);
}

.article-wrap {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.byline-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--surface);
  order: 2;
}

.article-body {
  order: 1;
}

.byline-aside .monogram {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
}

.byline-aside .role,
.byline-aside .stay,
.byline-aside .note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.2rem 0;
}

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

.content-section {
  margin: 3.5rem 0;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: rgba(131, 153, 189, 0.35);
  line-height: 1;
  flex-shrink: 0;
}

.section-heading h2 {
  margin: 0;
}

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

.icon-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.icon-list .ico {
  color: var(--accent);
  display: grid;
  place-items: start center;
  padding-top: 0.2rem;
}

.icon-list h3 {
  margin: 0 0 0.2em;
  font-size: 1.15rem;
}

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

.tinted-band {
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

.reason-card .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(131, 153, 189, 0.4);
  display: block;
  margin-bottom: 0.4rem;
}

.timeline {
  position: relative;
  padding-left: 1.75rem;
  border-left: 2px solid var(--accent);
  margin: 1rem 0 0;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px dotted var(--accent);
}

.timeline-item h3 {
  margin: 0 0 0.35em;
  font-size: 1.15rem;
}

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

.guest-reviews {
  margin: 4rem 0;
}

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

.guest-card .stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.guest-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

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

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

.guest-photo-btn {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

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

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

.guest-card.is-highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.reviews-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.reviews-stack .guest-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
}

.reviews-stack .guest-card blockquote {
  grid-column: 1 / -1;
}

.reviews-stack .guest-photos {
  grid-column: 1 / -1;
}

.reviews-stack .stars {
  order: 0;
}

.reviews-stack .guest-meta {
  text-align: right;
  margin-top: 0;
}

.reviews-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.reviews-featured .featured {
  padding: 2rem;
}

.reviews-featured .stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews-masonry {
  columns: 2;
  column-gap: 1.25rem;
}

.reviews-masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

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

.reserve-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
}

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

.map-frame {
  width: 100%;
  max-width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  background: var(--surface-alt);
}

.map-fallback {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.star-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
}

.star-table th,
.star-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  font-weight: 400;
}

.star-table th {
  color: var(--text-muted);
  width: 42%;
  padding-right: 1rem;
}

.two-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}

.two-step .pane {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--surface);
}

.two-step .connector {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 1.5rem;
}

.pull-accent {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.15em;
}

.side-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.side-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--surface);
}

.side-card .ico {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.side-card p {
  color: var(--text-muted);
  margin: 0;
}

.ruled-center {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  margin: 1rem 0;
}

.ruled-center h2 {
  text-align: center;
}

.ruled-center p {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.split-quote {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1.5rem;
  align-items: center;
}

.split-quote .deco {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 14vw, 10rem);
  line-height: 0.8;
  color: rgba(56, 189, 248, 0.2);
  text-align: center;
}

.verdict-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 1.5rem;
}

.verdict-cols .divider {
  background: var(--border);
}

.verdict-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verdict-cols li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  color: var(--text-muted);
}

.verdict-cols .love li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.verdict-cols .know li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

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

.a11y-rows .label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.takeaway-block .takeaway {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.takeaway-block p {
  color: var(--text-muted);
}

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

.aside-panel h3 {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.evening-band {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.evening-band .measure {
  max-width: 560px;
  margin: 1rem auto 0;
  text-align: left;
}

.breakfast-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.order-again {
  background: rgba(244, 114, 182, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.narrow-accent {
  max-width: 540px;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

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

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

.badge {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.badge.plus {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent);
}

.badge.minus {
  background: rgba(244, 114, 182, 0.12);
  color: var(--secondary);
}

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

.qa-stack .q {
  display: block;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 0.45rem;
}

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

.sleep-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--surface);
  max-width: 720px;
  margin-left: auto;
}

.authors-grid {
  display: grid;
  gap: 2rem;
}

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

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

.author-card .articles {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.author-card .articles li {
  margin-bottom: 0.35rem;
}

.reserve-page {
  padding: 3rem 0 var(--section-pad);
}

.reserve-form,
.processing-panel {
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.hotel-indicator {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-row input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.agree-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0 1rem;
}

.agree-row input {
  width: 24px;
  height: 24px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

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

.agree-row.is-error input {
  outline: 2px solid var(--secondary);
}

.agree-error,
.form-error {
  color: var(--secondary);
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.form-micro {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.85rem;
}

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

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

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

.consent-banner h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.consent-banner p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.consent-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.consent-cat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: var(--bg);
}

.consent-cat label {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.9rem;
  cursor: pointer;
}

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

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(2, 3, 10, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

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

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

.lightbox-caption {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

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

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

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

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

  .consent-cats {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

  .nav-links a,
  .nav-links .btn {
    display: block;
    padding: 0.85rem 0;
    width: 100%;
  }

  .site-header {
    position: sticky;
  }

  .nav-main {
    position: relative;
  }

  .hotel-grid,
  .authors-teaser-grid,
  .faq-grid,
  .reasons-grid,
  .side-cards,
  .reviews-featured,
  .breakfast-split,
  .verdict-cols,
  .two-step,
  .split-quote,
  .facts-tiles {
    grid-template-columns: 1fr;
  }

  .verdict-cols {
    gap: 0;
  }

  .verdict-cols .divider {
    height: 1px;
    width: 100%;
    margin: 0.5rem 0;
  }

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

  .two-step .connector {
    justify-content: center;
    transform: rotate(90deg);
  }

  .article-wrap {
    grid-template-columns: 1fr;
  }

  .byline-aside {
    order: 0;
  }

  .article-body {
    order: 1;
  }

  .section-heading {
    flex-direction: column;
    gap: 0.35rem;
  }

  .reviews-masonry {
    grid-template-columns: 1fr;
    columns: 1;
  }

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

  .reviews-stack .guest-card {
    grid-template-columns: 1fr;
  }

  .reviews-stack .guest-meta {
    text-align: left;
  }

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

  .steps-row .step + .step::before {
    display: none;
  }
}

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

  .hotel-grid,
  .dest-grid,
  .footer-top,
  .reviews-3col {
    grid-template-columns: 1fr;
  }

  .quote-carousel {
    padding: 2.5rem 1.25rem;
  }

  .reserve-form,
  .processing-panel {
    padding: 1.35rem;
  }

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

  .agree-row label {
    font-size: 0.88rem;
  }
}
