:root {
  --bg: #f2f1f8;
  --surface: #ffffff;
  --surface-alt: #f2f1f8;
  --text: #181a33;
  --text-muted: #565879;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #4b4fb0;
  --accent-2: #363a86;
  --secondary: #101127;
  --on-accent: #ffffff;
  --radius: 28px;
  --radius-btn: 2px;
  --shadow: 0 10px 30px rgba(16, 17, 39, 0.08);
  --font-heading: Consolas, "Courier New", monospace;
  --font-body: Tahoma, Geneva, sans-serif;
  --content: 1060px;
  --section-pad: 124px;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.82;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

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

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

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

.section--dotted {
  background-color: var(--surface-alt);
  background-image: radial-gradient(rgba(15, 17, 26, 0.07) 1px, transparent 1px);
  background-size: 18px 18px;
}

.section--grid {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(15, 17, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 17, 26, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.2;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
}

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

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

.btn--ghost {
  background: transparent;
  color: var(--on-accent);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-accent);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.nav__left,
.nav__right {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  flex-wrap: wrap;
}

.nav__left {
  justify-content: flex-end;
}

.nav__right {
  justify-content: flex-start;
}

.nav__link {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 6px 2px;
  white-space: nowrap;
}

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

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 6px 8px;
}

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

.nav__brand img {
  width: 36px;
  height: 34px;
  object-fit: contain;
}

.nav__cta {
  margin-left: 6px;
  padding: 10px 18px;
  font-size: 13px;
}

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

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

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

.hero__bg--brand {
  background-color: var(--secondary);
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(75,79,176,0.45), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(54,58,134,0.4), transparent 50%),
    url('../images/logo/logo.webp');
  background-repeat: no-repeat;
  background-position: center 42%;
  background-size: auto, auto, min(220px, 40vw);
}

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

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 39, 0.72) 0%, rgba(16, 17, 39, 0.55) 45%, rgba(16, 17, 39, 0.82) 100%);
}

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

.hero h1 {
  color: #fff;
  margin-bottom: 0.5em;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue i {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: cue 1.6s ease infinite;
}

@keyframes cue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

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

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

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

.hotel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.hotel-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.hotel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(16, 17, 39, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.hotel-card__overlay h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 6px;
}

.hotel-card__body {
  overflow-x: hidden;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

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

.hotel-card__body p {
  color: var(--text-muted);
  font-size: 15px;
  flex: 1;
}

.stars {
  letter-spacing: 2px;
  color: #c9a227;
  font-size: 14px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.method-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(75, 79, 176, 0.1);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.method-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

.dest-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.dest-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--secondary);
}

.dest-card__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(75, 79, 176, 0.85), rgba(16, 17, 39, 0.75)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.04) 12px, rgba(255, 255, 255, 0.04) 24px);
}

.dest-card__panel span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
}

.dest-card__panel--label {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.dest-card__mono {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-heading);
}

.dest-card__panel--b {
  background:
    linear-gradient(135deg, rgba(54, 58, 134, 0.9), rgba(16, 17, 39, 0.8)),
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.04) 12px, rgba(255, 255, 255, 0.04) 24px);
}

.dest-card__panel--c {
  background:
    linear-gradient(160deg, rgba(75, 79, 176, 0.75), rgba(16, 17, 39, 0.85)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 50%);
}

.dest-card__panel--d {
  background:
    linear-gradient(200deg, rgba(16, 17, 39, 0.85), rgba(75, 79, 176, 0.7)),
    repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(255, 255, 255, 0.03) 16px, rgba(255, 255, 255, 0.03) 32px);
}

.dest-card__panel--e {
  background: linear-gradient(120deg, rgba(54, 58, 134, 0.95), rgba(75, 79, 176, 0.65));
}

.dest-card__panel--f {
  background: linear-gradient(40deg, rgba(16, 17, 39, 0.9), rgba(54, 58, 134, 0.75));
}

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

.author-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease;
}

.author-card:hover {
  border-color: var(--accent);
  color: inherit;
}

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(75, 79, 176, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
}

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

.author-card__role {
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 10px;
  display: block;
}

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

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

.faq-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}

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

.quote-carousel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-carousel__mark {
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 18px;
}

.quote-slide {
  display: none;
}

.quote-slide.is-active {
  display: block;
  animation: fadeIn 0.45s ease;
}

.quote-slide blockquote {
  margin: 0 0 1.2rem;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.55;
  font-style: normal;
}

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

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

.quote-nav button {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  color: var(--text);
}

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

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

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

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

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

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

.site-footer {
  background: var(--surface);
  margin-top: 0;
}

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

.footer-cta h2 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: clamp(24px, 3vw, 34px);
}

