: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: 10px;
  --shadow: 0 10px 30px rgba(12, 26, 17, 0.08);
  --font-heading: Rockwell, "Rockwell Nova", "Courier New", Georgia, serif;
  --font-body: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  --max: 1040px;
  --section-pad: 120px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(rgba(18, 39, 26, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  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: 500;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

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

h2 {
  font-size: clamp(26px, 3.8vw, 40px);
}

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

p {
  margin: 0 0 1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  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 {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

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

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

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

.brand img {
  width: 40px;
  height: 49px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  white-space: nowrap;
}

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

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

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border);
}

.hero-duo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 36em;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stack {
  position: relative;
  min-height: 420px;
}

.hero-stack .shot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid var(--border);
}

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

.hero-stack .shot--portrait {
  width: 58%;
  aspect-ratio: 3 / 4;
  position: relative;
  z-index: 2;
}

.hero-stack .shot--landscape {
  width: 68%;
  aspect-ratio: 16 / 10;
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 1;
}

.hotels-intro {
  text-align: center;
  max-width: 40em;
  margin: 0 auto 48px;
}

.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);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

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

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

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

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

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

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

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

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  color: #7dca96;
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.featured-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

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

.featured-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  margin: 0 0 20px;
}

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

.marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee-x 48s linear infinite;
}

.marquee__item {
  flex: 0 0 auto;
  max-width: 340px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 15px;
}

.marquee__item strong {
  display: block;
  color: var(--text);
  margin-top: 10px;
  font-size: 13px;
}

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

.site-footer {
  margin-top: 0;
}

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

.footer-cta h2 {
  color: var(--on-accent);
  margin-bottom: 18px;
}

.footer-main {
  background: #13261a;
  color: rgba(255, 255, 255, 0.86);
  padding: 64px 0 40px;
}

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

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

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  max-width: 34em;
}

.footer-col h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

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

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

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  background: #0c1a11;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-requisites {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.page-hero {
  padding: 56px 0 24px;
}

.page-hero p.lead {
  color: var(--text-muted);
  max-width: 40em;
}

.legal-body {
  padding: 24px 0 100px;
}

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

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 1.5em;
  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);
}

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

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

.monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}

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

.author-articles {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.author-articles li {
  margin-bottom: 6px;
}

.reserve-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 100px;
}

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

.hotel-indicator {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 15px;
}

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

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

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

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

.form-field input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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: 12px;
  align-items: flex-start;
  margin: 18px 0 10px;
}

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

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

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

.form-error {
  color: #8b1e1e;
  font-size: 14px;
  margin: 0 0 10px;
  display: none;
}

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

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

.processing-panel {
  display: none;
}

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

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

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.review-meta .dot {
  opacity: 0.4;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 28px;
}

.byline .meta {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

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

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

.article-body {
  max-width: 42em;
}

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

.article-figure {
  margin: 28px 0;
  max-width: 100%;
}

.article-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-figure figcaption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

.mid-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  margin: 48px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mid-cta p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
}

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

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
}

.section-num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 64px);
  color: rgba(18, 39, 26, 0.16);
  line-height: 1;
  font-weight: 500;
}

.section-head h2 {
  margin: 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.reason-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.reason-card .num {
  font-family: var(--font-heading);
  font-size: 32px;
  color: rgba(18, 39, 26, 0.22);
  display: block;
  margin-bottom: 8px;
}

.takeaway-block .takeaway {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 10px;
}

.takeaway-block p {
  color: var(--text-muted);
  margin: 0;
}

.rating-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.rating-band__score {
  text-align: center;
  min-width: 120px;
}

.rating-band__score .big {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  display: block;
}

.tinted-band {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.tinted-band .kicker {
  margin-bottom: 8px;
}

.offset-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-left: 8%;
  max-width: 36em;
  box-shadow: var(--shadow);
}

.food-split,
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.order-again {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.4;
}

.facts-strip {
  font-size: 14px;
  color: var(--text-muted);
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 28px;
  line-height: 1.7;
}

.facts-strip strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.article-facts-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px 32px;
  align-items: start;
  margin-bottom: 8px;
}

.article-facts-wrap .article-body {
  max-width: none;
  grid-column: 1;
  grid-row: 1;
}

.facts-aside {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  box-shadow: var(--shadow);
}

