:root {
  --bg: #faf5f2;
  --surface: #ffffff;
  --surface-alt: #faf5f2;
  --text: #1a1112;
  --text-muted: #6b5a5d;
  --border: rgba(15,17,26,0.10);
  --accent: #c97b8a;
  --accent-2: #a85a6b;
  --secondary: #1a1112;
  --on-accent: #ffffff;
  --deep: #1a1112;
  --radius: 20px;
  --btn-radius: 2px;
  --font-heading: 'Book Antiqua', Palatino, 'Palatino Linotype', serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
  --content: 1200px;
  --section-pad: 128px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.5vw, 48px);
}

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

p {
  margin: 0 0 1em;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--secondary);
  border-radius: var(--btn-radius);
  background: var(--secondary);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

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

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

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

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

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
  padding: 10px 20px;
  font-size: 13px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
}

.site-header.is-solid {
  background: rgba(250, 245, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--content));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: -0.4px;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  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);
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(201, 123, 138, 0.18), transparent 55%),
    linear-gradient(180deg, #f3e8e4 0%, var(--bg) 100%);
  overflow: hidden;
}

.hero-inner {
  padding-bottom: 64px;
}

.hero h1 {
  max-width: 16ch;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 42ch;
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.stat-band .stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-band .stat:last-child {
  border-right: none;
}

.stat-band .num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.6px;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-band .label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.section-head p {
  color: var(--text-muted);
  font-size: 18px;
}

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

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

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

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

.hotel-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 17, 18, 0.78) 100%);
}

.hotel-card-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
}

.hotel-card-overlay h3 {
  color: #fff;
  margin: 0 0 6px;
  font-size: clamp(22px, 2.5vw, 28px);
}

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

.hotel-card-overlay .stars {
  color: #f5d0d6;
}

.hotel-card-body {
  padding: 24px 28px 28px;
}

.hotel-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hotel-card-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.stats-dark {
  background: var(--deep);
  color: var(--on-accent);
  padding: 80px 0;
}

.stats-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-dark-cell {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stats-dark-cell .num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stats-dark-cell .label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

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

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

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 123, 138, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-2);
}

.icon-circle svg {
  width: 26px;
  height: 26px;
}

.icon-card h3 {
  margin-bottom: 10px;
}

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

.featured-band {
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201, 123, 138, 0.15), transparent 60%),
    #f3e6e2;
  padding: var(--section-pad) 0;
}

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

.featured-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 36px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(201, 123, 138, 0.45), transparent 55%),
    linear-gradient(160deg, #3a2428 0%, #1a1112 100%);
}

.featured-monogram {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(201, 123, 138, 0.25);
}

.featured-visual .kicker {
  color: rgba(255, 255, 255, 0.7);
}

.featured-visual h3 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
}

.featured-place {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-copy p {
  color: var(--text-muted);
  font-size: 18px;
}

.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;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 15%, rgba(201, 123, 138, 0.35), transparent 45%),
    linear-gradient(165deg, #4a2e34 0%, #1a1112 100%);
}

.dest-card:nth-child(2) {
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 90, 107, 0.4), transparent 50%),
    linear-gradient(165deg, #3a2428 0%, #1a1112 100%);
}

.dest-card:nth-child(3) {
  background:
    radial-gradient(circle at 70% 30%, rgba(138, 106, 114, 0.4), transparent 50%),
    linear-gradient(165deg, #2e2226 0%, #1a1112 100%);
}

.dest-card:nth-child(4) {
  background:
    radial-gradient(circle at 30% 10%, rgba(212, 160, 170, 0.35), transparent 50%),
    linear-gradient(165deg, #5a343c 0%, #1a1112 100%);
}

.dest-mono {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.08);
}

.dest-card-label {
  position: relative;
  z-index: 1;
}

.dest-card h3 {
  color: #fff;
  margin: 0;
  font-size: 28px;
}

.dest-card span:not(.dest-mono) {
  display: block;
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 48px;
  text-align: center;
}

.footer-inner {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-blurb {
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  max-width: 900px;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text);
  padding: 4px 8px;
}

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

.footer-links .sep {
  color: var(--text-muted);
  opacity: 0.5;
  padding: 0 2px;
  user-select: none;
}

.footer-email {
  color: var(--accent-2);
  text-decoration: none;
  font-size: 15px;
}

.footer-bottom {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

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

.footer-consent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

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

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

.footer-requisites {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 70ch;
  line-height: 1.6;
}

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 48px;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(201, 123, 138, 0.14), transparent 50%),
    var(--bg);
}

