:root {
  --bg: #f0f5fa;
  --surface: #ffffff;
  --surface-alt: #f0f5fa;
  --text: #0a2540;
  --text-muted: #56708c;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #2b6cb0;
  --accent-2: #1e4e7c;
  --secondary: #0a2540;
  --on-accent: #ffffff;
  --radius: 20px;
  --radius-btn: 999px;
  --font-heading: 'Century Gothic', 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, 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);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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;
  color: var(--text);
}

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;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

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

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

.btn-light {
  background: var(--surface);
  color: var(--secondary);
  border-color: var(--surface);
}

.btn-light:hover {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--secondary);
}

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

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

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

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

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

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

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

.nav-cta .btn {
  padding: 9px 18px;
  font-size: 14px;
}

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

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

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

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
  }

  .nav-cta {
    display: none;
  }

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

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

  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .mobile-cta {
    display: block;
    margin-top: 12px;
    text-align: center;
  }
}

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

.hero-duo {
  padding: calc(var(--section-pad) - 20px) 0 var(--section-pad);
  background:
    radial-gradient(ellipse at 10% 20%, rgba(43, 108, 176, 0.08), transparent 50%),
    var(--bg);
}

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

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

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

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

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

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

.hero-stack .shot {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-stack .shot-a {
  position: absolute;
  top: 0;
  right: 8%;
  width: 58%;
  aspect-ratio: 3 / 4;
  z-index: 2;
}

.hero-stack .shot-b {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 62%;
  aspect-ratio: 4 / 3;
  z-index: 1;
}

.brand-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(160deg, #1e4e7c, #2b6cb0);
  color: #fff;
  text-align: center;
}

.brand-panel-deep {
  background:
    radial-gradient(circle at 70% 70%, rgba(43, 108, 176, 0.35), transparent 50%),
    #0a2540;
}

.brand-panel-featured {
  min-height: 280px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-panel img {
  width: 55%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.brand-panel-deep img {
  width: 42%;
  max-width: 140px;
  opacity: 0.88;
}

.brand-panel-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-stack img {
  width: 55%;
  height: auto;
  object-fit: contain;
}

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

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

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

.pattern-dots {
  background-image: radial-gradient(rgba(10, 37, 64, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
}

.pattern-grid {
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hotel-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hotel-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

.hotel-card-body h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
}

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

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

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

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

.authors-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: stretch;
}

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

.author-feature .monogram {
  margin-bottom: 16px;
}

.author-feature h3 {
  margin-bottom: 4px;
}

.author-feature .role {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.authors-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  min-width: 160px;
}

.destinations-band {
  background: linear-gradient(135deg, rgba(43, 108, 176, 0.10), rgba(30, 78, 124, 0.06));
}

.destinations-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
}

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

.featured-band {
  background: rgba(43, 108, 176, 0.08);
}

.featured-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.featured-media.brand-panel img {
  width: min(220px, 50%);
  height: auto;
  object-fit: contain;
}

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

.page-hero .lede {
  color: var(--text-muted);
  max-width: 40em;
}

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

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

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

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

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

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 108, 176, 0.12);
  color: var(--accent-2);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.3px;
}

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

.authors-grid {
  display: grid;
  gap: 28px;
}

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

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

.author-card .articles ul {
  margin: 8px 0 0;
}

.review-header {
  padding: 40px 0 0;
}

.review-header-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: end;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.review-lead {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

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

.review-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: start;
  padding: 48px 0 24px;
}

.review-rail {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.byline {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 28em;
}

.byline .monogram {
  margin: 0 auto 12px;
}

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

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

.byline .byline-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 6px;
}

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

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

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

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

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

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

.fact-tile {
  background: rgba(43, 108, 176, 0.08);
  border-radius: 16px;
  padding: 18px;
}

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

.fact-tile strong {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
}

.fact-tile svg {
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
  color: var(--accent);
}

.content-sections {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 16px;
}

.num-section {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.num-section .num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  color: rgba(86, 112, 140, 0.45);
  line-height: 1;
  letter-spacing: -1px;
}

.num-section .num-body h2 {
  margin-top: 0;
}

.rating-band {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(43, 108, 176, 0.08);
  border-radius: var(--radius);
  padding: 28px;
}

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

.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.3;
  letter-spacing: -0.3px;
  color: var(--text);
}

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

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

.step-card .kicker {
  margin-bottom: 8px;
}

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

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

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

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

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

.access-row strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 4px;
}

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

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

.access-panel svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.confirm-line {
  color: var(--text-muted);
  font-size: 14px;
  margin: 8px 0 0;
}

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

.scale-track {
  position: relative;
  height: 10px;
  background: rgba(43, 108, 176, 0.15);
  border-radius: 999px;
}

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

.scale-marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 3px solid var(--surface);
  transform: translate(-50%, -50%);
}

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

