:root {
  --bg: #f8f3ee;
  --surface: #ffffff;
  --surface-alt: #f8f3ee;
  --text: #2b1733;
  --text-muted: #6b5673;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #caa472;
  --accent-2: #a78352;
  --secondary: #2b1733;
  --on-accent: #ffffff;
  --radius: 28px;
  --radius-btn: 10px;
  --font-heading: Rockwell, "Rockwell Nova", "Courier New", Georgia, serif;
  --font-body: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  --shadow-sm: 0 4px 14px rgba(43, 23, 51, 0.06), 0 1px 3px rgba(43, 23, 51, 0.04);
  --shadow-lg: 0 18px 48px rgba(43, 23, 51, 0.14), 0 6px 16px rgba(43, 23, 51, 0.08);
  --max: 1240px;
  --section-pad: 132px;
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  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(--secondary);
}

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

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

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

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

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

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

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

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

.btn--ghost {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--border);
  box-shadow: none;
}

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.utility-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 238, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

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

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

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

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

.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 {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  pointer-events: none;
  z-index: 0;
}

.hero-blobs::before,
.hero-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero-blobs::before {
  width: 420px;
  height: 420px;
  background: var(--accent);
  left: 5%;
  top: 10%;
}

.hero-blobs::after {
  width: 360px;
  height: 360px;
  background: rgba(43, 23, 51, 0.18);
  right: 8%;
  top: 30%;
}

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

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

.hero-masthead span {
  padding-right: 18px;
  border-right: 1px solid var(--border);
}

.hero-masthead span:last-child {
  border: none;
}

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

.hero-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

.hero-brand-panel {
  min-height: clamp(280px, 42vw, 480px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at 30% 35%, rgba(202, 164, 114, 0.55), transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(43, 23, 51, 0.35), transparent 45%),
    linear-gradient(145deg, #3a2144, #2b1733 55%, #1a0e20);
  color: var(--on-accent);
}

.hero-brand-panel img {
  width: 120px;
  height: 123px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero-brand-panel p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: -1px;
}

.featured-visual {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 36px;
  color: var(--on-accent);
  background:
    linear-gradient(160deg, rgba(202, 164, 114, 0.45), rgba(43, 23, 51, 0.85)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.2), transparent 50%);
}

.featured-visual strong {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -1px;
}

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

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

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

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

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

.hotel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.hotel-card__media {
  position: relative;
  overflow: hidden;
}

.hotel-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

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

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

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

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

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split--top {
  align-items: start;
}

.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(202, 164, 114, 0.35), rgba(43, 23, 51, 0.55)),
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.35), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: var(--on-accent);
}

.split-visual strong {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 8px;
}

.promise-line {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  font-weight: 600;
}

.featured-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.featured-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: left;
  margin-top: 36px;
}

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

.featured-card__body {
  padding: 36px;
}

.stats-band {
  position: relative;
  overflow: hidden;
}

.stats-band .blobs {
  position: absolute;
  inset: -40%;
  pointer-events: none;
}

.stats-band .blobs::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(202, 164, 114, 0.35);
  filter: blur(90px);
  left: 20%;
  top: 10%;
}

.stats-strip {
  position: relative;
  background: var(--secondary);
  color: var(--on-accent);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.stats-strip strong {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
  display: block;
  color: var(--accent);
}

.stats-strip span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

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

.voice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice-card--highlight {
  background: var(--secondary);
  color: var(--on-accent);
  border-color: transparent;
}

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

.voice-card--highlight .voice-meta {
  color: rgba(255, 255, 255, 0.7);
}

.voice-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  flex: 1;
}

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

.site-footer {
  margin-top: 0;
}

.footer-cta {
  background: var(--accent);
  color: var(--secondary);
  padding: 56px 0;
  text-align: center;
}

.footer-cta h2 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 44px);
}

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

.footer-main {
  background: rgba(43, 23, 51, 0.06);
  padding: 72px 0 40px;
}

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

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

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 18px;
}

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

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

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

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}

