:root {
  --bg: #f8f1ef;
  --surface: #ffffff;
  --surface-alt: #f8f1ef;
  --text: #2b1512;
  --text-muted: #6c534d;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #f0603f;
  --accent-2: #c4472a;
  --secondary: #1d0d0a;
  --on-accent: #ffffff;
  --radius: 28px;
  --radius-btn: 2px;
  --shadow: 0 10px 30px rgba(29, 13, 10, 0.08);
  --font-heading: Rockwell, "Rockwell Nova", "Courier New", Georgia, serif;
  --font-body: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  --max: 1120px;
  --section-pad: 88px;
  --nav-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.62;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

h2 {
  font-size: clamp(24px, 3.2vw, 34px);
}

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

p {
  margin: 0 0 1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  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;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-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-on-dark {
  background: var(--on-accent);
  color: var(--secondary);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  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-magazine {
  padding: 36px 0 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(240, 96, 63, 0.12), transparent 48%),
    linear-gradient(180deg, #fff8f6 0%, var(--bg) 100%);
}

.hero-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-magazine .lead {
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 36px;
}

.hero-figure {
  margin: 0;
}

.hero-figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.hero-figure-logo {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(240, 96, 63, 0.18), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  border: 1px solid var(--border);
  border-bottom: 0;
  padding: 48px 24px 32px;
  text-align: center;
}

.hero-figure-logo img {
  width: min(220px, 46vw);
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
}

.hero-figure figcaption {
  padding: 14px 4px 0;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

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

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

.hotel-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hotel-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hotel-card:nth-child(2) {
  transition-delay: 0.08s;
}

.hotel-card:nth-child(3) {
  transition-delay: 0.16s;
}

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

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

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

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

.meta-line {
  color: var(--text-muted);
  font-size: 14px;
}

.hotel-card-body .teaser {
  color: var(--text-muted);
  flex: 1;
}

.hotel-card-body .btn {
  align-self: flex-end;
  margin-top: 12px;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(240, 96, 63, 0.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.icon-row h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

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

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

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

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

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

.voices {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.voices-quote-wrap {
  position: relative;
  padding: 40px 20px 24px;
}

.voices-mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: rgba(240, 96, 63, 0.25);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.voices-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.voices-slide.is-active {
  display: block;
  opacity: 1;
}

.voices-slide p {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  margin-bottom: 18px;
}

.voices-slide cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.voices-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(43, 21, 18, 0.2);
  cursor: pointer;
  padding: 0;
}

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

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

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

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

.footer-cta {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--on-accent);
  padding: 48px 0;
  text-align: center;
}

.footer-cta h2 {
  color: var(--on-accent);
  margin-bottom: 18px;
}

.footer-main {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

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

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

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 16px;
}

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

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

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

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

.footer-col button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}

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

.footer-bottom {
  padding: 28px 0 40px;
  text-align: center;
}

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

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 18px;
}

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

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

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

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

.page-hero .meta-line {
  margin-top: 8px;
}

.review-lead {
  margin: 0;
}

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

.verdict-band {
  background: var(--secondary);
  color: var(--on-accent);
  padding: 40px 0;
}

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

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

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

.verdict-band .stars {
  color: var(--accent);
}

.verdict-take {
  flex: 1;
  min-width: 220px;
  font-size: 18px;
  max-width: 36rem;
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  padding-top: 48px;
}

.byline-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  order: 2;
}

.article-col {
  order: 1;
}

.byline-mono {
  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;
  margin-bottom: 14px;
}

.byline-aside .role,
.byline-aside .stay,
.byline-aside .note {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.article-col h2 {
  margin-top: 1.4em;
}

.content-section {
  padding: 56px 0;
  background: var(--bg);
}

.content-section .rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
  border: 0;
}

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

.aside-panel .muted-h {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 12px;
}

.aside-panel ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--text-muted);
}

.aside-panel li + li {
  margin-top: 8px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(240, 96, 63, 0.12);
  color: var(--accent-2);
  font-size: 14px;
}

.scale-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}

.rating-track {
  position: relative;
  height: 12px;
  background: rgba(43, 21, 18, 0.1);
  border-radius: 999px;
}

.rating-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.rating-marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--surface);
  border: 3px solid var(--accent-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rating-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

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

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

.sleep-item strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
}

.sleep-item span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: rgba(240, 96, 63, 0.08);
  border-radius: var(--radius);
  padding: 20px;
}

.fact-tile {
  background: var(--surface);
  border-radius: calc(var(--radius) - 8px);
  padding: 18px;
  border: 1px solid var(--border);
}

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

.fact-tile strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
}

.fact-tile svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-2);
  fill: none;
  stroke-width: 1.7;
  margin-bottom: 8px;
}

.bars-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}

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

.bars-score .big {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
}

.bars-score .cap {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

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

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

.bar-track {
  height: 8px;
  background: rgba(43, 21, 18, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.evening-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.evening-copy {
  font-size: 1.15em;
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto;
}

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

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

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

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

.centered-rule-block {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

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

.season-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

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

.season-col h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

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

.big-quote {
  font-family: var(--font-heading);
  font-size: clamp(80px, 14vw, 140px);
  line-height: 0.8;
  color: rgba(240, 96, 63, 0.28);
  text-align: center;
}

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

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

.guest-card .stars {
  font-size: 14px;
}

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

.guest-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(240, 96, 63, 0.15);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

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

.guest-photo-btn {
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
  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);
}

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

.guest-grid-3 .guest-card {
  margin-bottom: 0;
  min-height: 100%;
}

.guest-card.is-highlight {
  border-color: var(--accent);
  box-shadow: 0 12px 36px rgba(240, 96, 63, 0.18);
}

.reserve-cta {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(240, 96, 63, 0.14), transparent 50%),
    var(--surface);
}

.reserve-cta .map-wrap {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.address-fallback {
  padding: 40px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  margin: 24px 0;
}

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

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

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

.author-card ul {
  margin: 12px 0 0;
}

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

.hotel-indicator {
  padding: 16px 18px;
  border-radius: calc(var(--radius) - 8px);
  background: rgba(240, 96, 63, 0.1);
  border: 1px solid var(--border);
  margin-bottom: 28px;
}

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

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

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

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

.agree-row input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 2px;
  accent-color: var(--accent);
}

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

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

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

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

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

.processing-panel {
  display: none;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

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

.summary-box {
  margin: 20px 0;
  padding: 18px;
  background: var(--bg);
  border-radius: calc(var(--radius) - 10px);
  font-size: 15px;
}

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

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

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4em;
  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);
}

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

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

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

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

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

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

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(29, 13, 10, 0.82);
  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: var(--on-accent);
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

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

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

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

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

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

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

  .nav-links {
    position: absolute;
    top: var(--nav-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;
    display: none;
  }

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

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

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

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

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

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

  .authors-teaser-grid {
    grid-template-columns: 1fr;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .byline-aside {
    order: 0;
  }

  .scale-row,
  .bars-layout,
  .evening-split {
    grid-template-columns: 1fr;
  }
}

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

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

  .facts-grid,
  .season-table,
  .sleep-icons {
    grid-template-columns: 1fr;
  }

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

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

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

  .guest-masonry {
    columns: 1;
  }

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

  .hero-utility {
    gap: 8px 16px;
    letter-spacing: 2px;
  }

  .consent-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px;
  }

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

  .hotel-card-body {
    padding: 20px;
  }

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