:root {
  --bg: #eef1fb;
  --surface: #ffffff;
  --surface-alt: #eef1fb;
  --text: #0d1533;
  --text-muted: #535d86;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #3d5afe;
  --accent-2: #2b3fc7;
  --secondary: #0a1028;
  --on-accent: #ffffff;
  --radius: 28px;
  --radius-btn: 2px;
  --shadow: 0 10px 30px rgba(13, 21, 51, 0.08);
  --font-heading: Garamond, 'Goudy Old Style', 'Palatino Linotype', serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --max: 1180px;
  --section-pad: 150px;
  --header-h: 72px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(238, 241, 251, 0.9)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(15, 17, 26, 0.015) 23px,
      rgba(15, 17, 26, 0.015) 24px
    );
  min-height: 100vh;
  overflow-x: hidden;
}

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.4px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6.5vw, 66px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 4.2vw, 44px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.section--tight {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

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

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

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

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

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

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

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

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

.brand img {
  width: 44px;
  height: 27px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: -0.3px;
  color: inherit;
}

.site-header:not(.is-solid) .brand-name,
.site-header:not(.is-solid) .nav-links a {
  color: #fff;
}

.site-header:not(.is-solid) .nav-toggle span {
  background: #fff;
}

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

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

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

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.nav-links .btn {
  padding: 10px 22px;
}

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

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

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

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: calc(var(--header-h) + 40px) 20px 80px;
  overflow: hidden;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 16, 40, 0.82) 0%, rgba(13, 21, 51, 0.55) 55%, rgba(61, 90, 254, 0.35) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
}

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

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

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
}

.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: var(--radius);
  text-align: left;
}

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

.search-bar input,
.search-bar select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: none;
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

.search-bar .btn {
  align-self: flex-end;
  flex: 0 0 auto;
}

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

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

.hotel-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.hotel-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 40, 0.85) 0%, transparent 55%);
}

.hotel-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

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

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

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

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

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

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

.faq-item h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.4em;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0;
}

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

.author-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.2s ease;
}

.author-card:hover {
  transform: translateY(-3px);
  color: inherit;
}

.monogram {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
}

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

.author-card .role {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.newsletter__visual {
  background: linear-gradient(145deg, var(--secondary), var(--accent-2));
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 48px;
  color: #fff;
}

.newsletter__visual-inner {
  text-align: center;
}

.newsletter__visual .big-num {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  margin-bottom: 12px;
}

.newsletter__form {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter__form h2 {
  margin-bottom: 0.4em;
}

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

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.form-row input[type="email"],
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface-alt);
  color: var(--text);
}

.form-row input:focus,
.form-row select:focus,
.agree-row input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

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

.agree-row label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}

.agree-row.is-error input {
  outline: 2px solid #c62828;
  outline-offset: 2px;
}

.agree-error {
  display: none;
  color: #c62828;
  font-size: 13px;
  margin: -12px 0 16px;
}

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

.stats-band {
  background: var(--accent);
  color: var(--on-accent);
  padding: 28px 0;
  border-top: none;
}

.stats-band__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 48px;
  text-align: center;
}

.stat-item {
  font-size: 15px;
  letter-spacing: 0.2px;
}

.stat-item strong {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  margin-right: 10px;
}

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

