:root {
  --bg: #f9f1ea;
  --surface: #ffffff;
  --surface-alt: #f9f1ea;
  --text: #2c1710;
  --text-muted: #6f5446;
  --border: rgba(15, 17, 26, 0.10);
  --accent: #e2673a;
  --accent-2: #b64c26;
  --secondary: #1f0f08;
  --on-accent: #ffffff;
  --dark: #1f0f08;
  --radius: 4px;
  --btn-radius: 2px;
  --font-heading: 'Hoefler Text', 'Goudy Old Style', Garamond, serif;
  --font-body: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  --shadow: 0 10px 30px rgba(31, 15, 8, 0.08);
  --max-width: 1060px;
  --section-pad: 124px;
  --hero-lh: 1.08;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.82;
  color: var(--text);
  background: var(--bg);
}

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;
  line-height: var(--hero-lh);
}

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

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

p {
  margin: 0 0 1.2em;
}

ul, ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}

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

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: none;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

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

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

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

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

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

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

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.consent-bar {
  position: relative;
  z-index: 1101;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  display: none;
}

.consent-bar.is-visible ~ .site-header {
  top: 0;
}

body:has(.consent-bar.is-visible) .site-header {
  top: 52px;
}

body:has(.consent-bar.is-visible) .site-header {
  top: 52px;
}

body:has(.consent-bar.is-visible) .hero {
  padding-top: calc(52px + 72px + 80px);
}

body:has(.consent-bar.is-visible) .page-hero,
body:has(.consent-bar.is-visible) .review-header,
body:has(.consent-bar.is-visible) .reserve-page {
  padding-top: calc(52px + 72px + 48px);
}

body:has(.consent-bar.is-visible) .page-content {
  padding-top: calc(52px + 72px);
}

.consent-bar.is-visible {
  display: block;
}

.consent-inner {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  font-size: 14px;
  line-height: 1.5;
}

.consent-headline {
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.consent-copy {
  flex: 1 1 280px;
  margin: 0;
  color: var(--text);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.consent-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent-2);
  text-decoration: underline;
  cursor: pointer;
}

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

.consent-manage {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.consent-manage.is-open {
  max-height: 400px;
}

.consent-categories {
  width: min(100% - 32px, var(--max-width));
  margin: 12px auto 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

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

.consent-cat input:disabled {
  opacity: 0.6;
}

.consent-panel {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(31, 15, 8, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consent-panel.is-open {
  display: flex;
}

.consent-panel-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

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

.brand-lockup:hover {
  color: var(--accent-2);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.5px;
}

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

main {
  padding-top: 0;
}

.site-header:not(.is-solid) {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.page-hero,
.review-header,
.reserve-page {
  padding-top: calc(72px + 48px);
}

.page-content {
  padding-top: 72px;
}

.page-hero + .page-content {
  padding-top: 0;
}

.hero {
  padding: calc(72px + 80px) 0 0;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--bg) 100%);
}

.hero .container {
  padding-bottom: 48px;
}

.hero h1 {
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-image-band {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-band img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
}

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

.section-dotted {
  background: var(--bg);
  background-image: radial-gradient(circle, rgba(111, 84, 70, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

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

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

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.hotel-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.hotel-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.hotel-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 6px;
}

.hotel-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hotel-card p {
  font-size: 15px;
  flex: 1;
}

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

.featured-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--text);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(226, 103, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-2);
}

.trust-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

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

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

.author-teaser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.author-teaser:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  color: var(--text);
}

.monogram {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 auto 16px;
}

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

.author-teaser .role {
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 10px;
}

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

.faq-list {
  margin-top: 40px;
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  padding: 20px 36px 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 20px;
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 16px;
}

.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--accent-2);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
}

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

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

.dest-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--on-accent);
}

