:root {
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --bg-main: #0e2e21;
  --bg-alt: #062113;
  --bg-mid: #233229;
  --bg-card: rgba(247, 240, 226, 0.95);
  --surface: #f7efdf;
  --text: #1a241f;
  --text-muted: #3c4d44;
  --wood: #9d7c2d;
  --wood-deep: #bb9640;
  --pine: #cfa952;
  --gold: #bb9640;
  --gold-shadow: #9d7c2d;
  --gold-highlight: #cfa952;
  --line: rgba(187, 150, 64, 0.45);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;

  --shadow-soft: 0 8px 18px rgba(1, 10, 6, 0.24);
  --shadow-md: 0 18px 38px rgba(2, 10, 7, 0.33);
  --shadow-lg: 0 30px 60px rgba(2, 10, 7, 0.42);

  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 260ms;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  font: 500 16px/1.65 var(--font-body);
  background:
    radial-gradient(1000px 620px at 50% -4%, rgba(35, 50, 41, 0.82) 0%, rgba(35, 50, 41, 0) 72%),
    radial-gradient(920px 560px at 0% 0%, rgba(6, 33, 19, 0.74) 0%, transparent 76%),
    radial-gradient(920px 560px at 100% 0%, rgba(6, 33, 19, 0.74) 0%, transparent 76%),
    linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(420px 220px at 14% 11%, rgba(207, 169, 82, 0.14) 0%, rgba(207, 169, 82, 0) 78%),
    radial-gradient(380px 180px at 82% 18%, rgba(35, 50, 41, 0.26) 0%, rgba(35, 50, 41, 0) 74%);
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.15rem, 5.6vw, 3.9rem);
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

code {
  background: #f3e5d2;
  border: 1px solid #dec3a6;
  border-radius: 6px;
  padding: 0.08rem 0.35rem;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.9em;
}

.wood-glow {
  position: fixed;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.wood-glow-left {
  left: -80px;
  background: rgba(187, 150, 64, 0.22);
}

.wood-glow-right {
  right: -110px;
  background: rgba(35, 50, 41, 0.35);
}

.wrap {
  width: min(1380px, 92vw);
  margin: 0 auto;
}

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

.section {
  padding: 3.4rem 0;
}

.section-lg {
  padding: 4.2rem 0 3.2rem;
}

.section-tight {
  padding-top: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(8, 31, 20, 0.96), rgba(8, 31, 20, 0.9));
  border-bottom: 1px solid rgba(187, 150, 64, 0.35);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
}

.brand-logo {
  display: block;
  width: clamp(290px, 21vw, 400px);
  max-height: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
}

.nav a {
  color: var(--gold-highlight);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.014em;
  padding: 0.56rem 0.82rem;
  border-radius: 999px;
  transition: background-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}

.nav a:hover {
  background: rgba(187, 150, 64, 0.16);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(207, 169, 82, 0.38);
}

.nav a[aria-current="page"] {
  background: rgba(187, 150, 64, 0.22);
  box-shadow: inset 0 0 0 1px rgba(207, 169, 82, 0.45);
}

.book-link {
  color: #0d251a !important;
  background: linear-gradient(120deg, var(--gold-highlight) 0%, var(--gold) 55%, var(--gold-shadow) 100%);
  box-shadow: var(--shadow-soft);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 169, 82, 0.65), transparent);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  border: 1px solid rgba(187, 150, 64, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  background:
    linear-gradient(170deg, rgba(249, 243, 230, 0.96), rgba(238, 229, 208, 0.97));
  padding: clamp(1.7rem, 4.2vw, 2.8rem);
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 243, 208, 0.35);
  pointer-events: none;
}

.hero-media {
  min-height: 420px;
  background:
    linear-gradient(rgba(6, 33, 19, 0.26), rgba(6, 33, 19, 0.52)),
    linear-gradient(135deg, #193d2d 0%, #102c20 42%, #082116 100%);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-seal {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 76px;
  height: 76px;
  opacity: 0.86;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.34));
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 16, 12, 0.12), rgba(24, 16, 12, 0.42));
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--pine);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.74rem;
  font-weight: 700;
}

