:root {
  --bg: #0a0a0a;
  --surface: #141412;
  --surface-alt: #1f1e1a;
  --text: #f6f1e3;
  --text-muted: #a49d88;
  --border: rgba(197, 160, 71, 0.20);
  --accent: #c5a047;
  --accent-2: #9c7c2f;
  --secondary: #e5e2da;
  --on-accent: #1a1509;
  --deep: #000000;
  --radius: 8px;
  --radius-pill: 999px;
  --font-heading: 'Book Antiqua', Palatino, 'Palatino Linotype', serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
  --max-w: 1240px;
  --section-pad: 132px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(46px, 8vw, 88px);
  line-height: 1.02;
}

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

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

p {
  margin-bottom: 1em;
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

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

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

.nav-link {
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  justify-self: center;
}

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

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.nav-cta {
  padding: 0.65rem 1.25rem;
  font-size: 13px;
}

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

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

.nav-mobile {
  display: none;
}

.site-header.is-open .nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.nav-mobile .nav-link,
.nav-mobile .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 899px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

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

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

.hero-search {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero-search__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.92) 60%, var(--bg) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(197, 160, 71, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(156, 124, 47, 0.18), transparent 50%),
    linear-gradient(135deg, #141412 0%, #0a0a0a 45%, #1a1509 100%);
}

.hero-search__logo {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: min(280px, 36vw);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-search__content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 900px);
}

.hero-search h1 {
  margin-bottom: 1rem;
}

.hero-search .subtitle {
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  background: rgba(20, 20, 18, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.6rem;
  max-width: 720px;
  margin: 0 auto;
}

.search-field {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.45rem 1rem;
  text-align: left;
}

.search-field label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.search-field input,
.search-field select {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

.search-bar .btn {
  align-self: center;
  margin-right: 0.2rem;
}

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

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

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

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

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

.hotel-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-alt);
}

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

.star-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--deep);
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 0.65rem;
  font-size: 13px;
  letter-spacing: 1px;
}

.hotel-card__body {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.hotel-card h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
}

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

.hotel-card__teaser {
  color: var(--secondary);
  font-size: 15px;
  flex: 1;
}

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

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

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

.method-card .icon,
.trust-card .icon-circle,
.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.method-card .icon svg,
.trust-card .icon-circle svg,
.feature-icon svg {
  width: 28px;
  height: 28px;
}

.trust-card .icon-circle {
  border-radius: 50%;
  background: rgba(197, 160, 71, 0.12);
  border: 1px solid var(--border);
}

.method-card h3,
.trust-card h3 {
  font-size: 22px;
  margin-bottom: 0.65rem;
}

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

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

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

