:root {
  --bg: #eff2ef;
  --surface: #ffffff;
  --surface-alt: #eff2ef;
  --text: #141d18;
  --text-muted: #4f5c53;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #4c8c3a;
  --accent-2: #376828;
  --secondary: #0d1510;
  --on-accent: #ffffff;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-body: Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 2px 8px rgba(13, 21, 16, 0.06), 0 1px 2px rgba(13, 21, 16, 0.04);
  --shadow-lg: 0 16px 40px rgba(13, 21, 16, 0.12), 0 4px 12px rgba(13, 21, 16, 0.06);
  --max: 1360px;
  --section-pad: 124px;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

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

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: 500;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(44px, 7.5vw, 80px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
}

p {
  margin: 0 0 1em;
}

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

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

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

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

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

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: none;
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #eff2ef;
  border-color: rgba(239, 242, 239, 0.35);
}

.btn-ghost:hover {
  background: #eff2ef;
  color: var(--secondary);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(239, 242, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  gap: 24px;
}

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

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.6px;
  white-space: nowrap;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent-2);
  border-bottom-color: var(--accent);
}

.nav-links .btn {
  border-bottom: none;
  margin-left: 8px;
}

.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;
  padding: 0;
}

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

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

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

.site-main {
  padding-top: 0;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  min-height: calc(100vh - var(--nav-h) - 96px);
}

.hero-split {
  min-height: 100vh;
  display: block;
  padding: calc(var(--nav-h) + 48px) 0 var(--section-pad);
  background: var(--surface);
}

.hero-copy .kicker {
  color: var(--accent);
}

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

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.trust-row {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--secondary);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating-badge {
  position: absolute;
  left: -16px;
  bottom: 28px;
  background: var(--surface);
  color: var(--text);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 120px;
}

.rating-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1;
}

.rating-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

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

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

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

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

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

.hotel-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

.hotel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(13, 21, 16, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #eff2ef;
}

.hotel-card-overlay h3 {
  color: #eff2ef;
  font-size: 22px;
  margin: 0 0 6px;
}

.stars {
  letter-spacing: 2px;
  color: #c8e0a8;
  font-size: 14px;
}

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

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

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

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

.quote-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.quote-card.is-highlight {
  background: var(--secondary);
  color: #eff2ef;
}

.quote-card.is-highlight .stars {
  color: #a8d47a;
}

.quote-card.is-highlight p,
.quote-card.is-highlight .quote-meta {
  color: rgba(239, 242, 239, 0.88);
}

.quote-card .stars {
  color: var(--accent);
  margin-bottom: 12px;
}

.quote-card p {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

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

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

.author-feature {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.monogram {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

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

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

.authors-more {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-decoration: none;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  background: var(--surface);
}

.dest-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dest-scroll::-webkit-scrollbar {
  display: none;
}

.dest-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.dest-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(76, 140, 58, 0.12);
  color: var(--accent-2);
  margin-bottom: 6px;
}

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

.dest-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: -0.6px;
  font-weight: 500;
  color: var(--text);
}

.dest-card span {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}

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

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

.trust-row-item:last-child {
  border-bottom: none;
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(76, 140, 58, 0.12);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.trust-row-item h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

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

.featured-band {
  background: rgba(76, 140, 58, 0.10);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-sm);
}

.featured-band-media {
  min-height: 360px;
  background: var(--secondary);
}

.featured-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-band-copy {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

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

.site-footer {
  background: var(--secondary);
  color: #c5cec8;
  padding: 96px 0 0;
}

.site-footer a {
  color: #e8efe6;
  text-decoration: none;
}

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

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

.footer-brand .brand-lockup {
  color: #eff2ef;
  margin-bottom: 20px;
}

.footer-brand .brand-lockup span {
  color: #eff2ef;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: #a8b3ac;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-country {
  font-size: 13px;
  color: #7a877f;
  margin: 16px 0 0;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
}

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

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

.footer-col a {
  font-size: 14px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(239, 242, 239, 0.12);
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0 20px;
  font-size: 13px;
  color: #8a958e;
}

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

.footer-bottom-links a,
.footer-bottom-links button {
  color: #c5cec8;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-requisites {
  font-size: 12px;
  color: #6d7a72;
  padding: 0 0 36px;
  line-height: 1.6;
}

.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 48px;
  background: var(--surface);
}

.page-hero .container {
  max-width: 900px;
}

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  padding: 56px 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 40px;
}

