:root {
  --bg: #0e0a0d;
  --surface: #181117;
  --surface-alt: #241823;
  --text: #f6ecf3;
  --text-muted: #ab8fa4;
  --border: rgba(214, 31, 143, 0.18);
  --accent: #d61f8f;
  --accent-2: #a21570;
  --secondary: #38bdf8;
  --on-accent: #ffffff;
  --deep: #070406;
  --radius: 4px;
  --radius-btn: 999px;
  --font-heading: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  --font-body: Georgia, "Times New Roman", serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --max: 1200px;
  --pad-y: 128px;
  --header-h: 84px;
}

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

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

iframe {
  max-width: 100%;
  border: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

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

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

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.5vw, 48px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(14, 10, 13, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

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

.brand-lockup img {
  width: 38px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand-lockup:hover {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.8px;
  padding: 6px 0;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn)[aria-current="page"]::after,
.nav-links a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.nav-links .btn {
  color: var(--on-accent);
  padding: 10px 22px;
  min-height: 42px;
}

.nav-links .btn::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-mark {
  position: absolute;
  right: -4vw;
  top: 12%;
  width: min(42vw, 520px);
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(1200px 680px at 80% 20%, rgba(214, 31, 143, 0.16), transparent 55%),
    linear-gradient(180deg, var(--deep) 0%, var(--bg) 100%);
  color: var(--text);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 48px) 0 64px;
  max-width: 820px;
}

.hero-copy .kicker {
  color: var(--secondary);
}

.hero-copy p {
  font-size: 20px;
  color: var(--text);
  max-width: 38em;
}

.stat-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding-inline: 20px;
}

.stat-band > .wrap {
  display: contents;
}

.stat-band .stat-item {
  padding: 28px 20px 32px;
  text-align: left;
}

.stat-band strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.6px;
  color: var(--accent);
}

.stat-band span {
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

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

.hotel-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 220px;
}

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

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

.hotel-card .card-body {
  display: flex;
  flex-direction: column;
  padding: 28px 32px 24px;
  min-width: 0;
}

.hotel-card h3 {
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.hotel-card .meta {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}

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

.hotel-card .teaser {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hotel-card .btn {
  margin-top: auto;
  align-self: flex-end;
}

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

.author-card {
  display: block;
  padding: 28px 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.section-alt .author-card {
  background: var(--bg);
}

.author-card:hover {
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.author-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
}

.author-card .role {
  display: block;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 6px 0 10px;
}

.author-card p {
  color: var(--text-muted);
  font-size: 16px;
}

.icon-list {
  max-width: 760px;
}

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

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

.icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.icon-bubble svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.icon-row h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

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

.stats-strip {
  background: var(--accent);
  color: var(--on-accent);
  padding: 22px 0;
}

.stats-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
}

.stats-strip strong {
  font-weight: 400;
  margin-right: 8px;
}

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

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

.section-alt .quote-card {
  background: var(--bg);
}

.quote-card.is-featured,
.quote-card.is-highlight {
  border-color: var(--accent);
  background: var(--surface-alt);
}

.quote-card,
.guest-feature,
.carousel-slide.is-active {
  min-width: 0;
}

.quote-card blockquote,
.guest-feature blockquote,
.carousel-slide blockquote {
  margin: 0;
  font-size: 17px;
  flex: none;
  flex-grow: 0;
  height: auto;
  margin-top: 0;
}

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

.stack-after {
  margin-top: 24px;
}

.guest-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  flex: none;
  margin-top: 0;
}

.guest-photo-btn {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.guest-photo-cap {
  width: 100%;
  flex-basis: 100%;
  font-size: 13px;
  color: var(--text-muted);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  position: relative;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -0.4px;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 0 22px;
  color: var(--text-muted);
  max-width: 720px;
}

.acc-list details {
  border-bottom: 1px solid var(--border);
}

.acc-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--font-heading);
  font-size: 20px;
}

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

.acc-list summary::after {
  content: "›";
  position: absolute;
  right: 8px;
  top: 18px;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.acc-list details[open] summary::after {
  transform: rotate(90deg);
}

.acc-list details p {
  padding: 0 0 20px;
  color: var(--text-muted);
}

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 48px;
  background: var(--surface);
}

.page-hero p.lede {
  max-width: 40em;
  color: var(--text-muted);
  font-size: 20px;
}

