:root {
  --bg: #120b06;
  --surface: #1e130a;
  --surface-alt: #2a1c10;
  --text: #faeede;
  --text-muted: #b79a7e;
  --border: rgba(255,107,53,0.18);
  --accent: #ff6b35;
  --accent-2: #d24e1e;
  --secondary: #f2c14e;
  --on-accent: #1a0c04;
  --deep: #0a0503;
  --radius: 0px;
  --radius-btn: 10px;
  --font-heading: 'Courier New', 'Lucida Console', monospace;
  --font-body: 'Segoe UI', system-ui, sans-serif;
  --shadow-card: 0 10px 30px rgba(10, 5, 3, 0.08);
  --max: 1100px;
  --section-pad: 132px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

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

h2 {
  font-size: clamp(24px, 3.4vw, 36px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 24px);
}

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

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

.narrow {
  width: min(100% - 40px, 720px);
  margin-inline: auto;
}

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

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

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 11, 6, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 1rem;
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: -0.2px;
  white-space:nowrap;
}

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

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

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.nav-spacer {
  width: 36px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 44px;
  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-search {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(10, 5, 3, 0.55), rgba(18, 11, 6, 0.92)),
    var(--deep);
}

.hero-search .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}
.hero-search .hero-bg[src*="logo"] {
  object-fit: contain;
  object-position: center;
  opacity: 0.12;
  transform: scale(1.4);
  max-width: 60%;
  max-height: 70%;
  margin: auto;
  width: auto;
  height: auto;
  inset: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.8);
}

.hero-search .hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4rem;
  width: min(100% - 40px, 820px);
}

.hero-search h1 {
  margin-bottom: 1rem;
}

.hero-search .subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.search-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 0.75rem;
  background: rgba(30, 19, 10, 0.88);
  border: 1px solid var(--border);
  padding: 1rem;
  text-align: left;
  box-shadow: var(--shadow-card);
}

.search-bar label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.search-bar input,
.search-bar select {
  width: 100%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.7rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}

.search-bar .search-actions {
  display: flex;
  align-items: flex-end;
}

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

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

.section-head {
  margin-bottom: 3rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 0.75rem;
}

.hotel-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.hotel-card-media {
  position: relative;
  min-height: 240px;
}

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

.hotel-card-body {
  padding: 1.75rem 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.stars {
  color: var(--secondary);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

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

.hotel-card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.authors-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.author-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.monogram {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 0.95rem;
}

.author-feature h3 {
  margin-bottom: 0.35rem;
}

.author-feature .role {
  color: var(--secondary);
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.author-feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.manifesto {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.manifesto .mission {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  margin: 1rem 0 2rem;
  color: var(--text);
}

.manifesto .lead p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.tips-list {
  list-style: none;
}

.tip-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.tip-row h3 {
  margin-bottom: 0.25rem;
}

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

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-split-media {
  min-height: 360px;
  position: relative;
}

.feature-split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.feature-split-body blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  color: var(--text);
}

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

.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.trust-card .icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.14);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.trust-card p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

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

.footer-map-strip {
  background: rgba(255, 107, 53, 0.08);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-map-strip span {
  margin: 0 0.55rem;
  color: var(--accent);
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
}

.footer-watermark {
  position: absolute;
  right: -2%;
  bottom: 8%;
  width: min(42vw, 340px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  text-align: center;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand-col .brand {
  font-size: 1.05rem;
}

.footer-brand-col .blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--text);
  font-size: 0.92rem;
}

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

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 1.75rem;
}

.footer-bottom-tier {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

.footer-bottom-tier a,
.footer-bottom-tier button {
  color: var(--text-muted);
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

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

.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-requisites {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 0.65rem;
  max-width: 720px;
  margin-inline: auto;
}

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

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

.review-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.review-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 5, 3, 0.25) 0%, rgba(10, 5, 3, 0.88) 78%);
}

.review-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding-bottom: 2.5rem;
}

.review-hero-content .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.review-standfirst {
  padding: 2.5rem 0 1rem;
}

.review-standfirst p {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.byline-bar {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin-bottom: 2.5rem;
}

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

.byline-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.byline-left a {
  color: var(--text);
}

.byline-right {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: right;
}

.pull-quote {
  width: min(100% - 40px, 820px);
  margin: 0 auto 3rem;
  padding: 2rem 0;
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.35;
  color: var(--text);
}

.pull-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.article-body {
  width: min(100% - 40px, 720px);
  margin: 0 auto 3rem;
}

.article-body p {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.article-body h3 {
  margin: 2.25rem 0 1rem;
}

.facts-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 1.75rem;
  margin: 0 auto 0;
  width: min(100% - 40px, 720px);
}

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

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

.facts-panel li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
}

.facts-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0 1.25rem;
}

.facts-strip .strip-line {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: center;
}

.facts-strip .strip-line .dot {
  color: var(--accent);
}

.band {
  padding: 4.5rem 0;
}

.band-bg {
  background: var(--bg);
}

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

.band h2 {
  margin-bottom: 1.75rem;
}