.legal-content h3 {
  margin-top: 28px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
}

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

.review-header {
  padding: calc(var(--nav-h) + 40px) 0 0;
  background: var(--surface);
}

.review-header-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 48px;
}

.review-lead {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11;
  background: var(--secondary);
}

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

.review-header-meta .stars {
  color: var(--accent);
  font-size: 18px;
  margin: 12px 0;
}

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

.review-rating-line {
  font-size: 15px;
  color: var(--text-muted);
}

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

.review-rail {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

.review-rail .btn {
  width: 100%;
}

.byline-block {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 420px;
}

.byline-block .monogram {
  margin-inline: auto;
}

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

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

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

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

.article-body h3 {
  margin-top: 36px;
  margin-bottom: 12px;
}

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

.fact-chip {
  background: rgba(76, 140, 58, 0.10);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text);
}

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

.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.facts-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 42%;
}

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

.facts-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 40px;
  padding: 12px 0;
}

.facts-strip span + span::before {
  content: "·";
  margin: 0 10px;
  color: var(--border);
}

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

.review-section .standfirst {
  max-width: 560px;
  margin: -8px auto 40px;
  color: var(--text-muted);
}

.narrow-measure {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.tinted-band {
  background: rgba(76, 140, 58, 0.08);
  padding: 64px 24px;
  border-radius: 0;
}

.tinted-band .narrow-measure {
  text-align: center;
}

.tinted-band h2 {
  text-align: center;
}

.reason-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}

.reason-cards.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.reason-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

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

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

.practical-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.85;
}

.practical-panel ol {
  margin: 0;
  padding-left: 1.4em;
}

.scale-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.rating-scale {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.rating-scale-track {
  height: 10px;
  background: var(--bg);
  border-radius: 999px;
  position: relative;
  margin: 24px 0 12px;
}

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

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

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

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
}

.score-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.score-numeral {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  letter-spacing: -2px;
  color: var(--accent-2);
}

.score-count {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.aside-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  background: var(--surface);
}

.aside-panel h3 {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
}

.accent-border {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}

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

.qa-grid h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

.accordion {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

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

.accordion summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}

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

.accordion summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion details[open] summary::after {
  transform: rotate(-135deg);
}

.accordion details p {
  color: var(--text-muted);
  margin: 12px 0 4px;
}

.numbered-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
  text-align: left;
  max-width: 960px;
  margin-inline: auto;
}

.numbered-reason {
  position: relative;
  padding: 24px 24px 24px 88px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.numbered-reason .num {
  position: absolute;
  left: 20px;
  top: 16px;
  font-family: var(--font-heading);
  font-size: 48px;
  color: rgba(79, 92, 83, 0.25);
  line-height: 1;
}

.tag-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.tag-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 18px;
  box-shadow: var(--shadow-sm);
}

.tag-block svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--accent-2);
}

.tag-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

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

.service-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.service-block .heading-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

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

.takeaway-stack {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.takeaway-stack .takeaway {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 16px;
}

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

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

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

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

.season-cell strong {
  display: block;
  margin: 8px 0;
  font-family: var(--font-heading);
  font-size: 20px;
}

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

.season-cell svg {
  width: 28px;
  height: 28px;
  color: var(--accent-2);
  margin: 0 auto;
}

.access-rows {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

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

.access-row:last-child {
  border-bottom: none;
}

.access-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.class-table {
  width: 100%;
  max-width: 720px;
  margin: 28px auto 0;
  border-collapse: collapse;
  text-align: left;
}

.class-table th,
.class-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  vertical-align: top;
}

.class-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
}

.subhead-caps {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 28px 0 10px;
}

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

.guest-reviews-wrap {
  padding: 80px 0;
  background: var(--surface);
}

