: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-pill: 999px;
  --font-heading: 'Courier New', 'Lucida Console', monospace;
  --font-body: 'Segoe UI', system-ui, sans-serif;
  --shadow: none;
  --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);
  -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.5px;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

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

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

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

p {
  margin: 0 0 1em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-left {
  justify-content: flex-end;
  padding-right: 24px;
}

.nav-right {
  justify-content: flex-start;
  padding-left: 24px;
}

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

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

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

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

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

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

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

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

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

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  text-align: center;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
}

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

.footer-brand img {
  width: 44px;
  height: 30px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
}

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

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

.footer-links li {
  display: inline-flex;
  align-items: center;
}

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

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.footer-email {
  font-size: 15px;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  text-align: left;
}

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

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--on-accent);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 17, 8, 0.55) 0%, rgba(31, 17, 8, 0.72) 55%, rgba(31, 17, 8, 0.88) 100%);
}

.hero-blobs::before,
.hero-blobs::after,
.band-blobs::before,
.band-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.hero-blobs::before {
  width: 420px;
  height: 420px;
  background: rgba(214, 112, 22, 0.35);
  top: 10%;
  left: -80px;
}

.hero-blobs::after {
  width: 360px;
  height: 360px;
  background: rgba(170, 85, 16, 0.28);
  bottom: 5%;
  right: -60px;
}

.hero-content {
  width: min(100% - 40px, 780px);
  padding: 120px 0 100px;
}

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

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.55);
  animation: cuePulse 1.8s ease-in-out infinite;
}

@keyframes cuePulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

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

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

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

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

.hotel-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.hotel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31, 17, 8, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--on-accent);
}

.hotel-card-overlay h3 {
  margin: 0 0 6px;
  color: var(--on-accent);
  font-size: clamp(20px, 2.2vw, 26px);
}

.stars {
  letter-spacing: 2px;
  color: #f0c080;
  font-size: 14px;
}

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

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
}

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

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

.stats-band {
  background: var(--secondary);
  color: var(--on-accent);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.band-blobs::before {
  width: 380px;
  height: 380px;
  background: rgba(214, 112, 22, 0.22);
  top: -120px;
  left: 10%;
}

.band-blobs::after {
  width: 300px;
  height: 300px;
  background: rgba(214, 112, 22, 0.18);
  bottom: -100px;
  right: 8%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-cell {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.stat-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

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

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.acc-btn::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.acc-item.is-open .acc-btn::after {
  content: "−";
}

.acc-panel {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
}

.acc-item.is-open .acc-panel {
  display: block;
}

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

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

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(214, 112, 22, 0.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
}

.tip-card h3 {
  margin: 0;
  font-size: 22px;
}

.tip-card p {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}

.page-hero {
  padding: 56px 0 40px;
}

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

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

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

.legal-page h1 {
  margin-bottom: 16px;
}

.legal-page h2 {
  margin-top: 2em;
  font-size: clamp(22px, 3vw, 30px);
}

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

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

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

.legal-page th {
  background: rgba(214, 112, 22, 0.08);
  font-weight: 600;
}

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

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

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

.author-role {
  color: var(--accent-2);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.author-card h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 32px);
}

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

.author-articles h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

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

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

.reserve-wrap {
  padding: 56px 0 var(--section-pad);
}

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

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

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

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

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

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

.form-field input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  background: var(--surface-alt);
  color: var(--text);
}

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

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

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

.agree-row label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.agree-row a {
  color: var(--accent-2);
}

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

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

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

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

.processing-panel {
  display: none;
}

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

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

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

.summary-box dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 0;
}

.summary-box dt {
  color: var(--text-muted);
}

.summary-box dd {
  margin: 0;
  font-weight: 600;
}

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

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

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

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

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

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

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

.verdict-score span {
  font-size: 0.45em;
  color: rgba(255, 255, 255, 0.7);
}

.verdict-copy {
  flex: 1;
  min-width: 240px;
}

.verdict-copy .stars {
  margin-bottom: 8px;
}

.verdict-count {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 10px;
}

.verdict-takeaway {
  margin: 0;
  font-size: 18px;
  max-width: 640px;
}

.review-article-wrap {
  padding: 56px 0 24px;
}

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

.article-layout.no-rail {
  grid-template-columns: 1fr;
}

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

@media (min-width: 901px) {
  .byline-aside {
    order: 0;
    position: sticky;
    top: 96px;
  }

  .article-with-float {
    position: relative;
    overflow: auto;
  }

  .article-with-float .byline-aside.float-right {
    float: right;
    width: 260px;
    margin: 0 0 24px 32px;
    position: static;
  }

  .facts-chips.float-right {
    float: right;
    width: 280px;
    margin: 0 0 24px 32px;
  }
}