.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.lead-hero {
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-stats {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-stats li {
  border-radius: 14px;
  border: 1px solid rgba(157, 124, 45, 0.38);
  background: linear-gradient(145deg, rgba(247, 236, 210, 0.95), rgba(231, 210, 163, 0.84));
  padding: 0.45rem 0.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #364539;
}

.hero-stats strong {
  display: block;
  font-size: 0.95rem;
  color: #122a20;
}

.pill {
  border: 1px solid rgba(164, 126, 56, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  color: #3f3523;
  font-size: 0.78rem;
  font-weight: 600;
  background: linear-gradient(140deg, rgba(247, 236, 210, 0.9), rgba(227, 204, 154, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 248, 229, 0.5);
}

.trust-strip {
  border-color: rgba(187, 150, 64, 0.5);
  background:
    linear-gradient(120deg, rgba(10, 40, 27, 0.96), rgba(16, 58, 40, 0.95));
  color: #e9d7ad;
  position: relative;
  overflow: hidden;
}

.trust-strip::after {
  content: "";
  position: absolute;
  inset: -20% auto auto -15%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, rgba(207, 169, 82, 0.16), rgba(207, 169, 82, 0));
  pointer-events: none;
}

.trust-strip h2 {
  margin-bottom: 0.8rem;
  color: var(--gold-highlight);
}

.trust-strip li {
  color: #e1cf9f;
}

.trust-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.1rem;
}

.section-heading h2 {
  color: #eadcb9;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.section > .wrap > h1,
.wrap.narrow > h1 {
  color: #eadcb9;
}

.section > .wrap > .lead,
.wrap.narrow > .lead {
  color: #d8c79f;
  max-width: 72ch;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-feature-band {
  padding-top: 1.8rem;
}

.home-band-heading {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.home-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(207, 169, 82, 0.34);
  background:
    linear-gradient(150deg, rgba(13, 49, 34, 0.92), rgba(10, 37, 26, 0.94));
  box-shadow: var(--shadow-md);
  color: #e7d8b4;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(207, 169, 82, 0.55);
  box-shadow: var(--shadow-lg);
}

.highlight-title {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #f3ddab;
}

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

.layout-wide-left {
  grid-template-columns: 1.15fr 0.85fr;
}

.layout-wide-right {
  grid-template-columns: 0.88fr 1.12fr;
}

.home-plan {
  padding-top: 2rem;
}

.home-plan-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 1.1rem;
}

.home-booking {
  padding-top: 2rem;
}

.home-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.home-panel-dark {
  background: linear-gradient(150deg, rgba(12, 48, 33, 0.95), rgba(9, 35, 24, 0.96));
  color: #e9d8b1;
  border-color: rgba(207, 169, 82, 0.42);
}

.home-panel-dark .eyebrow,
.home-panel-dark h3 {
  color: #f2deab;
}

.home-panel-dark .feature-list {
  color: #ddcba1;
}

.home-panel-light {
  background: linear-gradient(165deg, rgba(248, 241, 227, 0.98), rgba(236, 224, 199, 0.96));
}

.home-panel-spotlight {
  background:
    radial-gradient(180% 130% at 98% 0%, rgba(207, 169, 82, 0.28), rgba(207, 169, 82, 0) 56%),
    linear-gradient(165deg, rgba(248, 241, 227, 0.98), rgba(236, 224, 199, 0.96));
  border-color: rgba(187, 150, 64, 0.55);
}

.feature-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
}

.section-mini-title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.step-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  counter-reset: booking-step;
}

.step-list li::marker {
  color: #a78333;
  font-weight: 700;
}

.micro-note {
  margin: 0.35rem 0 0.9rem;
  color: #5a4d30;
  font-size: 0.94rem;
}

.feature-list li::marker,
.trust-list li::marker {
  color: #a78333;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.split-panel {
  align-items: start;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(187, 150, 64, 0.26);
  background:
    linear-gradient(160deg, rgba(247, 240, 226, 0.97), rgba(236, 225, 203, 0.96));
  box-shadow: var(--shadow-md);
  padding: clamp(1.05rem, 2.6vw, 1.8rem);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 244, 214, 0.46);
  pointer-events: none;
}

.card-cream {
  background: linear-gradient(165deg, rgba(248, 241, 227, 0.97), rgba(238, 227, 204, 0.95));
}

.card-glass {
  background:
    linear-gradient(145deg, rgba(15, 58, 40, 0.92), rgba(10, 37, 26, 0.95));
  color: #e8d6b0;
  border-color: rgba(207, 169, 82, 0.45);
}

.card-glass h3,
.card-glass .eyebrow {
  color: #f2ddac;
}

.card-glass .feature-list {
  color: #d8c69f;
}

.card-spotlight {
  background:
    radial-gradient(180% 120% at 100% 0%, rgba(207, 169, 82, 0.22), rgba(207, 169, 82, 0) 55%),
    linear-gradient(165deg, rgba(248, 241, 227, 0.98), rgba(236, 224, 199, 0.96));
  border-color: rgba(187, 150, 64, 0.5);
}

.section-confidence {
  padding-top: 2.2rem;
}

.section-why {
  padding-top: 1.8rem;
}

.section-showcase,
.section-showcase-alt,
.section-final {
  padding-top: 2.1rem;
}

.feedback-card,
.booking-card {
  max-width: 760px;
}

.book-widgets {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 1.1rem;
}

.widget-card {
  background: rgba(255, 251, 245, 0.9);
}

.widget-title {
  margin: 0 0 0.9rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.ownerrez-widget {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid rgba(126, 94, 29, 0.5);
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-highlight) 0%, var(--gold) 56%, var(--gold-shadow) 100%);
  color: #14261d;
  text-decoration: none;
  font: 700 0.95rem/1 "Manrope", sans-serif;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-med) var(--ease-standard), box-shadow var(--dur-med) var(--ease-standard), filter var(--dur-med) var(--ease-standard);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.03);
}

.btn-secondary {
  background: rgba(245, 236, 215, 0.94);
  border-color: rgba(126, 94, 29, 0.46);
  color: #284536;
}

.text-link {
  display: inline-block;
  margin-top: 0.55rem;
  color: #8e6d22;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  min-height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(187, 150, 64, 0.35);
  background: #e8d5bd;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px rgba(2, 12, 8, 0.55);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
}

.gallery-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
}

.gallery-caption {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #f6ecd4;
  background: linear-gradient(180deg, rgba(5, 22, 14, 0.2), rgba(5, 22, 14, 0.72));
  border: 1px solid rgba(207, 169, 82, 0.35);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
  pointer-events: none;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 14, 10, 0.86);
  padding: 1.2rem;
}

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

