:root {
  --bg: #eef6f6;
  --surface: #ffffff;
  --surface-alt: #eef6f6;
  --text: #07211f;
  --text-muted: #4a6b68;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #0fb0a2;
  --accent-2: #0a8a7e;
  --secondary: #062018;
  --on-accent: #ffffff;
  --radius: 12px;
  --radius-btn: 6px;
  --font-heading: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-body: Tahoma, Geneva, Verdana, sans-serif;
  --max-w: 1200px;
  --section-pad: 128px;
  --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.72;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: var(--text);
}

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

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

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

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

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(238, 246, 246, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-lockup img {
  width: 140px;
  height: 30px;
  object-fit: contain;
}

.brand-lockup .brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

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

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

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

.nav-links .btn {
  margin-left: 8px;
}

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

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

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

.hero-search__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

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

.hero-search__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 32, 24, 0.78) 0%, rgba(7, 33, 31, 0.55) 45%, rgba(15, 176, 162, 0.35) 100%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  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);
  top: -80px;
  right: -60px;
}

.hero-blobs::after {
  width: 360px;
  height: 360px;
  background: #7fd9d0;
  bottom: -100px;
  left: -40px;
}

.hero-search__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}

.hero-search__content .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero-search__content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero-search__content .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(8px);
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.search-bar label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  flex: 1 1 160px;
}

.search-bar input,
.search-bar select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}

.search-bar .btn {
  align-self: flex-end;
  min-height: 46px;
}

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

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

.section-intro p {
  color: var(--text-muted);
  margin-top: 16px;
}

.hotel-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.hotel-card__media {
  min-height: 220px;
}

.hotel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

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

.hotel-card__body h3 {
  font-size: clamp(24px, 3vw, 32px);
}

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

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

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

.hotel-card__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.steps-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}

.step-item {
  flex: 1 1 160px;
  text-align: center;
  position: relative;
  padding: 24px 16px;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  right: -8%;
  width: 16%;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--surface);
}

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

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

.tips-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

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

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-btn);
  background: rgba(15, 176, 162, 0.12);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon svg {
  width: 24px;
  height: 24px;
}

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

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

.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  max-width: 340px;
  padding: 0 8px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.5;
}

.marquee-item span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.featured-band .hero-blobs {
  opacity: 0.6;
}

.featured-card {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-search__bg--logo {
  background: linear-gradient(145deg, #062018 0%, #0a8a7e 48%, #0fb0a2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-search__bg--logo img {
  width: min(55vw, 520px);
  height: auto;
  opacity: 0.14;
  filter: brightness(10);
  object-fit: contain;
}

.featured-visual {
  height: 280px;
  background: linear-gradient(145deg, #062018 0%, #0a8a7e 55%, #0fb0a2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-visual img {
  width: min(70%, 320px);
  height: auto;
  opacity: 0.2;
  filter: brightness(10);
}

.featured-mark {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.6px;
}

.featured-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.featured-card__body {
  padding: 40px 36px 48px;
}

.featured-card__body h3 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 12px 0;
}

.featured-card__body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.site-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}

.footer-watermark {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: min(520px, 70vw);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.footer-watermark img {
  width: 100%;
  height: auto;
  filter: brightness(10);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 2.65fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-desktop-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-brand .brand-lockup {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .brand-lockup .brand-name {
  color: #fff;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  max-width: 320px;
  margin-bottom: 16px;
}

.footer-brand a {
  color: #7fd9d0;
}

.footer-col h4,
.footer-acc summary {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  list-style: none;
  cursor: default;
}

.footer-col ul,
.footer-acc ul {
  list-style: none;
}

.footer-col a,
.footer-acc a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  font-size: 14px;
}

.footer-col a:hover,
.footer-acc a:hover {
  color: #7fd9d0;
}

.footer-acc {
  display: none;
}

.footer-acc summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}

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

.footer-acc .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.footer-acc[open] .chev {
  transform: rotate(-135deg);
}

.footer-acc ul {
  padding: 12px 0 8px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0 36px;
  text-align: center;
}

.footer-bottom .copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.footer-bottom .consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-bottom .consent-links a,
.footer-bottom .consent-links button {
  background: none;
  border: none;
  color: #7fd9d0;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}

.footer-requisites {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

.page-hero-simple {
  padding: 100px 0 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-simple h1 {
  margin-bottom: 12px;
}

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

.legal-body {
  padding: 64px 0 128px;
}

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

.legal-body h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 24px;
}

.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 40px 0 16px;
}

.legal-body h3 {
  margin: 28px 0 12px;
}

.legal-body p,
.legal-body li {
  color: var(--text);
  margin-bottom: 12px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

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

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

.legal-body th {
  background: var(--surface-alt);
}

.authors-grid {
  display: grid;
  gap: 40px;
  padding: 64px 0 128px;
}

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

.monogram {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(15, 176, 162, 0.15);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  flex-shrink: 0;
}

.author-card .role {
  color: var(--text-muted);
  font-size: 14px;
  margin: 4px 0 12px;
}

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

.author-card .articles h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.author-card .articles ul {
  list-style: none;
}

.author-card .articles a {
  display: block;
  padding: 4px 0;
}

.review-lead {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}

.review-lead__img {
  position: absolute;
  inset: 0;
}

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

.review-lead__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 32, 24, 0.88) 0%, rgba(6, 32, 24, 0.35) 50%, rgba(6, 32, 24, 0.2) 100%);
}

.review-lead__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 0 40px;
  z-index: 2;
}