.footer-main {
  padding: 72px 0 48px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.footer-brand a.lockup img {
  width: 36px;
  height: 34px;
}

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

.footer-col h3 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

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

.footer-bottom {
  background: #eae9f2;
  padding: 28px 0 32px;
  text-align: center;
}

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

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

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

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

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

.page-hero h1 {
  margin-bottom: 0.4em;
}

.page-hero p.lead {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 18px;
}

.legal-body {
  overflow-x: hidden;
  padding: 64px 0 100px;
}

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

.legal-body h1 {
  margin-bottom: 0.6em;
}

.legal-body h2 {
  margin-top: 2.2em;
  margin-bottom: 0.7em;
}

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

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 15px;
}

.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);
  font-family: var(--font-heading);
  font-weight: 400;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.3em;
  margin: 0 0 1.2em;
}

.legal-body li {
  margin-bottom: 0.45em;
}

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

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

.author-profile .monogram {
  width: 72px;
  height: 72px;
  font-size: 22px;
  margin: 0;
}

.author-profile__role {
  color: var(--accent);
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}

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

.reserve-wrap {
  padding: 72px 0 120px;
}

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

.reserve-hotel {
  background: rgba(75, 79, 176, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

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

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

.form-field input:focus {
  outline: 2px solid rgba(75, 79, 176, 0.35);
  border-color: var(--accent);
}

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

.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.55;
  color: var(--text);
}

.agree-row[data-error="1"] input,
.agree-row input[aria-invalid="true"] {
  outline: 2px solid #b04040;
}

.agree-error {
  color: #b04040;
  font-size: 13px;
  min-height: 1.2em;
  margin-bottom: 12px;
}

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

.submit-error {
  color: #b04040;
  font-size: 14px;
  margin-top: 12px;
  min-height: 1.2em;
}

.processing-panel {
  display: none;
}

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

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

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

.review-header {
  padding: 56px 0 28px;
  background: var(--surface);
}

.review-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 10px;
}

.review-lead {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

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

.review-layout {
  padding: 56px 0 0;
}

.article-split {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 36px;
  align-items: start;
}

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

.byline-aside .monogram {
  margin-bottom: 12px;
}

.byline-aside a {
  font-family: var(--font-heading);
  text-decoration: none;
  color: var(--text);
}

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

.byline-aside__role {
  font-size: 13px;
  color: var(--accent);
  display: block;
  margin: 4px 0 10px;
}

.byline-aside__stay,
.byline-aside__note {
  font-size: 13px;
  color: var(--text-muted);
}

.article-body p {
  font-size: 17px;
}

.article-body h3 {
  margin-top: 1.6em;
  font-size: 20px;
}

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

.fact-chip {
  background: rgba(75, 79, 176, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.fact-chip strong {
  color: var(--text);
  font-weight: 600;
}

.facts-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  margin: 36px 0;
}

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

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

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

.facts-strip {
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--surface);
  line-height: 1.7;
}

.facts-strip strong {
  color: var(--text);
  font-weight: 600;
}

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

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

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

.panel-bordered {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
  max-width: 720px;
  margin-left: 40px;
}

.tinted-band {
  background: rgba(75, 79, 176, 0.08);
  padding: 48px 24px;
  border-radius: var(--radius);
}

.tinted-band__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

.rating-track {
  position: relative;
  height: 12px;
  background: rgba(16, 17, 39, 0.08);
  border-radius: 999px;
  margin-top: 28px;
}

.rating-track__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
  border-radius: 999px;
}

.rating-track__marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border: 3px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

.season-cell__icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--accent);
}

.season-cell h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

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

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

.meter-score {
  text-align: center;
}

.meter-score__num {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}

.meter-row {
  margin-bottom: 14px;
}

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

.meter-bar {
  height: 8px;
  background: rgba(16, 17, 39, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

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

.meters-caption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.narrow-center {
  max-width: 620px;
  margin: 0 auto;
}

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

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

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

.score-band {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(75, 79, 176, 0.08);
  border-radius: var(--radius);
  padding: 36px;
}

.score-band__left {
  text-align: center;
}

.score-band__num {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}

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

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

.audience-card svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--accent);
}

.audience-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

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

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-list__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
}

.audience-chip {
  display: inline-block;
  background: rgba(75, 79, 176, 0.1);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  text-align: center;
}

.season-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.season-row {
  background: rgba(75, 79, 176, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
}

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

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

.highlight-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(75, 79, 176, 0.1);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.verdict-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.verdict-panel--good {
  background: rgba(75, 79, 176, 0.08);
}

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

.verdict-panel ul {
  margin: 10px 0 0;
  padding-left: 1.1em;
}

.room-pass h3 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.6em 0 0.5em;
}