.elsewhere-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.elsewhere-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

.after-dark {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.after-dark .deco-mark {
  font-family: var(--font-heading);
  font-size: 140px;
  line-height: 0.8;
  color: rgba(43, 108, 176, 0.18);
  user-select: none;
}

.takeaway {
  font-weight: 700;
  margin-top: 0.8em;
}

.meters {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
}

.meter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meter {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.meter-bar {
  height: 8px;
  background: rgba(43, 108, 176, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.meter-caption {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -4px;
}

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

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

.theme-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(43, 108, 176, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent);
}

.theme-icon svg {
  width: 22px;
  height: 22px;
}

.theme-card h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

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

.hood-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.narrow-accent {
  max-width: 36em;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.verdict-line {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.3px;
  margin: 18px 0;
  color: var(--accent-2);
}

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

.eating-block h2 {
  text-align: center;
}

.eating-block p {
  max-width: 40em;
  margin: 0 auto;
  text-align: left;
}

.location-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.address-panel {
  background: rgba(43, 108, 176, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 180px;
}

.address-panel svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}

.address-panel address {
  font-style: normal;
  font-family: var(--font-heading);
  line-height: 1.5;
}

.guest-block {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

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

.guest-card .quote {
  margin: 0;
  font-size: 15px;
  flex: none;
}

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

.guest-card .guest-meta .monogram-sm {
  flex-shrink: 0;
}

.guest-card .guest-meta .guest-byline {
  flex: 1 1 auto;
  min-width: 0;
}

.guest-card .guest-meta strong {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 500;
}

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

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

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

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

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

.masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 16px;
  height: auto;
}

.masonry .guest-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px 28px;
  overflow: hidden;
}

.carousel-mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: rgba(43, 108, 176, 0.2);
  position: absolute;
  top: 16px;
  left: 24px;
}

.carousel-track {
  position: relative;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.carousel-slide.is-active {
  display: flex;
}

.carousel-slide .quote {
  font-size: 18px;
  margin: 0;
  position: relative;
  z-index: 1;
  flex: none;
}

.carousel-slide .guest-meta {
  margin-top: 0;
}

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

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

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

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

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

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

.reserve-cta {
  padding: 56px 0 var(--section-pad);
  background: var(--surface-alt);
}

.reserve-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

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

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

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

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

.hotel-indicator {
  background: rgba(43, 108, 176, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 15px;
}

.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-family: var(--font-heading);
  font-size: 14px;
}

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

.form-field input:focus {
  outline: 2px solid rgba(43, 108, 176, 0.35);
  border-color: var(--accent);
}

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

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

.agree-row label {
  font-size: 14px;
  line-height: 1.5;
}

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

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

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

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

.processing-summary {
  background: var(--surface-alt);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 14px;
}

.processing-summary dt {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
}

.processing-summary dd {
  margin: 2px 0 0;
}

.site-footer {
  background: var(--secondary);
  color: rgba(240, 245, 250, 0.88);
  padding: 96px 0 0;
}

.site-footer a {
  color: rgba(240, 245, 250, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px 24px;
  padding-bottom: 56px;
}

.footer-brand .brand {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand .brand img {
  filter: brightness(0) invert(1);
}

.footer-blurb {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240, 245, 250, 0.72);
  max-width: 28em;
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-divider {
  height: 1px;
  background: rgba(240, 245, 250, 0.12);
  border: 0;
  margin: 0;
}

.footer-affiliate {
  font-size: 13px;
  color: rgba(240, 245, 250, 0.62);
  margin: 20px 0 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.18);
  margin-top: 20px;
  padding: 18px 0 22px;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-requisites {
  font-size: 12px;
  color: rgba(240, 245, 250, 0.48);
  margin: 10px 0 0;
}

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

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

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

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

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

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

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

.consent-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

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

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

.consent-actions button {
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.consent-actions button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

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

.lightbox[hidden] {
  display: none !important;
}

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

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

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

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

@media (max-width: 1024px) {
  .hero-duo-grid,
  .featured-layout,
  .review-header-inner,
  .reserve-cta-inner,
  .destinations-layout,
  .authors-teaser-grid {
    grid-template-columns: 1fr;
  }

  .authors-more {
    min-height: 80px;
  }

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

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

@media (max-width: 899px) {
  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-rail {
    position: static;
    order: -1;
  }

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

  .num-section {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rating-band,
  .meters,
  .scale-row,
  .two-step,
  .hood-layout,
  .location-split,
  .after-dark {
    grid-template-columns: 1fr;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }

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

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

  .masonry {
    columns: 1;
  }

  .after-dark .deco-mark {
    display: none;
  }
}

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

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

  .carousel {
    padding: 32px 20px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

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

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

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

  .hero-stack .shot-a {
    width: 55%;
  }

  .hero-stack .shot-b {
    width: 68%;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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