.lightbox-image {
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.lightbox-meta {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  min-width: min(640px, 86vw);
  background: linear-gradient(180deg, rgba(8, 27, 18, 0.84), rgba(7, 22, 15, 0.9));
  border: 1px solid rgba(207, 169, 82, 0.4);
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  text-align: center;
}

.lightbox-caption {
  margin: 0;
  color: #f3dfb0;
  font-weight: 700;
}

.lightbox-index {
  margin: 0.1rem 0 0;
  color: #d4bf8e;
  font-size: 0.84rem;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(28, 22, 18, 0.7);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(28, 22, 18, 0.72);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.gallery-placeholder {
  background:
    linear-gradient(140deg, rgba(255, 250, 244, 0.82), rgba(235, 215, 193, 0.74)),
    linear-gradient(120deg, #f1e2cf 0%, #e6d0b6 100%);
  display: grid;
  place-items: center;
  color: #674931;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid rgba(157, 124, 45, 0.28);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.65rem 0.8rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #2c4a3c;
}

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

.seal-badge {
  width: 102px;
  height: 102px;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.22));
}

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

.attractions {
  margin: 0;
  padding-left: 1rem;
}

.attractions li {
  margin-bottom: 0.65rem;
}

.narrow {
  max-width: 840px;
}

.form {
  display: grid;
  gap: 0.6rem;
}

.form-helper {
  margin: 0 0 0.25rem;
  color: #5a4d30;
  font-size: 0.95rem;
}

label {
  font-weight: 700;
  color: #50311f;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #c9ad90;
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: #fffdf8;
  color: var(--text);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

input:focus,
textarea:focus {
  outline: 0;
  border-color: #946749;
  box-shadow: 0 0 0 3px rgba(148, 103, 73, 0.16);
}

.form-status {
  margin-top: 0.25rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #1f5b3a;
}

.form-status.is-error {
  color: #8f2d2d;
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
}

.footer-wrap {
  border-top: 1px solid rgba(187, 150, 64, 0.3);
  color: #d9c899;
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-seal {
  width: 34px;
  height: 34px;
}

.reveal {
  animation: reveal-in 680ms cubic-bezier(0.21, 0.9, 0.32, 1) both;
}

/* Phase 2: premium homepage composition overrides */
.home-page .wrap {
  width: min(1560px, 94vw);
}

.home-page .site-header {
  background: linear-gradient(180deg, rgba(6, 27, 18, 0.97), rgba(7, 31, 20, 0.9));
}

.home-page .nav-wrap {
  min-height: 122px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.home-page .brand {
  min-width: 360px;
}

.home-page .brand-logo {
  width: clamp(300px, 20vw, 390px);
  max-height: 118px;
}

.home-page .nav {
  justify-self: end;
  gap: 0.45rem;
}

.home-page .nav a {
  font-size: 0.98rem;
  padding: 0.58rem 0.88rem;
}

.home-page .hero.section-lg {
  padding-top: 5rem;
}

.home-page .hero-shell {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.7rem;
}

.home-page .hero-copy {
  padding: clamp(2rem, 4vw, 3rem);
}

.home-page .hero-copy h1 {
  font-size: clamp(2.8rem, 4.4vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.home-page .lead-hero {
  font-size: clamp(1.05rem, 1.15vw, 1.28rem);
  color: #2f3f35;
  max-width: 56ch;
}

.home-page .hero-media {
  min-height: 520px;
}

.home-page .hero-actions {
  margin: 1.35rem 0 1.15rem;
}

.home-page .hero-stats li {
  padding: 0.56rem 0.52rem;
  font-size: 0.74rem;
}

.home-page .hero-stats strong {
  font-size: 1.04rem;
}

.home-page .home-feature-band {
  padding-top: 2.5rem;
}

.home-page .home-band-heading {
  margin-bottom: 1.5rem;
}

.home-page .home-band-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: #f4e1b2;
}

.home-page .home-band-grid {
  gap: 1.2rem;
}

.home-page .highlight-card {
  padding: 1.3rem 1.15rem;
}

.home-page .highlight-title {
  font-size: 1.16rem;
  margin-bottom: 0.55rem;
}

.home-page .home-plan,
.home-page .home-booking {
  padding-top: 2.4rem;
}

.home-page .home-feature-band,
.home-page .home-plan,
.home-page .home-booking,
.interior-page .section.section-tight {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.home-page .home-plan-grid,
.home-page .home-booking-grid {
  gap: 1.3rem;
}

.home-page .home-panel-dark h3,
.home-page .home-panel-light h3,
.home-page .home-panel-spotlight h3 {
  font-size: clamp(1.6rem, 2.1vw, 2.15rem);
  line-height: 1.1;
}

.home-page .feature-list {
  gap: 0.7rem;
  font-size: 1rem;
}

.home-page .faq-item {
  padding: 0.82rem 0.9rem;
}

.home-page .seal-badge {
  width: 118px;
  height: 118px;
}

/* Phase 1 shell: left rail + right stage */
.shell-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  min-height: 100vh;
}

.side-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 1.7rem 1.1rem;
  border-right: 1px solid rgba(187, 150, 64, 0.34);
  background:
    radial-gradient(180px 180px at 22% 8%, rgba(207, 169, 82, 0.16), rgba(207, 169, 82, 0)),
    linear-gradient(180deg, rgba(5, 24, 16, 0.97), rgba(4, 17, 12, 0.94));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.4rem;
}

.rail-nav {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.rail-nav a {
  color: #e2c982;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(207, 169, 82, 0.22);
  border-left: 3px solid rgba(207, 169, 82, 0.32);
  border-radius: 12px;
  padding: 0.78rem 0.82rem;
  background: rgba(6, 29, 19, 0.55);
  transition: background-color var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.rail-nav a:hover,
.rail-nav a[aria-current="page"] {
  background: rgba(187, 150, 64, 0.2);
  border-color: rgba(207, 169, 82, 0.5);
  transform: translateX(3px);
}

.rail-book-btn {
  width: 100%;
  justify-content: center;
}

.stage-content {
  padding: 0.6rem clamp(1.8rem, 3vw, 3.2rem) 2rem;
}

.shell-layout + .site-footer {
  margin-left: 360px;
}

/* Visual reset pass: strong premium brand lockup */
.brand-lockup {
  gap: 0.85rem;
}

.brand-seal {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e4c780;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.35vw, 1.55rem);
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.brand-logo {
  display: none;
}

.nav {
  gap: 0.5rem;
}

.nav a {
  font-size: 0.98rem;
}

.home-page .hero-shell {
  gap: 2.2rem;
  grid-template-columns: 0.96fr 1.04fr;
}

.home-page .hero-copy {
  padding: clamp(2.4rem, 4.4vw, 3.5rem);
}

.home-page .hero-copy h1 {
  font-size: clamp(3.2rem, 5.1vw, 5.6rem);
}

.home-page .hero-media {
  min-height: 620px;
}

.stage-content .wrap {
  width: min(1540px, 95vw);
}

.home-page .home-band-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.home-page .home-plan-grid {
  grid-template-columns: 1.22fr 0.78fr;
}

.home-page .home-booking-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.home-page .home-band-heading h2 {
  color: #f6e4be !important;
}

.home-page .highlight-card {
  padding: 1.35rem 1.2rem;
  border-top: 2px solid rgba(207, 169, 82, 0.5);
}

.home-page .home-panel-dark {
  background: linear-gradient(155deg, rgba(8, 42, 28, 0.95), rgba(6, 30, 20, 0.98));
  border-color: rgba(207, 169, 82, 0.52);
}

.home-page .home-panel-dark .feature-list,
.home-page .home-panel-dark p,
.home-page .home-panel-dark li {
  color: #e9dab8;
}

.home-page .home-panel-light,
.home-page .home-panel-spotlight {
  background: linear-gradient(165deg, rgba(250, 244, 231, 0.99), rgba(239, 229, 205, 0.97));
}

@media (max-width: 760px) {
  .brand-seal {
    width: 56px;
    height: 56px;
  }

  .brand-wordmark {
    font-size: 0.98rem;
  }
}

.interior-page .wrap {
  width: min(1420px, 94vw);
}

.interior-page .nav-wrap {
  min-height: 108px;
}

.interior-page .brand-logo {
  width: clamp(280px, 20vw, 360px);
  max-height: 102px;
}

.story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.page-hero {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(187, 150, 64, 0.34);
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(207, 169, 82, 0.2), rgba(207, 169, 82, 0) 55%),
    linear-gradient(165deg, rgba(249, 242, 228, 0.97), rgba(238, 227, 202, 0.95));
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-md);
}

.page-hero h1 {
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  line-height: 1.08;
}

.page-hero .lead {
  max-width: 62ch;
}

@keyframes reveal-in {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 940px) {
  .hero-layout,
  .hero-shell,
  .two-col,
  .highlight-grid,
  .split-even {
    grid-template-columns: 1fr;
  }

  .home-band-grid,
  .home-plan-grid,
  .home-booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-wide-left,
  .layout-wide-right {
    grid-template-columns: 1fr;
  }

  .book-widgets {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    min-height: 300px;
  }

  .brand-logo {
    width: clamp(220px, 58vw, 300px);
    max-height: 122px;
  }

  .home-page .nav-wrap {
    min-height: 100px;
    gap: 1rem;
  }

  .shell-layout {
    grid-template-columns: 1fr;
  }

  .side-rail {
    position: static;
    height: auto;
    grid-template-rows: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(187, 150, 64, 0.34);
    padding: 0.8rem 1rem;
    background: linear-gradient(180deg, rgba(6, 28, 18, 0.97), rgba(7, 30, 20, 0.92));
  }

  .brand-seal {
    width: 62px;
    height: 62px;
  }

  .brand-wordmark {
    font-size: 1.05rem;
  }

  .rail-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .rail-book-btn {
    width: max-content;
    justify-self: start;
  }

  .stage-content {
    padding: 0 1rem 1.4rem;
  }

  .shell-layout + .site-footer {
    margin-left: 0;
  }

  .home-page .brand {
    min-width: 0;
  }

  .home-page .brand-logo {
    width: clamp(220px, 54vw, 290px);
    max-height: 108px;
  }

  .interior-page .brand-logo {
    width: clamp(210px, 54vw, 280px);
    max-height: 98px;
  }

  .home-page .hero-shell,
  .home-page .home-band-grid,
  .home-page .home-plan-grid,
  .home-page .home-booking-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-media {
    min-height: 380px;
  }

  .home-page .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lightbox-meta {
    min-width: min(560px, 90vw);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }

  .gallery-item.tall {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem 0;
    min-height: 0;
  }

  .nav {
    gap: 0.2rem;
    justify-content: flex-start;
  }

  .nav a {
    font-size: 0.88rem;
    padding: 0.45rem 0.62rem;
  }

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

  .home-page .nav-wrap {
    display: flex;
  }

  .home-page .hero.section-lg {
    padding-top: 3rem;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

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

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }

  .lightbox-meta {
    bottom: 0.8rem;
    min-width: 92vw;
    padding: 0.5rem 0.65rem;
  }

  .interior-page .nav-wrap {
    display: flex;
  }

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

  .site-header {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .nav a,
  .btn,
  .gallery-item {
    animation: none !important;
    transition: none !important;
  }
}

/* 2026 cinematic rebuild */
:root {
  --bg-main: #051f18;
  --bg-alt: #021510;
  --bg-stage: #08271e;
  --sand-1: #f3e8d2;
  --sand-2: #e5d2ad;
  --sand-3: #c8ad7a;
  --ink-1: #16211d;
  --ink-2: #2f3a35;
  --rail-w: 296px;
}

body {
  color: #d9caa9;
  background:
    radial-gradient(1200px 900px at 77% 12%, rgba(17, 76, 58, 0.34), rgba(17, 76, 58, 0) 60%),
    radial-gradient(900px 520px at 18% 35%, rgba(8, 43, 33, 0.64), rgba(8, 43, 33, 0) 70%),
    linear-gradient(180deg, var(--bg-main) 0%, var(--bg-alt) 100%);
}

body::before {
  background:
    radial-gradient(440px 220px at 18% 10%, rgba(200, 173, 122, 0.12) 0%, rgba(200, 173, 122, 0) 78%),
    radial-gradient(600px 250px at 84% 12%, rgba(10, 52, 39, 0.44) 0%, rgba(10, 52, 39, 0) 76%);
}

.wood-glow {
  opacity: 0.45;
  filter: blur(84px);
}

.shell-layout {
  grid-template-columns: var(--rail-w) minmax(0, 1fr);
}

.side-rail {
  padding: 1.5rem 1rem 1.1rem;
  border-right: 1px solid rgba(200, 173, 122, 0.22);
  background:
    linear-gradient(180deg, rgba(3, 21, 15, 0.96), rgba(2, 14, 10, 0.92)),
    radial-gradient(220px 220px at 50% 0%, rgba(200, 173, 122, 0.09), rgba(200, 173, 122, 0));
  box-shadow: inset -1px 0 0 rgba(255, 245, 218, 0.08);
}

.brand-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0.25rem 0.9rem;
  border-bottom: 1px solid rgba(200, 173, 122, 0.2);
}

.brand-seal {
  width: 56px;
  height: 56px;
  opacity: 0.95;
}

.brand-wordmark {
  color: var(--sand-2);
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  line-height: 0.95;
}

.rail-nav {
  gap: 0.45rem;
  align-content: start;
}

.rail-nav a {
  border: 1px solid rgba(200, 173, 122, 0.16);
  border-left: 2px solid rgba(200, 173, 122, 0.25);
  border-radius: 10px;
  padding: 0.66rem 0.74rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #efe3c7;
  background: linear-gradient(120deg, rgba(7, 35, 27, 0.72), rgba(4, 22, 16, 0.9));
}

.rail-nav a:hover,
.rail-nav a[aria-current="page"] {
  transform: translateX(6px);
  border-color: rgba(200, 173, 122, 0.58);
  background: linear-gradient(120deg, rgba(25, 56, 44, 0.88), rgba(11, 36, 28, 0.9));
}

.rail-book-btn {
  margin-top: 0.35rem;
}

.stage-content {
  padding: 0.4rem clamp(1.2rem, 3vw, 2.6rem) 2.4rem;
}

.stage-content .wrap {
  width: min(1380px, 92vw);
  margin-left: 0;
}

.shell-layout + .site-footer {
  margin-left: var(--rail-w);
}

.site-footer {
  padding-top: 0.8rem;
}

.footer-wrap {
  color: #cfbe9b;
  border-top-color: rgba(200, 173, 122, 0.24);
}

.card,
.home-panel-light,
.home-panel-spotlight,
.page-hero,
.hero-copy {
  border: 1px solid rgba(200, 173, 122, 0.28);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  background: linear-gradient(160deg, rgba(246, 236, 216, 0.99), rgba(230, 212, 178, 0.96));
}

.home-panel-dark {
  border-color: rgba(200, 173, 122, 0.38);
  background:
    linear-gradient(160deg, rgba(6, 41, 31, 0.96), rgba(3, 24, 18, 0.96)),
    radial-gradient(80% 120% at 0% 100%, rgba(35, 90, 71, 0.35), rgba(35, 90, 71, 0));
}

.eyebrow {
  color: var(--sand-3);
  letter-spacing: 0.18em;
  font-size: 0.67rem;
}

h1,
h2,
h3 {
  color: var(--ink-1);
}

.lead,
.feature-list,
.step-list,
.micro-note,
.faq-item p {
  color: var(--ink-2);
}

.btn {
  border-color: rgba(112, 87, 43, 0.65);
  background: linear-gradient(125deg, #f0dcae 0%, #d4b16d 60%, #b0894a 100%);
  color: #102017;
  box-shadow: 0 10px 24px rgba(2, 14, 10, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-secondary {
  background: rgba(15, 45, 35, 0.18);
  color: #254137;
}

/* Home scenes */
.home-page .section {
  padding: 2.1rem 0;
}

.cinematic-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 1.25rem;
  align-items: stretch;
}

.cinematic-panel {
  border-radius: 24px;
  overflow: hidden;
}

.home-page .hero-copy {
  padding: clamp(1.6rem, 3.4vw, 2.8rem);
}

.home-page .hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 13ch;
}

.home-page .lead-hero {
  font-size: clamp(0.98rem, 1.15vw, 1.18rem);
  max-width: 52ch;
}

.hero-media {
  min-height: 620px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(5, 17, 14, 0.38), rgba(5, 17, 14, 0.7));
}

.hero-layer {
  position: absolute;
  border: 1px solid rgba(200, 173, 122, 0.35);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.28);
  background-size: cover;
  background-position: center;
}

.hero-layer-back {
  width: 38%;
  height: 40%;
  right: 8%;
  top: 8%;
  border-radius: 20px;
  background-image: linear-gradient(rgba(5, 17, 14, 0.15), rgba(5, 17, 14, 0.5)), url("/images/gallery/012.jpg");
  animation: drift-one 12s ease-in-out infinite;
}

.hero-layer-mid {
  width: 45%;
  height: 30%;
  left: 8%;
  bottom: 12%;
  border-radius: 16px;
  background-image: linear-gradient(rgba(5, 17, 14, 0.1), rgba(5, 17, 14, 0.55)), url("/images/gallery/045.jpg");
  animation: drift-two 14s ease-in-out infinite;
}

.hero-layer-front {
  width: 30%;
  height: 22%;
  right: 16%;
  bottom: 7%;
  border-radius: 14px;
  background-image: linear-gradient(rgba(5, 17, 14, 0.08), rgba(5, 17, 14, 0.48)), url("/images/gallery/029.jpg");
  animation: drift-three 10s ease-in-out infinite;
}

.hero-seal {
  width: 84px;
  height: 84px;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.hero-stats {
  margin-top: 1.35rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.48rem;
}

.hero-stats li {
  border-radius: 10px;
  border: 1px solid rgba(200, 173, 122, 0.34);
  background: linear-gradient(150deg, rgba(247, 238, 220, 0.96), rgba(223, 203, 163, 0.9));
  padding: 0.5rem 0.45rem;
  font-size: 0.66rem;
}

.hero-stats strong {
  font-size: 0.84rem;
}

.home-proof {
  padding-top: 0.4rem;
}

.proof-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-strip li {
  border-radius: 12px;
  padding: 0.85rem 0.78rem;
  border: 1px solid rgba(200, 173, 122, 0.3);
  background: linear-gradient(135deg, rgba(7, 39, 29, 0.92), rgba(5, 26, 19, 0.95));
  color: #dbcba9;
}

.proof-strip span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a58f63;
  margin-bottom: 0.35rem;
}

.proof-strip strong {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.2;
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
}

.story-main-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  color: #f1e0bb;
  max-width: 18ch;
}

.story-main-panel p,
.story-main-panel li {
  color: #dccaa5;
}

.story-side-panel h3 {
  font-size: clamp(1.48rem, 2.2vw, 2.3rem);
  max-width: 16ch;
}

.home-booking-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 1rem;
}

.booking-focus-panel .btn {
  margin-top: 0.6rem;
}

/* Pictures page */
.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 1rem;
  align-items: stretch;
}