.trust-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom {
  background: rgba(43, 23, 51, 0.12);
  padding: 28px 0;
  text-align: center;
}

.footer-copy {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.locale-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

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

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

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

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

.page-hero--review {
  padding-bottom: 24px;
}

.review-lead {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 28px 0 0;
}

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

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

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}

.review-rail {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.rail-card .btn {
  width: 100%;
}

.byline-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  float: right;
  width: min(280px, 100%);
  margin: 0 0 24px 28px;
}

.byline-aside .mono {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 12px;
}

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

.article-body {
  max-width: 46rem;
}

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

.content-section {
  margin: 56px 0;
}

.section-num-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}

.section-num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  color: rgba(43, 23, 51, 0.18);
  letter-spacing: -2px;
  line-height: 1;
}

.section-num-head h2 {
  margin: 0;
}

.facts-cells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.facts-cell {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.facts-cell strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

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

.facts-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  color: var(--text-muted);
  font-size: 15px;
  padding: 8px 0 24px;
}

.facts-inline span:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: var(--accent-2);
}

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

.fact-chip {
  background: rgba(202, 164, 114, 0.18);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

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

.facts-aside .kicker {
  margin-bottom: 14px;
}

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

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

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

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

.num-item {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 8px);
  background: var(--surface);
}

.num-item .n {
  font-family: var(--font-heading);
  font-size: 36px;
  color: rgba(43, 23, 51, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

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

.panel-alt ol {
  margin: 0;
  padding-left: 1.4em;
  line-height: 2;
}

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

.order-again {
  background: rgba(202, 164, 114, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  min-height: 100%;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.5px;
  line-height: 1.35;
}

.evening-band {
  background: rgba(43, 23, 51, 0.06);
  border-radius: var(--radius);
  padding: 56px 28px;
  text-align: center;
}

.evening-band .narrow {
  max-width: 36rem;
  margin: 18px auto 0;
  text-align: left;
}

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

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

.icon-list li:last-child {
  border-bottom: none;
}

.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(202, 164, 114, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}

.icon-bubble svg {
  width: 20px;
  height: 20px;
}

.notice-panel {
  background: rgba(202, 164, 114, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}

.notice-panel li {
  margin-bottom: 8px;
}

.if-rows {
  display: grid;
  gap: 14px;
}

.if-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  margin-bottom: 10px;
  padding: 4px 16px;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.accordion summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

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

.accordion details p {
  color: var(--text-muted);
  padding-bottom: 12px;
}

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

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

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

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

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

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

.season-cell strong {
  display: block;
  margin: 8px 0 6px;
  font-family: var(--font-heading);
}

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

.accent-border-note {
  max-width: 36rem;
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 22px;
}

.balance-panels {
  display: grid;
  gap: 18px;
}

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

.balance-panel--good {
  background: rgba(202, 164, 114, 0.16);
}

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

.quiet-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

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

.quiet-icon strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.note-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.note-block {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
}

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

.address-panel {
  background: rgba(43, 23, 51, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 100%;
}

.address-panel address {
  font-style: normal;
  line-height: 1.6;
  margin-top: 12px;
}

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

.tick-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
}

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

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

.chip {
  background: rgba(202, 164, 114, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.quote-pull {
  margin: 0;
  padding: 22px;
  background: var(--surface-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 15px;
}

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

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

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

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

.audience-card strong {
  display: block;
  margin: 10px 0 6px;
  font-family: var(--font-heading);
}

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

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

.tinted-pill {
  background: rgba(202, 164, 114, 0.22);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.sleep-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  max-width: 38rem;
  margin-left: 8%;
}

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

.step-item {
  position: relative;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.score-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.score-big {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.score-big strong {
  font-family: var(--font-heading);
  font-size: 48px;
  letter-spacing: -1px;
  display: block;
  color: var(--accent-2);
}

.meter {
  margin-bottom: 14px;
}

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

.meter-bar {
  height: 8px;
  background: rgba(43, 23, 51, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

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

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

.narrow-measure {
  max-width: 38rem;
  margin-inline: auto;
}

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

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

.guest-featured__main {
  background: var(--secondary);
  color: var(--on-accent);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.guest-featured__main .stars {
  color: var(--accent);
}

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

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

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

.guest-masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

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

.guest-stack .guest-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: transparent;
}

.guest-stack .guest-card:last-child {
  border-bottom: none;
}

.guest-stack .guest-meta {
  text-align: right;
  margin-top: 12px;
}

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

.guest-card--highlight {
  background: rgba(202, 164, 114, 0.16);
  border-color: transparent;
}

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

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

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
}

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

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

.reserve-cta {
  padding: 80px 0 100px;
  background: rgba(43, 23, 51, 0.04);
}

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

.map-frame {
  width: 100%;
  max-width: 100%;
  height: 360px;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
  margin: 20px 0 28px;
}

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

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

.author-mono {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
}

.author-card ul {
  margin: 12px 0 0;
  padding-left: 1.1em;
}

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

.hotel-indicator {
  background: rgba(202, 164, 114, 0.18);
  border-radius: var(--radius-btn);
  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-btn);
  font: inherit;
  background: var(--bg);
  color: var(--text);
}

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

.agree-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 18px;
}

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

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

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

.agree-error {
  color: #b42318;
  font-size: 13px;
  margin: -8px 0 14px;
  display: none;
}

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

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

.submit-error {
  color: #b42318;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}

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

.processing-panel {
  display: none;
}

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

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

.legal-body {
  padding: 48px 0 100px;
  max-width: 760px;
}

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

.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 2em;
}

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

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

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

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

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  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: #fff;
  margin-top: 12px;
  font-size: 14px;
}

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

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consent-backdrop.is-open {
  display: flex;
}

.consent-modal {
  background: var(--surface);
  color: var(--text);
  width: min(520px, 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--accent);
  padding: 28px;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.consent-modal h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

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

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.consent-actions button {
  padding: 12px 8px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.consent-actions .consent-accept {
  background: var(--accent);
  color: var(--on-accent);
  border-color: transparent;
}

.consent-manage {
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--accent-2);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.consent-cats {
  display: none;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.consent-cats.is-open {
  display: block;
}

.consent-cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.consent-cat:last-child {
  border-bottom: none;
}

.consent-cat strong {
  display: block;
  font-size: 14px;
}

.consent-cat span {
  font-size: 12px;
  color: var(--text-muted);
}

.consent-policy {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
}

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

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

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

  .facts-cell:nth-child(2) {
    border-right: none;
  }

  .facts-cell:nth-child(1),
  .facts-cell:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

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

  .guest-masonry {
    columns: 2;
  }
}

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

  .review-rail {
    position: static;
    order: -1;
  }

  .byline-aside {
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }

  .section-num-head {
    flex-direction: column;
    gap: 4px;
  }
}

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

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: none;
  }

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

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

  .nav-main {
    position: relative;
  }

  .split,
  .guest-featured,
  .score-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .voices-grid,
  .season-strip,
  .quiet-icons,
  .note-blocks,
  .num-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .stats-strip {
    flex-direction: column;
    gap: 18px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }

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

  .guest-masonry {
    columns: 1;
  }

  .sleep-panel {
    margin-left: 0;
  }

  .audience-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .utility-bar .container {
    justify-content: center;
    text-align: center;
  }

  .hero-masthead {
    justify-content: center;
    text-align: center;
  }

  .hero-masthead span {
    border: none;
    padding: 0 8px;
  }

  .hotel-card__body,
  .reserve-shell,
  .reserve-cta__inner,
  .featured-card__body {
    padding: 22px;
  }

  .audience-row {
    grid-template-columns: 1fr;
  }

  .guest-cards-3,
  .hotel-grid,
  .voices-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 35px;
  }
}
