:root {
  --bg: #f7f1ee;
  --surface: #ffffff;
  --surface-alt: #f7f1ee;
  --text: #2a1114;
  --text-muted: #6b5052;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #8f2734;
  --accent-2: #6d1c26;
  --secondary: #1c0b0d;
  --on-accent: #ffffff;
  --radius: 0px;
  --radius-btn: 2px;
  --radius-card: 6px;
  --font-heading: 'Lucida Bright', 'Lucida Fax', Georgia, serif;
  --font-body: 'Lucida Sans', 'Lucida Grande', sans-serif;
  --shadow-sm: 0 1px 2px rgba(28, 11, 13, 0.06), 0 2px 8px rgba(28, 11, 13, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 11, 13, 0.08), 0 12px 28px rgba(28, 11, 13, 0.06);
  --max: 1200px;
  --section-pad: 116px;
  --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.74;
  color: var(--text);
  background: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 180px),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(42, 17, 20, 0.012) 3px,
      rgba(42, 17, 20, 0.012) 4px
    );
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

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.5vw, 26px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.section--tight {
  padding: 72px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  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;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

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

.btn--light {
  background: var(--surface);
  color: var(--secondary);
}

.btn--light:hover {
  background: var(--bg);
  color: var(--secondary);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 238, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  gap: 16px;
  position: relative;
}

.nav .nav-toggle {
  grid-column: 3;
  justify-self: end;
}

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

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

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

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

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

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

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

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

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

.hero {
  padding: 96px 0 0;
  position: relative;
}

.hero--visual {
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0 0 120px 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero-bg--logo {
  display: grid;
  place-items: center;
}

.hero-bg--logo img {
  width: min(42vw, 360px);
  height: auto;
  object-fit: contain;
  opacity: 0.08;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 241, 238, 0.35) 0%, var(--bg) 88%);
}

.featured-split--text .featured-split__panel {
  min-height: 360px;
  background:
    linear-gradient(160deg, rgba(143, 39, 52, 0.92), rgba(28, 11, 13, 0.95)),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.03) 3px, rgba(255,255,255,0.03) 4px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  gap: 8px;
}

.featured-mark {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  opacity: 0.35;
  margin-bottom: auto;
}

.featured-panel-kicker {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0;
  opacity: 0.75;
}

.featured-panel-place {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 0;
}

.review-section--dark .highlight-phrase,
.review-section--dark .qa-q,
.review-section--dark .kicker {
  color: #e8b4b8;
}

.review-section--dark .icon-list svg,
.review-section--dark .unexpected-split svg {
  color: #e8b4b8;
}

.review-section--dark .badge-plus {
  background: rgba(255, 255, 255, 0.12);
  color: #e8b4b8;
}

.review-section--dark .badge-minus {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 241, 238, 0.7);
}

.review-section--dark .verdict-alt li,
.review-section--dark .icon-list li,
.review-section--dark .qa-row {
  border-bottom-color: rgba(247, 241, 238, 0.12);
}

.review-section--dark .step-h::before {
  background: #e8b4b8;
  color: var(--secondary);
}

.review-section--dark details.acc {
  border-bottom-color: rgba(247, 241, 238, 0.12);
}

.review-section--dark details.acc summary::after {
  color: #e8b4b8;
}

.hero--visual .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 820px;
}

.hero h1 {
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

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

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

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

.stat-band__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--accent);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.stat-band__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hotels-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

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

.hotel-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.hotel-card:hover {
  box-shadow: var(--shadow-md);
}

.hotel-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.hotel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(28, 11, 13, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--on-accent);
}

.hotel-card__overlay h3 {
  color: var(--on-accent);
  font-size: 22px;
  margin: 0 0 6px;
}

.hotel-card__stars {
  letter-spacing: 2px;
  font-size: 14px;
}

.hotel-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

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

.hotel-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

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

.quote-carousel__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  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.45;
  font-weight: 500;
  color: var(--text);
}

.quote-slide cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

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

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

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

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

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

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

.steps {
  display: grid;
  gap: 28px;
  max-width: 800px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}