.review-lead__content h1 {
  color: #fff;
  margin: 8px 0 12px;
}

.review-lead__content .stars {
  color: #7fd9d0;
}

.review-lead__content .meta {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.standfirst {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 0 24px;
  font-size: 20px;
  line-height: 1.55;
  font-family: var(--font-heading);
  color: var(--text);
}

.byline-bar {
  background: var(--surface-alt);
  border-block: 1px solid var(--border);
  margin-top: 40px;
}

.byline-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.byline-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.byline-left a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

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

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

.pulled-quote {
  max-width: 780px;
  margin: 56px auto;
  padding: 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.35;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 28px;
}

.pulled-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.article-body p {
  margin-bottom: 20px;
}

.article-body h3 {
  margin: 36px 0 14px;
}

.review-section {
  padding: 88px 0;
}

.review-section:nth-of-type(odd) {
  background: var(--bg);
}

.review-section:nth-of-type(even) {
  background: var(--surface-alt);
}

.review-section h2 {
  margin-bottom: 28px;
}

.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-cells .cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.facts-cells .val {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  display: block;
  margin-bottom: 8px;
}

.facts-cells .lbl {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.facts-inline {
  font-size: 15px;
  color: var(--text-muted);
  padding: 20px 0 8px;
  line-height: 1.8;
}

.facts-inline .sep {
  margin: 0 10px;
  opacity: 0.45;
}

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

.fact-tile {
  background: rgba(15, 176, 162, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fact-tile svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent-2);
}

.fact-tile .lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.fact-tile .val {
  font-weight: 700;
}

.rule-para {
  border-block: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.rule-para h2 {
  text-align: center;
}

.access-rows {
  max-width: 720px;
}

.access-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.access-row:first-of-type {
  border-top: 1px solid var(--border);
}

.access-row strong {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.qa-item strong {
  display: block;
  margin-bottom: 8px;
}

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

.neighbour-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

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

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

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

.star-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.star-table td:first-child {
  font-weight: 600;
  width: 42%;
  color: var(--text-muted);
  font-size: 14px;
}

.surprise-pull {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  border-left: 5px solid var(--accent);
  padding-left: 28px;
  max-width: 780px;
}

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

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

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

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

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

.notice-panel {
  background: rgba(15, 176, 162, 0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.notice-panel h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

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

.notice-panel li:last-child {
  border-bottom: none;
}

.verdict-line {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  text-align: center;
  padding: 28px 0;
  color: var(--accent-2);
}

.audience-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.audience-chip {
  background: rgba(15, 176, 162, 0.12);
  color: var(--accent-2);
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.season-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}

.season-table div {
  padding: 20px;
}

.season-table div:first-child {
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.season-table strong {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.num-steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.num-step {
  flex: 1 1 180px;
  text-align: center;
  padding: 16px;
  position: relative;
}

.num-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: var(--accent);
  opacity: 0.35;
}

.num-step .n {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
  background: var(--surface);
}

.not-for-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.not-for-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.not-for-row svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent-2);
}

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

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

.loved-col h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.loved-col ul {
  list-style: none;
}

.loved-col li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
}

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

.loved-col.less li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.score-read {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}

.score-num {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  color: var(--accent-2);
}

.score-num small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0;
}

.aside-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  max-width: 640px;
}

.aside-panel h3 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 16px;
}

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

.aside-panel li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

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

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

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

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

.two-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.two-step__box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.two-step__box h3 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.two-step__conn {
  width: 40px;
  height: 2px;
  background: var(--accent);
  align-self: center;
}

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

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

.guest-card .quote {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.55;
}

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

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

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

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

.guest-photos.wide .guest-photo-btn img {
  width: min(420px, 100%);
  height: auto;
  max-height: 240px;
  object-fit: cover;
}

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

.carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.carousel-stage {
  overflow: hidden;
  min-height: 280px;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 32px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.carousel-slide .big-q {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.5;
}

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

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

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

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

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

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

.masonry .guest-card {
  break-inside: avoid;
  margin-bottom: 24px;
  display: inline-flex;
  width: 100%;
}

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 176, 162, 0.15);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
}

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

