:root {
  --bg: #f9f2ea;
  --surface: #ffffff;
  --surface-alt: #f9f2ea;
  --text: #2c1a0d;
  --text-muted: #6f5844;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #d67016;
  --accent-2: #aa5510;
  --secondary: #1f1108;
  --on-accent: #ffffff;
  --radius: 8px;
  --radius-btn: 6px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Arial, Helvetica, sans-serif;
  --max-w: 1100px;
  --section-pad: 132px;
  --shadow-sm: 0 1px 2px rgba(31, 17, 8, 0.06), 0 2px 8px rgba(31, 17, 8, 0.04);
  --shadow-lg: 0 8px 24px rgba(31, 17, 8, 0.12), 0 2px 6px rgba(31, 17, 8, 0.06);
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(rgba(44, 26, 13, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  min-height: 100vh;
  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: 400;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(24px, 3.4vw, 36px);
}

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

p {
  margin: 0 0 1em;
}

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

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

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

.section--tight {
  padding: calc(var(--section-pad) * 0.7) 0;
}

.section-centre {
  text-align: center;
}

.section-centre .standfirst {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

.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;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--accent-2);
  color: var(--on-accent);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

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

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

.btn--ghost:hover {
  background: var(--surface);
  color: var(--text);
}

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

.text-link {
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 242, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

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

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent-2);
  border-bottom-color: var(--accent);
}

.nav-utility {
  width: 36px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

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

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

  .nav-utility {
    display: none;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    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;
    box-shadow: var(--shadow-lg);
  }

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

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

.hero-search {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-accent);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(31, 17, 8, 0.82) 0%, rgba(31, 17, 8, 0.62) 45%, rgba(170, 85, 16, 0.5) 100%),
    #1f1108;
}

.hero-search__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.14;
  pointer-events: none;
  max-width: none;
  z-index: 0;
}

.hero-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-18deg, transparent, transparent 28px, rgba(255, 255, 255, 0.03) 28px, rgba(255, 255, 255, 0.03) 29px);
  pointer-events: none;
  z-index: 0;
}

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

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

.hero-search h1 {
  color: #fff;
  margin-bottom: 16px;
}

.hero-search__sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.search-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.search-bar label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  padding: 6px 10px;
}

.search-bar input,
.search-bar select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  padding: 0;
  outline: none;
  width: 100%;
}

.search-bar .btn {
  align-self: stretch;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .search-bar {
    grid-template-columns: 1fr;
  }
}

.hotels-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

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

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

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

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

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

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

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

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

.star-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--surface);
  color: var(--accent-2);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

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

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

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

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

.hotel-card .btn {
  align-self: flex-start;
}

.authors-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .authors-teaser-grid {
    grid-template-columns: 1fr;
  }
}

.author-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

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

.monogram--sm {
  width: 40px;
  height: 40px;
  font-size: 13px;
}

.author-feature h3 {
  margin-bottom: 4px;
}

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

