:root {
  --bg: #f6f1e9;
  --surface: #ffffff;
  --surface-alt: #f6f1e9;
  --text: #2a2113;
  --text-muted: #6b5c44;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #a9743f;
  --accent-2: #84592d;
  --secondary: #1f180d;
  --on-accent: #ffffff;
  --radius: 8px;
  --radius-pill: 999px;
  --font-heading: 'Lucida Bright', 'Lucida Fax', Georgia, serif;
  --font-body: 'Lucida Sans', 'Lucida Grande', sans-serif;
  --max: 1200px;
  --section-y: 116px;
  --header-offset: 112px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.74;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(rgba(42, 33, 19, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  min-height: 100vh;
  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: 500;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(40px, 6.5vw, 64px);
  line-height: 1.08;
}

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

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

p {
  margin: 0 0 1.1em;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  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-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--border);
}

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

.btn-ghost {
  background: transparent;
  color: var(--on-accent);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--on-accent);
}

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

.utility-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 0;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 233, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

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

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

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 500;
}

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

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

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

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

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

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

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

.site-footer {
  background: linear-gradient(180deg, #f8f3eb 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  padding-top: 72px;
  margin-top: 0;
  color: var(--text);
}

.footer-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 120px;
}

.footer-brand .brand-lockup {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 42ch;
  font-size: 15px;
}

.footer-country {
  color: var(--text-muted);
  font-size: 14px;
  margin: 18px 0 14px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.trust-pills li {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.55);
}

.footer-email {
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-links h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

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

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

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-bottom-right a,
.footer-bottom-right button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
}

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

.footer-requisites {
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
}

.hero-search {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: var(--on-accent);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-search__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 24, 13, 0.72) 0%, rgba(31, 24, 13, 0.55) 45%, rgba(31, 24, 13, 0.78) 100%),
    url("../images/logo/logo.webp") center 28% / 42% no-repeat,
    linear-gradient(135deg, #3a2d1a 0%, #1f180d 50%, #5a4228 100%);
  background-blend-mode: normal, soft-light, normal;
}

.hero-search__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0 80px;
  width: min(100% - 40px, 860px);
  margin-inline: auto;
}

.hero-search .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search h1 {
  color: var(--on-accent);
  margin-bottom: 16px;
}

.hero-search__sub {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 48ch;
  margin: 0 auto 36px;
}

.search-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--radius) + 4px);
  backdrop-filter: blur(8px);
  text-align: left;
}

.search-bar label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.search-bar input,
.search-bar select {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(31, 24, 13, 0.35);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
}

.search-bar select option {
  color: var(--text);
}

.search-bar .btn {
  align-self: end;
}

.section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 48px;
}

.section-intro p {
  color: var(--text-muted);
}

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

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

.hotel-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  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(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

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

.hotel-card__body h3 {
  margin: 0;
  font-size: 24px;
}

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

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

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

.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  background: var(--surface);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-band__num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--accent-2);
  letter-spacing: -1px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stats-band__label {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.featured-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-visual {
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(169, 116, 63, 0.18), rgba(31, 24, 13, 0.08)),
    repeating-linear-gradient(-12deg, transparent, transparent 18px, rgba(169, 116, 63, 0.06) 18px, rgba(169, 116, 63, 0.06) 19px);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.featured-visual__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  max-width: 280px;
}

.featured-visual__panel strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 4px;
}

.featured-copy blockquote {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: var(--text);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
}

.trust-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.trust-list li:first-child {
  border-top: 1px solid var(--border);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--accent-2);
}

.trust-list h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

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

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

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

.voice-card.is-highlight {
  background: var(--secondary);
  color: var(--on-accent);
  border-color: var(--secondary);
}

.voice-card.is-highlight .stars,
.voice-card.is-highlight p,
.voice-card.is-highlight .voice-meta {
  color: rgba(255, 255, 255, 0.88);
}

.voice-card p {
  margin: 0;
  flex: 1;
  font-size: 16px;
}

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

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

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