.quote-stack .guest-meta {
  text-align: right;
}


.reserve-cta {
  padding: 88px 0 128px;
  background: var(--surface-alt);
}

.reserve-cta h2 {
  margin-bottom: 12px;
}

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

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

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

.reserve-page {
  padding: 80px 0 128px;
}

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

.hotel-indicator {
  background: rgba(15, 176, 162, 0.1);
  border-radius: var(--radius-btn);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

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

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

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

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0 8px;
  grid-column: 1 / -1;
}

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

.agree-row input[type="checkbox"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

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

.agree-error {
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
  grid-column: 1 / -1;
}

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

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

.submit-error {
  color: #c0392b;
  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;
}

.processing-panel h2 {
  margin-bottom: 16px;
}

.processing-summary {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
  font-size: 14px;
}

.processing-summary dt {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}

.processing-summary dd {
  margin: 2px 0 0;
}

.reveal {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(6, 32, 24, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

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

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

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-size: 14px;
}

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

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
  box-shadow: none;
}

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

.consent-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

.consent-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

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

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

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

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

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

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

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

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

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

  .masonry {
    columns: 2;
  }
}

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

  .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: 16px 24px 24px;
    gap: 0;
    display: none;
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links .btn {
    margin: 16px 0 0;
    width: 100%;
  }

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

  .hotel-card__media img {
    min-height: 200px;
    max-height: 260px;
  }

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

  .qa-grid,
  .neighbour-split,
  .room-split,
  .why-split,
  .surprise-split,
  .eat-split,
  .loved-grid,
  .score-read,
  .season-table,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .loved-grid::before {
    display: none;
  }

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

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

  .two-step {
    grid-template-columns: 1fr;
  }

  .two-step__conn {
    width: 2px;
    height: 28px;
    justify-self: center;
  }
}

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

  .footer-desktop-cols {
    display: none;
  }

  .footer-acc {
    display: block;
  }

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

  .masonry {
    columns: 1;
  }

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

  .byline-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .byline-right {
    text-align: left;
  }

  .carousel-slide {
    padding: 24px;
  }
}

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

  .search-bar {
    flex-direction: column;
  }

  .search-bar .btn {
    width: 100%;
    align-self: stretch;
  }

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

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

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

  .reserve-card {
    padding: 24px;
  }

  .featured-card img {
    height: 220px;
  }

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