.review-page {
  padding-bottom: 0;
}

.review-head {
  padding: calc(var(--header-h) + 56px) 0 32px;
}

.review-head .loc {
  color: var(--text-muted);
  margin-top: 8px;
}

.lead-photo {
  width: 100%;
  height: min(72vh, 680px);
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

.byline {
  text-align: center;
  padding: 56px 0 24px;
}

.byline .monogram {
  margin: 0 auto 14px;
}

.byline a {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
}

.byline .stay {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 6px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0 72px;
}

.article-body h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-top: 1.4em;
}

.facts-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  background: var(--surface);
  max-width: 720px;
  margin: 0 auto 80px;
}

.facts-panel .kicker {
  margin-bottom: 18px;
}

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

.facts-panel li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

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

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

.chip {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.chip b {
  color: var(--text);
  font-weight: 400;
  font-family: var(--font-heading);
}

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

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

.fact-tile {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 18px 16px;
}

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

.fact-tile b {
  font-family: var(--font-heading);
  font-weight: 400;
  display: block;
}

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

.facts-float {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  margin: 0 0 28px;
}

.facts-inline {
  color: var(--text-muted);
  font-size: 15px;
  padding: 8px 0 28px;
  max-width: 900px;
  margin: 0 auto;
}

.facts-inline .kicker {
  display: inline;
  letter-spacing: 3px;
  margin-right: 10px;
}

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

.fill-92 { width: 92%; }
.fill-88 { width: 88%; }
.fill-86 { width: 86%; }
.fill-84 { width: 84%; }
.dot-36 { left: 72%; }

.rhythm {
  background: var(--bg);
  padding: 88px 0;
}

.rhythm .wrap > .kicker {
  margin-top: 0;
}

.hairline {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
}

.love-stack {
  display: grid;
  gap: 20px;
  max-width: 800px;
}

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

.panel-accent {
  background: rgba(214, 31, 143, 0.1);
}

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

.panel h3 {
  font-size: 22px;
}

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

.measure {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.hl-list .icon-row {
  padding: 20px 0;
}

.takeaway {
  font-weight: 700;
  color: var(--text);
}

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

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

.meters {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
}

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

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

.meter {
  margin-bottom: 18px;
}

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

.meter .track {
  height: 6px;
  background: var(--surface-alt);
  border-radius: var(--radius-btn);
  overflow: hidden;
}

.meter .fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-btn);
}

.meter-caption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.class-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

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

.class-table th {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-muted);
}

.highlight-phrase {
  color: var(--accent);
}

.season-stack {
  display: grid;
  gap: 12px;
}

.season-row {
  background: var(--surface);
  padding: 22px 26px;
  border-radius: var(--radius);
}

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

.pill {
  background: var(--surface-alt);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 14px;
}

.not-for {
  display: grid;
  gap: 16px;
}

.not-for-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.a11y-panel {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
}

.confirm-line {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 10px;
}

.who-else {
  border: 1px solid var(--border);
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--surface);
}

.who-else h3 {
  color: var(--text-muted);
  font-size: 18px;
}

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

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

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

.hl-card .icon-bubble {
  margin-bottom: 14px;
}

.guest-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.guest-feature {
  padding: 36px 32px;
  background: var(--surface-alt);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guest-stack {
  display: grid;
  gap: 16px;
}

.quote-carousel {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 48px 56px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quote-carousel .mark {
  font-family: var(--font-heading);
  font-size: 88px;
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.carousel-slide {
  display: none;
}

.carousel-slide.is-active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}

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

.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--text-muted);
  cursor: pointer;
}

.dots button.is-on {
  background: var(--accent);
}

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

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

.tl-stop {
  position: relative;
  padding: 0 0 28px 20px;
}

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

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

.noticed {
  background: var(--surface-alt);
  padding: 24px;
  border-radius: var(--radius);
}

.noticed li {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}

.tint-band {
  background: var(--surface);
  padding: 56px 20px;
}

.tint-band .measure {
  margin: 0 auto;
}

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

.badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-family: var(--font-heading);
}

.badge-plus {
  background: rgba(214, 31, 143, 0.18);
  color: var(--accent);
}

.badge-minus {
  background: var(--surface-alt);
  color: var(--text-muted);
}