.monogram {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(197, 160, 71, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
}

.author-teaser h3 {
  font-size: 26px;
  margin-bottom: 0.35rem;
}

.author-teaser .role {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cta-band {
  position: relative;
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(197, 160, 71, 0.14), transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 4.5rem;
}

.footer-statement {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 2.5rem;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  max-width: 18ch;
}

.footer-hairline {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 3rem;
  border: none;
  border-top: 1px solid var(--border);
}

.footer-columns {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand-blurb {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 1rem 0 1.25rem;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 18px;
}

.footer-brand-lockup img {
  width: 32px;
  height: 37px;
  object-fit: contain;
}

.footer-country {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--secondary);
}

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

.footer-col li {
  margin-bottom: 0.65rem;
  line-height: 1.8;
}

.footer-col a,
.footer-col .footer-text-btn {
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-col .footer-text-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-consent {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-consent button,
.footer-consent a {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-bottom {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer-bottom-mark img {
  width: 28px;
  height: 32px;
  opacity: 0.85;
}

.footer-requisites {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 12px;
  opacity: 0.75;
}

.page-hero {
  padding: calc(var(--header-h) + 48px) 0 2rem;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

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

.review-header {
  padding: calc(var(--header-h) + 40px) 0 1.5rem;
  text-align: center;
}

.review-header .stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin: 0.75rem 0;
}

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

.review-lead {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.review-lead img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.byline-bar {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 3rem;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.byline-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

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

.facts-strip {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.facts-strip .facts-heading {
  display: block;
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.facts-dot {
  margin: 0 0.45rem;
  color: var(--accent);
}

.facts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 2.5rem;
}

.facts-chips .chip {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  font-size: 13px;
  color: var(--text-muted);
}

.facts-chips .chip strong {
  color: var(--secondary);
  font-weight: 600;
}

.facts-aside-strip {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  background: var(--surface);
}

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

.facts-aside-strip ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1.5rem;
}

.facts-aside-strip li {
  color: var(--text-muted);
  font-size: 14px;
}

.article-body {
  width: min(100% - 48px, 760px);
  margin: 0 auto 4rem;
}

.article-body h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 2.5rem 0 1rem;
}

.article-body p {
  color: var(--secondary);
}

.review-section {
  padding: 4.5rem 0;
}

.review-section h2 {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 1.75rem;
}

.review-section .section-inner {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
}

.accent-band {
  background: var(--deep);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accent-band h2,
.accent-band p,
.accent-band li,
.accent-band .note-lead {
  color: var(--text);
}

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

.takeaway-stack .takeaway {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 1rem;
  color: var(--text);
}

.takeaway-stack .muted {
  color: var(--text-muted);
  max-width: 760px;
}

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

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

.note-block .note-lead {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

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

.food-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.order-again {
  background: rgba(197, 160, 71, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
}

.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.25;
  color: var(--text);
  max-width: 820px;
}

.reasons-lead {
  max-width: 760px;
  margin-bottom: 2rem;
  color: var(--secondary);
}

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

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

.reason-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  color: rgba(164, 157, 136, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.tinted-band {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.tinted-band .kicker {
  margin-bottom: 0.75rem;
}

.drop-cap-passage {
  max-width: 640px;
}

.drop-cap-passage > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 0.85;
  padding-right: 0.5rem;
  color: var(--accent);
}

.unexpected-split {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: start;
}

.unexpected-split .icon-panel {
  color: var(--accent);
}

.unexpected-split .icon-panel svg {
  width: 96px;
  height: 96px;
}

.bold-takeaway {
  font-weight: 700;
  color: var(--text);
  margin-top: 1rem;
}

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

.aside-panel h3 {
  color: var(--text-muted);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.aside-panel ul {
  list-style: none;
  padding: 0;
}

.aside-panel li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
  font-size: 15px;
}

.aside-panel li:last-child {
  border-bottom: none;
}

.audience-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.audience-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
}

.audience-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 71, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.9rem;
  font-size: 13px;
  color: var(--accent);
  text-align: center;
}

.area-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

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

.tag-block {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  background: var(--surface);
}

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

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

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

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

.full-tinted {
  background: var(--surface-alt);
  padding: 4rem 0;
}

.full-tinted .narrow {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--secondary);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pros-cons > div {
  padding: 0 1.75rem;
}

.pros-cons > div:first-child {
  border-right: 1px solid var(--border);
  padding-left: 0;
}

.pros-cons h3 {
  font-size: 20px;
  margin-bottom: 1rem;
}

.pros-cons ul {
  list-style: none;
  padding: 0;
}

.pros-cons li {
  padding: 0.45rem 0;
  color: var(--secondary);
  font-size: 15px;
}

.pros-cons .tick::before {
  content: "✓ ";
  color: var(--accent);
}

.pros-cons .dash::before {
  content: "– ";
  color: var(--text-muted);
}

.service-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-head svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.score-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.score-big {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  background: var(--surface);
}

.score-big .num {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
}

.score-big .sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 0.5rem;
}

.meter {
  margin-bottom: 1rem;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.meter-track {
  height: 8px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

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

.evening-mark {
  font-family: var(--font-heading);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.8;
  color: rgba(197, 160, 71, 0.25);
  text-align: center;
}

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

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

.standout-card h3 {
  font-size: 20px;
  margin: 0.75rem 0 0.45rem;
}

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

.room-subs h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.75rem 0 0.65rem;
  font-weight: 600;
}

.class-table,
.season-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

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

.class-table th,
.season-table th {
  color: var(--accent);
  font-weight: 600;
  width: 40%;
}

.class-table td,
.season-table td {
  color: var(--secondary);
}

.guest-section {
  padding: 4.5rem 0;
}

.guest-section h2 {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 2rem;
}

.masonry {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  columns: 3 280px;
  column-gap: 1.25rem;
}

.quote-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.quote-card blockquote {
  font-style: normal;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.65;
}

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

.quote-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 160, 71, 0.12);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

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

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

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

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

.quote-grid-3 {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote-grid-3 .quote-card.highlight {
  border-color: var(--accent);
  background: var(--surface-alt);
}

.carousel {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  min-height: 280px;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.carousel-slide .big-quote {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.5;
}

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

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

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

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

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

.snap-wrap {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
  position: relative;
}

.snap-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

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

.snap-track .quote-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  scroll-snap-align: start;
  margin-bottom: 0;
  min-height: 100%;
}

.snap-arrows {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

.reserve-cta {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at 40% 0%, rgba(197, 160, 71, 0.12), transparent 55%),
    var(--surface);
  border-top: 1px solid var(--border);
}

.reserve-cta h2 {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 1rem;
}

.reserve-cta .address {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

.map-frame {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.reserve-cta .btn-wrap {
  width: min(100% - 48px, var(--max-w));
  margin: 0 auto;
}

.authors-page .author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.authors-page .author-card:last-child {
  border-bottom: none;
}

.authors-page .monogram {
  width: 72px;
  height: 72px;
  font-size: 22px;
}

.authors-page .role {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.authors-page .articles {
  margin-top: 1.25rem;
}

.authors-page .articles h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.authors-page .articles ul {
  list-style: none;
  padding: 0;
}

.authors-page .articles li {
  margin-bottom: 0.4rem;
}

.reserve-page {
  padding: calc(var(--header-h) + 48px) 0 5rem;
}

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

.hotel-indicator {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  color: var(--secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

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

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

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

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

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

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

.agree-row a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.agree-error,
.submit-error {
  color: #e8a090;
  font-size: 13px;
  margin-bottom: 0.75rem;
  display: none;
}

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

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

.processing-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 1rem;
}

.processing-summary {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14px;
}

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

.legal-content {
  padding: calc(var(--header-h) + 48px) 0 5rem;
}

.legal-content .container {
  max-width: 860px;
}

.legal-content h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 1.25rem;
}

.legal-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 20px;
  margin: 1.75rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--secondary);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 14px;
}

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

.legal-content th {
  background: var(--surface-alt);
  color: var(--accent);
}

.legal-content .cookie-settings-btn {
  margin: 1.5rem 0;
}

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

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

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

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

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

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
}

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

.consent-inner {
  width: min(100% - 16px, 980px);
  margin: 0 auto;
}

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

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

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

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

.consent-cat label {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 13px;
  color: var(--secondary);
  cursor: pointer;
}

.consent-cat input {
  margin-top: 2px;
  accent-color: var(--accent);
}

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

.consent-actions button {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
}

.consent-actions .consent-accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.is-hidden {
  display: none !important;
}

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

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

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

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

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

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

  .snap-track .quote-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }

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

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

  .hotel-grid,
  .authors-teaser-grid,
  .trust-grid,
  .food-split,
  .notes-grid,
  .pros-cons,
  .score-layout,
  .evening-split,
  .unexpected-split,
  .footer-columns,
  .form-grid,
  .consent-cats {
    grid-template-columns: 1fr;
  }

  .snap-track .quote-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }

  .pros-cons > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 1.5rem;
    margin-bottom: 1.5rem;
  }

  .pros-cons > div {
    padding: 0;
  }

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

  .review-lead img {
    aspect-ratio: 16 / 10;
  }

  .carousel-slide {
    padding: 2rem 1.5rem;
  }

  .masonry {
    columns: 1;
  }

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

  .search-bar {
    border-radius: var(--radius);
  }

  .nav-brand-name {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container,
  .hero-search__content,
  .review-lead,
  .byline-bar,
  .facts-strip,
  .facts-chips,
  .facts-aside-strip,
  .article-body,
  .review-section h2,
  .review-section .section-inner,
  .guest-section h2,
  .masonry,
  .carousel,
  .snap-wrap,
  .quote-grid-3,
  .reserve-cta h2,
  .reserve-cta .address,
  .map-frame,
  .reserve-cta .btn-wrap,
  .footer-statement,
  .footer-hairline,
  .footer-columns,
  .footer-consent,
  .footer-bottom,
  .footer-requisites {
    width: min(100% - 28px, var(--max-w));
  }

  .method-grid,
  .reasons-grid,
  .tag-row,
  .standouts {
    grid-template-columns: 1fr;
  }

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

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

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

  .author-teaser {
    flex-direction: column;
  }
}

.accent-band .note-block {
  background: rgba(31, 30, 26, 0.9);
}
.accent-band .order-again {
  background: rgba(197, 160, 71, 0.16);
  color: var(--text);
}
.accent-band .drop-cap-passage > p:first-of-type::first-letter {
  color: var(--accent);
}
.accent-band .unexpected-split p,
.accent-band .area-block p {
  color: var(--text-muted);
}