.page-hero h1 {
  margin-bottom: 12px;
}

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

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

.legal-body .wrap {
  max-width: 760px;
}

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

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

.legal-body ul,
.legal-body ol {
  padding-left: 1.25em;
  margin: 0 0 1.2em;
}

.legal-body li {
  margin-bottom: 0.45em;
}

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

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

.legal-body th {
  background: var(--surface-alt);
}

.review-header {
  padding: calc(var(--header-h) + 48px) 0 0;
}

.review-header .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

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

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

.verdict-band {
  background: var(--deep);
  color: var(--on-accent);
  padding: 48px 0;
  margin-top: 0;
}

.verdict-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px 56px;
}

.verdict-score {
  font-family: var(--font-heading);
  font-size: clamp(56px, 10vw, 88px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -1px;
}

.verdict-score span {
  font-size: 0.4em;
  color: rgba(255, 255, 255, 0.55);
}

.verdict-meta .stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 6px;
}

.verdict-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.verdict-take {
  flex: 1;
  min-width: 240px;
  max-width: 42ch;
  font-size: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.article-wrap {
  padding: 72px 0 32px;
}

.article-measure {
  max-width: 680px;
  margin-inline: auto;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 36px;
  font-size: 15px;
}

.monogram {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 123, 138, 0.2);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  flex-shrink: 0;
}

.byline-muted {
  color: var(--text-muted);
  font-style: italic;
}

.article-body h3 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}

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

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

.facts-chips .chip {
  font-size: 13px;
  background: rgba(201, 123, 138, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--text);
}

.facts-chips .chip strong {
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 4px;
}

.facts-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 0;
  margin-top: 0;
}

.facts-strip .kicker {
  margin-bottom: 16px;
}

.facts-cells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.facts-cell {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}

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

.facts-cell .val {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  margin-bottom: 6px;
}

.facts-cell .lbl {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-sections {
  padding: 24px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.boxed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.boxed-card > h2 {
  margin-bottom: 24px;
}

.caution-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.caution-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.caution-row .icon-circle {
  width: 44px;
  height: 44px;
  margin: 0;
  flex-shrink: 0;
}

.caution-row p {
  margin: 0;
  font-size: 15px;
}

.subcaps {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 1.6em 0 0.5em;
  font-weight: 600;
  font-family: var(--font-body);
}

.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

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

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

.season-cell .ico {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--accent-2);
}

.season-cell strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  margin-bottom: 6px;
}

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

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

.highlight-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

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

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

.guest-block {
  padding: 48px 0 80px;
}

.guest-block h2 {
  margin-bottom: 36px;
}

.guest-two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.guest-card.featured {
  padding: 40px 36px;
  background: #f3e6e2;
}

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

.guest-card.featured .quote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.45;
}

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

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

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

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

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

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

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

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

.guest-row:first-child {
  padding-top: 0;
}

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

.guest-row .stars {
  align-self: flex-end;
}

.guest-row .guest-meta {
  margin-top: 0;
  align-self: flex-end;
  text-align: right;
}

.guest-row-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.carousel-mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.45;
  position: absolute;
  top: 28px;
  left: 36px;
}

.carousel-track {
  position: relative;
  min-height: 180px;
}

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

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

.carousel-slide .quote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.4;
  margin: 0;
}

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

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

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

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

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

.carousel-arrows button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--btn-radius);
  cursor: pointer;
  font-size: 16px;
  color: var(--text);
}

.snap-reviews {
  position: relative;
}

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

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

.snap-track .guest-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

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

.snap-arrows button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--btn-radius);
  cursor: pointer;
}

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