.gallery-hero-copy {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.gallery-hero h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
}

.story-pills {
  margin-top: 1rem;
}

.pill {
  border-color: rgba(137, 107, 53, 0.35);
  background: linear-gradient(130deg, rgba(243, 226, 190, 0.92), rgba(220, 190, 131, 0.86));
}

.gallery-hero-frame {
  border-radius: 24px;
  border: 1px solid rgba(200, 173, 122, 0.34);
  overflow: hidden;
  min-height: 340px;
  background: #091a15;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.33);
}

.gallery-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-grid {
  gap: 0.7rem;
  grid-auto-rows: 210px;
}

.gallery-item {
  border-radius: 14px;
  border-color: rgba(200, 173, 122, 0.28);
}

.gallery-caption {
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  border: 1px solid rgba(200, 173, 122, 0.3);
  border-radius: 8px;
  font-size: 0.76rem;
}

.lightbox {
  background: rgba(3, 14, 10, 0.9);
}

.lightbox-meta {
  border-color: rgba(200, 173, 122, 0.42);
  background: linear-gradient(180deg, rgba(8, 31, 23, 0.9), rgba(5, 22, 16, 0.92));
}

.lightbox-caption {
  color: #f0dfb8;
}

.lightbox-index {
  color: #d2ba85;
}

