
/* ============================================================
   TOKENS & RESET
   ============================================================ */
:root {
  --night:    #0d1117;
  --deep:     #111820;
  --coal:     #161d26;
  --pine:     #1a3a2a;
  --moss:     #2d5a3d;
  --ember:    #c8622a;
  --ember-lt: #e07a44;
  --gold:     #d4a843;
  --cream:    #f0e8d8;
  --parchment:#e8dcc8;
  --muted:    #8a9ba8;
  --text:     #d8ccbc;
  --white:    #f5f0e8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--night);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ============================================================
   STAR CANVAS (background stars)
   ============================================================ */
#stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SKIP LINK (accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ember);
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: relative !important;
  top: unset !important;
  z-index: 100;
  overflow: visible;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px clamp(20px, 8vw, 124px);
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 13px;
  color: var(--ember-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  padding-right: clamp(0px, 4vw, 64px);
}

nav a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-radius: var(--r-sm);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

nav a:hover { color: var(--cream); background: rgba(255,255,255,0.06); }

nav a.active {
  color: var(--cream);
  border-bottom-color: var(--ember);
  background: none;
}

.nav-cta {
  background: rgba(200,98,42,0.12) !important;
  color: rgba(224,122,68,0.80) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px !important;
  border-radius: 6px;
  border: 1px solid rgba(200,98,42,0.25);
}
.nav-cta:hover { background: rgba(200,98,42,0.28) !important; color: rgba(224,122,68,1.0) !important; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

/* ============================================================
   SECONDARY PAGE NAV
   ============================================================ */
#navigation {
  position: relative !important;
  top: unset !important;
  z-index: 90;
  background: var(--coal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-scroll-wrap {
  position: relative;
}
.nav-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent 0%, var(--coal) 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.nav-scroll-wrap.at-end::after {
  opacity: 0;
}
.nav-scroll-chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 11px;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.3s;
  line-height: 1;
}
.nav-scroll-wrap.at-end .nav-scroll-chevron {
  opacity: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 8vw, 124px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav-inner::-webkit-scrollbar { display: none; }

.nav-link {
  display: block;
  padding: 14px 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--cream);
  border-bottom-color: var(--ember);
  background: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 24px 60px;
}

/* Subtle gradient horizon */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,58,42,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 85%, rgba(200,98,42,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Silhouette treeline */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%230d1117' d='M0,180 L0,120 L40,100 L60,130 L80,80 L110,110 L130,60 L155,95 L175,50 L200,85 L225,45 L250,80 L270,35 L295,70 L320,30 L345,65 L365,25 L390,60 L415,20 L440,55 L460,15 L485,50 L510,10 L535,45 L555,5 L580,40 L605,0 L630,35 L655,5 L680,40 L700,0 L725,35 L750,5 L775,40 L800,0 L825,38 L850,8 L875,42 L895,5 L920,42 L945,10 L970,48 L990,12 L1015,50 L1040,15 L1065,52 L1085,20 L1110,58 L1135,25 L1160,62 L1180,30 L1205,68 L1230,35 L1255,75 L1275,42 L1300,80 L1325,50 L1350,88 L1370,60 L1395,98 L1440,80 L1440,180 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--ember-lt);
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,98,42,0.90);
  color: rgba(255,255,255,0.90);
  padding: 15px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 4px 20px rgba(200,98,42,0.28);
}
.btn-primary:hover {
  background: var(--ember-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,98,42,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  padding: 15px 28px;
  border-radius: var(--r-md);
  font-size: 15px;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Distance pills */
.distance-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}

.dist-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.dist-pill strong { color: var(--cream); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0;
}

/* ============================================================
   EXPERIENCE HIGHLIGHTS
   ============================================================ */
#highlights {
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

#highlights h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.highlight h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 8px;
}

.highlight p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: transparent;
  padding: 20px 0 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(212,168,67,0.3));
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   CABIN GALLERY
   ============================================================ */
#gallery {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--night);
}

#gallery .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Woodland View spans full width on top */
.gallery-card:first-child {
  grid-column: 1 / -1;
}

.gallery-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--pine);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.gallery-card:first-child { min-height: 420px; }

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-card:hover img { transform: scale(1.04); }

/* Gradient overlay */
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.85) 0%, rgba(13,17,23,0.1) 55%, transparent 100%);
  pointer-events: none;
}

.gallery-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  width: 100%;
}

.gallery-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}
.gallery-card:first-child .gallery-card-body h3 { font-size: 30px; }

.gallery-card-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 480px;
}

.gallery-card-body .cabin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.gallery-card-body .cabin-link:hover { color: var(--cream); }

