:root {
  --bg: #eef3f1;
  --surface: #ffffff;
  --surface-alt: #eef3f1;
  --text: #10302e;
  --text-muted: #4f6b68;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #17827a;
  --accent-2: #0f5f59;
  --secondary: #0c2523;
  --on-accent: #ffffff;
  --radius: 8px;
  --radius-btn: 6px;
  --font-heading: 'Segoe UI Semibold', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --section-pad: 150px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
  font-size: clamp(40px, 6.5vw, 66px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 4.2vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

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

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

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

.btn-ghost {
  background: transparent;
  color: var(--on-accent);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-accent);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.site-header:not(.is-solid) .nav-left a,
.site-header:not(.is-solid) .nav-right a,
.site-header:not(.is-solid) .brand-lockup {
  color: var(--on-accent);
}

.site-header:not(.is-solid) .nav-left a:hover,
.site-header:not(.is-solid) .nav-right a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.site-header:not(.is-solid) .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header:not(.is-solid) .nav-toggle span {
  background: var(--on-accent);
}

.site-header.is-solid {
  position: sticky;
  top: 0;
  background: rgba(238, 243, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-left a,
.nav-right a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--accent);
}

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

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

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

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

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--on-accent);
  background: var(--secondary) center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 37, 35, 0.55) 0%, rgba(12, 37, 35, 0.78) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 820px);
  padding: calc(var(--header-h) + 40px) 0 80px;
}

.hero h1 {
  color: var(--on-accent);
  margin-bottom: 0.45em;
}

.hero .subtitle {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.5);
  animation: cue-pulse 1.8s ease-in-out infinite;
}

@keyframes cue-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)) ,
    var(--bg);
}

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

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

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.guide-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image:
    linear-gradient(160deg, rgba(23, 130, 122, 0.08), transparent 55%),
    linear-gradient(var(--surface), var(--surface));
}

.guide-featured h3 {
  margin-top: 12px;
}

.guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-list li {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.guide-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.guide-list a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  display: block;
}

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

.guide-list span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-body);
  margin-top: 6px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 820px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}

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

.step-icon svg {
  width: 24px;
  height: 24px;
}

.manifesto {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.manifesto .mission {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin: 0 0 36px;
}

.manifesto .lead {
  max-width: 560px;
  margin-inline: auto;
  color: var(--text-muted);
}

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

.author-teaser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.monogram.sm {
  width: 44px;
  height: 44px;
  font-size: 13px;
}

.site-footer {
  background: var(--surface-alt);
  padding-top: 72px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px 28px;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-bottom: 48px;
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.trust-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  background: var(--surface);
}

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

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

.footer-col li {
  margin: 0 0 8px;
}

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

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

.footer-bottom {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
}

.footer-legal-tier {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 14px;
}

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

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

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

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

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 64px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero .container {
  max-width: var(--max);
}

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

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

.byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.byline a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
}

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

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

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

.article-prose h2 {
  margin-top: 2em;
  font-size: clamp(24px, 3vw, 32px);
}

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

.fact {
  background: var(--surface);
  padding: 28px 24px;
}

.fact dt {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.fact dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
}

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

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

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

.highlight-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.verdict-col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
}

.verdict-col h3 {
  margin-bottom: 16px;
}

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

.tag-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tag-block {
  flex: 1 1 200px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
}

.tag-block strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.good-to-know {
  list-style: none;
  margin: 0;
  padding: 0;
}

.good-to-know li {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.good-to-know li:last-child {
  border-bottom: 1px solid var(--border);
}

.why-stay ul {
  color: var(--text-muted);
}

.guest-reviews-stacked .guest-card {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-reviews-stacked .guest-card:first-child {
  border-top: 1px solid var(--border);
}

.guest-reviews-stacked .guest-meta {
  text-align: right;
  margin-top: 4px;
}

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

.guest-quote {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

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

.guest-meta strong {
  color: var(--text);
  font-weight: 600;
}

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

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

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

.guest-photo-btn.wide img {
  width: min(420px, 100%);
  height: auto;
  max-height: 280px;
  object-fit: cover;
}

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

.guest-reviews-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.guest-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

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

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

.guest-stack .guest-meta {
  margin-top: auto;
}

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

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

.guest-reviews-cards .guest-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(23, 130, 122, 0.06), var(--surface));
}

.guest-reviews-cards .guest-meta {
  margin-top: auto;
}

.reserve-cta {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.88);
  padding: var(--section-pad) 0;
}

.reserve-cta h2,
.reserve-cta .kicker {
  color: var(--on-accent);
}

.reserve-cta address {
  font-style: normal;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.75);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}

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

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

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

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

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

.legal-page {
  padding: calc(var(--header-h) + 64px) 0 var(--section-pad);
}

.legal-page .container {
  max-width: 800px;
}

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

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

.legal-page th {
  background: var(--surface-alt);
  font-family: var(--font-heading);
  font-weight: 400;
}

.reserve-page {
  padding: calc(var(--header-h) + 64px) 0 var(--section-pad);
}

.reserve-layout {
  max-width: 640px;
}

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

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

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

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

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

.form-field input {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font: inherit;
  background: var(--surface);
  color: var(--text);
}

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

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

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

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

.agree-row[data-error="1"] input {
  outline: 2px solid #b42318;
}

.agree-error {
  grid-column: 1 / -1;
  color: #b42318;
  font-size: 14px;
  display: none;
}

.agree-row[data-error="1"] .agree-error {
  display: block;
}

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

.form-error {
  color: #b42318;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

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

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

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

.processing-summary {
  margin: 24px 0;
  padding: 20px;
  background: var(--surface-alt);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-muted);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 37, 35, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

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

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

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

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

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

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

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

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

.consent-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  min-height: 24px;
}

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

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

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

.hotel-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.hotel-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.guest-reviews-cards .reveal:nth-child(2) { transition-delay: 0.08s; }
.guest-reviews-cards .reveal:nth-child(3) { transition-delay: 0.16s; }
.guest-reviews-cards .reveal:nth-child(4) { transition-delay: 0.24s; }
.guest-reviews-cards .reveal:nth-child(5) { transition-delay: 0.32s; }
.guest-reviews-cards .reveal:nth-child(6) { transition-delay: 0.4s; }

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

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

.page-sub {
  color: var(--text-muted);
  font-size: 16px;
}

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

  .hotel-grid,
  .highlight-grid,
  .guest-reviews-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .brand-lockup {
    grid-column: 1;
    justify-self: start;
  }

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

  .nav-left,
  .nav-right {
    display: none;
  }

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

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

  .nav-panels a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
  }

  .guides-layout,
  .guest-reviews-featured,
  .verdict-grid,
  .authors-teaser-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

  .guide-featured {
    padding: 28px;
  }

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

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

  .guest-photo-btn img {
    width: 110px;
    height: 80px;
  }
}