.pull-quote {
  border-left: 2px solid var(--accent);
  padding-left: 18px;
  color: var(--text-muted);
  font-style: italic;
}

.season-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}

.season-cols div {
  padding: 16px 20px 0 0;
}

.season-cols div + div {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

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

.qa-grid h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: start;
}

.initial-mark {
  font-family: var(--font-heading);
  font-size: 140px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.7;
  text-align: center;
}

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

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

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

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

.scale-track {
  height: 8px;
  background: var(--surface-alt);
  border-radius: var(--radius-btn);
  position: relative;
  margin-top: 28px;
}

.scale-track::before,
.scale-track::after {
  position: absolute;
  top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.scale-track::before {
  content: "0";
  left: 0;
}

.scale-track::after {
  content: "5";
  right: 0;
}

.scale-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.a11y-rows .a11y-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.a11y-rows .lab {
  font-family: var(--font-heading);
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}

.reserve-cta {
  padding: var(--pad-y) 0;
  background: var(--surface);
}

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

.addr {
  color: var(--text-muted);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  margin-bottom: 6px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
}

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

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

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

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

.agree-row.error + .agree-error,
.agree-error.is-on {
  display: block;
}

.submit-error {
  color: var(--accent);
  min-height: 1.4em;
  margin-top: 10px;
}

.hotel-indicator {
  font-size: 20px;
  margin-bottom: 24px;
}

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

.processing-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  border-radius: var(--radius);
}

.hidden {
  display: none !important;
}

.authors-list {
  display: grid;
  gap: 40px;
}

.author-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px;
}

.author-block .monogram {
  width: 72px;
  height: 72px;
  font-size: 20px;
}

.article-links {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.article-links a {
  color: var(--secondary);
}

.legal-body {
  padding: 24px 0 var(--pad-y);
  max-width: 800px;
}

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

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

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

.legal-body ul,
.legal-body ol {
  color: var(--text-muted);
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}

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

.legal-body th {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-muted);
}

.choice-btn {
  margin: 24px 0;
}

.site-footer {
  background: var(--surface-alt);
  padding: 64px 0 40px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-brand {
  max-width: 280px;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  max-width: 720px;
}

.footer-links a {
  color: var(--text);
  font-size: 14px;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

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

.footer-controls {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-controls a,
.footer-controls button {
  background: none;
  border: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

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

.footer-req {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 14px;
  opacity: 0.8;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 22px 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

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

.consent-inner p {
  margin-bottom: 14px;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 16px;
}

.consent-cats label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  font-size: 15px;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(7, 4, 6, 0.92);
  display: none;
  place-items: center;
  padding: 24px;
}

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

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-cap {
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 22px;
  cursor: pointer;
}

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

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

@media (max-width: 1024px) {
  :root {
    --pad-y: 96px;
  }

  .authors-row,
  .quotes-3,
  .hl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .meters,
  .guest-split,
  .room-split,
  .evening-split,
  .people-split,
  .scale-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 3;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: var(--header-h);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14, 10, 13, 0.96);
    backdrop-filter: blur(16px);
    padding: 12px 24px 28px;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links a {
    padding: 14px 0;
  }

  .nav-links .btn {
    margin-top: 8px;
    align-self: flex-start;
  }

  .hotel-card,
  .authors-row,
  .quotes-3,
  .hl-grid,
  .qa-grid,
  .reach-cards,
  .season-cols,
  .audience-row,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .hotel-card img {
    min-height: 200px;
    height: 220px;
  }

  .footer-row {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .quote-carousel {
    padding: 32px 20px 24px;
  }

  .facts-tiles {
    grid-template-columns: 1fr;
  }
}

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

  :root {
    --pad-y: 72px;
  }

  body {
    font-size: 16px;
  }

  .hero-copy p {
    font-size: 17px;
  }

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

  .form-card,
  .processing-panel {
    padding: 28px 18px;
  }

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

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

.article-with-rail {
  padding: 24px 0 72px;
}

.article-flow {
  max-width: 720px;
}

@media (min-width: 900px) {
  .article-with-rail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0 72px;
  }

  .article-with-rail::after {
    content: "";
    display: table;
    clear: both;
  }

  .article-with-rail .facts-float {
    float: right;
    width: 280px;
    margin: 8px 0 24px 32px;
  }

  .article-with-rail .article-flow {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