.legal-content {
  padding: 56px 0 var(--section-y);
}

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

.legal-content h1 {
  margin-bottom: 12px;
}

.legal-content h2 {
  margin-top: 2.2em;
}

.legal-content h3 {
  margin-top: 1.4em;
}

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

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

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  flex-shrink: 0;
}

.author-card .role {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 12px;
}

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

.author-articles h3 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

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

.review-header__top {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.review-header__meta {
  color: var(--text-muted);
  margin: 0;
}

.review-lead {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  aspect-ratio: 21 / 9;
  background: var(--surface-alt);
}

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

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

.review-main {
  min-width: 0;
}

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

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

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

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

.byline .monogram {
  width: 42px;
  height: 42px;
  font-size: 14px;
}

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

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

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

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

.article-body p:last-child {
  margin-bottom: 0;
}

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

.facts-strip .sep {
  margin: 0 10px;
  opacity: 0.45;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 36px;
}

.fact-tile {
  background: rgba(169, 116, 63, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

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

.fact-tile strong {
  display: block;
  font-size: 16px;
}

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

.review-section {
  padding: 56px 0 0;
}

.review-section > h2 {
  margin-bottom: 22px;
}

.accent-band {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  padding: 72px 0;
  margin: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-main .accent-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  box-sizing: border-box;
}

.accent-band h2,
.accent-band h3,
.accent-band .kicker {
  color: #fff;
}

.accent-band p,
.accent-band li,
.accent-band td,
.accent-band th {
  color: rgba(255, 255, 255, 0.84);
}

.accent-band a {
  color: #e8c9a4;
}

.accent-band .highlight-card,
.accent-band .qa-item,
.accent-band .narrow-aside,
.accent-band .tag-tile {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.accent-band .highlight-card h3,
.accent-band .qa-item strong {
  color: #fff;
}

.accent-band .highlight-card p,
.accent-band .qa-item p,
.accent-band .narrow-aside p {
  color: rgba(255, 255, 255, 0.84);
}

.accent-band .icon-circle {
  background: rgba(255, 255, 255, 0.1);
  color: #e8c9a4;
}

.tag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tag-tile {
  background: rgba(169, 116, 63, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

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

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

.icon-heading svg {
  width: 28px;
  height: 28px;
  color: var(--accent-2);
  flex-shrink: 0;
}

.evening-band {
  background: rgba(169, 116, 63, 0.1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 20px;
  text-align: center;
  margin-top: 8px;
}

.evening-band .measure {
  max-width: 42rem;
  margin-inline: auto;
}

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

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

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

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

.love-panels {
  display: grid;
  gap: 16px;
}

.love-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
}

.love-panel--good {
  background: rgba(169, 116, 63, 0.1);
}

.love-panel--caution {
  background: var(--surface-alt);
}

.love-panel h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.love-panel ul {
  margin: 0;
}

.pull-unexpected {
  border-left: 5px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 8px 0 0;
}

.pull-unexpected p {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.4px;
}

.season-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}

.season-table th,
.season-table td {
  border: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  background: var(--surface);
}

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

.rating-unpack {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
}

.rating-unpack__num {
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 88px);
  line-height: 0.9;
  color: var(--accent-2);
  letter-spacing: -2px;
}

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

.narrow-aside {
  max-width: 38rem;
  border-left: 4px solid var(--accent);
  padding-left: 22px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

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

.reason-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  color: rgba(169, 116, 63, 0.35);
  line-height: 1;
  margin-bottom: 8px;
}

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

.unexpected-split svg {
  width: 72px;
  height: 72px;
  color: var(--accent);
}

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

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

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

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

.score-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(169, 116, 63, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.score-band__left {
  text-align: center;
}

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

.takeaway-block .takeaway {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 0 0 12px;
}

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

.sleep-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  max-width: 36rem;
  margin-left: 8%;
}

.sleep-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.sleep-icon {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  background: var(--surface);
}

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

.sleep-icon strong {
  display: block;
  font-size: 14px;
}

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

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

.highlight-card .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(169, 116, 63, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--accent-2);
}

.highlight-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

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

.elsewhere-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface-alt);
  max-width: 34rem;
}

.elsewhere-panel h3 {
  color: var(--text-muted);
  font-size: 16px;
}

.elsewhere-panel ul {
  margin: 0;
  color: var(--text-muted);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

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

.case-card strong {
  display: block;
  margin-bottom: 8px;
}

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

.case-lead {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 8px;
}

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

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

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

.quote-cards .guest-card,
.featured-quotes .guest-card {
  height: 100%;
}

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

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

.guest-photo-btn {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
  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);
  margin: 0;
}

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

.carousel__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: rgba(169, 116, 63, 0.25);
  position: absolute;
  top: 28px;
  left: 28px;
}