/* Placeholder when no real image */
.gallery-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.35;
}

@media (max-width: 680px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:first-child { grid-column: 1; }
  .features-grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .feature-item {
    flex: 0 0 calc(25% - 6px);
    scroll-snap-align: start;
    background: var(--coal);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-md);
    padding: 12px 8px;
  }
  .feature-icon { font-size: 22px; margin-bottom: 8px; }
  .feature-item h3 { font-size: 11px; margin-bottom: 4px; }
  .feature-item p { font-size: 10px; }
}

/* ============================================================
   CABINS
   ============================================================ */
.prop-table-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.prop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--coal);
}

.prop-table thead tr { background: var(--moss); }

.prop-table th {
  padding: 13px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.prop-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.prop-table tbody tr:hover td { background: rgba(45,90,61,0.18); transition: background 0.15s; }

.prop-table td {
  padding: 14px 16px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
  line-height: 1.5;
}
.prop-table tbody tr:last-child td { border-bottom: none; }

.prop-name { font-weight: 600; color: var(--cream); white-space: nowrap; }
.prop-name a { color: var(--cream); }
.prop-name a:hover { color: var(--gold); }

.cat-wrap { display: flex; flex-direction: column; gap: 4px; }

.category-badge {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.feature-badge {
  display: inline-block;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-tub  { background: rgba(200,98,42,0.18);  color: var(--ember-lt); border: 1px solid rgba(200,98,42,0.3); }
.badge-elec { background: rgba(100,160,220,0.15); color: #7fc0ee;         border: 1px solid rgba(100,160,220,0.25); }
.badge-game { background: rgba(45,90,61,0.3);     color: #7ecf8e;         border: 1px solid rgba(45,90,61,0.5); }

.guests-num   { font-size: 16px; font-weight: 700; color: var(--cream); }
.guests-label { font-size: 11px; color: var(--muted); }
.prop-desc      { color: var(--muted); max-width: 320px; font-size: 12.5px; }
.prop-amenities { color: var(--muted); font-size: 11.5px; max-width: 240px; }

.links-cell {
  vertical-align: top;
  min-width: 160px;
}
.links-cell a {
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}
.lnk-direct {
  display: block;
  background: rgba(200,98,42,0.85);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 14px;
  box-shadow: 0 3px 10px rgba(200,98,42,0.25);
  margin-bottom: 8px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.lnk-airbnb, .lnk-vrbo, .lnk-booking, .lnk-google, .lnk-hipcamp {
  display: inline-block;
  font-size: 10.5px;
  padding: 3px 10px;
  margin: 2px 2px 0 0;
  white-space: nowrap;
}
.lnk-airbnb  { background: rgba(255,90,95,0.2);   color: #ff8a8d; border: 1px solid rgba(255,90,95,0.3);   }
.lnk-vrbo    { background: rgba(61,109,181,0.2);  color: #7aaae8; border: 1px solid rgba(61,109,181,0.3);  }
.lnk-booking { background: rgba(0,53,128,0.25);   color: #7aaae8; border: 1px solid rgba(0,53,128,0.4);   }
.lnk-google  { background: rgba(58,125,117,0.2);  color: #7ecfc9; border: 1px solid rgba(58,125,117,0.3); }
.lnk-hipcamp { background: rgba(255,140,90,0.2);  color: #ffaa7a; border: 1px solid rgba(255,140,90,0.3); }

.lnk-direct:hover  { background: rgba(200,98,42,1.0); color: #fff; transform: translateY(-1px); }
.lnk-airbnb:hover  { background: rgba(255,90,95,0.4);   color: #fff; }
.lnk-vrbo:hover    { background: rgba(61,109,181,0.4);  color: #fff; }
.lnk-booking:hover { background: rgba(0,53,128,0.5);    color: #fff; }
.lnk-google:hover  { background: rgba(58,125,117,0.4);  color: #fff; }
.lnk-hipcamp:hover { background: rgba(255,140,90,0.4);  color: #fff; }

/* Mobile prop cards */
.mobile-cards { display: none; }
.prop-card {
  background: var(--coal);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  margin-bottom: 16px;
  overflow: hidden;
}
.prop-card-header { background: var(--moss); padding: 13px 18px; }
.prop-card-header .prop-name { color: var(--white); font-size: 14px; }
.prop-card-header .prop-name a { color: var(--white); }
.prop-card-header .prop-address { color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 3px; }
.prop-card-body { padding: 14px 18px; }
.prop-card-row { display: flex; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.prop-card-label { font-weight: 600; color: var(--gold); min-width: 76px; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; padding-top: 2px; }
.prop-card-value { color: var(--text); line-height: 1.5; flex: 1; }
.prop-card-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07); }
.prop-card-links a { flex: 1; min-width: 72px; text-align: center; border-radius: var(--r-sm); font-weight: 500; text-decoration: none; transition: all 0.15s; padding: 7px 8px; font-size: 11.5px; }
.prop-card-links .lnk-direct { flex-basis: 100%; font-size: 13px; font-weight: 700; padding: 13px; display: block; margin-bottom: 0 !important; box-shadow: none; }

@media (max-width: 900px) {
  .prop-table { display: none; }
  .mobile-cards { display: block; }
}


.cabins-section {
}

.cabins-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cabin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.cabin-card {
  background: var(--coal);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cabin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.cabin-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--pine);
}

.cabin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cabin-card:hover .cabin-img-wrap img {
  transform: scale(1.05);
}

/* Placeholder gradient when no image */
.cabin-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.cabin-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.cabin-body {
  padding: 24px;
}

.cabin-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
}

.cabin-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amenity-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
}

.cabin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.cabin-guests {
  font-size: 13px;
  color: var(--muted);
}

.cabin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ember-lt);
  transition: gap 0.2s var(--ease);
}
.cabin-link:hover { gap: 10px; }

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--night);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-distances {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--coal);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.location-item:hover { border-color: rgba(200,98,42,0.4); }

.location-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pine);
  border: 2px solid var(--moss);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.location-item-text strong {
  display: block;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 2px;
}
.location-item-text span {
  font-size: 13px;
  color: var(--muted);
}

.map-placeholder {
  aspect-ratio: 1;
  max-height: 480px;
  background: var(--coal);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-svg {
  width: 100%;
  height: 100%;
}

/* Location distance tables */
.loc-map-diagram {
  background: rgba(45,90,61,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
}
.loc-diagram-inner {
  position: relative;
  max-width: 480px;
  width: 100%;
  height: 260px;
}
.loc-dot-wrap { position: absolute; text-align: center; }
.loc-dot { width: 12px; height: 12px; border-radius: 50%; margin: 0 auto 4px; border: 2px solid rgba(255,255,255,0.5); box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.loc-dot-label { display: block; font-size: 11px; font-weight: 700; color: var(--cream); }
.loc-dot-sub   { display: block; font-size: 10px; color: var(--muted); }
.loc-center {
  position: absolute; top: 44%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  background: var(--coal);
  padding: 10px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.loc-center-dot { width: 16px; height: 16px; background: var(--ember); border-radius: 50%; margin: 0 auto 6px; border: 3px solid var(--coal); box-shadow: 0 0 10px rgba(200,98,42,0.5); }
.loc-center-name { display: block; font-size: 12px; font-weight: 800; color: var(--cream); letter-spacing: 0.05em; }
.loc-center-addr { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; }

.loc-dist-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,0.07); }
.loc-dist-col { padding: 20px 24px; }
.loc-dist-col:first-child { border-right: 1px solid rgba(255,255,255,0.07); }
.loc-dist-col h4 { font-size: 10px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.dist-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; }
.dist-row:last-child { border-bottom: none; }
.dist-name { color: var(--muted); }
.dist-name.highlight { color: var(--cream); font-weight: 600; }
.dist-miles { color: var(--muted); font-size: 12px; margin-left: 12px; white-space: nowrap; }
.dist-miles.highlight { color: var(--gold); font-weight: 700; }

/* ============================================================
   STARGAZING / DARK SKY CALLOUT
   ============================================================ */
.darksky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.darksky-visual {
  position: relative;
  aspect-ratio: 1;
  max-height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1a2a4a 0%, #0a0f1a 60%, #050810 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(100,140,200,0.15), inset 0 0 60px rgba(0,0,20,0.6);
}

.darksky-stars-inner {
  position: absolute;
  inset: 0;
}

.darksky-moon {
  font-size: 60px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(220,210,180,0.4));
  animation: moonFloat 6s ease-in-out infinite;
}

.darksky-section {
  padding: 60px 0;
}

@media (max-width: 680px) { .darksky-moon { font-size: 28px; } .darksky-visual { max-height: 120px; order: 1 !important; } .darksky-inner { grid-template-columns: 1fr; gap: 12px; } .darksky-inner > div { order: 2; } .darksky-inner > div.darksky-visual { order: 1 !important; } .darksky-section { padding: 12px 0 12px 0 !important; } .darksky-section > .wrap > div { padding: 10px 16px !important; } }

@keyframes moonFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--deep);
  padding: 32px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--coal);
  border-radius: var(--r-lg);
  padding: 22px 22px 18px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--ember);
  opacity: 0.22;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 12.5px;
  color: var(--cream);
  font-weight: 600;
}
.testimonial-location {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.testimonial-date {
  font-size: 11px;
  color: rgba(138,155,168,0.6);
  margin-top: 1px;
}

/* See More button */
.reviews-see-more-wrap {
  text-align: center;
  margin-top: 28px;
}
.reviews-see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 11px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.reviews-see-more-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.reviews-see-more-btn svg { transition: transform 0.25s var(--ease); }
.reviews-see-more-btn.open svg { transform: rotate(180deg); }

/* Modal overlay */
.reviews-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow-y: auto;
  padding: 40px 20px 60px;
}
.reviews-modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

.reviews-modal {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 900px;
  width: 100%;
  position: relative;
}
.reviews-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.reviews-modal-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
}
.reviews-modal-close {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.reviews-modal-close:hover { background: rgba(255,255,255,0.14); }

.reviews-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-modal { padding: 28px 20px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--pine) 0%, #0f2a1a 50%, var(--night) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(200,98,42,0.12) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
}


/* ============================================================
   RESPONSIVE — NAV / HEADER MOBILE
   ============================================================ */
@media (max-width: 680px) {
  nav { position: relative; }
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px;
    right: 0;
    left: 0;
    background: rgba(13,17,23,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 16px 16px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  nav ul.open li { width: 100%; }
  nav ul.open li a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 14px; border-bottom: none; }
  nav ul.open li a:hover { background: rgba(255,255,255,0.06); }
  nav ul.open .nav-cta { margin: 4px 0 2px; text-align: center; border-radius: 6px; }
  .hamburger { display: flex; }
  .header-inner { flex-wrap: nowrap; padding: 16px 20px; }
  .nav-inner { padding: 0 16px; }
}

/* ============================================================
   PAGE HERO & CABIN HERO — Mountain treeline + gradient fades
   Matches home page .hero styling on all subpages
   ============================================================ */

.page-hero,
.cabin-hero {
  min-height: 52vh !important;
  overflow: hidden;
}

/* Stronger gradient overlay — visible in daylight */
.page-hero::before,
.cabin-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Treeline BEHIND content — z-index 1, content at 2 */
.page-hero::after,
.cabin-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%230d1117' d='M0,180 L0,120 L40,100 L60,130 L80,80 L110,110 L130,60 L155,95 L175,50 L200,85 L225,45 L250,80 L270,35 L295,70 L320,30 L345,65 L365,25 L390,60 L415,20 L440,55 L460,15 L485,50 L510,10 L535,45 L555,5 L580,40 L605,0 L630,35 L655,5 L680,40 L700,0 L725,35 L750,5 L775,40 L800,0 L825,38 L850,8 L875,42 L895,5 L920,42 L945,10 L970,48 L990,12 L1015,50 L1040,15 L1065,52 L1085,20 L1110,58 L1135,25 L1160,62 L1180,30 L1205,68 L1230,35 L1255,75 L1275,42 L1300,80 L1325,50 L1350,88 L1370,60 L1395,98 L1440,80 L1440,180 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 680px) {
  .page-hero::after,
  .cabin-hero::after {
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 480 120' preserveAspectRatio='none'%3E%3Cpath fill='%230d1117' d='M0,120 L0,90 L40,75 L80,95 L120,55 L160,80 L200,40 L240,65 L280,25 L320,55 L360,15 L400,50 L440,30 L480,60 L480,120 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  }
}

/* Content always above both treeline and gradient */
.page-hero-content,
.page-hero-inner,
.cabin-hero-content {
  position: relative !important;
  z-index: 3 !important;
}

/* Stargazing page — no treeline */
.no-treeline::after {
  display: none !important;
}

/* FAQ hero inner layout */
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* ============================================================
   EXTERNAL LINK PILLS — universal across all pages
   Matches restaurant card style (rc-link--map / rc-link--web)
   ============================================================ */
a.link-map,
a.ext-link-map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
  vertical-align: middle;
  background: rgba(200,98,42,0.1);
  color: var(--ember-lt) !important;
  border: 1px solid rgba(200,98,42,0.2);
  text-decoration: none;
}
a.link-map:hover,
a.ext-link-map:hover {
  background: rgba(200,98,42,0.22);
}

a.link-web,
a.ext-link-web {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
  vertical-align: middle;
  background: rgba(255,255,255,0.05);
  color: var(--muted) !important;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
a.link-web:hover,
a.ext-link-web:hover {
  background: rgba(255,255,255,0.1);
  color: var(--cream) !important;
}