.reserve-cta-inner {
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(201, 123, 138, 0.2), transparent 55%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.reserve-cta-inner h2 {
  margin-bottom: 12px;
}

.reserve-cta-inner .address {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.map-embed {
  width: 100%;
  max-width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 28px;
}

iframe {
  max-width: 100%;
}

.food-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.food-chips span {
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--text-muted);
}

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

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

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px dotted var(--accent-2);
}

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

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.qa-list {
  display: flex;
  flex-direction: column;
}

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

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

.qa-q {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
  font-weight: 600;
}

.qa-row p {
  margin: 0;
  font-size: 15px;
}

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

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

.rule-block p {
  max-width: 56ch;
  margin: 0 auto;
  text-align: left;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.audience-chip {
  display: inline-block;
  text-align: center;
  background: rgba(201, 123, 138, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

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

.narrow-centre {
  max-width: 540px;
  margin-inline: auto;
  text-align: left;
}

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

.note-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.note-block strong {
  display: block;
  margin-bottom: 6px;
}

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

.tinted-panel {
  background: rgba(201, 123, 138, 0.1);
  border-radius: 12px;
  padding: 24px;
}

.tinted-panel li {
  margin-bottom: 10px;
  font-size: 14px;
}

.tinted-panel ul {
  margin: 0;
  padding-left: 1.1em;
}

.evening-band {
  background: #f3e6e2;
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
}

.evening-band svg {
  width: 32px;
  height: 32px;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.evening-band p {
  max-width: 48ch;
  margin: 0 auto;
  text-align: left;
}

.service-take {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
}

.pull-accent {
  color: var(--accent-2);
  font-weight: 600;
}

.authors-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: var(--section-pad);
}

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

.author-card .monogram {
  width: 64px;
  height: 64px;
  font-size: 20px;
}

.author-role {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
  font-weight: 600;
}

.author-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

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

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

.author-articles h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 8px;
}

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

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

.reserve-card {
  max-width: 640px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.hotel-indicator {
  background: rgba(201, 123, 138, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 16px;
}

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

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

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

.form-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

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

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0 8px;
  grid-column: 1 / -1;
}

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

.agree-row input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

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

.agree-error {
  display: none;
  color: #b33;
  font-size: 13px;
  margin: 0 0 12px;
  grid-column: 1 / -1;
}

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

.form-actions {
  grid-column: 1 / -1;
  margin-top: 8px;
}

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

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

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

.processing-panel {
  display: none;
}

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

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

.summary-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  font-size: 14px;
}

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

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

.summary-box dd {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .hotel-grid {
    gap: 24px;
  }

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

  .facts-cell:nth-child(2) {
    border-right: none;
  }

  .facts-cell:nth-child(1),
  .facts-cell:nth-child(2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 8px;
  }

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

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

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

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    background: rgba(250, 245, 242, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }

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

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

  .hotel-grid,
  .icon-grid,
  .featured-grid,
  .guest-two-col,
  .split-2,
  .notes-grid,
  .form-grid,
  .author-card {
    grid-template-columns: 1fr;
  }

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

  .stat-band .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stats-dark-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-dark-cell:nth-child(2) {
    border-right: none;
  }

  .stats-dark-cell:nth-child(1),
  .stats-dark-cell:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .season-strip {
    grid-template-columns: 1fr 1fr;
  }

  .season-cell:nth-child(2) {
    border-right: none;
  }

  .season-cell:nth-child(1),
  .season-cell:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

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

  .carousel {
    padding: 48px 24px 32px;
  }

  .boxed-card {
    padding: 28px 22px;
  }

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

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

  .stats-dark-grid,
  .highlight-grid,
  .season-strip,
  .facts-cells {
    grid-template-columns: 1fr;
  }

  .stats-dark-cell,
  .season-cell,
  .facts-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .stats-dark-cell {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .stats-dark-cell:last-child,
  .season-cell:last-child,
  .facts-cell:last-child {
    border-bottom: none;
  }

  .facts-cell:nth-child(1),
  .facts-cell:nth-child(2) {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
  }

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

  .verdict-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

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