/* Interior page consistency */
.interior-page .page-hero h1 {
  max-width: 18ch;
}

.two-col,
.conversion-grid,
.book-widgets {
  gap: 0.95rem;
}

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

  .side-rail {
    position: static;
    height: auto;
    grid-template-rows: auto;
    padding: 0.78rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 173, 122, 0.24);
  }

  .brand-lockup {
    border-bottom: 0;
    padding-bottom: 0.45rem;
  }

  .rail-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 0.3rem;
  }

  .rail-nav a {
    font-size: 0.74rem;
    padding: 0.52rem 0.62rem;
  }

  .rail-book-btn {
    width: max-content;
  }

  .shell-layout + .site-footer {
    margin-left: 0;
  }

  .stage-content {
    padding: 0 0.95rem 1.6rem;
  }

  .cinematic-hero,
  .home-story-grid,
  .home-booking-grid,
  .gallery-hero,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .hero-copy h1 {
    font-size: clamp(1.95rem, 11vw, 3rem);
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-layer {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip strong {
    font-size: 0.96rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

@keyframes drift-one {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-8px) translateX(4px);
  }
}

@keyframes drift-two {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(6px) translateX(-5px);
  }
}

@keyframes drift-three {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-4px) translateX(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-layer {
    animation: none;
  }
}