.byline-aside .monogram {
  width: 52px;
  height: 52px;
  font-size: 16px;
  margin-bottom: 14px;
}

.byline-name {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}

.byline-name a {
  color: var(--text);
  text-decoration: none;
}

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

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

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

.article-body h3 {
  margin-top: 1.6em;
  font-size: 20px;
}

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

.review-section .section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}

.review-section .kicker {
  margin-bottom: 8px;
}

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

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

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

.step {
  position: relative;
  padding-left: 0;
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: var(--border);
}

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

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

.room-subs h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin: 1.8em 0 0.6em;
}

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

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

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

.badge-plus {
  background: rgba(214, 112, 22, 0.15);
  color: var(--accent-2);
}

.badge-minus {
  background: rgba(31, 17, 8, 0.08);
  color: var(--text-muted);
}

.a11y-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.a11y-panel svg {
  color: var(--accent-2);
}

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

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

.facts-chips h2,
.facts-strip .kicker,
.facts-table-wrap .kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-2);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 14px;
}

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

.chip {
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13px;
}

.chip strong {
  font-weight: 600;
}

.facts-strip {
  padding: 28px 0 8px;
}

.facts-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

.fact-tile svg {
  color: var(--accent-2);
  margin-bottom: 10px;
}

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

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

.facts-table-wrap {
  padding: 28px 0 8px;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-table th,
.facts-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-weight: 400;
}

.facts-table th {
  color: var(--text-muted);
  width: 40%;
}

.timeline {
  position: relative;
  padding-left: 28px;
  margin-top: 24px;
}

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

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

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

.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

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

.staff-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.pull-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.45;
}

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

.trade-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  position: relative;
}

.trade-cols::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.trade-cols h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.trade-cols ul {
  list-style: none;
  padding: 0;
}

.trade-cols li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.trade-cols .love li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.trade-cols .know li::before {
  content: "–";
  position: absolute;
  left: 4px;
  color: var(--text-muted);
  font-weight: 700;
}

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

.audience-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}

.audience-block svg {
  color: var(--accent-2);
  margin: 0 auto 12px;
}

.audience-block h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

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

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

.decor-cap {
  font-family: var(--font-heading);
  font-size: clamp(120px, 18vw, 200px);
  line-height: 0.8;
  color: rgba(214, 112, 22, 0.2);
  text-align: center;
  user-select: none;
}

.rating-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.rating-band .big {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 64px);
  color: var(--accent-2);
  line-height: 1;
}

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

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

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

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

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

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

.season-table th {
  background: rgba(214, 112, 22, 0.1);
  font-family: var(--font-heading);
  font-weight: 500;
}

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

.tinted-band {
  background: rgba(214, 112, 22, 0.1);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
}

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

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

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

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

.reach-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

.food-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.guest-reviews {
  padding: 56px 0;
}

.guest-featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

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

.guest-card.featured {
  padding: 32px;
  background: var(--secondary);
  color: var(--on-accent);
  border-color: transparent;
}

.guest-card.featured .stars {
  color: #f0c080;
}

.guest-card.featured .guest-quote {
  font-size: 18px;
  line-height: 1.55;
}

.guest-card.highlighted {
  border-color: var(--accent);
  outline: 1px solid var(--accent);
}

.guest-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

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

.guest-card.featured .guest-meta {
  color: rgba(255, 255, 255, 0.7);
}

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

.guest-photo-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}

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

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

.guest-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.carousel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 56px 36px;
  min-height: 280px;
}

.carousel-mark {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: rgba(214, 112, 22, 0.35);
  position: absolute;
  top: 16px;
  left: 28px;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.carousel-slide.is-active {
  display: flex;
}

.carousel-slide .guest-quote {
  font-size: 18px;
  line-height: 1.55;
}

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

.carousel-btns {
  display: flex;
  gap: 8px;
}

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

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

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

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

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

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

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

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

.map-frame {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .stat-cell:nth-child(2)::after {
    display: none;
  }
}

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

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

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

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

  .nav-inner.is-open .nav-left,
  .nav-inner.is-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    padding: 0 0 16px;
    gap: 4px;
  }

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

  .hotel-grid,
  .tips-grid,
  .faq-grid,
  .guest-featured-grid,
  .article-layout,
  .staff-split,
  .trade-cols,
  .why-split,
  .evening-split,
  .reach-cards,
  .reserve-cta-grid,
  .steps-row,
  .rating-band {
    grid-template-columns: 1fr;
  }

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

  .trade-cols::before {
    display: none;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .byline-aside {
    margin-bottom: 24px;
  }

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

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

  .a11y-panel {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

  .hotel-grid,
  .guest-quote-grid,
  .audience-row,
  .facts-tiles,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell:not(:last-child)::after {
    display: none;
  }

  .reserve-card {
    padding: 24px 18px;
  }

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

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

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