:root {
  --bg: #eef2ec;
  --surface: #ffffff;
  --surface-alt: #eef2ec;
  --text: #12271a;
  --text-muted: #4d6152;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #1f7a3d;
  --accent-2: #155c2c;
  --secondary: #0c1a11;
  --on-accent: #ffffff;
  --radius: 8px;
  --radius-btn: 6px;
  --shadow: 0 10px 30px rgba(12, 26, 17, 0.08);
  --font-heading: Cambria, Constantia, Georgia, serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
  --max: 1180px;
  --section-pad: 150px;
  --header-offset: 96px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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.5vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

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

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

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

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

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

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

.btn-light:hover {
  background: var(--bg);
  color: var(--secondary);
}

.text-link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

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

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

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}

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

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--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: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--on-accent);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0c1a11;
}

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

.hero-bg-logo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 40%, rgba(31, 122, 61, 0.45), transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(21, 92, 44, 0.35), transparent 50%),
    #0c1a11;
}

.hero-bg-logo img {
  width: min(42vw, 320px);
  height: auto;
  object-fit: contain;
  opacity: 0.22;
  filter: grayscale(0.2);
}

.featured-panel {
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(31, 122, 61, 0.16), rgba(12, 26, 17, 0.06)),
    var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.featured-panel-inner {
  padding: 2.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 26, 17, 0.55) 0%, rgba(12, 26, 17, 0.72) 55%, rgba(12, 26, 17, 0.88) 100%);
}

.hero-blobs::before,
.hero-blobs::after,
.band-blobs::before,
.band-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-blobs::before {
  width: 420px;
  height: 420px;
  background: rgba(31, 122, 61, 0.55);
  top: -80px;
  left: -60px;
  z-index: -1;
}

.hero-blobs::after {
  width: 360px;
  height: 360px;
  background: rgba(21, 92, 44, 0.4);
  bottom: -40px;
  right: -40px;
  z-index: -1;
}