/* Premium reset v2: simplify, remove gimmicks, sharpen composition */
:root {
  --rail-w: 258px;
}

.hero-layer,
.hero-layer-back,
.hero-layer-mid,
.hero-layer-front {
  display: none !important;
}

body {
  background:
    radial-gradient(1200px 760px at 72% 10%, rgba(12, 63, 47, 0.28), rgba(12, 63, 47, 0) 62%),
    radial-gradient(840px 520px at 16% 38%, rgba(7, 37, 29, 0.58), rgba(7, 37, 29, 0) 72%),
    linear-gradient(180deg, #041d16 0%, #03130f 100%);
}

.side-rail {
  padding: 1.35rem 0.85rem 1rem;
  border-right: 1px solid rgba(196, 168, 112, 0.16);
  background: linear-gradient(180deg, rgba(3, 18, 14, 0.94), rgba(3, 14, 10, 0.9));
}

.brand-lockup {
  padding: 0.1rem 0.2rem 0.72rem;
}

.brand-seal {
  width: 50px;
  height: 50px;
}

.brand-wordmark {
  font-size: 1rem;
  letter-spacing: 0.07em;
}

.rail-nav a {
  border-left-width: 1px;
  border-radius: 9px;
  padding: 0.62rem 0.68rem;
  font-size: 0.78rem;
  background: rgba(8, 34, 26, 0.5);
}

.rail-nav a:hover,
.rail-nav a[aria-current="page"] {
  transform: translateX(4px);
  border-color: rgba(196, 168, 112, 0.46);
  background: rgba(18, 54, 42, 0.72);
}

.stage-content {
  padding: 0.35rem clamp(1.1rem, 3vw, 2.3rem) 2rem;
}

.stage-content .wrap {
  width: min(1320px, 92vw);
}

.home-page .section {
  padding: 1.7rem 0;
}

.cinematic-hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.95rem;
}

.home-page .hero-copy {
  border-color: rgba(196, 168, 112, 0.34);
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(196, 168, 112, 0.17), rgba(196, 168, 112, 0) 54%),
    linear-gradient(162deg, rgba(7, 33, 25, 0.95), rgba(5, 21, 16, 0.95));
}

.home-page .hero-copy h1,
.home-page .hero-copy .lead,
.home-page .hero-copy .lead-hero,
.home-page .hero-copy .eyebrow {
  color: #f1dfba;
}

.home-page .hero-copy .lead,
.home-page .hero-copy .lead-hero {
  color: #ddcaa2;
}

.home-page .hero-copy h1 {
  font-size: clamp(2.5rem, 5.1vw, 5.1rem);
  line-height: 1.01;
}

.hero-media {
  min-height: 600px;
  border-color: rgba(196, 168, 112, 0.3);
}

.hero-media::before {
  background: linear-gradient(140deg, rgba(3, 12, 10, 0.2), rgba(3, 12, 10, 0.5));
}

.hero-stats li {
  border-color: rgba(196, 168, 112, 0.38);
  background: linear-gradient(150deg, rgba(13, 44, 33, 0.94), rgba(8, 31, 23, 0.94));
  color: #d7c49d;
}

.hero-stats strong {
  color: #f0dfba;
}

.proof-strip li {
  border-color: rgba(196, 168, 112, 0.24);
  background: rgba(6, 31, 23, 0.66);
}

.card,
.home-panel-light,
.home-panel-spotlight,
.page-hero {
  background: linear-gradient(162deg, rgba(244, 233, 211, 0.97), rgba(230, 213, 178, 0.94));
}