.destinations-band {
  background: rgba(214, 112, 22, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.destinations-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .destinations-inner {
    grid-template-columns: 1fr;
  }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-block;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

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

.stats-band {
  background: var(--accent);
  color: var(--on-accent);
  padding: 28px 0;
  border: none;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 48px;
  text-align: center;
}

.stat-item {
  font-size: 15px;
}

.stat-item strong {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  display: inline-block;
  margin-right: 8px;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 22px 0;
}

.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
}

.marquee__item {
  flex: 0 0 auto;
  max-width: 360px;
  color: var(--text-muted);
  font-style: italic;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marquee__item span {
  color: var(--accent-2);
  font-style: normal;
  font-weight: 600;
  margin-left: 8px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

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

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

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(214, 112, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-2);
}

.tip-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.tip-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.featured-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.featured-label {
  width: min(100%, 280px);
  margin: 0 auto 28px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.featured-label__kicker {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.featured-label__mark {
  font-family: var(--font-heading);
  font-size: 40px;
  letter-spacing: -0.2px;
  color: var(--accent-2);
  line-height: 1;
}

.featured-card .stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.footer-main {
  text-align: center;
  padding: 64px 24px 40px;
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}

.footer-main .brand {
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  max-width: 900px;
  margin-inline: auto;
}

.footer-links li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
}

.footer-links li:not(:last-child)::after {
  content: "·";
  margin: 0 10px;
  color: var(--text-muted);
}

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

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

.footer-email {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 15px;
}

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

.footer-requisites {
  color: var(--text-muted);
  font-size: 12px;
  margin: 0;
  opacity: 0.85;
}

.footer-bottom {
  background: #f0e6da;
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.footer-bottom-inner {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

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

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

.page-hero .meta {
  color: var(--text-muted);
  margin: 0;
}

.legal-body {
  padding: 72px 0 80px;
}

.legal-body h2 {
  margin-top: 2em;
}

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

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

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

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

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

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

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

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

.review-lead {
  margin: 24px 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

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

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

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

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

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

.review-section {
  padding: calc(var(--section-pad) * 1.4) 0;
  text-align: center;
}

.review-section > .wrap > h2,
.review-section > .wrap > .standfirst {
  text-align: center;
}

.review-section .standfirst {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

.facts-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 560px) {
  .facts-tiles {
    grid-template-columns: 1fr;
  }
}

.fact-tile {
  background: rgba(214, 112, 22, 0.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fact-tile svg {
  flex-shrink: 0;
  color: var(--accent-2);
}

.fact-tile .kicker {
  margin-bottom: 4px;
  font-size: 10px;
}

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

.facts-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.facts-stats__cell {
  flex: 1 1 140px;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.facts-stats__value {
  font-family: var(--font-heading);
  font-size: 26px;
  display: block;
  margin-bottom: 6px;
}

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

.facts-inline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: left;
}

.facts-inline strong {
  color: var(--text);
}

.qa-stack {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

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

.qa-row:first-child {
  border-top: 1px solid var(--border);
}

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

.qa-row p {
  margin: 0;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

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

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

.split-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

@media (max-width: 768px) {
  .split-2 {
    grid-template-columns: 1fr;
  }
}

.tinted-card {
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 22px;
}

.quiet-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.class-table {
  max-width: 720px;
  margin: 24px auto 0;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

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

.class-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.accordion {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.accordion details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 36px 16px 0;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}

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

.accordion summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.accordion details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.accordion details p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.score-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 700px) {
  .score-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

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

.noticed-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.evening-cap {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 0.8;
  color: rgba(214, 112, 22, 0.35);
  text-align: center;
}

.narrow-callout {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

.alt-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  padding: 0;
}

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

.badge-pm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-accent);
}

.badge-pm--plus {
  background: var(--accent);
}

.badge-pm--minus {
  background: var(--secondary);
}

.season-rows {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  text-align: left;
}

.season-row {
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.evening-band {
  background: rgba(31, 17, 8, 0.06);
  border-radius: var(--radius);
  padding: 48px 28px;
  max-width: 900px;
  margin: 0 auto;
}

.evening-band .measure {
  max-width: 520px;
  margin: 16px auto 0;
  text-align: center;
}

.takeaway {
  font-weight: 700;
  margin-top: 1em;
}

.meter-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  align-items: center;
}

@media (max-width: 700px) {
  .meter-wrap {
    grid-template-columns: 1fr;
  }
}

.meter-row {
  margin-bottom: 14px;
}

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

.meter-bar {
  height: 8px;
  background: rgba(31, 17, 8, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.meter-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

.reason-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 28px auto 0;
  text-align: left;
}

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

@media (max-width: 520px) {
  .reason-cards {
    grid-template-columns: 1fr;
  }
}

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

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

.pill {
  background: rgba(214, 112, 22, 0.12);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.icon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  .icon-cards {
    grid-template-columns: 1fr;
  }
}

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

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 112, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent-2);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

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

.audience-tile {
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 20px;
}

.timeline {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  padding-left: 28px;
}

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

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

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

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

.hairline-quote {
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 19px;
  line-height: 1.7;
  text-align: left;
}

.service-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

@media (max-width: 700px) {
  .service-split {
    grid-template-columns: 1fr;
  }
}

.pull-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-style: italic;
  box-shadow: var(--shadow-sm);
}

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

.article-with-aside {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.article-with-aside .facts-aside {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

@media (max-width: 899px) {
  .article-with-aside {
    grid-template-columns: 1fr;
  }

  .article-with-aside .facts-aside {
    position: static;
    order: -1;
  }
}

.guest-masonry {
  columns: 2;
  column-gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 700px) {
  .guest-masonry {
    columns: 1;
  }
}

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

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

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

.guest-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  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: none;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
  border-radius: 4px;
  overflow: hidden;
}

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

.guest-photos--wide .guest-photo-btn img {
  width: min(100%, 420px);
  height: auto;
  max-height: 240px;
  object-fit: cover;
}

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

.carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.carousel__frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px 28px;
  box-shadow: var(--shadow-sm);
  min-height: 280px;
  position: relative;
}

.carousel__mark {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: rgba(214, 112, 22, 0.3);
  position: absolute;
  top: 8px;
  left: 20px;
}

.carousel__slide {
  display: none;
}

.carousel__slide.is-active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(31, 17, 8, 0.2);
  cursor: pointer;
  padding: 0;
}

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

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

.snap-strip-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.snap-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
}

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

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

@media (max-width: 768px) {
  .snap-strip .guest-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 480px) {
  .snap-strip .guest-card {
    flex: 0 0 100%;
  }
}

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

.reserve-cta {
  background: var(--secondary);
  color: var(--on-accent);
  padding: calc(var(--section-pad) * 0.7) 0;
  border-top: none;
}

.reserve-cta h2 {
  color: #fff;
  text-align: center;
}

.reserve-cta address {
  font-style: normal;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px;
}

.reserve-cta .map-wrap {
  max-width: 900px;
  margin: 0 auto 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.reserve-cta .cta-row {
  text-align: center;
}

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

.author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (max-width: 560px) {
  .author-card {
    grid-template-columns: 1fr;
  }
}

.author-card .role {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
}

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

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

.reserve-page {
  padding: 56px 0 80px;
}

.reserve-form,
.reserve-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
}

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

.hotel-indicator {
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 15px;
}

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

.agree-row input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 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 #b33;
}

.agree-error,
.form-error {
  color: #8b1e1e;
  font-size: 13px;
  margin: 0 0 12px;
  display: none;
}

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

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

.reserve-panel[hidden],
.reserve-form[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(31, 17, 8, 0.86);
  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(255, 255, 255, 0.85);
  margin-top: 12px;
  font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

.consent-actions .btn {
  font-size: 14px;
  padding: 10px 16px;
}

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

  .wrap {
    width: min(100% - 28px, var(--max-w));
  }

  .featured-card,
  .reserve-form,
  .reserve-panel {
    padding: 28px 20px;
  }

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

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