.hero-inner {
  width: min(100% - 48px, 820px);
  padding: 8rem 0 5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.hero .lede {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: cue-bounce 2s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

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

.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

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

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

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

.star-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  letter-spacing: 1px;
}

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

.hotel-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.hotel-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.hotel-card .teaser {
  color: var(--text-muted);
  margin: 0.25rem 0 1rem;
  flex: 1;
}

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

.featured-band {
  background: linear-gradient(135deg, rgba(31, 122, 61, 0.12), rgba(238, 242, 236, 1));
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.featured-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.featured-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.band-blobs {
  position: relative;
}

.band-blobs::before {
  width: 280px;
  height: 280px;
  background: rgba(31, 122, 61, 0.25);
  top: 10%;
  right: 5%;
}

.band-blobs::after {
  width: 200px;
  height: 200px;
  background: rgba(21, 92, 44, 0.18);
  bottom: 5%;
  left: 8%;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  width: min(360px, 75vw);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}

.marquee-item p {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.5;
}

.marquee-item cite {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.9rem;
}

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

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

.tip-card {
  padding: 2rem 0;
}

.tip-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(31, 122, 61, 0.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.tip-card h3 {
  margin-bottom: 0.5rem;
}

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

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

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

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

.faq-item .faq-body {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
}

.faq-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  position: relative;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.faq-plus::before {
  width: 12px;
  height: 2px;
}

.faq-plus::after {
  width: 2px;
  height: 12px;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

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

.author-teaser {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.monogram {
  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: 1.1rem;
  flex-shrink: 0;
}

.monogram.sm {
  width: 40px;
  height: 40px;
  font-size: 0.85rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 34ch;
  margin-top: 1rem;
}

.footer-country {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 1.25rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  font-variant: small-caps;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-accordion > summary {
  display: none;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

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

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

.footer-requisites {
  width: 100%;
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin-top: 0.35rem;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
}

.page-hero .lede {
  color: var(--text-muted);
  max-width: 60ch;
}

.legal-content {
  padding: 2rem 0 var(--section-pad);
  max-width: 760px;
}

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

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

.legal-content th {
  background: rgba(31, 122, 61, 0.08);
  font-weight: 600;
}

.authors-grid {
  display: grid;
  gap: 2rem;
}

.author-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  scroll-margin-top: 120px;
}

.author-card-head {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1rem;
}

.author-role {
  color: var(--text-muted);
  margin: 0;
}

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

.author-articles ul {
  margin: 0.5rem 0 0;
}

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

.hotel-indicator {
  background: rgba(31, 122, 61, 0.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

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

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

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

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

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

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

.agree-row label {
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.form-error {
  color: #8b2e2e;
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

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

.processing-panel {
  text-align: left;
}

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

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

.processing-panel dd {
  margin: 0;
  font-weight: 600;
}

.review-header {
  padding: 3.5rem 0 2rem;
}

.review-header-top {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.review-lead img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.review-rating-line {
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

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

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

.review-main {
  min-width: 0;
}

.review-rail {
  position: sticky;
  top: var(--header-offset);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.review-rail .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.rail-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
  font-size: 0.98rem;
}

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

.article-body {
  max-width: 68ch;
}

.article-body h3 {
  margin-top: 2rem;
}

.review-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-section {
  padding: 4rem 0;
}

.review-section h2 {
  margin-bottom: 1.5rem;
}

.accent-band {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.92);
  padding: 5rem 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.accent-band h2,
.accent-band .kicker {
  color: #fff;
}

.accent-band .kicker {
  opacity: 0.7;
}

.accent-band a {
  color: #b8e0c4;
}

.facts-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 2rem;
}

.fact-chip {
  background: rgba(31, 122, 61, 0.1);
  border-radius: var(--radius);
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
}

.fact-chip strong {
  font-weight: 600;
}

.facts-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.fact-tile {
  background: rgba(31, 122, 61, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.fact-tile .kicker {
  margin-bottom: 0.25rem;
  letter-spacing: 3px;
  font-size: 11px;
}

.fact-tile strong {
  font-size: 1.05rem;
  display: block;
}

.facts-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 1.5rem 0 2.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.facts-stats {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin: 1rem 0 1.5rem;
}

.fact-stat {
  flex: 1 1 120px;
  padding: 1.1rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.fact-stat:last-child {
  border-right: none;
}

.fact-stat .value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

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

.facts-header-strip {
  margin-top: 1.5rem;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.qa-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

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

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

.rating-scale {
  position: relative;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin-top: 1.5rem;
}

.accent-band .rating-scale {
  background: rgba(255, 255, 255, 0.18);
}

.rating-scale-track {
  height: 12px;
  background: var(--border);
  border-radius: 999px;
  position: relative;
}

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

.rating-scale-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 3px solid var(--surface);
  box-shadow: var(--shadow);
}

.rating-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

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

.sleep-item {
  text-align: center;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.accent-band .sleep-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.sleep-item svg {
  margin: 0 auto 0.5rem;
}

.sleep-item strong {
  display: block;
  font-size: 1.05rem;
}

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

.pull-quote {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.5;
  box-shadow: var(--shadow);
}

.pull-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.timeline-item {
  position: relative;
}

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

.tinted-band {
  background: rgba(31, 122, 61, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.aside-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  background: var(--surface);
}

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

.verdict-display {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  margin: 1.25rem 0;
  color: var(--accent-2);
}

.icon-list {
  display: flex;
  flex-direction: column;
}

.icon-list-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.icon-list-row:last-child {
  border-bottom: none;
}

.icon-list-row h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}

.icon-list-row p {
  margin: 0;
  color: var(--text-muted);
}

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

.meter-score {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
}

.meter-score .big {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--accent-2);
}

.meter-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meter-bar label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.meter-track {
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.alt-list {
  display: flex;
  flex-direction: column;
}

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

.alt-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.alt-badge.plus {
  background: rgba(31, 122, 61, 0.15);
  color: var(--accent-2);
}

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

.narrow-measure {
  max-width: 58ch;
  margin-inline: auto;
}

.accent-border {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  max-width: 52ch;
}

.food-rule {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}

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

.service-takeaway {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.stacked-panels {
  display: grid;
  gap: 1.25rem;
}

.panel-pos {
  background: rgba(31, 122, 61, 0.1);
  border: 1px solid rgba(31, 122, 61, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.panel-neg {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.if-rows {
  display: grid;
  gap: 1rem;
}

.if-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.access-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--surface);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
}

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

.practical-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.practical-panel ol {
  margin: 0;
  line-height: 2;
}

.after-dark {
  background: rgba(12, 26, 17, 0.06);
  padding: 4rem 0;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.after-dark .narrow-measure {
  text-align: left;
}

.guest-reviews-block {
  padding: var(--section-pad) 0 4rem;
}

.quote-carousel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.quote-carousel .mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.35;
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  gap: 1rem;
  min-height: 220px;
}

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

.carousel-slide .stars {
  margin-top: 1.5rem;
}

.carousel-slide blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.carousel-meta {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  gap: 1rem;
}

.carousel-dots {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

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

.carousel-btns {
  display: flex;
  gap: 0.5rem;
}

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

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

.guest-stack-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.guest-stack-item:last-child {
  border-bottom: none;
}

.guest-stack-head .guest-meta {
  margin-top: 0;
}

.guest-stack-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.guest-stack-item blockquote {
  margin: 0;
  font-size: 1.05rem;
}

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

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

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

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

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

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

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

.guest-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.guest-feature blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.45;
}

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

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

.guest-side-card blockquote {
  margin: 0;
  font-size: 0.98rem;
}

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

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

.guest-quote-card.is-highlight {
  border-color: rgba(31, 122, 61, 0.35);
  background: rgba(31, 122, 61, 0.06);
}

.guest-quote-card blockquote {
  margin: 0;
  font-size: 0.98rem;
}

.guest-more {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.reserve-cta {
  padding: 4rem 0 var(--section-pad);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.reserve-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.map-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

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

.address-line {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 26, 17, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.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: 0.85rem;
  font-size: 0.95rem;
}

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

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

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

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 1rem;
  pointer-events: none;
}

.consent-panel {
  pointer-events: auto;
  width: min(100%, 720px);
  margin: 0 auto;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.consent-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

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

.consent-options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.consent-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

  .featured-grid,
  .reserve-cta-inner,
  .guest-featured-grid,
  .people-split,
  .scale-row,
  .meters {
    grid-template-columns: 1fr;
  }

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

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

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

  .facts-aside-float {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem;
  }
}

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

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

  .nav-links {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    display: none;
  }

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

  .nav-links .nav-link {
    padding: 0.85rem 1rem;
  }

  .hotel-grid,
  .tips-grid,
  .authors-teaser-grid,
  .qa-grid,
  .form-grid,
  .facts-grid-2x2 {
    grid-template-columns: 1fr;
  }

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

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

  .footer-accordion {
    border-top: 1px solid var(--border);
  }

  .footer-accordion > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
    padding: 1rem 0;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

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

  .footer-accordion > summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .footer-accordion[open] > summary::after {
    transform: rotate(-135deg);
  }

  .footer-col-title {
    display: none;
  }

  .footer-links {
    padding-bottom: 1rem;
  }

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

  .sleep-icons {
    grid-template-columns: 1fr;
  }
}

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

  .hero-inner {
    padding: 7rem 0 4rem;
  }

  .reserve-wrap {
    padding: 1.5rem;
  }

  .quote-carousel {
    padding: 2.5rem 1.25rem 1.5rem;
  }

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

  .guest-photo-btn img {
    width: 110px;
    height: 110px;
  }
  .guest-quote-grid {
    grid-template-columns: 1fr;
  }
}

.facts-aside-float {
  float: right;
  width: 260px;
  margin: 0 0 1.5rem 1.5rem;
}

.article-with-aside::after {
  content: "";
  display: table;
  clear: both;
}