.btn {
  border-color: rgba(121, 92, 41, 0.6);
  background: linear-gradient(120deg, #edd8a9 0%, #d0ab67 58%, #a98244 100%);
}

.gallery-hero-frame {
  border-radius: 20px;
}

@media (max-width: 1120px) {
  .hero-media {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .hero-media {
    min-height: 340px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
}

/* Consistency + contrast hotfix */
.hero-stats {
  display: none !important;
}

body {
  background: #031610;
}

body::before {
  background: none;
}

.side-rail {
  padding: 1.2rem 0.9rem 1rem;
  background: #041d17;
}

.brand-lockup {
  gap: 0.9rem;
  padding: 0.15rem 0.15rem 0.9rem;
}

.brand-seal {
  width: 78px;
  height: 78px;
}

.brand-wordmark {
  font-size: 1.48rem;
  line-height: 0.92;
  letter-spacing: 0.065em;
}

.rail-nav {
  gap: 0.55rem;
}

.rail-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 0.7rem 0.88rem;
  font-size: 0.86rem;
  line-height: 1.2;
  color: #efe1c0;
  background: rgba(8, 30, 24, 0.68);
  border: 1px solid rgba(196, 168, 112, 0.27);
}

.rail-nav a:hover,
.rail-nav a[aria-current="page"] {
  background: rgba(20, 55, 43, 0.82);
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.home-panel-light h1,
.home-panel-light h2,
.home-panel-light h3,
.home-panel-spotlight h1,
.home-panel-spotlight h2,
.home-panel-spotlight h3 {
  color: #18231f !important;
}

.page-hero p,
.page-hero .lead,
.home-panel-light p,
.home-panel-light li,
.home-panel-spotlight p,
.home-panel-spotlight li,
.card p,
.card li {
  color: #33413b;
}

.home-page .hero-actions {
  margin-bottom: 1.1rem;
}

.home-page .hero-copy {
  background: #05251d;
}

.home-panel-dark {
  background: #06271e;
}

.card,
.home-panel-light,
.home-panel-spotlight,
.page-hero {
  background: #efe2c7;
}

.btn {
  background: #d6b16f;
}

.proof-strip {
  gap: 0.7rem;
}

.proof-strip li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.62rem;
  row-gap: 0.1rem;
  padding: 0.7rem 0.78rem;
}

.proof-strip .proof-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 168, 112, 0.38);
  background: rgba(4, 20, 16, 0.48);
}

.proof-strip .proof-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #ddc79a;
}

.proof-strip li > span:not(.proof-icon) {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.proof-strip strong {
  grid-column: 2;
  margin-top: -0.05rem;
}

@media (max-width: 1120px) {
  .brand-seal {
    width: 64px;
    height: 64px;
  }

  .brand-wordmark {
    font-size: 1.18rem;
  }

  .rail-nav a {
    min-height: 44px;
    font-size: 0.78rem;
  }
}

@media (max-width: 760px) {
  .proof-strip li {
    grid-template-columns: 2rem minmax(0, 1fr);
    padding: 0.62rem 0.7rem;
  }

  .proof-strip .proof-icon {
    width: 2rem;
    height: 2rem;
  }

  .proof-strip strong {
    font-size: 0.92rem;
  }
}

/* Top navigation override */
.shell-layout {
  display: block !important;
  min-height: 0;
}

.side-rail {
  position: sticky !important;
  top: 0;
  z-index: 40;
  height: auto !important;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.1rem !important;
  border-right: 0 !important;
  border-bottom: 1px solid rgba(196, 168, 112, 0.28);
  background: rgba(4, 22, 17, 0.96) !important;
  backdrop-filter: blur(10px);
}

.brand-lockup {
  border-bottom: 0;
  padding: 0;
  flex: 0 0 auto;
}

.brand-seal {
  width: 58px;
  height: 58px;
}

.brand-wordmark {
  font-size: 1.22rem;
}

.rail-nav {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  margin-left: 0.75rem;
  flex: 1 1 auto;
}

.rail-nav a {
  min-height: 42px;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background: rgba(10, 38, 29, 0.72);
  transform: none !important;
}

.rail-book-btn {
  margin-top: 0;
  width: auto;
  flex: 0 0 auto;
}

.stage-content {
  padding-top: 1.1rem;
}

.shell-layout + .site-footer {
  margin-left: 0 !important;
}

@media (max-width: 980px) {
  .side-rail {
    flex-wrap: wrap;
    padding: 0.66rem 0.8rem !important;
    gap: 0.6rem;
  }

  .brand-seal {
    width: 48px;
    height: 48px;
  }

  .brand-wordmark {
    font-size: 1rem;
  }

  .rail-nav {
    order: 3;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .rail-nav a {
    min-height: 38px;
    font-size: 0.73rem;
    white-space: nowrap;
  }

  .rail-book-btn {
    margin-left: auto;
  }
}

/* Ultra-premium centering pass */
.side-rail {
  display: grid !important;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  min-height: 92px;
  padding: 0.7rem 1.5rem !important;
}

.brand-lockup {
  justify-self: start;
}

.brand-seal {
  width: 66px;
  height: 66px;
}

.brand-wordmark {
  font-size: 1.45rem;
  letter-spacing: 0.058em;
}

.rail-nav {
  justify-self: center;
  margin: 0;
  gap: 0.62rem;
}

.rail-nav a {
  min-height: 44px;
  padding: 0.62rem 1rem;
  background: rgba(9, 35, 27, 0.56);
  border: 1px solid rgba(196, 168, 112, 0.32);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
}

.rail-book-btn {
  justify-self: end;
  margin-left: 0;
}

.stage-content {
  padding-top: 1.8rem;
}

.stage-content .wrap {
  width: min(1320px, 92vw);
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-page .hero.section-lg {
  padding-top: 0.9rem;
}

.home-page .hero-copy,
.hero-media {
  border-radius: 28px;
}

.home-page .hero-copy {
  padding: clamp(2rem, 3.8vw, 3.2rem);
}

.home-page .hero-copy h1 {
  font-size: clamp(2.8rem, 5.3vw, 5.6rem);
}

.hero-title-medallion {
  display: block;
  width: clamp(100px, 18vw, 190px);
  height: auto;
  margin: 0 0 0.8rem;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.34));
}

.proof-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1140px) {
  .side-rail {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    padding: 0.65rem 0.9rem !important;
  }

  .brand-seal {
    width: 52px;
    height: 52px;
  }

  .brand-wordmark {
    font-size: 1.08rem;
  }

  .rail-nav {
    justify-self: start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .rail-book-btn {
    justify-self: end;
  }

  .stage-content {
    padding-top: 1rem;
  }
}

@media (max-width: 760px) {
  .hero-title-medallion {
    width: clamp(92px, 28vw, 150px);
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 880px) {
  .side-rail {
    display: flex !important;
    flex-wrap: wrap;
  }
}

/* Hero image border cleanup */
.hero-media,
.home-page .hero-media {
  border: 0 !important;
  outline: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-media::after {
  display: none;
}

/* Home proof cards v2: premium 4-up squares with media */
.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-strip .proof-card {
  list-style: none;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(196, 168, 112, 0.28);
  background: #07261d;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  display: grid;
  grid-template-rows: 56% 44%;
}

.proof-strip .proof-media {
  background-size: cover;
  background-position: center;
  position: relative;
}

.proof-strip .proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 10, 8, 0.06), rgba(2, 10, 8, 0.52));
}