.why-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
}

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

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

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

.moon-band {
  background: rgba(16, 17, 39, 0.04);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
}

.moon-band svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}

.moon-band__inner {
  max-width: 620px;
  margin: 0 auto;
}

.oversized-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.oversized-score__num {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 96px);
  line-height: 0.9;
  color: var(--accent);
}

.evening-rule {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.7;
  max-width: 780px;
}

.busy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.busy-table td {
  border: 1px solid var(--border);
  padding: 16px;
  width: 50%;
  vertical-align: top;
}

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

.caution-aside h3 {
  color: var(--text-muted);
  font-size: 16px;
}

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

.pill {
  background: rgba(75, 79, 176, 0.1);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.arrival-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

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

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

.arrival-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--accent);
}

.access-band {
  background: rgba(75, 79, 176, 0.08);
  border-radius: var(--radius);
  padding: 32px;
}

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

.balance-col {
  padding: 28px;
}

.balance-col + .balance-col {
  border-left: 1px solid var(--border);
}

.balance-col ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.balance-col li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
}

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

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

.guest-block {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

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

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

.guest-card--featured {
  padding: 36px;
  min-height: 100%;
}

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

.guest-card--featured blockquote {
  font-size: 20px;
  line-height: 1.55;
}

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

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

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

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

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

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

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

.guest-rows .guest-card:last-child {
  border-bottom: 0;
}

.guest-rows .guest-card__meta {
  text-align: right;
  margin-top: 12px;
}

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

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

.guest-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(75, 79, 176, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 12px;
  margin-bottom: 4px;
}

.reserve-cta {
  padding: var(--section-pad) 0;
  background: var(--secondary);
  color: #fff;
}

.reserve-cta h2 {
  color: #fff;
}

.reserve-cta p,
.reserve-cta address {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.reserve-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.map-frame {
  border: 0;
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
  height: 360px;
  background: #ddd;
}

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

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

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

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

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

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

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

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

.consent-banner h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

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

.consent-cats {
  display: flex;
  flex-direction: column;
  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;
}

.article-continued {
  padding: 48px 0 0;
}

.article-with-rail {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
}

.rail-sticky {
  position: sticky;
  top: 100px;
}

.mid-reserve {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  margin: 24px 0;
  font-size: 14px;
}

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

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

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

  .guest-featured,
  .scale-row,
  .why-split,
  .reserve-cta__grid,
  .article-split,
  .article-with-rail,
  .score-band,
  .meters,
  .oversized-score {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .nav-toggle {
    display: inline-flex;
    order: 2;
    justify-self: end;
  }

  .nav__brand {
    order: 1;
  }

  .nav__left,
  .nav__right {
    display: none;
  }

  .nav.is-open .nav__left,
  .nav.is-open .nav__right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    gap: 4px;
    padding-bottom: 16px;
  }

  .nav.is-open .nav__left {
    order: 3;
  }

  .nav.is-open .nav__right {
    order: 4;
  }

  .nav.is-open .nav__link,
  .nav.is-open .nav__cta {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    padding: 12px 8px;
  }

  .byline-aside {
    order: -1;
  }

  .article-split {
    grid-template-columns: 1fr;
  }

  .facts-strip {
    position: static;
  }
}

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

  .hotel-grid,
  .method-grid,
  .author-row,
  .faq-grid,
  .audience-row,
  .highlight-grid,
  .footer-grid,
  .form-grid,
  .balance-cols,
  .arrival-steps,
  .guest-featured,
  .season-strip {
    grid-template-columns: 1fr;
  }

  .guest-masonry {
    columns: 1;
  }

  .arrival-connector {
    width: 2px;
    height: 36px;
    margin: 0 auto;
  }

  .arrival-connector::after {
    right: -4px;
    top: auto;
    bottom: -6px;
    border-left-color: transparent;
    border-top-color: var(--accent);
  }

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

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

  .balance-col + .balance-col {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

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

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

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

  body {
  overflow-x: hidden;
    font-size: 16px;
  }

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

  .reserve-card {
    padding: 24px 18px;
  }

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

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

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

.footer-text-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}
.footer-text-btn:hover,
.footer-text-btn:focus-visible {
  color: var(--accent);
  outline: none;
}
.footer-col .footer-text-btn {
  color: var(--text-muted);
}
.facts-first {
  margin: 28px 0 36px;
}
.review-layout > .container > .byline-aside {
  margin-bottom: 8px;
  max-width: 420px;
}
.facts-band .facts-aside {
  max-width: 420px;
}
.facts-aside h2,
.facts-aside .kicker {
  margin: 0 0 12px;
}
.guest-card blockquote {
  flex: 0 0 auto;
}
.guest-photos {
  margin-top: 0;
}