.dest-visual.calgary { background: linear-gradient(135deg, #c45c26, #8b3a1a); }
.dest-visual.niagara { background: linear-gradient(135deg, #2a6b8a, #1a4055); }
.dest-visual.edmonton { background: linear-gradient(135deg, #4a6741, #2d3f28); }
.dest-visual.gatineau { background: linear-gradient(135deg, #6b4c7a, #3d2a47); }
.dest-visual.quebec { background: linear-gradient(135deg, #8b4513, #5c2e0a); }
.dest-visual.banff { background: linear-gradient(135deg, #3d6b5c, #1f3d32); }

.dest-card-body {
  padding: 20px;
}

.dest-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 64px 0 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-main {
  display: flex;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  flex: 0 0 320px;
}

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

.footer-brand .brand-lockup:hover {
  color: var(--accent);
}

.footer-blurb {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-email {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 15px;
}

.footer-columns {
  flex: 1;
  display: flex;
  gap: 48px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0 32px;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.footer-consent {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-consent button,
.footer-consent a {
  background: none;
  border: none;
  font: inherit;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.footer-requisites {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero {
  padding: 48px 0 64px;
  background: var(--surface-alt);
}

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

.page-content:not(.authors-page) {
  padding: 64px 0 var(--section-pad);
}

.authors-page {
  padding-bottom: var(--section-pad);
}

.page-content .legal-body h2 {
  margin-top: 2em;
  margin-bottom: 0.8em;
}

.page-content .legal-body h3 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  font-size: 20px;
}

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

.page-content .legal-body th,
.page-content .legal-body td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
}

.page-content .legal-body th {
  background: var(--surface-alt);
}

.review-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.review-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.review-meta-row h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  color: var(--text);
}

.meta-dot::before {
  content: '·';
  margin-right: 16px;
  color: var(--border);
}

.review-rating-line {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

.review-byline {
  text-align: center;
  padding: 40px 0;
}

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

.review-byline a {
  font-family: var(--font-heading);
  font-size: 20px;
  text-decoration: none;
  color: var(--text);
}

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

.byline-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

.review-article {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.review-article h2 {
  font-size: 24px;
  margin: 2em 0 0.8em;
}

.review-article figure {
  margin: 2em 0;
}

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

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

.facts-chips {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--border);
}

.facts-chips .kicker {
  margin-bottom: 12px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  font-size: 13px;
  padding: 8px 14px;
  background: rgba(226, 103, 58, 0.1);
  border-radius: var(--radius);
  color: var(--text);
}

.facts-aside {
  float: right;
  width: 260px;
  margin: 0 0 24px 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  position: sticky;
  top: 96px;
}

.facts-aside .kicker {
  margin-bottom: 12px;
}

.facts-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

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

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

.mid-cta h2 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--on-accent);
}

.review-section {
  padding: 64px 0;
}

.review-section:nth-child(odd) {
  background: var(--bg);
}

.review-section:nth-child(even) {
  background: var(--surface-alt);
}

.takeaway {
  font-weight: 600;
  color: var(--text);
}

.access-panel {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.access-panel svg {
  flex-shrink: 0;
  color: var(--accent);
}

.access-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

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

.verdict-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.verdict-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.verdict-badge.plus {
  background: rgba(76, 130, 89, 0.15);
  color: #3d6b4a;
}

.verdict-badge.minus {
  background: rgba(182, 76, 38, 0.12);
  color: var(--accent-2);
}

.good-bits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

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

.good-bit-card h3 {
  font-size: 16px;
  margin: 12px 0 8px;
}

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

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.audience-tag {
  flex: 1 1 160px;
  max-width: 200px;
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.audience-tag svg {
  color: var(--accent);
  margin-bottom: 12px;
}

.audience-tag h3 {
  font-size: 15px;
  margin: 0 0 8px;
}

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

.food-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.evening-band {
  background: rgba(31, 15, 8, 0.04);
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--radius);
}

.evening-band svg {
  color: var(--accent-2);
  margin-bottom: 16px;
}

.evening-band p {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.5;
}

.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
}

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

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

.guest-quotes-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.featured-quote {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.featured-quote blockquote {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.45;
  margin: 16px 0;
}

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

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

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

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

.guest-photo-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.guest-photo-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.guest-photo-wide .guest-photo-btn img {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 280px;
}

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

.quote-rows .quote-row {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-rows .quote-row:first-child {
  padding-top: 0;
}

.quote-rows .quote-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-rows blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

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

.carousel-quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
}

.carousel-track {
  position: relative;
  min-height: 200px;
}

.carousel-slide {
  display: none;
  padding: 0 48px;
  flex-direction: column;
  gap: 12px;
}

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

.carousel-slide .guest-photo-strip {
  justify-content: center;
}

.carousel-slide .quote-meta {
  margin-top: auto;
}

.carousel-slide blockquote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  margin: 0;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

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

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

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

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

.reservation-cta {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.reservation-cta h2 {
  margin-bottom: 16px;
}

.reservation-address {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.reservation-map {
  margin: 24px 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

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

.note-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

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

.numbered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.numbered-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.numbered-item .num {
  font-family: var(--font-heading);
  font-size: 48px;
  color: rgba(111, 84, 70, 0.25);
  line-height: 1;
}

.numbered-item p {
  margin: 8px 0 0;
  font-size: 15px;
}

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

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

.aside-caution ul {
  margin: 0;
  font-size: 15px;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

.practical-panel ol {
  margin: 0;
  padding-left: 1.4em;
}

.practical-panel li {
  margin-bottom: 16px;
  line-height: 1.7;
}

.reserve-page {
  padding: 64px 0 var(--section-pad);
}

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

.hotel-indicator {
  background: var(--surface-alt);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  font-size: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  background: var(--surface);
  color: var(--text);
}

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

.form-group input[aria-invalid="true"] {
  border-color: #c0392b;
}

.checkbox-group {
  margin: 24px 0;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

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

.form-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

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

.form-microcopy {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

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

.confirm-summary dt {
  font-weight: 600;
  margin-top: 12px;
}

.confirm-summary dt:first-child {
  margin-top: 0;
}

.confirm-summary dd {
  margin: 4px 0 0;
  color: var(--text-muted);
}

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

.authors-page .author-card .monogram {
  width: 72px;
  height: 72px;
  font-size: 24px;
}

.authors-page .author-card h2 {
  font-size: 28px;
  margin: 0 0 4px;
}

.authors-page .author-role {
  color: var(--accent-2);
  font-size: 14px;
  margin-bottom: 16px;
}

.authors-page .author-articles {
  margin-top: 20px;
}

.authors-page .author-articles h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.authors-page .author-articles ul {
  list-style: none;
  padding: 0;
}

.authors-page .author-articles a {
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(31, 15, 8, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

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

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

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 16px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.hidden {
  display: none !important;
}

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

  .hotels-grid,
  .featured-split,
  .split-two,
  .guest-quotes-split {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .facts-aside {
    float: none;
    width: 100%;
    margin: 0 0 32px;
    position: static;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-brand {
    flex: none;
  }

  .footer-columns {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .trust-grid,
  .dest-grid,
  .good-bits-grid,
  .stats-grid,
  .numbered-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .authors-row {
    grid-template-columns: 1fr;
  }

  .authors-page .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .authors-page .author-card .monogram {
    margin: 0 auto;
  }
}

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

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

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

  .hero-image-band {
    width: min(100% - 24px, var(--max-width));
  }

  .reserve-form-wrap,
  .reserve-confirm-wrap {
    padding: 24px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }

  .carousel-slide {
    padding: 0 16px;
  }
}