.proof-card-sleep .proof-media {
  background-image: url("/images/gallery/017.jpg");
}

.proof-card-relax .proof-media {
  background-image: url("/images/gallery/062.jpg");
}

.proof-card-entertain .proof-media {
  background-image: url("/images/gallery/041.jpg");
}

.proof-card-location .proof-media {
  background-image: url("/images/dollywood-wild-eagle.jpg");
}

.proof-strip .proof-copy {
  padding: 0.9rem 1rem 1rem;
  display: grid;
  align-content: start;
  gap: 0.38rem;
}

.proof-strip .proof-kicker {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b99f6b;
  font-weight: 700;
}

.proof-strip h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  line-height: 1.14;
  color: #f0dfba;
}

.proof-strip .proof-copy > p:last-child {
  margin: 0;
  color: #d5c19b;
  font-size: 0.89rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip .proof-card {
    aspect-ratio: 1 / 1;
  }
}

/* Proof cards polish: ensure media shows and feels premium */
.proof-strip {
  gap: 1rem;
}

.proof-strip .proof-card {
  position: relative;
  display: block;
  isolation: isolate;
  border-radius: 22px;
  border: 1px solid rgba(196, 168, 112, 0.26);
  background: #081f18;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.proof-strip .proof-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.proof-strip .proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0.2) 100%);
}

.proof-strip .proof-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.05rem 1.05rem 1.1rem;
  display: grid;
  gap: 0.33rem;
}

.proof-strip .proof-kicker {
  color: #d6bc88;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.proof-strip h3 {
  color: #f8e8c4;
  font-size: clamp(1.22rem, 1.75vw, 1.62rem);
  line-height: 1.08;
}

.proof-strip .proof-copy > p:last-child {
  color: #dfcca8;
  font-size: 0.96rem;
  line-height: 1.35;
  max-width: 28ch;
}

@media (max-width: 1180px) {
  .proof-strip .proof-copy {
    padding: 0.95rem;
  }
}

@media (max-width: 760px) {
  .proof-strip .proof-card {
    aspect-ratio: 4 / 3;
  }
}

/* Final proof-card readability + exact media mapping */
.proof-card-relax .proof-media {
  background-image: url("/images/gallery/054.jpg");
}

.proof-strip .proof-media::after {
  background: none;
}

.proof-strip .proof-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
  pointer-events: none;
}

.proof-strip .proof-copy {
  z-index: 2;
  background: transparent;
}

/* Home hero layout update: logo square + long text box */
.hero-logo-panel {
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-logo-panel .hero-title-medallion {
  width: 100%;
  max-width: none;
  max-height: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  transform: scale(1.22);
  transform-origin: center;
}

.hero-text-panel {
  margin-top: 0.95rem;
  border-color: rgba(196, 168, 112, 0.34);
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(196, 168, 112, 0.17), rgba(196, 168, 112, 0) 54%),
    linear-gradient(162deg, rgba(7, 33, 25, 0.95), rgba(5, 21, 16, 0.95));
  padding: clamp(1.1rem, 2.3vw, 1.8rem) clamp(1rem, 3vw, 2rem);
}

.hero-text-panel .hero-actions {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero-text-panel .btn {
  min-height: 50px;
  min-width: clamp(220px, 32vw, 320px);
  padding: 0.68rem 1.7rem;
  font-size: 1.05rem;
  border-radius: 999px;
  justify-self: center;
  text-align: center;
}

.hero-text-panel .eyebrow,
.hero-text-panel .lead,
.hero-text-panel .lead-hero {
  color: #f1dfba;
}

@media (max-width: 1120px) {
  .hero-logo-panel {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .hero-logo-panel {
    min-height: 340px;
  }

  .hero-logo-panel .hero-title-medallion {
    width: 100%;
    max-height: 100%;
    transform: scale(1.2);
  }

  .hero-text-panel .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-text-panel .btn {
    min-height: 46px;
    min-width: min(100%, 320px);
    padding: 0.62rem 1.15rem;
    font-size: 0.98rem;
  }
}

/* Mobile cleanup pass */
@media (max-width: 900px) {
  .side-rail {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.6rem;
    min-height: 0;
    padding: 0.6rem 0.75rem !important;
  }

  .brand-wordmark {
    display: none;
  }

  .brand-seal {
    width: 44px;
    height: 44px;
  }

  .rail-nav {
    order: 3;
    width: 100%;
    margin: 0;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    gap: 0.45rem;
  }

  .rail-nav a {
    white-space: nowrap;
    min-height: 36px;
    padding: 0.48rem 0.8rem;
    font-size: 0.72rem;
  }

  .rail-book-btn {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .stage-content {
    padding: 0.7rem 0.7rem 1.3rem;
  }

  .stage-content .wrap {
    width: min(1320px, 96vw);
  }

  .cinematic-hero {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-logo-panel,
  .hero-media {
    min-height: 270px;
    border-radius: 20px;
  }

  .hero-logo-panel .hero-title-medallion {
    transform: scale(1.08);
  }

  .hero-text-panel {
    margin-top: 0.7rem;
    padding: 0.9rem;
  }

  .hero-text-panel .hero-actions {
    gap: 0.7rem;
  }

  .hero-text-panel .btn {
    min-width: min(100%, 280px);
  }
}