.carousel__track {
  position: relative;
  min-height: 220px;
}

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

.carousel__slide.is-active {
  display: flex;
}

.carousel__quote {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

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

.carousel__dots {
  display: flex;
  gap: 8px;
}

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

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

.carousel__arrows {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
}

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

.snap-wrap {
  position: relative;
}

.snap-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  align-items: stretch;
}

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

.snap-strip .guest-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  height: auto;
}

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

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

.quote-cards .guest-card.is-highlight {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  border-color: var(--secondary);
}

.quote-cards .guest-card.is-highlight .stars,
.quote-cards .guest-card.is-highlight .guest-meta,
.quote-cards .guest-card.is-highlight .quote {
  color: rgba(255, 255, 255, 0.88);
}

.featured-quotes {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.featured-quotes__main .guest-card {
  min-height: 100%;
  padding: 36px;
}

.featured-quotes__main .quote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
}

.featured-quotes__stack {
  display: grid;
  gap: 16px;
}

.reserve-cta {
  padding: 72px 0 var(--section-y);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

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

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

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

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

.reserve-page {
  padding: 64px 0 var(--section-y);
}

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

.hotel-indicator {
  background: rgba(169, 116, 63, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  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 {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  background: var(--bg);
  color: var(--text);
}

.form-field input:focus {
  outline: 2px solid rgba(169, 116, 63, 0.35);
  border-color: var(--accent);
}

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

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

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

.agree-row a {
  font-weight: 600;
}

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

.field-error {
  color: #a94432;
  font-size: 13px;
  margin: 0 0 12px;
  min-height: 1.2em;
}

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

.processing-panel {
  display: none;
}

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

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

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 24, 13, 0.86);
  z-index: 400;
  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;
  border-radius: 4px;
}

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

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

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

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

.hotel-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.hotel-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.hotel-grid .reveal:nth-child(3) { transition-delay: 0.19s; }
.hotel-grid .reveal:nth-child(4) { transition-delay: 0.26s; }

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

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

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

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

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

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

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

.consent-actions .btn {
  padding: 11px 18px;
  font-size: 14px;
}

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

  .featured-split,
  .reserve-cta__grid,
  .featured-quotes,
  .review-layout {
    grid-template-columns: 1fr;
  }

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

  .review-layout {
    display: flex;
    flex-direction: column;
  }

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

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

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

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

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

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

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

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

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

  .site-header {
    position: sticky;
  }

  .search-bar {
    grid-template-columns: 1fr;
  }

  .hotel-grid,
  .voices-grid,
  .stats-band__grid,
  .tag-grid,
  .qa-grid,
  .notes-grid,
  .reasons-grid,
  .quote-cards,
  .highlights-grid,
  .form-grid,
  .footer-links,
  .score-band,
  .rating-unpack,
  .unexpected-split {
    grid-template-columns: 1fr;
  }

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

  .footer-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .featured-split {
    gap: 28px;
  }

  .featured-visual {
    min-height: 280px;
  }

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

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

  .sleep-panel {
    margin-left: 0;
  }

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

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

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

  .utility-bar .container {
    flex-direction: column;
    gap: 4px;
  }

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

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

  .carousel {
    padding: 40px 20px 28px;
  }

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

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

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

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