.step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(143, 39, 52, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.step__icon svg {
  width: 24px;
  height: 24px;
}

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

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

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.chip-mono {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

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

.trust-card {
  text-align: center;
  padding: 8px 12px;
}

.trust-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(143, 39, 52, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.trust-card__icon svg {
  width: 28px;
  height: 28px;
}

.stats-strip {
  background: var(--accent);
  color: var(--on-accent);
  padding: 22px 0;
}

.stats-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  font-size: 15px;
}

.stats-strip strong {
  font-family: var(--font-heading);
  font-weight: 500;
  margin-right: 8px;
}

.featured-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.featured-split__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-split__body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.featured-split__quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
  margin: 0;
}

.site-footer {
  background: var(--surface);
  color: var(--text);
  margin-top: 0;
}

.footer-mega {
  background: var(--secondary);
  color: rgba(247, 241, 238, 0.92);
  padding: 88px 0 0;
}

.footer-mega a {
  color: rgba(247, 241, 238, 0.82);
  text-decoration: none;
}

.footer-mega a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px 24px;
}

.footer-brand-blurb {
  color: rgba(247, 241, 238, 0.7);
  font-size: 14px;
  line-height: 1.65;
  margin: 14px 0 18px;
  max-width: 280px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-name {
  color: #fff;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.trust-pill {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(247, 241, 238, 0.22);
  color: rgba(247, 241, 238, 0.75);
  border-radius: 999px;
}

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

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

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

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

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

.footer-col .footer-text-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(247, 241, 238, 0.82);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-col .footer-text-btn:hover {
  color: #fff;
}

.footer-consent {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0 18px;
  border-top: 1px solid rgba(247, 241, 238, 0.12);
  margin-top: 48px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(247, 241, 238, 0.08);
  background: rgba(0, 0, 0, 0.18);
  margin: 0 -20px;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.footer-mega .container > .footer-bottom {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  padding-left: max(20px, calc((100vw - min(100vw - 40px, var(--max))) / 2 + 20px));
  padding-right: max(20px, calc((100vw - min(100vw - 40px, var(--max))) / 2 + 20px));
  box-sizing: border-box;
}

.footer-copy {
  font-size: 13px;
  color: rgba(247, 241, 238, 0.55);
}

.footer-requisites {
  font-size: 12px;
  color: rgba(247, 241, 238, 0.42);
  margin-top: 8px;
  line-height: 1.5;
}

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

.page-hero {
  padding: 64px 0 32px;
}

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

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

.legal-content {
  padding: 40px 0 96px;
  max-width: 800px;
}

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

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

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

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

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

.author-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}

.author-mono {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 28px;
}

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

.author-articles {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.author-articles li {
  margin-bottom: 8px;
}

.reserve-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 0 96px;
}

.reserve-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.hotel-indicator {
  padding: 14px 18px;
  background: rgba(143, 39, 52, 0.08);
  border-left: 3px solid var(--accent);
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

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

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

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

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 8px;
}

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

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

.agree-row.is-error input,
.agree-row input[aria-invalid="true"] {
  outline: 2px solid var(--accent);
}

.form-error {
  color: var(--accent);
  font-size: 13px;
  margin: 0 0 12px;
  display: none;
}

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

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

.processing-panel {
  display: none;
}

.processing-panel.is-visible,
.reserve-form.is-hidden {
  display: none;
}

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

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

.ref-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

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

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 10px;
}

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

.review-lead {
  margin: 0 0 0;
}

.review-lead img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.verdict-band {
  background: var(--secondary);
  color: rgba(247, 241, 238, 0.92);
  padding: 40px 0;
  margin: 28px 0 0;
}

.verdict-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: center;
}

.verdict-score {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  color: #fff;
}

.verdict-score span {
  font-size: 0.45em;
  opacity: 0.7;
}

.verdict-stars {
  letter-spacing: 3px;
  color: #e8b4b8;
  margin: 6px 0;
}

.verdict-count {
  font-size: 14px;
  color: rgba(247, 241, 238, 0.65);
}

.verdict-takeaway {
  flex: 1;
  min-width: 240px;
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 36px;
}

.byline-mono {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.byline-text {
  font-size: 14px;
  line-height: 1.45;
}

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

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

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

.article-body {
  max-width: 720px;
  margin-bottom: 48px;
}

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

.takeaway-line {
  font-weight: 700;
  color: var(--text);
}

.facts-inline {
  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-inline .sep {
  margin: 0 10px;
  opacity: 0.45;
}

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

.facts-chip {
  background: rgba(143, 39, 52, 0.08);
  padding: 10px 14px;
  font-size: 13px;
  border-radius: var(--radius-btn);
}

.facts-chip strong {
  font-weight: 600;
}

.facts-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.fact-tile {
  background: rgba(143, 39, 52, 0.08);
  padding: 18px;
  border-radius: var(--radius-btn);
}

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

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

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

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

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

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

.facts-def {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
}

.facts-def th,
.facts-def td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.facts-def th {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

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

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

.facts-header-strip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 14px;
}

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

.review-section--dark {
  background: var(--secondary);
  color: rgba(247, 241, 238, 0.92);
  border-top: none;
  padding: 80px 0;
}

.review-section--dark h2,
.review-section--dark h3 {
  color: #fff;
}

.review-section--dark a {
  color: #e8b4b8;
}

.review-section--dark .text-muted,
.review-section--dark .kicker {
  color: rgba(247, 241, 238, 0.65);
}

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

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

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

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

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

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

.review-section--dark .tick-list li::before {
  color: #e8b4b8;
}

.aside-panel {
  border: 1px solid var(--border);
  padding: 24px 28px;
  background: var(--surface);
}

.aside-panel .kicker {
  color: var(--text-muted);
}

.aside-panel ul {
  margin: 12px 0 0;
  padding-left: 1.1em;
}

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

.reach-card {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--surface);
}

.reach-card svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}

