:root {
  --bg: #f5ede1;
  --surface: #ffffff;
  --surface-alt: #f5ede1;
  --text: #1d4e4f;
  --text-muted: #4a6b6c;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #e89b6c;
  --accent-2: #d27d4c;
  --secondary: #1d4e4f;
  --on-accent: #ffffff;
  --deep: #1d4e4f;
  --radius: 16px;
  --radius-btn: 6px;
  --font-heading: Consolas, 'Courier New', monospace;
  --font-body: Tahoma, Geneva, sans-serif;
  --max: 1240px;
  --section-pad: 132px;
  --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.7;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(rgba(29, 78, 79, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

h1 {
  font-size: clamp(46px, 8vw, 88px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 1rem;
  display: block;
}

.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: 80px 0;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.is-solid {
  background: rgba(245, 237, 225, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: -0.5px;
  font-weight: 500;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 0.25rem;
}

.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 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 64px;
  background:
    linear-gradient(165deg, #f8f1e6 0%, #efe3d2 42%, #e4d3bf 100%);
  border-bottom: 1px solid var(--border);
}

.hero__copy {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 48px;
}

.hero__copy h1 {
  margin-bottom: 0.45em;
}

.hero__sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.hero__band {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
  max-height: 420px;
}

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

.hero__band--logo {
  aspect-ratio: 21 / 8;
  max-height: 360px;
  background:
    linear-gradient(120deg, rgba(29, 78, 79, 0.92), rgba(232, 155, 108, 0.55)),
    var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__band--logo img {
  width: min(220px, 40%);
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

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

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

.hotel-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  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(29, 78, 79, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #fff;
}

.hotel-card__overlay h3 {
  color: #fff;
  margin: 0 0 0.35rem;
  font-size: clamp(20px, 2.4vw, 26px);
}

.hotel-card__body {
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

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

.hotel-card__body p {
  margin: 0;
  flex: 1;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.fact-list li {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.fact-list li:last-child {
  border-bottom: 0;
}

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

.dest-card {
  flex: 0 0 min(78%, 320px);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 200px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem 1.35rem 1.25rem;
}

.dest-card__panel {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -1px;
}

.dest-card__name {
  position: static;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -1px;
  margin: 1.5rem 0 0;
}

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

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

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  font-size: 14px;
  color: var(--text);
}

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

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.quote-card--highlight {
  background: var(--deep);
  color: #f5ede1;
  border-color: transparent;
}

.quote-card--highlight .stars {
  color: var(--accent);
}

.quote-card--highlight .quote-card__meta {
  color: rgba(245, 237, 225, 0.75);
}

.quote-card p {
  margin: 0.75rem 0 1.1rem;
}

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

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

.trust-card {
  text-align: left;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(232, 155, 108, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 0.4rem;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

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

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-family: var(--font-heading);
}

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

.footer-col li {
  margin-bottom: 0.55rem;
}

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

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

.footer-col details {
  display: none;
}

.footer-col summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

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

.footer-col summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.footer-col details[open] summary::after {
  transform: rotate(-135deg);
}

.footer-consent {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--border);
}

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

.footer-bottom {
  background: #efe6d8;
  padding: 1.1rem 0;
  margin-top: 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.footer-mark img {
  width: 28px;
  height: 23px;
}

.page-hero {
  padding: calc(var(--header-h) + 56px) 0 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero--simple {
  background: linear-gradient(180deg, #f8f1e6, var(--bg));
}

.lead-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 1.5rem 0 0;
  max-height: 520px;
}

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

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

.facts-strip {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.facts-strip .kicker {
  margin-bottom: 0.75rem;
}

.facts-bordered {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  list-style: none;
  margin: 0;
}

.facts-bordered li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.facts-bordered li:last-child {
  border-bottom: 0;
}

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

.facts-chip {
  background: rgba(232, 155, 108, 0.14);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.45rem 0.8rem;
  font-size: 13px;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.facts-tile {
  background: rgba(29, 78, 79, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.facts-tile strong {
  display: block;
  margin-top: 0.15rem;
}

.facts-inline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.facts-inline span + span::before {
  content: " · ";
  color: var(--accent-2);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  padding: 64px 0 40px;
}

.article-layout--reverse {
  grid-template-columns: 280px 1fr;
}

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

.article-open {
  order: 1;
}

.monogram {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 155, 108, 0.2);
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

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

.article-continued {
  padding: 40px 0 20px;
}

.article-continued h3 {
  margin-top: 1.75rem;
}

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

.review-section--deep {
  background: var(--deep);
  color: #f5ede1;
  border-top: 0;
  padding: 96px 0;
}

.review-section--deep h2,
.review-section--deep h3,
.review-section--deep .kicker {
  color: #f5ede1;
}

.review-section--deep .kicker {
  color: var(--accent);
}

.review-section--deep p,
.review-section--deep li {
  color: rgba(245, 237, 225, 0.9);
}

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

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

.qa-row .q {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.45rem;
}

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

.pros-cons {
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}

.panel--accent {
  background: rgba(232, 155, 108, 0.12);
}

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

.panel h3 {
  font-size: 18px;
  margin-bottom: 0.75rem;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

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

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

.badge--plus {
  background: rgba(232, 155, 108, 0.25);
  color: var(--accent-2);
}

.badge--minus {
  background: rgba(29, 78, 79, 0.1);
  color: var(--text);
}

.tinted-band {
  background: rgba(232, 155, 108, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}

.pull-quote {
  border-left: 5px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  letter-spacing: -1px;
  line-height: 1.25;
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}

.narrow-center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.sleep-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 1.25rem;
}

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

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

.timeline {
  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;
  margin-bottom: 1.4rem;
}

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

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.compare-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table td:first-child {
  color: var(--text-muted);
  width: 42%;
}

.verdict-line {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -1px;
  margin: 1.25rem 0;
  color: var(--accent-2);
}

.else-rows {
  display: grid;
  gap: 12px;
}

.else-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: var(--surface);
}

.guest-block {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

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

.guest-card {
  break-inside: avoid;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.guest-card > p {
  margin: 0;
  flex: none;
}

.guest-card__meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 14px;
  color: var(--text-muted);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(29, 78, 79, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  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;
  display: block;
}

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

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

.guest-stack .guest-card {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  padding: 1.5rem 0;
  margin: 0;
}

.guest-stack .guest-card__meta {
  justify-content: flex-end;
  text-align: right;
}

.carousel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 2.5rem 2rem 2rem;
}

.carousel__mark {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  position: absolute;
  top: 12px;
  left: 20px;
}

.carousel__slide {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

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

.carousel__slide > p {
  margin: 0;
}

.carousel__slide .guest-card__meta {
  margin-top: 4px;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

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

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

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

.carousel__nav button {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  color: var(--text);
}

.reserve-cta {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), #efe4d4);
}

.map-frame {
  width: 100%;
  max-width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 1.25rem 0 1.5rem;
}

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

.author-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  scroll-margin-top: 100px;
}

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

.author-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.reserve-wrap {
  padding: calc(var(--header-h) + 56px) 0 96px;
}

.form-card,
.processing-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
}

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

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

.hotel-indicator {
  background: rgba(232, 155, 108, 0.14);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
}

.agree-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0 1rem;
}

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

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

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

.agree-error {
  color: #9b2c2c;
  font-size: 14px;
  margin: 0 0 0.75rem;
  display: none;
}

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

.submit-error {
  color: #9b2c2c;
  font-size: 14px;
  margin: 0.75rem 0 0;
  display: none;
}

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

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

.legal-body {
  padding: calc(var(--header-h) + 48px) 0 96px;
}

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

.legal-body h1 {
  font-size: clamp(36px, 6vw, 56px);
}

.legal-body h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  margin-top: 2rem;
}

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

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

.legal-body th {
  background: rgba(29, 78, 79, 0.06);
}

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

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

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

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

.consent-cats {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.consent-cat {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 14px;
}

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

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(15, 17, 26, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.lightbox__inner {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  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: #f5ede1;
  margin-top: 0.75rem;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--text);
}

.hairline {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.centered-rule-block {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.icon-inline {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 0.4rem;
}

@media (max-width: 1024px) {
  .hotel-grid {
    gap: 20px;
  }

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

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

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

  .byline-aside {
    order: -1;
  }
}

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

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(245, 237, 225, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }

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

  .nav__link,
  .nav__cta {
    padding: 0.85rem 0.5rem;
  }

  .nav__cta {
    margin-left: 0;
    text-align: center;
  }

  .hotel-grid,
  .about-grid,
  .authors-teaser,
  .quote-grid,
  .trust-grid,
  .faq-grid,
  .qa-grid,
  .facts-grid,
  .form-row,
  .sleep-row {
    grid-template-columns: 1fr;
  }

  .masonry {
    columns: 1;
  }

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

  .footer-col h4,
  .footer-col .footer-desktop-links {
    display: none;
  }

  .footer-col details {
    display: block;
    border-top: 1px solid var(--border);
  }

  .footer-col details ul {
    display: none;
    padding-bottom: 0.75rem;
  }

  .footer-col details[open] ul {
    display: block;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .hero__band {
    aspect-ratio: 16 / 10;
  }
}

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

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

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

  .guest-photo-btn img {
    width: 120px;
    height: 96px;
  }

  .form-card,
  .processing-panel {
    padding: 1.35rem;
  }

  .carousel {
    padding: 2rem 1.1rem 1.25rem;
  }
}