.footer-strip {
  background: rgba(61, 90, 254, 0.08);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-strip span {
  margin: 0 10px;
  opacity: 0.45;
}

.footer-main {
  width: min(100% - 40px, var(--max));
  margin: 56px auto 40px;
  text-align: center;
}

.footer-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-lockup img {
  width: 56px;
  height: 34px;
  object-fit: contain;
}

.footer-lockup .brand-name {
  font-size: 26px;
}

.footer-blurb {
  max-width: 520px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.footer-cols a,
.footer-cols button {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  padding: 6px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
}

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

.footer-consent {
  width: min(100% - 40px, var(--max));
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  font-size: 13px;
}

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

.footer-bottom {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-bottom img {
  width: 32px;
  height: 20px;
  object-fit: contain;
  opacity: 0.7;
}

.footer-requisites {
  width: min(100% - 40px, var(--max));
  margin: 12px auto 0;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
}

.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--border);
}

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

.review-lead {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 40px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

.facts-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.fact {
  text-align: center;
  padding: 12px;
}

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

.fact__value {
  font-family: var(--font-heading);
  font-size: 22px;
}

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

.highlight {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.highlight__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(61, 90, 254, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.verdict__col {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.verdict__col h3 {
  margin-bottom: 16px;
}

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

.verdict__col li {
  margin-bottom: 10px;
}

.good-to-know {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.good-to-know ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-muted);
}

.good-to-know li {
  margin-bottom: 12px;
}

.who-for {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tag-block {
  flex: 1 1 200px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
}

.tag-block strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

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

.why-stay ul {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: var(--text-muted);
}

.why-stay li {
  margin-bottom: 10px;
}

.reviews-snap {
  position: relative;
}

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

.reviews-snap__track::-webkit-scrollbar {
  display: none;
}

.reviews-snap__track .review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.reviews-snap__nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.reviews-snap__nav button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
}

.reviews-snap__nav button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

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

.reviews-featured__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

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

.review-card--highlight {
  background: var(--secondary);
  color: #fff;
}

.review-card--highlight .stars {
  color: #f5d76e;
}

.review-card--highlight .review-card__meta,
.review-card--highlight blockquote {
  color: rgba(255, 255, 255, 0.9);
}

.review-card--featured {
  padding: 40px;
}

.review-card--featured blockquote {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.5;
}

.review-card blockquote {
  margin: 0;
  font-style: italic;
  line-height: 1.7;
}

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

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

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

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

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

.review-card--highlight .guest-photos__caption {
  color: rgba(255, 255, 255, 0.65);
}

.reserve-cta {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

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

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

.reserve-cta address {
  font-style: normal;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.map-wrap {
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  margin-bottom: 28px;
  background: #ddd;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 16, 40, 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.8);
  margin-top: 12px;
  font-size: 14px;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  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;
}

.reserve-layout {
  padding: calc(var(--header-h) + 60px) 0 var(--section-pad);
}

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

.hotel-indicator {
  background: rgba(61, 90, 254, 0.08);
  border-radius: var(--radius-btn);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 15px;
}

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

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

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

.submit-error {
  display: none;
  color: #c62828;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.processing-panel {
  display: none;
}

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

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

.authors-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.author-block {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

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

.author-block .role {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.author-block ul {
  margin: 16px 0 0;
  padding-left: 1.2em;
}

.author-block li {
  margin-bottom: 8px;
}

.content-page {
  padding: calc(var(--header-h) + 60px) 0 var(--section-pad);
}

.content-prose {
  max-width: 720px;
}

.content-prose h2 {
  margin-top: 1.8em;
}

.content-prose h3 {
  margin-top: 1.4em;
  font-size: 22px;
}

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

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

.content-prose th {
  background: var(--surface-alt);
  font-weight: 600;
}

.content-prose .btn {
  margin: 8px 0 16px;
}

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2500;
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px;
  max-width: 560px;
  margin-left: 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: 20px;
}

.consent-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  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 button {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
}

.consent-actions button.consent-accept {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent-actions button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.guest-photo-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

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

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

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

}

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

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow);
    display: none;
  }

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

  .nav-links a {
    color: var(--text) !important;
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .btn {
    margin-top: 12px;
    text-align: center;
  }

  .site-header:not(.is-solid) .nav-links a {
    color: var(--text);
  }

  .faq-grid,
  .newsletter,
  .verdict,
  .reviews-featured,
  .author-row,
  .footer-cols,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .newsletter__visual {
    min-height: 200px;
  }

  .hotel-grid,
  .highlights,
  .reviews-grid-3,
  .reviews-more {
    grid-template-columns: 1fr;
  }

  .reviews-snap__track .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

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

  .stats-band__inner {
    gap: 20px 32px;
  }

  .reserve-cta,
  .reserve-card {
    padding: 32px 24px;
  }
}

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

  .container,
  .nav-inner {
    width: min(100% - 24px, var(--max));
  }

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

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

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

  .hotel-card__body,
  .highlight,
  .review-card {
    padding: 22px;
  }

  .brand-name {
    font-size: 16px;
  }

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

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

  .reviews-snap__track .review-card {
    flex: 0 0 100%;
  }

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