.tinted-band {
  background: rgba(143, 39, 52, 0.08);
  padding: 40px 28px;
  text-align: center;
}

.tinted-band p {
  max-width: 560px;
  margin: 0 auto;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pill {
  background: rgba(143, 39, 52, 0.1);
  color: var(--accent-2);
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 999px;
  font-weight: 600;
}

.review-section--dark .pill {
  background: rgba(247, 241, 238, 0.12);
  color: #fff;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

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

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

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

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

.sleep-icon span {
  font-size: 13px;
  color: var(--text-muted);
}

details.acc {
  border-bottom: 1px solid var(--border);
}

details.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

details.acc summary::after {
  content: "▾";
  transition: transform 0.2s ease;
  color: var(--accent);
}

details.acc[open] summary::after {
  transform: rotate(180deg);
}

details.acc .acc-body {
  padding: 0 0 16px;
  color: var(--text-muted);
}

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

.tag-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.tag-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

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

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

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

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

.verdict-alt li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.badge-plus,
.badge-minus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.badge-plus {
  background: rgba(143, 39, 52, 0.12);
  color: var(--accent);
}

.badge-minus {
  background: rgba(28, 11, 13, 0.08);
  color: var(--text-muted);
}

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

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

.icon-list svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 2px;
}

.address-panel {
  background: rgba(143, 39, 52, 0.08);
  padding: 28px 24px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.address-panel svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.where-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.steps-h {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-h {
  position: relative;
  padding-top: 8px;
}

.step-h::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.drop-cap::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 3.4em;
  line-height: 0.85;
  padding-right: 10px;
  color: var(--accent);
}

.narrow-measure {
  max-width: 640px;
}

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

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

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

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

.season-cell strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

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

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

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

.staff-quote-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.pull-quote {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.45;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
  font-family: var(--font-body);
}

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

.giant-mark {
  font-family: var(--font-heading);
  font-size: 160px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  text-align: center;
}

.subcap {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.4em 0 0.5em;
  font-weight: 600;
}

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

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

.article-with-rail {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
}

.rail-sticky {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.guest-reviews {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

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

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

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

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

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

.guest-photo-btn {
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  display: block;
}

.guest-photo-btn img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
}

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

.guest-snap {
  position: relative;
}

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

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

.guest-snap .guest-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

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

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

.guest-masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(143, 39, 52, 0.12);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
}

.reserve-cta {
  padding: 80px 0;
  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;
}

.map-frame {
  width: 100%;
  max-width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg);
}

.map-fallback {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 11, 13, 0.88);
  z-index: 1000;
  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(247, 241, 238, 0.85);
  margin-top: 12px;
  font-size: 14px;
}

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

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

.consent-banner.is-visible {
  display: block;
}

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

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

.consent-cats {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

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

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

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

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

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

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

  .featured-split,
  .authors-teaser,
  .trust-grid,
  .reserve-cta__grid,
  .split-2,
  .qa-grid,
  .tag-blocks,
  .article-with-rail,
  .where-split,
  .staff-quote-split,
  .evening-split {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .nav .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

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

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav.is-open {
    padding-bottom: 12px;
  }

  .nav.is-open .nav-left,
  .nav.is-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .nav.is-open .nav-link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
  }

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

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

  .rail-sticky {
    position: static;
  }
}

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

  .hotel-grid,
  .trust-grid,
  .reach-cards,
  .facts-grid-2x2,
  .form-grid,
  .steps-h,
  .sleep-icons {
    grid-template-columns: 1fr;
  }

  .guest-masonry {
    columns: 1;
  }

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

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

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

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

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

  .hero {
    padding-top: 56px;
  }

  .reserve-card {
    padding: 24px;
  }

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

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

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

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

  .brand-name {
    font-size: 16px;
  }
}
