:root {
  --bg: #f3f1ec;
  --surface: #ffffff;
  --surface-alt: #f3f1ec;
  --text: #1a2e1f;
  --text-muted: #4d6052;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #b87333;
  --accent-2: #8e5826;
  --secondary: #1a2e1f;
  --on-accent: #ffffff;
  --dark: #1a2e1f;
  --dark-deeper: #121f16;
  --radius: 0px;
  --radius-btn: 6px;
  --font-heading: Perpetua, 'Times New Roman', Georgia, serif;
  --font-body: Calibri, 'Segoe UI', system-ui, sans-serif;
  --max: 1160px;
  --section-pad: 104px;
  --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;
}

iframe {
  max-width: 100%;
}

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

h1 {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

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

p {
  margin: 0 0 1em;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

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

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

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

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 241, 236, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

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

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

.nav-links a {
  display: block;
  padding: 8px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

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

.nav-cta {
  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;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.hero {
  position: relative;
  padding: calc(var(--section-pad) - 24px) 0 var(--section-pad);
  overflow: hidden;
}

.hero__blobs,
.band-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero__blobs::before,
.hero__blobs::after,
.band-blobs::before,
.band-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.hero__blobs::before {
  width: 420px;
  height: 420px;
  background: rgba(184, 115, 51, 0.28);
  top: -80px;
  right: 10%;
}

.hero__blobs::after {
  width: 320px;
  height: 320px;
  background: rgba(26, 46, 31, 0.12);
  bottom: -40px;
  left: 5%;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__copy .btn {
  margin-top: 8px;
}

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

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

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

.hero__frame--portrait {
  position: absolute;
  width: 58%;
  aspect-ratio: 3/4;
  right: 0;
  top: 0;
  z-index: 2;
}

.hero__frame--landscape {
  position: absolute;
  width: 68%;
  aspect-ratio: 16/10;
  left: 0;
  bottom: 20px;
  z-index: 1;
}

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

.hero__panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(184, 115, 51, 0.18), rgba(26, 46, 31, 0.55)),
    linear-gradient(45deg, #2a4030, #1a2e1f);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 22px;
}

.hero__panel--logo img {
  width: 96px;
  height: 76px;
  object-fit: contain;
  margin-bottom: auto;
  margin-top: 12px;
  opacity: 0.92;
}

.hero__panel--mark {
  background:
    linear-gradient(140deg, rgba(184, 115, 51, 0.35), rgba(26, 46, 31, 0.7)),
    linear-gradient(45deg, #314a38, #1a2e1f);
}

.hero__glyph {
  font-size: 42px;
  line-height: 1;
  color: rgba(232, 192, 154, 0.9);
  margin-bottom: auto;
  margin-top: 16px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

#hotels,
#destinations,
#authors-teaser,
#reader-voices,
#featured-review,
#travel-tips {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

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

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

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

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

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

.hotel-card__media {
  min-height: 220px;
  background: var(--surface-alt);
}

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

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

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

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

.hotel-card__body h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
}

.hotel-card__teaser {
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.hotel-card__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

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

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

.dest-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid rgba(243, 241, 236, 0.12);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 115, 51, 0.35), transparent 55%),
    linear-gradient(165deg, #2d4635, #121f16 70%);
  color: var(--on-accent);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 22px;
}

.dest-card:nth-child(2) {
  background:
    radial-gradient(circle at 70% 30%, rgba(184, 115, 51, 0.3), transparent 50%),
    linear-gradient(145deg, #1f3426, #0e1811 75%);
}

.dest-card:nth-child(3) {
  background:
    radial-gradient(circle at 40% 70%, rgba(184, 115, 51, 0.35), transparent 55%),
    linear-gradient(200deg, #314a38, #152018);
}

.dest-card:nth-child(4) {
  background:
    radial-gradient(circle at 60% 20%, rgba(243, 241, 236, 0.1), transparent 45%),
    linear-gradient(180deg, #253a2c, #101a13);
}

.dest-card__mark {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(243, 241, 236, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 192, 154, 0.95);
}

.dest-card__mark svg {
  width: 36px;
  height: 36px;
}

.dest-card__name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.authors-teaser {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.author-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.quote-carousel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-carousel__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 12px;
}

.quote-slide {
  display: none;
}

.quote-slide.is-active {
  display: block;
}

.quote-slide blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.quote-slide cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  color: var(--text-muted);
  font-size: 15px;
}

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

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

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

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

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

.featured-band {
  position: relative;
  overflow: hidden;
  background: rgba(184, 115, 51, 0.10);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-band .band-blobs::before {
  width: 380px;
  height: 380px;
  background: rgba(184, 115, 51, 0.3);
  top: -100px;
  left: -60px;
}

.featured-band .band-blobs::after {
  width: 260px;
  height: 260px;
  background: rgba(26, 46, 31, 0.1);
  bottom: -80px;
  right: 10%;
}

.featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.featured-visual {
  min-height: 320px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(184, 115, 51, 0.25), transparent 50%),
    linear-gradient(200deg, #1a2e1f, #2f4636);
  color: var(--on-accent);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.featured-visual__mark {
  margin-bottom: auto;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(243, 241, 236, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-visual__mark img {
  width: 40px;
  height: 32px;
  object-fit: contain;
}

.featured-visual strong {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  display: block;
  margin-bottom: 8px;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}

.tip-feature {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 36px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tip-feature h3 {
  margin-bottom: 12px;
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.tip-list a {
  display: block;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 18px;
}

.tip-list a:last-child {
  border-bottom: none;
}

.tip-list a span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.tip-list a:hover {
  color: var(--accent-2);
  background: rgba(184, 115, 51, 0.06);
}

.site-footer {
  background: var(--dark);
  color: rgba(243, 241, 236, 0.92);
  padding: 88px 0 0;
}

.site-footer a {
  color: rgba(243, 241, 236, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #e8c09a;
}

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

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

.footer-brand .brand img {
  filter: brightness(1.05);
}

.footer-brand p {
  color: rgba(243, 241, 236, 0.72);
  font-size: 15px;
  max-width: 32em;
}

.footer-est {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232, 192, 154, 0.85);
}

.footer-col h4 {
  color: #f3f1ec;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

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

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

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

.footer-divider {
  height: 1px;
  background: rgba(243, 241, 236, 0.12);
}

.footer-bottom {
  background: var(--dark-deeper);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(243, 241, 236, 0.65);
}

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

.footer-requisites {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(243, 241, 236, 0.48);
  line-height: 1.5;
}

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

.page-hero p.lead {
  color: var(--text-muted);
  max-width: 40em;
  margin: 0;
}

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

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

.legal-body h2 {
  margin-top: 2em;
  font-size: clamp(22px, 3vw, 30px);
}

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

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

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

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

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

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

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

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

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

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

.author-role {
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 12px;
}

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

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

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

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

.hotel-indicator {
  padding: 14px 16px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.25);
  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: 14px;
  font-weight: 600;
}

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

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

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

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

.field-error {
  color: #8b1e1e;
  font-size: 13px;
  margin: 0;
}

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

.processing-panel {
  display: none;
}

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

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

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

.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;
  font-weight: 600;
}

.review-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--border);
}

.review-meta-row h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
  color: var(--text);
  width: 100%;
  margin-bottom: 4px;
}

.review-meta-row .sep {
  opacity: 0.45;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 28px 0 32px;
  font-size: 15px;
}

.byline .monogram {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

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

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

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

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

.review-article p {
  font-size: 17px;
}

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

.review-figure {
  margin: 32px 0;
}

.review-figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.review-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.mid-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 40px 0;
}

.mid-cta p {
  margin: 0;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 20px;
}

.facts-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  padding: 14px 0;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--border);
}

.facts-strip .sep {
  margin: 0 8px;
  opacity: 0.4;
}

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

.facts-chip {
  padding: 10px 14px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.18);
  font-size: 13px;
}

.facts-chip strong {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 2px;
}

.facts-aside {
  border: 1px solid var(--border);
  padding: 22px 24px;
  background: var(--surface);
  margin: 28px 0;
  max-width: 360px;
}

.facts-aside .kicker {
  margin-bottom: 12px;
}

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

.facts-aside li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

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

.content-sections {
  padding: 24px 0 8px;
}

.num-section {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.num-section__n {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: rgba(26, 46, 31, 0.22);
  line-height: 1;
  letter-spacing: -1px;
}

.num-section__body > h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.split-good {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  margin-top: 20px;
}

.split-good__divider {
  background: var(--border);
}

.split-good h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.split-good ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.split-good li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.split-good--love li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.split-good--know li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 700;
}

.unexpected {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 16px;
}

.unexpected__icon {
  color: var(--accent);
}

.unexpected__icon svg {
  width: 72px;
  height: 72px;
}

.arrival-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}

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

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

.arrival-connector {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 28px;
  padding-top: 24px;
}

.rating-band {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.18);
  margin-top: 16px;
}

.rating-band__score {
  text-align: center;
}

.rating-band__score strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
}

.service-block {
  margin-top: 8px;
}

.service-block .icon-inline,
h2 .icon-inline {
  display: inline-block;
  vertical-align: -6px;
  margin-right: 8px;
  color: var(--accent);
}

.meters {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  margin-top: 20px;
  align-items: center;
}

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

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

.meter__bar {
  height: 8px;
  background: rgba(26, 46, 31, 0.08);
  border: 1px solid var(--border);
}

.meter__fill {
  height: 100%;
  background: var(--accent);
}

.evening-band {
  margin-top: 16px;
  padding: 40px 24px;
  background: rgba(26, 46, 31, 0.06);
  border: 1px solid var(--border);
  text-align: center;
}

.evening-band .narrow {
  max-width: 34em;
  margin: 12px auto 0;
}

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

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

.star-honest .verdict {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  margin: 18px 0;
  letter-spacing: -0.4px;
}

.food-ruled {
  margin-top: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.food-ruled h2 {
  text-align: center;
}

.food-ruled p {
  max-width: 40em;
  margin: 12px auto 0;
  text-align: left;
}

.highlight-list {
  margin-top: 16px;
}

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

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

.highlight-row svg {
  color: var(--accent);
  margin-top: 4px;
}

.highlight-row strong {
  display: block;
  margin-bottom: 2px;
}

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

.season-stack {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.season-row {
  padding: 18px 20px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.15);
}

.season-row .kicker {
  margin-bottom: 4px;
}

.season-row p {
  margin: 0;
}

.qa-list {
  margin-top: 16px;
}

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

.qa-row .kicker {
  margin-bottom: 6px;
}

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

.food-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  margin-top: 16px;
  align-items: start;
}

.order-again {
  padding: 20px;
  background: rgba(184, 115, 51, 0.12);
  border: 1px solid rgba(184, 115, 51, 0.2);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.season-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  border: 1px solid var(--border);
}

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

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

.season-cell svg {
  color: var(--accent);
  margin-bottom: 8px;
}

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

.season-cell span {
  font-size: 14px;
  color: var(--text-muted);
}

.audience-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.audience-chip {
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(184, 115, 51, 0.12);
  border: 1px solid rgba(184, 115, 51, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

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

.takeaway {
  font-weight: 700;
  margin-top: 12px !important;
}

.guest-block {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.guest-carousel .quote-slide blockquote {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
}

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

.guest-photo-btn {
  border: 1px solid var(--border);
  padding: 0;
  background: none;
  cursor: zoom-in;
  display: block;
  line-height: 0;
}

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

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

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

.guest-card__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

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

.guest-card__meta strong {
  color: var(--text);
  display: inline;
  font-size: 14px;
}

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

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

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
}

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

.quote-grid-3 .guest-card.is-highlight {
  background: rgba(184, 115, 51, 0.1);
  border-color: rgba(184, 115, 51, 0.3);
}

.snap-reviews {
  position: relative;
}

.snap-track {
  display: flex;
  gap: 16px;
  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% - 32px) / 3);
  scroll-snap-align: start;
}

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

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

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

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

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

.address-line {
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

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

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

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

.lightbox__caption {
  color: rgba(243, 241, 236, 0.85);
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(243, 241, 236, 0.4);
  color: #f3f1ec;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.hotel-cards [data-reveal]:nth-child(1) { transition-delay: 0ms; }
.hotel-cards [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.hotel-cards [data-reveal]:nth-child(3) { transition-delay: 160ms; }
.hotel-cards [data-reveal]:nth-child(4) { transition-delay: 240ms; }

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

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

.consent-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

.consent-copy strong {
  color: var(--text);
}

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

.consent-panel {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(18, 31, 22, 0.55);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.consent-panel.is-open {
  display: flex;
}

.consent-panel__card {
  width: min(100%, 520px);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  max-height: 90vh;
  overflow: auto;
}

.consent-panel__card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

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

.consent-cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  align-items: center;
}

.consent-cat p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.consent-cat label {
  font-weight: 600;
  font-size: 14px;
}

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

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero__grid,
  .authors-teaser,
  .featured-grid,
  .tips-grid,
  .reserve-cta-grid,
  .meters {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

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

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

  .nav-links a {
    padding: 12px 8px;
  }

  .nav-cta {
    margin: 8px 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

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

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

  .hotel-card__media img {
    min-height: 200px;
    max-height: 260px;
  }

  .split-good,
  .unexpected,
  .arrival-steps,
  .rating-band,
  .food-split,
  .audience-row,
  .num-section,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .num-section__n {
    margin-bottom: -8px;
  }

  .split-good__divider,
  .arrival-connector {
    display: none;
  }

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

  .masonry {
    columns: 1;
  }

  .hero__duo {
    min-height: 340px;
  }

  .mid-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

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

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

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

  .reserve-card {
    padding: 28px 20px;
  }

  .summary-box dl {
    grid-template-columns: 1fr;
  }

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

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