:root {
  --ink: #171717;
  --ink-soft: rgba(23, 23, 23, 0.68);
  --ink-mute: rgba(23, 23, 23, 0.5);
  --ink-faint: rgba(23, 23, 23, 0.06);
  --charcoal: #24231f;
  --stone: #f4f0e8;
  --paper: #fffaf1;
  --surface: #ffffff;
  --surface-hover: #f8f5ee;
  --sage: #667a63;
  --moss: #394a38;
  --clay: #b66b4d;
  --brass: #c6a15b;
  --line: rgba(23, 23, 23, 0.15);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(27, 24, 19, 0.18);
  --cta-bg: #ece3d4;
  --max: 1180px;
}

[data-theme="dark"] {
  --ink: #f1ece2;
  --ink-soft: rgba(241, 236, 226, 0.72);
  --ink-mute: rgba(241, 236, 226, 0.5);
  --ink-faint: rgba(241, 236, 226, 0.06);
  --charcoal: #0a0807;
  --stone: #2a2622;
  --paper: #15110d;
  --surface: #1f1a15;
  --surface-hover: #2a2520;
  --sage: #8aa487;
  --moss: #a8b89c;
  --clay: #d18664;
  --brass: #d4b075;
  --line: rgba(241, 236, 226, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --cta-bg: #1f1a15;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 400ms ease, color 400ms ease;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 0;
  height: 3px;
  background: var(--clay);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 17;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding:
    calc(env(safe-area-inset-top, 0px) + 14px)
    clamp(16px, 4vw, 54px)
    14px;
  padding-left: max(clamp(16px, 4vw, 54px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(16px, 4vw, 54px), env(safe-area-inset-right, 0px));
  color: var(--white);
  transition:
    background .3s ease,
    backdrop-filter .3s ease,
    box-shadow .3s ease,
    padding .3s ease;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem;
  background:
    linear-gradient(
      to top,
      rgba(34, 31, 28, 0.72),
      rgba(34, 31, 28, 0.25) 40%,
      transparent
    );
  pointer-events: none;
}

.map-overlay > * {
  pointer-events: auto;
}

.map-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  margin-bottom: 14px;

  background: rgba(214, 189, 152, 0.2);
  color: #f6ede0;

  border: 1px solid rgba(214, 189, 152, 0.25);
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-info h3 {
  margin: 0;
  color: #fffaf3;
  font-size: 1.8rem;
  font-weight: 700;
}

.map-info p {
  margin-top: 10px;
  color: rgba(255, 250, 243, 0.82);
  line-height: 1.6;
}

.map-btn {
  padding: 14px 24px;
  border-radius: 16px;

  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
}

.map-btn.primary {
  background: #d6bd98;
  color: #2a241d;
  box-shadow: 0 8px 25px rgba(214, 189, 152, 0.35);
}

.map-btn.primary:hover {
  background: #e0c7a1;
  transform: translateY(-3px);
}

.map-btn.secondary {
  background: rgba(245, 240, 232, 0.12);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(245, 240, 232, 0.18);
  color: #fffaf3;
}

.map-btn.secondary:hover {
  background: rgba(245, 240, 232, 0.2);
  transform: translateY(-3px);
}

.site-header.scrolled {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 40px var(--ink-faint);
  backdrop-filter: blur(16px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header.page-header {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 40px var(--ink-faint);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--stone);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-text small {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.74;
}

.nav-links {
  gap: clamp(12px, 3vw, 36px);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a,
.nav-action,
.inline-link {
  position: relative;
}

.nav-links a::after,
.inline-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.inline-link:hover::after {
  transform: scaleX(1);
}

.nav-action {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-action[aria-current="page"] {
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-color: var(--charcoal);
  color: var(--white);
  padding-bottom: 140px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.72),
      rgba(0,0,0,.25)
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 22vh clamp(20px, 5vw, 72px) 12vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark .eyebrow {
  color: var(--brass);
}

.hero-slogan {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.6rem;
  font-weight: 400;
  line-height: 0.92;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.button.primary {
  background: var(--surface);
  color: var(--ink);
}

.booking-form .button.primary {
  background: var(--charcoal);
  color: var(--white);
}

[data-theme="dark"] .button.primary,
[data-theme="dark"] .booking-form .button.primary,
[data-theme="dark"] .cta-strip:not(.dark) .button.primary {
  background: var(--charcoal);
  color: var(--white);
}

[data-theme="dark"] .cta-strip:not(.dark) {
  background: var(--surface);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
}

.hero-stats {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2 * clamp(20px, 5vw, 72px));
  bottom: 30px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;

  z-index: 1;

  backdrop-filter: blur(20px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 24px;
}

.hero-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.3;
}
.band {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

/* 3D Z-depth parallax: needs its own perspective since body perspective
   was removed to fix position: fixed breakage in Chrome 131+ */
main {
  perspective: 1200px;
  perspective-origin: 50% 30%;
}
.band[data-depth] {
  transform-style: preserve-3d;
  will-change: transform;
}
.band[data-depth] > * {
  transform-style: preserve-3d;
}

.page-main {
  padding-top: 74px;
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 80vh;
  padding: clamp(52px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background-color: var(--paper);
}

.subhero h1 {
  font-size: 4.25rem;
  line-height: 0.98;
}

.subhero.dark {
  background-color: var(--charcoal);
}

.subhero-copy {
  max-width: 720px;
}

.subhero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.subhero.dark .subhero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.subhero-image {
  height: min(58vw, 560px);
  min-height: 360px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.location-grid,
.reserve,
.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
}

/* ===== WHY HAVEN HARAYA â€“ ENHANCED SECTION ===== */

.intro {
  background: linear-gradient(145deg, #fffaf5 0%, #fef7ec 100%);
  position: relative;
  isolation: isolate;
}
[data-theme="dark"] .intro {
  background: linear-gradient(145deg, #1f1a15 0%, #15110d 100%);
}
[data-theme="dark"] .intro::before {
  background-image: radial-gradient(circle at 20% 40%, rgba(241, 236, 226, 0.04) 1.5px, transparent 1.5px);
}
[data-theme="dark"] .section-kicker {
  background: rgba(209, 134, 100, 0.12);
}

/* subtle background pattern */
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 40%, rgba(182,107,77,0.03) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.intro-grid {
  max-width: var(--max, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* left column */
.intro-copy h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0.75rem 0 1.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--clay, #b66b4d);
  background: rgba(182, 107, 77, 0.1);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 1rem;
  backdrop-filter: blur(2px);
}

.intro-copy p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 90%;
}

.intro-accent {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border-radius: 60px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 0 0 1px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

.badge i {
  color: var(--clay);
  font-size: 0.85rem;
}

/* right column â€“ card grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.detail-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 28px 24px 24px 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(182, 107, 77, 0.15);
  border-color: rgba(182, 107, 77, 0.2);
}

/* icon circle */
.detail-icon {
  width: 56px;
  height: 56px;
  background: rgba(102, 122, 99, 0.08);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.25s ease;
}

.detail-icon i {
  font-size: 1.8rem;
  color: var(--moss, #394a38);
  transition: transform 0.2s ease;
}

.detail-card:hover .detail-icon {
  background: rgba(182, 107, 77, 0.12);
}

.detail-card:hover .detail-icon i {
  transform: scale(1.05);
  color: var(--clay);
}

.detail-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.detail-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.detail-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink-faint);
  transition: all 0.2s;
  pointer-events: none;
}

.detail-card:hover .detail-number {
  color: rgba(182, 107, 77, 0.1);
  transform: scale(1.02);
}

/* responsive */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intro-copy p {
    max-width: 100%;
  }
  .listing-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .detail-card {
    padding: 24px 20px 20px;
  }
  .intro-copy h2 {
    font-size: 2.4rem;
  }
  .detail-icon {
    width: 48px;
    height: 48px;
  }
  .detail-icon i {
    font-size: 1.4rem;
  }
}

.page-card-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.page-card,
.detail-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.page-card {
  display: grid;
  min-height: 390px;
  color: var(--white);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.page-card img {
  height: 210px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.page-card:hover img {
  transform: scale(1.06);
}

.page-card:hover {
  border-color: rgba(232, 191, 136, 0.54);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.35);
}

.page-card span,
.page-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.page-card span {
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
}

.page-card p {
  color: rgba(255, 255, 255, 0.7);
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-panel {
  min-height: 320px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border-color: var(--line);
}

.detail-panel span {
  display: block;
  margin-bottom: 56px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
}

.detail-panel h2 {
  font-size: 2.2rem;
}

.intro-copy p,
.experience-copy p,
.reserve-copy p,
.tab-panel p,
.timeline-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Amenities Cards */

.feature-cards {
  max-width: var(--max);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-card {
  overflow: hidden;

  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.12);

  border-color: rgba(182,107,77,.2);
}

.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;

  transition: transform .6s ease;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-content {
  padding: 24px;
}

.feature-content h3 {
  margin-bottom: 12px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.feature-content p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}


.dark {
  background: var(--charcoal);
  color: var(--white);
}

.experience {
  align-items: center;
}

.experience-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.dark p,
.dark .timeline-copy {
  color: rgba(255, 255, 255, 0.72);
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.split-list span {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 40px;
}

.tabs,
.gallery-layout {
  max-width: var(--max);
  margin: 0 auto;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tab {
  min-width: 116px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.tab:hover {
  border-color: var(--ink-soft);
}

.tab.active {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
}

[data-theme="dark"] .tab.active {
  background: var(--moss);
  color: var(--charcoal);
  border-color: var(--moss);
}

.tab-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.tab-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 18px;
}

.gallery-main,
.gallery-strip button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-main img {
  height: 670px;
  object-fit: cover;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-strip img {
  height: 326px;
  object-fit: cover;
}

.gallery-main img,
.gallery-strip img {
  border-radius: 6px;
  transition: transform 300ms ease;
}

.gallery-main:hover img,
.gallery-strip button:hover img {
  transform: scale(1.04);
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  transition: transform .6s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}
/* Details Section */

.detail-grid {
  max-width: var(--max);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.detail-card {
  background: var(--surface);
  border: 1px solid var(--ink-faint);
}

.detail-icon {
  background: rgba(102,122,99,.10);
  color: var(--moss);
  border: 1px solid rgba(102,122,99,.12);
}

.detail-number {
  color: rgba(57,74,56,.08);
}

.detail-card::before {
  background: linear-gradient(
    90deg,
    var(--moss),
    var(--sage)
  );
}

@media (max-width: 640px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: auto;
  }
}
.map-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #30372d;
  background-size: 58px 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.map-embed {
  background: var(--paper);
}

.map-embed .section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.google-map-frame {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.map-container {
  position: relative;
}

.google-map-frame iframe {
  display: block;
  width: 100%;
  height: min(68vh, 540px);
  min-height: 360px;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  max-width: var(--max);
  margin: 26px auto 0;
}

.route-line {
  position: absolute;
  inset: 19% 14% 25% 22%;
  border: 1px solid rgba(232, 191, 136, 0.55);
  border-right: 0;
  transform: skew(-14deg);
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pin::before {
  width: 8px;
  height: 8px;
  background: var(--clay);
  border-radius: 50%;
  content: "";
}

.pin.home {
  top: 35%;
  left: 33%;
}

.pin.bgc {
  top: 19%;
  right: 18%;
}

.pin.airport {
  right: 12%;
  bottom: 20%;
}

.pin.park {
  left: 15%;
  bottom: 23%;
}

.timeline {
  align-self: center;
}

.timeline-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 18px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  text-align: left;
}

.timeline-item span {
  color: #e8bf88;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.timeline-item.active {
  color: var(--white);
}

.timeline-copy {
  min-height: 64px;
  margin-top: 26px;
}

.reserve {
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-form label:nth-child(4),
.booking-form button,
.booking-form .secondary {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  padding: 14px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.button:focus-visible,
.tab:focus-visible,
.timeline-item:focus-visible,
.page-card:focus-visible,
.nav-links a:focus-visible,
.nav-action:focus-visible,
.inline-link:focus-visible,
.gallery-filter:focus-visible,
.audio-toggle:focus-visible,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible,
.back-to-top:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.booking-form textarea {
  resize: vertical;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer .social-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease, background-color 200ms ease;
}

.site-footer .social-links a:hover {
  color: var(--clay);
  border-color: var(--clay);
  background-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.76);
  font-size: 0.9rem;
  transition: color 200ms ease;
}

.footer-email:hover {
  color: var(--clay);
}

.footer-email i {
  font-size: 0.95rem;
  opacity: 0.7;
}

.site-footer .social-links a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 78px) clamp(20px, 5vw, 72px);
  background-color: var(--cta-bg);
  border-top: 1px solid var(--line);
}

.cta-strip > div {
  max-width: var(--max);
}

.cta-strip h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 3.1rem;
}

.cta-strip:not(.dark) .button.primary {
  background: var(--charcoal);
  color: var(--white);
}

.cta-strip.dark {
  background-color: var(--charcoal);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.lightbox {
  width: min(1040px, 92vw);
  max-height: 92vh;
  max-height: 92svh;
  padding: 0;
  border: 0;
  background: #0a0807;
  color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}

.lightbox img {
  max-height: 78vh;
  max-height: 78svh;
  width: 100%;
  object-fit: contain;
  background: #0a0807;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox p {
  margin: 0;
  padding: 16px 20px 20px;
  color: rgba(255, 255, 255, 0.78);
}

.lightbox-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  pointer-events: none;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.lightbox-nav {
  top: 50%;
  width: 42px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox-nav.prev {
  left: 14px;
}

.lightbox-nav.next {
  right: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE â€” TABLET (â‰¤1024px) â†’ MOBILE (â‰¤860px) â†’ SMALL MOBILE (â‰¤620px) â†’ TINY (â‰¤420px)
   ================================================ */

/* ----- TABLET: 1024px and below ----- */
@media (max-width: 1024px) {
  .nav-links {
    gap: 18px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .subhero h1 {
    font-size: 3.6rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
  }

  .hero-stats strong {
    font-size: 2.4rem;
  }

  .stat span {
    font-size: 2.4rem;
  }

  .gallery-layout {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
    gap: 14px;
  }

  .gallery-main img {
    height: 540px;
  }

  .gallery-strip img {
    height: 263px;
  }

  .page-card-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .feature-cards,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .pricing-card.featured {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .guidebook-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip h2 {
    font-size: 2.7rem;
  }

  .timeline-item {
    font-size: 2.4rem;
  }
}

/* ----- MOBILE: 860px and below ----- */
@media (max-width: 860px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: max(10px, env(safe-area-inset-top, 0px));
    padding-bottom: 10px;
  }

  .site-header > * {
    flex-shrink: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .site-header.scrolled .nav-links a,
  .site-header.page-header .nav-links a {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.58);
  }

  .audio-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-links { display: none; }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  .hero.bg-cover,
  .subhero.bg-cover,
  .band.bg-cover {
    background-attachment: scroll;
  }

  .hero-content {
    padding: calc(env(safe-area-inset-top, 0px) + 120px) clamp(20px, 5vw, 72px) 24px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-floats { display: none; }

  .hero-slogan {
    font-size: 1.2rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .page-main {
    padding-top: 124px;
  }

  h1 {
    font-size: 4rem;
    line-height: 0.95;
  }

  h2 {
    font-size: 2.7rem;
  }

  .subhero h1 {
    font-size: 3.2rem;
  }

  .timeline-item {
    font-size: 2rem;
  }

  .hero-stats,
  .intro-grid,
  .experience,
  .location-grid,
  .reserve,
  .gallery-layout,
  .subhero,
  .page-card-grid,
  .detail-grid,
  .feature-cards,
  .testimonials-grid,
  .pricing-cards,
  .guidebook-cards {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 24px clamp(20px, 5vw, 72px) max(24px, env(safe-area-inset-bottom, 0px));
    transform: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 20px;
    flex: 0 0 auto;
  }

  .hero-stats .stat:nth-child(2n) {
    border-left: 1px solid rgba(255,255,255,.12);
  }

  .hero-stats .stat {
    border-left: 0;
  }

  .hero-stats > div,
  .stat {
    align-items: center;
    text-align: center;
  }

  .stat + .stat {
    border-left: 0;
  }

  .gallery-main img,
  .gallery-strip img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .subhero {
    min-height: auto;
    padding-top: clamp(72px, 12vw, 110px);
    padding-bottom: clamp(48px, 8vw, 80px);
  }

  .subhero-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 22px;
  }

  .cta-strip h2 {
    font-size: 2.3rem;
  }

  .cta-strip .button {
    width: 100%;
    justify-content: center;
  }

  .booking-form {
    padding: 22px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    padding: 14px;
    font-size: 16px;
    min-height: 48px;
  }

  .gallery-filter {
    padding: 10px 18px;
    min-height: 40px;
    font-size: 0.82rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 10px;
  }

  .gallery-grid-item img {
    height: 220px;
  }

  .lightbox-nav {
    width: 48px;
    height: 64px;
    font-size: 1.5rem;
  }

  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .lightbox p {
    padding: 14px 18px 18px;
    font-size: 0.92rem;
  }

  .map-overlay {
    padding: 1.25rem;
  }

  .map-btn {
    padding: 12px 20px;
    font-size: 0.92rem;
  }

  .google-map-frame iframe {
    min-height: 300px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px 0;
  }

  .tab {
    min-width: auto;
    flex: 1 1 auto;
    text-align: center;
    min-height: 44px;
  }

  .tab-panel {
    padding: 24px;
  }

  .page-card span {
    font-size: 1.3rem;
  }
}

/* ----- SMALL MOBILE: 620px and below ----- */
@media (max-width: 620px) {
  .brand-text small {
    display: none;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-action {
    padding: 9px 14px;
    font-size: 0.78rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .audio-toggle {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .nav-overlay a {
    font-size: 1.4rem;
    padding: 10px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-overlay {
    gap: 26px;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  }

  .nav-overlay .nav-action {
    margin-top: 8px;
    font-size: 1rem;
    padding: 12px 30px;
    min-height: 48px;
  }

  .feature-grid,
  .booking-form,
  .gallery-strip,
  .split-list {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: calc(env(safe-area-inset-top, 0px) + 110px);
    padding-bottom: 24px;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 1.1rem;
    overflow-wrap: break-word;
    line-height: 1.25;
  }

  .subhero h1 {
    font-size: 1.8rem;
  }

  .cta-strip h2 {
    font-size: 1.95rem;
  }

  .section-heading h2 {
    font-size: 1.1rem;
  }

  .tab-panel h3,
  .detail-panel h2 {
    font-size: 1.7rem;
  }

  .timeline-item {
    font-size: 1.6rem;
    gap: 12px;
  }

  .hero-stats {
    margin: 24px 18px 18px;
    padding: 16px;
    gap: 14px;
  }

  .hero-stats strong,
  .stat span {
    font-size: 2rem;
  }

  .hero-stats span,
  .stat small {
    font-size: 0.85rem;
  }

  .hero-slogan {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .button {
    min-height: 48px;
    padding: 14px 22px;
    font-size: 0.84rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  .gallery-grid-item img {
    height: 180px;
  }

  .gallery-filter {
    padding: 9px 14px;
    font-size: 0.78rem;
    min-height: 38px;
  }

  .lightbox {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100svh;
    border-radius: 0;
  }

  .lightbox img {
    max-height: 70vh;
    max-height: 70svh;
  }

  .lightbox-nav {
    width: 52px;
    height: 60px;
  }

  .lightbox-close {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
  }

  .feature-card img,
  .page-card img {
    height: 200px;
  }

  .page-card {
    min-height: 320px;
  }

  .detail-panel {
    min-height: auto;
  }

  .map-panel {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }

  .scroll-meter {
    height: 3px;
  }

  .scroll-progress-ring {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 72px;
  }

  .back-to-top {
    bottom: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .skip-link {
    left: 12px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .pricing-card {
    padding: 26px 22px;
  }

  .pricing-card .price {
    font-size: 2.4rem;
  }

  .pricing-card.featured::before {
    font-size: 0.66rem;
    padding: 3px 12px;
  }

  .guidebook-card {
    padding: 24px 22px;
  }

  .testimonial-card {
    padding: 26px 22px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .section-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }
}

/* ----- TINY: 420px and below (iPhone SE 1st gen, etc.) ----- */
@media (max-width: 420px) {
  .site-header {
    gap: 6px;
    padding: 10px 14px;
  }

  .site-header > * {
    flex-shrink: 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-text {
    display: none;
  }

  .nav-action {
    padding: 7px 12px;
    font-size: 0.72rem;
    min-height: 38px;
  }

  .audio-toggle {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 6px;
  }

  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 1.7rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.2rem;
  }

  .subhero h1 {
    font-size: 1.9rem;
  }

  .cta-strip h2 {
    font-size: 1.7rem;
  }

  .section-heading h2 {
    font-size: 1.85rem;
  }

  .tab-panel h3,
  .detail-panel h2 {
    font-size: 1.5rem;
  }

  .hero-stats {
    margin: 20px 14px 16px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
  }

  .hero-stats strong,
  .stat span {
    font-size: 1.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .gallery-grid-item img {
    height: 240px;
  }

  .gallery-filters {
    gap: 6px;
    padding: 0 16px;
  }

  .gallery-filter {
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .nav-overlay a {
    font-size: 1.2rem;
  }

  .nav-overlay .nav-action {
    font-size: 0.95rem;
    padding: 11px 24px;
  }

  .button {
    padding: 12px 18px;
    font-size: 0.8rem;
    min-height: 46px;
  }

  .lightbox-nav {
    width: 46px;
    height: 56px;
    font-size: 1.2rem;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
  }

  .booking-form {
    padding: 18px;
  }

  .pricing-card {
    padding: 22px 18px;
  }

  .pricing-card .price {
    font-size: 2.1rem;
  }
}

/* ----- LANDSCAPE PHONE / SHORT MOBILE ----- */
@media (max-width: 860px) and (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px);
    padding-bottom: 24px;
  }

  .hero-stats {
    margin-top: 18px;
  }

  .subhero {
    min-height: auto;
  }
}

/* ===== BACKGROUND COVER ===== */
/* Pure CSS parallax via background-attachment: fixed — the classic Wix/Mabel
   Cabin look. */
.bg-cover {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .bg-cover {
    background-attachment: scroll;
  }

  .reveal,
  .reveal-blur,
  .reveal-stagger > *,
  .reveal-stagger-up > *,
  .reveal-from-left,
  .reveal-from-right {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.bg-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23,23,23,0.76) 0%,
    rgba(23,23,23,0.28) 50%,
    rgba(23,23,23,0.04) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.bg-cover > * {
  position: relative;
  z-index: 1;
}

/* ===== HERO CONTENT FULL-WIDTH ALIGNMENT ===== */
/* ===== HERO STATS (match HTML article.stat pattern) ===== */
.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat span {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.stat-icon {
  display: block;
  font-size: 1.1rem;
  color: var(--brass);
  margin-bottom: 10px;
  opacity: 0.85;
}

.stat small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.3;
}

.stat + .stat {
  border-left: 1px solid rgba(255,255,255,.12);
}

/* ===== SECTION HEADING DETAILS ===== */
.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.55;
}

/* ===== PAGE LINKS (explore section) ===== */
.page-links {
  position: relative;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.page-links.dark .eyebrow {
  color: rgba(255,255,255,.6);
}

.page-links.dark h2 {
  color: var(--white);
}

.page-links.dark .section-heading p:not(.eyebrow) {
  color: rgba(255,255,255,.7);
}

.page-links.dark::before {
  background: linear-gradient(
    180deg,
    var(--ink-soft) 0%,
    rgba(23,23,23,0.55) 50%,
    var(--ink-soft) 100%
  );
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
}

/* ===== SPLIT LIST (amenities.html uses li) ===== */
.split-list {
  list-style: none;
  padding: 0;
}

.split-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.split-list li::before {
  content: "â€“";
  margin-right: 10px;
  color: var(--clay);
}

/* ===== MOBILE NAVIGATION ===== */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 25;
  color: inherit;
}

@media (min-width: 861px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 16;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  padding-top: calc(80px + env(safe-area-inset-top, 0px));
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay a {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  transition: color .2s ease;
}

.nav-overlay a:hover { color: var(--clay); }

.nav-overlay .nav-action {
  margin-top: 12px;
  font-size: 1.1rem;
  padding: 14px 36px;
}

body.no-scroll {
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}

body.no-scroll .site-header:not(.page-header) {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 40px var(--ink-faint);
  backdrop-filter: blur(16px);
}

/* ===== SUBHERO CONTENT (single column when no image) ===== */
.subhero-content {
  width: 100%;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.faq-category {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 36px 0 4px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color .2s ease;
  overflow-wrap: break-word;
  min-width: 0;
}

.faq-question:hover { color: var(--clay); }

.faq-question:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-question i {
  font-size: 0.85rem;
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
  max-height: 1200px;
  padding-bottom: 22px;
}

.faq-answer p, .faq-answer li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer ul {
  margin: 8px 0 8px 20px;
  padding: 0;
  list-style: disc;
}

/* ===== GUIDEBOOKS ===== */
.guidebook-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.guidebook-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  transition: box-shadow .35s ease;
}

.guidebook-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.guidebook-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--clay);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.guidebook-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.guidebook-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.68;
}

.guidebook-distance {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.guidebook-locals {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--stone);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ===== PRICING TABLE ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow .35s ease;
}

.pricing-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.pricing-card.featured {
  border-color: var(--brass);
  box-shadow: 0 0 0 1px var(--brass);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}

[data-theme="dark"] .pricing-card.featured::before {
  color: #1a1715;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.pricing-card .price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 20px 0 4px;
  line-height: 1;
}

.pricing-card .price i {
  font-size: 3rem;
  color: var(--clay);
}

.pricing-card .price-unit {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-card li {
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card li i {
  color: var(--sage);
  font-size: 0.75rem;
}

.pricing-card .button { width: 100%; }

.pricing-card .button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.pricing-card .button.secondary:hover {
  background: var(--stone);
  transform: translateY(-2px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  display: grid;
  align-content: start;
  gap: 16px;
  transition: box-shadow .35s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.testimonial-card .quote-icon {
  color: var(--brass);
  font-size: 1.6rem;
  opacity: 0.6;
}

.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--brass);
  font-size: 0.85rem;
  margin-top: -4px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-author strong {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--ink-mute);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--surface);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max);
  margin: 0 auto 32px;
  padding: 0 clamp(20px, 5vw, 72px);
}

.gallery-filter {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.gallery-filter:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.gallery-filter.active {
  background: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.gallery-grid-item {
  position: relative;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: transparent;
  display: block;
  width: 100%;
  text-align: left;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.gallery-grid-item:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.gallery-grid-item img {
  display: block;
  width: 100%;
  height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
}

.gallery-count {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 24px;
}

.gallery-grid-item.loading img { opacity: 0; }
.gallery-grid-item.loaded img { opacity: 1; transition: opacity .3s ease; }

/* ===== INLINE LINK ===== */
.inline-link {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(102,122,99,.3);
}

/* ===== FORM STATUS ===== */
.form-status {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: rgba(102,122,99,.12);
  color: var(--moss);
  border: 1px solid rgba(102,122,99,.3);
}

.form-status.error {
  background: rgba(182,107,77,.12);
  color: var(--clay);
  border: 1px solid rgba(182,107,77,.3);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ===== AUDIO TOGGLE ===== */
.audio-toggle,
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background .2s ease, transform .2s ease;
}

.audio-toggle:hover,
.theme-toggle:hover {
  background: rgba(255,255,255,.15);
  transform: scale(1.05);
}

.site-header.scrolled .audio-toggle:hover,
.site-header.page-header .audio-toggle:hover,
.site-header.scrolled .theme-toggle:hover,
.site-header.page-header .theme-toggle:hover {
  background: var(--stone);
}

@media (max-width: 620px) {
  .audio-toggle,
  .theme-toggle {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .theme-toggle {
    width: 38px;
    height: 38px;
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 12;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.back-to-top:active { transform: scale(0.92); }

/* ===== SCROLL PROGRESS RING ===== */
.scroll-progress-ring {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 19;
  width: 54px;
  height: 54px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 2px 12px var(--ink-faint);
}

.scroll-progress-ring.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-progress-ring svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--line);
  stroke-width: 3.5;
}

.ring-fill {
  fill: none;
  stroke: var(--clay);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 0.1s linear;
}

.ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 860px) {
  .feature-cards,
  .testimonials-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured { order: -1; }
  .guidebook-cards {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    padding: 24px 20px max(20px, env(safe-area-inset-bottom, 0px));
  }
  .footer-brand { gap: 2px; }
  .footer-name { font-size: 1.05rem; }
  .footer-tagline { font-size: 0.78rem; }
}

@media (max-width: 620px) {
  .feature-cards,
  .guidebook-cards,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .back-to-top {
    bottom: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
}

/* ===== REVEAL STAGGER ===== */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* ===== HEADER TRANSPARENT (index) ===== */
.site-header:not(.scrolled):not(.page-header) .nav-links a {
  color: rgba(255,255,255,.92);
}

.site-header:not(.scrolled):not(.page-header) .nav-action {
  color: rgba(255,255,255,.92);
}

.site-header:not(.scrolled):not(.page-header) .nav-action:hover {
  background: rgba(255,255,255,.15);
}

.site-header.scrolled .nav-action:hover,
.site-header.page-header .nav-action:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ============================================
   WIX-STYLE ENHANCED EFFECTS
   ============================================ */

/* ----- TEXT REVEAL: WORD-BY-WORD ----- */
.reveal-words {
  display: inline-block;
}
.reveal-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  max-width: 100%;
}
.reveal-words .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--word-delay, 0ms);
}
.reveal-words.visible .word > span {
  transform: translateY(0);
}

/* ----- TEXT REVEAL: LETTER-BY-LETTER ----- */
.reveal-letters {
  display: inline-block;
}
.reveal-letters .letter {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-letters .letter > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--letter-delay, 0ms);
}
.reveal-letters.visible .letter > span {
  transform: translateY(0);
}

/* ----- IMAGE CLIP REVEAL ----- */
.reveal-clip-img {
  position: relative;
  overflow: hidden;
}
.reveal-clip-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform-origin: right center;
  transition: transform 900ms cubic-bezier(.7,0,.3,1);
  z-index: 2;
  pointer-events: none;
}
.reveal-clip-img.visible::after {
  transform: scaleX(0);
}
.reveal-clip-img img {
  transform: scale(1.15);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal-clip-img.visible img {
  transform: scale(1);
}

/* ----- FADE-UP STAGGERED ----- */
.reveal-stagger-up > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger-up.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger-up.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-stagger-up.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger-up.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger-up.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger-up.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger-up.visible > *:nth-child(7) { transition-delay: 480ms; opacity: 1; transform: translateY(0); }
.reveal-stagger-up.visible > *:nth-child(8) { transition-delay: 560ms; opacity: 1; transform: translateY(0); }

/* ----- MULTI-LAYER PARALLAX ----- */
.parallax-bg {
  position: absolute;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  pointer-events: none;
  will-change: transform;
}
.parallax-fg {
  position: relative;
  z-index: 2;
}
.parallax-section {
  position: relative;
  overflow: hidden;
}
[data-parallax-speed="slow"] { --parallax-speed: 0.2; }
[data-parallax-speed="medium"] { --parallax-speed: 0.4; }
[data-parallax-speed="fast"] { --parallax-speed: 0.6; }

/* ----- HORIZONTAL PARALLAX ----- */
.horizontal-track {
  display: flex;
  gap: 32px;
  will-change: transform;
  transition: transform 100ms linear;
}

/* ----- MAGNETIC BUTTON ----- */
.magnetic {
  display: inline-block;
  transition: transform 250ms cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.magnetic.magnetic-active {
  transition: transform 80ms cubic-bezier(.2,.7,.2,1);
}

/* ----- IMAGE HOVER WITH CAPTION OVERLAY ----- */
.hover-zoom {
  position: relative;
  overflow: hidden;
}
.hover-zoom img {
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.hover-zoom:hover img {
  transform: scale(1.08);
}
.hover-zoom .hover-caption {
  z-index: 3;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.hover-zoom:hover .hover-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ----- GLOW BORDER ----- */
.glow-border {
  position: relative;
  transition: box-shadow 400ms ease, border-color 400ms ease;
}
.glow-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--clay), var(--brass), var(--clay));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.glow-border:hover::before {
  opacity: 1;
}
.glow-border:hover {
  box-shadow: 0 12px 40px rgba(182,107,77,.15);
  border-color: transparent;
}

/* ----- SCROLL-TRIGGERED COLOR TINT ----- */
.color-tint {
  transition: background-color 600ms ease, color 600ms ease;
}

/* ----- LINE DRAW UNDERLINE ----- */
.underline-draw {
  position: relative;
  display: inline-block;
}
.underline-draw::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(.7,0,.3,1);
  transition-delay: var(--underline-delay, 0ms);
}
.underline-draw.visible::after {
  transform: scaleX(1);
}

/* ----- SCROLL-TRIGGERED NUMBER ANIMATION (reuse existing count-up) ----- */
.reveal-number {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-number > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--num-delay, 0ms);
}
.reveal-number.visible > span {
  transform: translateY(0);
}

/* ----- SECTION HEADING LINE DRAW ----- */
.heading-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--clay);
  margin: 18px 0 28px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(.7,0,.3,1);
  transition-delay: 200ms;
}
.reveal.visible .heading-line,
.heading-line.visible {
  transform: scaleX(1);
}

/* ----- BLUR-REVEAL TEXT ----- */
.reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: opacity 800ms ease, filter 800ms ease, transform 800ms cubic-bezier(.2,.7,.2,1);
}
.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ----- IMAGE REVEAL: SLIDE-UP MASK ----- */
.reveal-mask-up {
  position: relative;
  overflow: hidden;
}
.reveal-mask-up::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  z-index: 2;
  transform: translateY(0);
  transition: transform 1000ms cubic-bezier(.7,0,.3,1);
  pointer-events: none;
}
.reveal-mask-up.visible::before {
  transform: translateY(101%);
}
.reveal-mask-up img {
  transform: scale(1.1);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  transition-delay: 200ms;
}
.reveal-mask-up.visible img {
  transform: scale(1);
}

/* ----- CARD LIFT ----- */
.card-lift {
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms ease;
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* ----- ICON SCALE ON HOVER ----- */
.icon-scale {
  display: inline-block;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.icon-scale:hover {
  transform: scale(1.15) rotate(-5deg);
}

/* ----- FADE-IN FROM SIDES ----- */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal-from-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-from-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal-from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ----- RESPONSIVE: REDUCE MOTION INTENSITY ----- */
@media (max-width: 620px) {
  .reveal-stagger-up > *,
  .reveal-from-left,
  .reveal-from-right {
    transform: none !important;
  }
  .parallax-bg {
    height: 100%;
    inset: 0;
  }
}

/* =============================================================
   VISUAL POLISH BLOCK
   - Branded text selection + scrollbar
   - Animated arrow on primary buttons
   - Ken Burns slow zoom on hero backgrounds
   - Animated gradient border on featured pricing card
   - Decorative clay line on section eyebrows
   All effects respect prefers-reduced-motion (covered by the
   global animation/transition override at line 2264).
   ============================================================= */

/* ----- BRANDED ::selection ----- */
::selection {
  background: var(--clay);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--clay);
  color: var(--white);
  text-shadow: none;
}

/* ----- BRANDED SCROLLBAR ----- */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--clay) var(--stone);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--stone);
}
::-webkit-scrollbar-thumb {
  background: var(--clay);
  border-radius: 5px;
  border: 2px solid var(--stone);
  transition: background .2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--moss);
}
::-webkit-scrollbar-corner {
  background: var(--stone);
}

/* ----- ANIMATED ARROW ON PRIMARY BUTTONS ----- */
.button {
  position: relative;
  isolation: isolate;
}
.button.primary::after,
.button.secondary::after,
.button.ghost::after {
  content: '\2192';
  display: inline-block;
  margin-left: 10px;
  font-weight: 700;
  transform: translateX(0);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.button.primary:hover::after,
.button.secondary:hover::after,
.button.ghost:hover::after,
.button.primary:focus-visible::after,
.button.secondary:focus-visible::after,
.button.ghost:focus-visible::after {
  transform: translateX(5px);
}
.button:active {
  transform: translateY(0) scale(.98);
  transition-duration: .08s;
}

/* ----- KEN BURNS SLOW ZOOM (hero only) ----- */
@keyframes kenBurns {
  0%   { background-size: 110% auto; }
  100% { background-size: 130% auto; }
}
.hero,
.subhero {
  animation: kenBurns 28s ease-in-out infinite alternate;
}

/* ----- ANIMATED GRADIENT BORDER ON FEATURED PRICING CARD ----- */
.pricing-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(120deg, var(--clay), var(--brass), var(--clay), var(--brass)) border-box;
  background-size:
    100% 100%,
    300% 100%;
  background-position:
    0 0,
    0% 50%;
  animation: borderSpin 7s linear infinite;
}
@keyframes borderSpin {
  0%   { background-position: 0 0, 0% 50%; }
  100% { background-position: 0 0, 300% 50%; }
}
/* Keep the box-shadow halo in sync (use the moving gradient too) */
.pricing-card.featured {
  box-shadow:
    0 0 0 1px transparent,
    0 16px 40px rgba(0,0,0,.12);
}

/* ----- DECORATIVE CLAY LINE ON EYEBROWS ----- */
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before,
.section-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .65;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 800ms cubic-bezier(.7,0,.3,1) 250ms;
}
.reveal .eyebrow::before,
.reveal .section-kicker::before {
  transform: scaleX(0);
}
.reveal.visible .eyebrow::before,
.reveal.visible .section-kicker::before {
  transform: scaleX(1);
}

/* =============================================================
   PAGE LOADER
   - Full-screen overlay with logo + name + progress bar
   - Fades out after page load (min 800ms, max 3000ms)
   - Skipped on subsequent navigations (sessionStorage)
   - Respects prefers-reduced-motion
   ============================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 550ms ease, visibility 0ms linear 0ms;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 550ms ease, visibility 0ms linear 550ms;
}
.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.page-loader-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--stone);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  animation: loaderPulse 1.6s ease-in-out infinite;
}
.page-loader-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-weight: 400;
  opacity: 0.85;
}
.page-loader-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: -12px;
}
.page-loader-bar {
  width: 140px;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.page-loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: var(--clay);
  border-radius: 999px;
  animation: loaderBar 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
@keyframes loaderBar {
  0%   { left: -40%; }
  100% { left: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader-logo,
  .page-loader-bar-fill {
    animation: none;
  }
  .page-loader.hidden {
    transition: none;
  }
}

/* ===== STICKY MOBILE BOOK NOW CTA ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 14;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--paper) 70%, rgba(248, 243, 234, 0));
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 350ms ease, transform 350ms ease;
}
[data-theme="dark"] .sticky-cta {
  background: linear-gradient(to top, var(--paper) 70%, rgba(10, 8, 7, 0));
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
}
.sticky-cta-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.sticky-cta-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.85;
}
.sticky-cta-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta-price small {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 250, 243, 0.7);
  margin-left: 6px;
  letter-spacing: 0.02em;
}
.sticky-cta-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--brass);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  min-height: 40px;
  transition: background-color 200ms ease, transform 200ms ease;
}
.sticky-cta-button:hover,
.sticky-cta-button:focus-visible {
  background: #d4a766;
  transform: translateY(-1px);
  outline: none;
}
.sticky-cta-button:focus-visible {
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--clay);
}
.sticky-cta-button:active {
  transform: scale(0.97);
}
.sticky-cta-button i {
  font-size: 0.75rem;
  transition: transform 200ms ease;
}
.sticky-cta-button:hover i {
  transform: translateX(2px);
}
@media (max-width: 860px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
  body.no-scroll {
    padding-bottom: 0;
  }
  body.lightbox-open {
    padding-bottom: 0;
  }
}
@media (max-width: 420px) {
  .sticky-cta {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }
  .sticky-cta-inner {
    padding: 8px 10px 8px 14px;
    gap: 10px;
  }
  .sticky-cta-eyebrow {
    font-size: 0.58rem;
  }
  .sticky-cta-price {
    font-size: 0.95rem;
  }
  .sticky-cta-button {
    padding: 9px 14px;
    font-size: 0.8rem;
    min-height: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta,
  .sticky-cta-inner,
  .sticky-cta-button,
  .sticky-cta-button i {
    transition: none;
  }
  .sticky-cta-button:hover,
  .sticky-cta-button:focus-visible {
    transform: none;
  }
}

