:root {
  --bg: #faf5f2;
  --surface: #ffffff;
  --surface-alt: #faf5f2;
  --text: #1a1112;
  --text-muted: #6b5a5d;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #c97b8a;
  --accent-2: #a85a6b;
  --secondary: #1a1112;
  --on-accent: #ffffff;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1100px;
  --section-pad: 132px;
  --shadow-sm: 0 2px 8px rgba(26, 17, 18, 0.06), 0 1px 2px rgba(26, 17, 18, 0.04);
  --shadow-lg: 0 12px 32px rgba(26, 17, 18, 0.12), 0 4px 12px rgba(26, 17, 18, 0.06);
  --header-offset: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

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

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

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

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.utility-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 8px 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  min-height: 64px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.2px;
}

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

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

.brand-lockup .est {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-left: 6px;
  font-weight: 400;
}

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

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

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

.nav-links .btn {
  color: var(--on-accent);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(201, 123, 138, 0.45), transparent 70%),
    radial-gradient(ellipse 45% 55% at 80% 70%, rgba(168, 90, 107, 0.35), transparent 70%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero__bg--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1112;
}

.hero__bg--logo img {
  width: min(52vw, 420px);
  height: auto;
  object-fit: contain;
  opacity: 0.28;
  filter: grayscale(0.2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 17, 18, 0.55) 0%, rgba(26, 17, 18, 0.72) 100%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 800px);
  padding: 100px 0 80px;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.75);
}

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

.hero__subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.search-bar label {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
}

.search-bar input,
.search-bar select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  padding: 4px 0;
  text-transform: none;
  letter-spacing: 0;
}

.search-bar .btn {
  align-self: stretch;
  margin: 4px;
  flex: 0 0 auto;
}

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

.section--tight {
  padding: calc(var(--section-pad) * 0.7) 0;
}

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

.section-intro.centred,
.section-head-centred {
  text-align: center;
  margin-inline: auto;
}

.standfirst {
  color: var(--text-muted);
  max-width: 520px;
  margin: -0.4em auto 2em;
  text-align: center;
}

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

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

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

.hotel-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-alt);
}

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

.star-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

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

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

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

.hotel-card__teaser {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 8px;
  flex: 1;
}

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

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

.destinations {
  background: linear-gradient(135deg, rgba(201, 123, 138, 0.12), rgba(250, 245, 242, 0.9));
  position: relative;
  overflow: hidden;
}

.destinations::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(201, 123, 138, 0.28), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

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

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  text-decoration: none;
}

.featured-band {
  background: linear-gradient(180deg, rgba(201, 123, 138, 0.10), transparent);
  position: relative;
  overflow: hidden;
}

.featured-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(168, 90, 107, 0.22), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.featured-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.featured-layout__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.featured-layout__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-layout__media--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(201, 123, 138, 0.35), rgba(26, 17, 18, 0.88));
  aspect-ratio: 4 / 3;
}

.featured-layout__media--brand img {
  width: 42%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
  margin-inline: auto;
}

.tips-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.tips-list li:first-child {
  border-top: 1px solid var(--border);
}

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 123, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}

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

.tips-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

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

.quote-carousel {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  padding: 20px 0 0;
}

.quote-carousel__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: rgba(201, 123, 138, 0.35);
  margin-bottom: 20px;
}

.quote-slide {
  display: none;
  animation: fadeIn 0.45s ease;
}

.quote-slide.is-active {
  display: block;
}

.quote-slide blockquote {
  margin: 0 0 20px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.55;
  font-style: italic;
  color: var(--text);
}

.quote-slide cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 14px;
}

.quote-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

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

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 17, 18, 0.18);
  cursor: pointer;
  padding: 0;
}

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

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

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

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

.author-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--text);
  text-decoration: none;
}

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 16px;
}

.author-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

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

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