.facts-aside strong {
  color: var(--text);
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.facts-chips .chip {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.facts-chips .chip b {
  color: var(--text);
  font-weight: 600;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 36px;
  font-size: 15px;
}

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

.facts-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.guest-reviews {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.guest-reviews h2 {
  margin-bottom: 28px;
}

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

.guest-card.is-featured,
.guest-card.is-highlight {
  background: #f4f8f3;
  border-color: rgba(31, 122, 61, 0.28);
}

.guest-card blockquote {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  flex: none;
  flex-grow: 0;
  height: auto;
}

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

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

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

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

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

.reviews-feature-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

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

.reviews-stack .guest-card {
  height: auto;
}

.reviews-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

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

.reviews-stacked .guest-card:last-child {
  border-bottom: none;
}

.reviews-stacked .guest-meta {
  text-align: right;
}

.carousel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 48px 32px;
  min-height: 280px;
}

.carousel__mark {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: rgba(31, 122, 61, 0.25);
  position: absolute;
  top: 12px;
  left: 24px;
}

.carousel__slide {
  display: none;
}

.carousel__slide.is-active {
  display: block;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(18, 39, 26, 0.2);
  cursor: pointer;
  padding: 0;
}

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

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

.reserve-cta-block {
  padding: 72px 0 100px;
  border-top: 1px solid var(--border);
}

.reserve-cta-block .map-frame {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

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

.evening-band {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
}

.evening-band .inner {
  max-width: 34em;
  margin: 0 auto;
}

.evening-band svg {
  margin-bottom: 12px;
}

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

.scale-track {
  height: 10px;
  background: rgba(18, 39, 26, 0.12);
  border-radius: 999px;
  position: relative;
}

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

.scale-marker {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.people-quote-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.pull-quote {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 18px 20px;
  font-size: 15px;
  box-shadow: var(--shadow);
}

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

.room-caps h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 1.4em 0 0.4em;
  font-family: var(--font-body);
  font-weight: 600;
}

.icon-split {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
}

.icon-panel {
  text-align: center;
}

.icon-panel svg {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
}

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

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

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

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pros-cons > div {
  padding: 8px 28px;
}

.pros-cons > div:first-child {
  border-right: 1px solid var(--border);
  padding-left: 0;
}

.pros-cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-cons li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

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

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

.neighbour-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.address-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.dropcap::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 3.4em;
  line-height: 0.85;
  padding-right: 10px;
  color: var(--accent);
}

.narrow-measure {
  max-width: 34em;
  margin-inline: auto;
}

.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: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.highlight-card .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.highlight-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

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

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

.qa-item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

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

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

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

.class-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
}

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

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

.season-cell strong {
  display: block;
  margin: 8px 0 4px;
  font-family: var(--font-heading);
}

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

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

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

.why-card strong {
  display: block;
  margin-bottom: 6px;
}

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

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

.acc summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.acc summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.acc details[open] summary::after {
  transform: rotate(225deg);
}

.acc details p {
  color: var(--text-muted);
  margin: 10px 0 4px;
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 26, 17, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  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: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

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

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

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

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

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

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 5100;
  background: rgba(12, 26, 17, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.consent-modal__panel {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: min(100%, 560px);
  padding: 24px;
  max-height: 90vh;
  overflow: auto;
}

.consent-cats {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.consent-cat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

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

.consent-cat strong {
  display: block;
  font-size: 14px;
}

.consent-cat span {
  font-size: 13px;
  color: var(--text-muted);
}

.review-layout {
  padding-bottom: 40px;
}

.bold-takeaway {
  font-weight: 700;
  color: var(--text);
  margin-top: 0.8em;
}

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

  .reasons-grid,
  .why-cards,
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

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

  .stat-cell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 24px;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
  }

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

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

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

  .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
  }

  .hero-duo,
  .featured-split,
  .faq-grid,
  .footer-grid,
  .food-split,
  .two-col,
  .reviews-feature-split,
  .people-quote-split,
  .neighbour-split,
  .icon-split,
  .pros-cons,
  .qa-grid,
  .scale-row,
  .rating-band,
  .article-facts-wrap {
    grid-template-columns: 1fr;
  }

  .article-facts-wrap .facts-aside {
    position: static;
    grid-column: 1;
    grid-row: 1;
  }

  .article-facts-wrap .article-body {
    grid-column: 1;
    grid-row: 2;
  }

  .pros-cons > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 18px;
  }

  .pros-cons > div {
    padding: 18px 0 0;
  }

  .hero-stack {
    min-height: 340px;
    max-width: 420px;
  }

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

  .section-head {
    flex-direction: column;
    gap: 4px;
  }

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

@media (max-width: 768px) {
  .hotel-grid,
  .reasons-grid,
  .why-cards,
  .highlight-grid,
  .season-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .carousel {
    padding: 36px 20px 24px;
  }
}

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

  .reviews-3col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .brand-name {
    font-size: 15px;
    max-width: 11em;
  }

  .mid-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat-cell:last-child {
    border-bottom: none;
  }
}