.guest-reviews-wrap h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.guest-card:last-child {
  border-bottom: none;
}

.guest-card .stars {
  color: var(--accent);
}

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

.guest-card-meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

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

.guest-photo-btn {
  border: none;
  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);
}

.guest-stack .guest-card {
  padding: 32px 8px;
}

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

.guest-masonry .guest-card {
  break-inside: avoid;
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  width: 100%;
}

.guest-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.guest-featured {
  background: var(--secondary);
  color: #eff2ef;
  border-radius: var(--radius);
  padding: 40px;
}

.guest-featured .stars {
  color: #a8d47a;
}

.guest-featured blockquote {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.45;
}

.guest-featured .guest-card {
  border: none;
  padding: 0;
  background: transparent;
  color: inherit;
}

.guest-featured .guest-card blockquote {
  color: inherit;
}

.guest-stack-side .guest-card {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.guest-carousel {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 56px 56px 40px;
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}

.guest-carousel .quote-mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.5;
  color: rgba(76, 140, 58, 0.25);
  position: absolute;
  top: 36px;
  left: 36px;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

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

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

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

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

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

.guest-snap-wrap {
  position: relative;
}

.guest-snap {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.guest-snap::-webkit-scrollbar {
  display: none;
}

.guest-snap .guest-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  min-height: 0;
  height: auto;
}

.snap-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

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

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

.map-frame {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

.address-panel {
  max-width: 640px;
  margin: 0 auto 32px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.authors-intro {
  padding: calc(var(--nav-h) + 64px) 0 40px;
  background: var(--surface);
}

.authors-grid {
  display: grid;
  gap: 36px;
  padding: 48px 0 var(--section-pad);
}

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

.author-card .monogram {
  width: 80px;
  height: 80px;
  font-size: 28px;
}

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

.author-articles h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

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

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

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

.hotel-indicator {
  background: rgba(76, 140, 58, 0.1);
  border-radius: var(--radius-btn);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

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

.form-field input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font: inherit;
  background: var(--bg);
  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: 24px 0 12px;
}

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

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

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

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

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

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

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

.processing-panel {
  display: none;
}

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

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

.summary-box {
  background: var(--bg);
  border-radius: var(--radius-btn);
  padding: 20px;
  margin: 24px 0;
  font-size: 14px;
}

.summary-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 12px;
}

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

.summary-box dd {
  margin: 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: 2000;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  max-width: 720px;
  margin-inline: auto;
}

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

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

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

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

.consent-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
}

.consent-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(13, 21, 16, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

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

.lightbox-caption {
  color: #eff2ef;
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #eff2ef;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.icon-moon {
  display: block;
  margin: 0 auto 16px;
  width: 32px;
  height: 32px;
  color: var(--accent-2);
}

@media (max-width: 1024px) {
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .authors-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }

  .authors-more {
    writing-mode: horizontal-tb;
    transform: none;
    grid-column: 1 / -1;
    padding: 20px;
  }

  .featured-band {
    grid-template-columns: 1fr;
  }

  .reason-cards.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .review-header-inner {
    grid-template-columns: 1fr;
  }
}

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

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

  .hero-split {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 32px);
  }

  .hero-split-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .rating-badge {
    left: 16px;
    bottom: 16px;
  }

  .guest-snap .guest-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .guest-masonry {
    columns: 1;
  }

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

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

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

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(239, 242, 239, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 28px;
    gap: 0;
    display: none;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

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

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

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

  .nav-links .btn {
    margin: 16px 0 0;
    width: 100%;
  }

  .quote-grid,
  .faq-grid,
  .hotel-grid,
  .qa-grid,
  .scale-row,
  .score-block,
  .numbered-reasons,
  .season-strip,
  .reason-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .authors-teaser-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .legal-content {
    padding: 36px 24px;
  }

  .reserve-card {
    padding: 32px 24px;
  }
}

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

  .guest-snap .guest-card {
    flex: 0 0 100%;
  }

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

  .tag-row {
    grid-template-columns: 1fr;
  }

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

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

  .brand-lockup span {
    font-size: 18px;
  }
}