.site-footer {
  position: relative;
  background: linear-gradient(180deg, rgba(201, 123, 138, 0.06), var(--bg) 40%);
  border-top: 1px solid var(--border);
  padding: 72px 0 28px;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 320px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.footer-watermark img {
  width: 100%;
  height: auto;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 360px;
  margin: 16px 0;
}

.footer-brand .mailto {
  font-size: 14px;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--text);
}

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

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

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

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

.footer-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 18px;
}

.footer-bottom-upper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  margin-bottom: 12px;
}

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

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

.footer-bottom-lower {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

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

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

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

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

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

.review-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.review-lead {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 36px;
  aspect-ratio: 16 / 9;
  background: var(--surface-alt);
}

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

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

.facts-chip {
  background: rgba(201, 123, 138, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text);
}

.facts-chip strong {
  font-weight: 400;
  color: var(--text-muted);
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

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

.review-rail {
  position: sticky;
  top: var(--header-offset);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 28px;
  font-size: 14px;
}

.byline .monogram {
  width: 40px;
  height: 40px;
  font-size: 12px;
  margin: 0;
}

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

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

.byline .muted {
  color: var(--text-muted);
  font-style: italic;
}

.article-body {
  max-width: 680px;
}

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

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

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

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

.facts-cell .value {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
}

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

.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

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

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

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

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

.content-section {
  padding: calc(var(--section-pad) * 1.4) 0;
}

.content-section > .container > h2,
.content-section > h2 {
  text-align: center;
}

.accordion {
  max-width: 720px;
  margin: 0 auto;
}

.accordion details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  font-family: var(--font-heading);
  font-size: 17px;
}

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

.accordion summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--accent-2);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion details[open] summary::after {
  content: "×";
  transform: rotate(0deg);
}

.accordion details p {
  color: var(--text-muted);
  padding: 0 4px 18px;
  margin: 0;
}

.split-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
  max-width: 900px;
  margin-inline: auto;
}

.tinted-card {
  background: rgba(201, 123, 138, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.tinted-card .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.access-panel {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  background: var(--surface);
}

.access-panel .confirm {
  grid-column: 2;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.evening-rule {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.evening-rule p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.narrow-accent {
  max-width: 520px;
  margin: 0 auto;
  border-left: 3px solid var(--accent);
  padding-left: 22px;
}

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

.theme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.theme-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 123, 138, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent-2);
}

.theme-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

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

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

.food-chips span {
  background: rgba(201, 123, 138, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.balance-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.balance-cols > div {
  padding: 28px;
}

.balance-cols > div:first-child {
  border-right: 1px solid var(--border);
}

.balance-cols h3 {
  font-size: 16px;
  margin: 0 0 16px;
}

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

.balance-cols li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
}

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

.balance-cols .know li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.neighbourhood {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

.season-cell .ico {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--accent-2);
}

.season-cell h3 {
  font-size: 15px;
  margin: 0 0 8px;
}

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

.score-band {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(201, 123, 138, 0.10);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.score-band .big-score {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
  text-align: center;
}

.score-band .big-score span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 1px;
}

.score-band p:last-child {
  margin-bottom: 0;
}

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

.aside-panel h3 {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

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

.surprise-split {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.surprise-split .icon-lg {
  width: 88px;
  height: 88px;
  color: var(--accent-2);
}

.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}

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

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

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 123, 138, 0.2);
}

.timeline-item h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

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

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

.tag-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.tag-block svg {
  width: 28px;
  height: 28px;
  color: var(--accent-2);
  margin: 0 auto 10px;
}

.tag-block h3 {
  font-size: 14px;
  margin: 0 0 8px;
}

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

.alt-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

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

.badge-pm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.badge-pm.plus {
  background: rgba(201, 123, 138, 0.2);
  color: var(--accent-2);
}

.badge-pm.minus {
  background: rgba(26, 17, 18, 0.08);
  color: var(--text-muted);
}

.quiet-panel {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
  transform: translateX(24px);
}

.evening-band {
  background: rgba(26, 17, 18, 0.04);
  padding: 64px 0;
}

.evening-band .inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.evening-band .moon {
  width: 36px;
  height: 36px;
  color: var(--accent-2);
  margin: 0 auto 16px;
}

.service-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.service-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-style: italic;
  box-shadow: var(--shadow-sm);
}

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

.rating-oversize {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.rating-oversize .num {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
}

.rating-oversize .count {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 6px;
}

.tinted-kicker-band {
  background: rgba(201, 123, 138, 0.10);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 800px;
  margin: 0 auto;
}

.checkin-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.checkin-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.checkin-step h3 {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.checkin-connector {
  height: 2px;
  background: var(--accent);
  position: relative;
}

.checkin-connector::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-top: 2px solid var(--accent);
  transform: rotate(45deg);
}

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

.guest-block h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.guest-card.is-highlight {
  background: rgba(201, 123, 138, 0.10);
  border-color: rgba(201, 123, 138, 0.35);
}

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

.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: 10px;
  overflow: hidden;
  display: block;
}

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

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

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

.guest-stack {
  max-width: 800px;
  margin: 0 auto;
}

.guest-stack-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

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

.guest-stack-row .guest-meta {
  align-self: flex-end;
  text-align: right;
  margin-top: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.snap-wrap {
  position: relative;
}

.snap-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.snap-strip::-webkit-scrollbar {
  display: none;
}

.snap-strip .guest-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

.snap-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.reserve-cta {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg), rgba(201, 123, 138, 0.08));
}