.split-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.tinted-card {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.tinted-card .label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.address-panel {
  background: rgba(242, 193, 78, 0.08);
  border: 1px solid var(--border);
  padding: 1.75rem;
  min-height: 100%;
}

.address-panel .pin {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.address-panel address {
  font-style: normal;
  line-height: 1.7;
  color: var(--text);
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  padding: 0.5rem 0;
}

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

.faq summary .mark {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.faq details p {
  color: var(--text-muted);
  padding: 0.5rem 0 0.75rem;
}

.class-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

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

.class-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

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

.pros-cons > div {
  padding: 0 1.5rem;
}

.pros-cons h3 {
  margin-bottom: 1rem;
}

.pros-cons ul {
  list-style: none;
}

.pros-cons li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.pros-cons .love li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.pros-cons .know li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dual-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  background: var(--surface);
}

.dual-card .icon {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.dual-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.chip {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text);
}

.alt-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

.alt-row .icon {
  color: var(--accent);
  flex-shrink: 0;
}

.border-callout {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  max-width: 560px;
  color: var(--text-muted);
}

.score-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--border);
  padding: 2rem;
}

.score-band .big-score {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
  color: var(--secondary);
}

.score-band p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.evening-pass {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  font-size: 1.12rem;
  max-width: 680px;
}

.drop-cap::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 3.4rem;
  line-height: 0.85;
  padding-right: 0.5rem;
  color: var(--accent);
}

.room-narrow {
  max-width: 560px;
}

.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.pill {
  background: rgba(242, 193, 78, 0.12);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text);
}

.scale-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
}

.scale-track {
  position: relative;
  height: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 2rem 0 0.5rem;
}

.scale-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
}

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

.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.sleep-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.75rem;
  max-width: 640px;
  margin-left: 5%;
}

.guest-reviews {
  padding: 4.5rem 0;
}

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

.guest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
}

.guest-card.highlighted {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.08);
}

.guest-card .quote {
  color: var(--text);
  font-size: 0.95rem;
}

.guest-card .guest-meta {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.guest-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.guest-photo-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  display: block;
}

.guest-photo-btn img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.guest-photo-caption {
  flex-basis: 100%;
  width: 100%;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.guest-featured-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.guest-featured-layout .featured {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guest-featured-layout .featured .quote {
  font-size: 1.05rem;
}

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

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

.guest-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.guest-row .stars {
  letter-spacing: 2px;
  color: var(--secondary);
}

.guest-row .guest-meta {
  margin-top: auto;
  align-self: flex-end;
  text-align: right;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.reserve-cta {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 107, 53, 0.14), transparent 50%),
    var(--deep);
}

.reserve-cta h2 {
  margin-bottom: 1rem;
}

.reserve-cta .address {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  background: var(--surface);
}

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

.page-hero-simple {
  padding: 5rem 0 2rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 107, 53, 0.12), transparent 45%),
    var(--bg);
}

.page-hero-simple p {
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 1rem;
}

.authors-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}

.author-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  scroll-margin-top: 90px;
}

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

.author-block .role {
  color: var(--secondary);
  margin: 0.35rem 0 0.85rem;
}

.author-block .bio {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.author-block .articles {
  list-style: none;
}

.author-block .articles li {
  margin-bottom: 0.35rem;
}

.reserve-wrap {
  padding: 3rem 0 5rem;
  max-width: 640px;
  margin-inline: auto;
}

.hotel-indicator {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

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

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

.form-field label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-field input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 0.9rem;
  font: inherit;
  border-radius: var(--radius);
}

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

.agree-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0 1rem;
  grid-column: 1 / -1;
}

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

.agree-row label {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.agree-row a {
  text-decoration: underline;
}

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

.field-error {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 1rem;
}

.processing-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
}

.processing-panel h2 {
  margin-bottom: 1rem;
}

.processing-panel .summary {
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.processing-panel dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

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

.legal-content {
  padding: 3rem 0 5rem;
  width: min(100% - 40px, 800px);
  margin-inline: auto;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-content h2 {
  margin: 2.25rem 0 1rem;
}

.legal-content h3 {
  margin: 1.5rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

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

.legal-content th {
  background: var(--surface);
  color: var(--text);
}

.legal-content strong {
  color: var(--text);
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 40px rgba(10, 5, 3, 0.35);
  padding: 1.25rem;
}

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

.consent-inner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.consent-cats label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  min-height: 24px;
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 5, 3, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  text-align: center;
}

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

.lightbox-caption {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 1.25rem;
}

.lightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 100px;
  }

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

  .footer-brand-col {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }

  .scale-wrap {
    grid-template-columns: 1fr;
  }
}

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

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-spacer {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    display: none;
  }

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

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

  .search-bar {
    grid-template-columns: 1fr;
  }

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

  .hotel-card-media {
    min-height: 220px;
    position: relative;
  }

  .hotel-card-media img {
    position: relative;
    height: 220px;
  }

  .authors-teaser-grid,
  .feature-split,
  .trust-grid,
  .split-2,
  .location-split,
  .pros-cons,
  .dual-cards,
  .guest-featured-layout,
  .score-band,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .pros-cons::before {
    display: none;
  }

  .pros-cons > div {
    padding: 0;
  }

  .pros-cons > div + div {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

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

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

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

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

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

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

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

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

  .feature-split-body {
    padding: 1.75rem 1.25rem;
  }

  .consent-actions {
    flex-direction: column;
  }

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

  .agree-row label {
    font-size: 0.88rem;
  }
}

.feature-split-panel {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,107,53,0.28), transparent 55%),
    linear-gradient(160deg, var(--surface-alt), var(--deep));
  display: grid;
  place-items: center;
  min-height: 360px;
}
.feature-panel-inner {
  text-align: center;
  padding: 2rem;
}
.feature-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  margin: 0.5rem 0 1rem;
  max-width: 280px;
  margin-inline: auto;
}