.reserve-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-frame {
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  height: 360px;
  box-shadow: var(--shadow-sm);
  background: var(--surface-alt);
}

.address-line {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.authors-page .author-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.authors-page .author-block:last-child {
  border-bottom: none;
}

.authors-page .monogram {
  width: 72px;
  height: 72px;
  font-size: 20px;
}

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

.article-links li {
  margin-bottom: 8px;
}

.reserve-page {
  padding: 64px 0 100px;
}

.reserve-form,
.processing-panel {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.hotel-indicator {
  background: rgba(201, 123, 138, 0.12);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 15px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text);
}

.form-row input {
  width: 100%;
  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);
}

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

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

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

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

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

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

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

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

.processing-summary {
  background: var(--bg);
  border-radius: var(--radius-btn);
  padding: 16px;
  margin: 20px 0;
  font-size: 14px;
}

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

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

.legal-page {
  padding: 64px 0 100px;
}

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

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

.legal-page h2 {
  margin-top: 2em;
}

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

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

.legal-page th {
  background: rgba(201, 123, 138, 0.08);
  font-weight: 400;
}

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

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

.consent-banner h2 {
  font-size: 20px;
  margin: 0 0 8px;
}

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

.consent-cats {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

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

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

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

.consent-actions .btn {
  flex: 1 1 auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(26, 17, 18, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none !important;
}

.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;
  border-radius: 8px;
}

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

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

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

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

.hotel-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.hotel-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.hotel-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.hotel-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.hotel-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

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

  .featured-layout,
  .destinations-grid,
  .reserve-cta__inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .quiet-panel {
    transform: none;
  }

  .snap-strip .guest-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

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

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

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

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

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

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

  .nav-links .btn {
    margin-top: 12px;
    width: 100%;
  }

  .authors-row,
  .theme-cards,
  .guest-grid-3,
  .footer-cols,
  .split-2,
  .balance-cols,
  .score-band,
  .service-split,
  .rating-oversize,
  .surprise-split,
  .checkin-steps {
    grid-template-columns: 1fr;
  }

  .balance-cols > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .season-strip {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .checkin-connector {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }

  .checkin-connector::after {
    display: none;
  }

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

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

  .utility-bar {
    font-size: 11px;
  }

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

  .tag-row,
  .facts-row,
  .season-strip {
    grid-template-columns: 1fr;
  }

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

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

  .snap-strip .guest-card {
    flex: 0 0 100%;
  }

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

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

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

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