/* =========================================================
   Your Mountain Vacation - Site Stylesheet
   Soft, warm, premium mountain aesthetic
   ========================================================= */

:root {
  --forest: #2c4a3b;
  --forest-dark: #1e332a;
  --forest-soft: #3a5c4a;
  --wood: #a97c50;
  --wood-light: #c9a876;
  --wood-pale: #ecdcc2;
  --cream: #faf7f2;
  --cream-dark: #f3ede2;
  --charcoal: #2b2b28;
  --gray: #5b5b54;
  --stone: #8a8a80;
  --rust: #b5592f;
  --rust-dark: #9c4a26;
  --gold: #c99a3a;
  /* --gold is tuned for icons and focus rings on dark panels; it only hits 2.6:1
     on white, so star glyphs and other gold TEXT on light backgrounds use this. */
  --gold-text: #a2740f;
  --white: #ffffff;
  --border: #eae3d5;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px rgba(44, 74, 59, 0.05), 0 4px 14px rgba(44, 74, 59, 0.07);
  --shadow-md: 0 2px 6px rgba(44, 74, 59, 0.06), 0 14px 36px rgba(44, 74, 59, 0.12);
  --shadow-lg: 0 4px 12px rgba(30, 51, 42, 0.08), 0 26px 64px rgba(30, 51, 42, 0.18);
  --shadow-glow: 0 10px 36px rgba(181, 89, 47, 0.28);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Body copy sits at 16px on phones and 17px from tablet up. Only elements
   without an explicit font-size inherit this, so component scales are safe. */
@media (min-width: 768px) {
  body { font-size: 1.0625rem; }
}

a, button { -webkit-tap-highlight-color: transparent; }

/* Skip link (keyboard / screen-reader accessibility) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 300;
  background: var(--forest-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.skip-link:focus { left: 0; }

/* Mobile-only nav helpers */
.nav-mobile-only { display: none; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--wood-pale); color: var(--forest-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { color: var(--charcoal); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--rust);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(160deg, #c4653a 0%, var(--rust) 55%, var(--rust-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(181, 89, 47, 0.22);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); }

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--forest-dark); }

.btn-forest {
  background: linear-gradient(160deg, var(--forest-soft) 0%, var(--forest) 60%, var(--forest-dark) 100%);
  color: var(--white);
  box-shadow: 0 5px 16px rgba(30, 51, 42, 0.20);
}
.btn-forest:hover { box-shadow: 0 10px 28px rgba(30, 51, 42, 0.30); }

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(234, 227, 213, 0.7);
  box-shadow: 0 4px 18px rgba(44, 74, 59, 0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(24px, env(safe-area-inset-right)) 16px max(24px, env(safe-area-inset-left));
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest-dark);
  letter-spacing: 0.01em;
}
.logo span { color: var(--rust); }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a,
.nav-drop-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--charcoal);
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { color: var(--rust-dark); background: rgba(201, 168, 118, 0.14); }
.nav-links a.active { color: #8a3f20; font-weight: 600; background: rgba(201, 168, 118, 0.18); }

/* "Cabins" dropdown */
.nav-drop { position: relative; }
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-drop-btn .caret { transition: transform 0.2s ease; margin-top: 1px; }
.nav-drop-btn:hover,
.nav-drop:hover .nav-drop-btn,
.nav-drop:focus-within .nav-drop-btn { color: var(--rust); background: rgba(201, 168, 118, 0.14); }
.nav-drop-btn.active { color: #8a3f20; font-weight: 600; background: rgba(201, 168, 118, 0.18); }
.nav-drop:hover .nav-drop-btn .caret,
.nav-drop.open .nav-drop-btn .caret { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 232px;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 120;
}
/* transparent bridge so hover doesn't drop in the gap */
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav-drop-menu a:hover { background: rgba(201, 168, 118, 0.16); color: var(--rust); }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  min-width: 48px;
  min-height: 48px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest-dark);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  min-height: 86svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--forest-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(24, 40, 33, 0.80) 0%, rgba(24, 40, 33, 0.55) 45%, rgba(24, 40, 33, 0.25) 78%, rgba(24, 40, 33, 0.38) 100%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0) 0%, rgba(250, 247, 242, 0.55) 60%, var(--cream) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 100px 24px 140px; max-width: var(--max-width); margin: 0 auto; }
.hero .eyebrow { color: var(--wood-light); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45); }
.hero h1 { color: var(--white); margin: 14px 0 18px; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.40); }
.hero p.lead { font-size: 1.15rem; max-width: 580px; color: #f0ece2; margin-bottom: 32px; line-height: 1.75; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: inline-flex;
  gap: 44px;
  margin-top: 52px;
  flex-wrap: wrap;
  padding: 20px 34px;
  background: rgba(24, 40, 33, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-stat .num { font-family: var(--font-heading); font-size: 2rem; color: var(--white); }
.hero-stat .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.09em; color: #d8d2c4; }

/* Page hero (smaller, for interior pages) */
.page-hero {
  position: relative;
  background: var(--forest-dark);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 130px 24px 90px;
  text-align: left;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(24, 40, 33, 0.78) 0%, rgba(24, 40, 33, 0.55) 50%, rgba(24, 40, 33, 0.32) 100%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0) 0%, var(--cream) 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-top: 10px; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.40); }
.page-hero .eyebrow { color: var(--wood-light); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45); }
.breadcrumb { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; }
.breadcrumb a { color: var(--rust-dark); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--rust); }
/* The pale text + dark glow only works over a photo. Keep it scoped to .page-hero:
   rental-agreement.html and travel-insurance.html render a breadcrumb on a white
   section, where that treatment was unreadable and looked out of focus. */
.page-hero .breadcrumb { color: #e4dfd2; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45); }
.page-hero .breadcrumb a { color: #e4dfd2; }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* ---------- All Guest Reviews (generated block on reviews.html) ----------
   254 real reviews pulled from Hostaway by import-reviews.py. Every card ships
   in the HTML so the page works with JavaScript off; the filters and the
   show-more button are progressive enhancement added by js/main.js. */
.gr-filters { max-width: 900px; margin: 0 auto 34px; text-align: center; }
.gr-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}
.gr-chip {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.gr-chip span {
  font-weight: 400;
  color: var(--gray);
  margin-left: 5px;
  font-size: 0.82rem;
}
.gr-chip:hover { border-color: var(--wood-light); background: var(--cream); }
.gr-chip.is-on {
  background: linear-gradient(160deg, var(--forest-soft) 0%, var(--forest) 70%);
  border-color: transparent;
  color: var(--white);
}
.gr-chip.is-on span { color: rgba(255, 255, 255, 0.75); }
.gr-count { margin-top: 4px; font-size: 0.86rem; color: var(--gray); min-height: 1.2em; }

.gr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 760px) { .gr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gr-grid { grid-template-columns: repeat(3, 1fr); } }

.gr-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(234, 227, 213, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px 22px 18px;
}
.gr-card[hidden] { display: none; }
.gr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.gr-card .stars { color: var(--gold-text); font-size: 0.95rem; letter-spacing: 2px; }
.gr-src {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
  color: var(--forest-dark);
  background: rgba(44, 74, 59, 0.08);
  border: 1px solid rgba(44, 74, 59, 0.18);
}
.gr-src--direct {
  color: var(--rust-dark);
  background: rgba(181, 89, 47, 0.08);
  border-color: rgba(181, 89, 47, 0.24);
}
.gr-title {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--forest-dark);
}
.gr-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 14px;
}
.gr-text p { margin-bottom: 10px; }
.gr-who {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(234, 227, 213, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-dark);
}
.gr-who span { display: block; font-weight: 400; color: var(--gray); font-size: 0.82rem; }
.gr-more-wrap { text-align: center; margin-top: 34px; }
.gr-foot {
  margin-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--stone);
}
.gr-empty { text-align: center; color: var(--gray); padding: 30px 0; }

/* ---------- Review sources ----------
   Highlighted quotes are hand-picked, so guests need an obvious route to the
   complete, unfiltered set on every platform. One card per cabin, three sources
   inside, with direct booking led first because it is ours. */
.rev-src-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 901px) { .rev-src-grid { grid-template-columns: repeat(3, 1fr); } }

.rev-src {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(234, 227, 213, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px 22px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.rev-src:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rev-src > h3 { font-size: 1.24rem; margin-bottom: 3px; }
.rev-src > h3 a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--wood-light);
  text-underline-offset: 4px;
}
.rev-src > h3 a:hover { color: var(--rust); text-decoration-color: var(--rust); }
.rev-src .rev-src-loc { font-size: 0.82rem; color: var(--gray); margin-bottom: 16px; }
.rev-src-list { list-style: none; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.rev-src-list li { margin: 0; }

.rev-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.rev-link:hover { border-color: var(--wood-light); background: var(--white); transform: translateX(2px); }
.rev-link .rev-mark {
  flex: 0 0 auto;
  margin-top: 1px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  background: linear-gradient(150deg, var(--forest-soft) 0%, var(--forest) 70%);
}
.rev-link .rev-body { min-width: 0; flex: 1 1 auto; }
.rev-link .rev-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest-dark);
  line-height: 1.3;
}
.rev-link .rev-meta { display: block; font-size: 0.8rem; color: var(--gray); margin-top: 1px; }
.rev-link .rev-meta b { color: var(--gold-text); font-weight: 700; }
.rev-link .rev-go {
  flex: 0 0 auto;
  color: var(--wood);
  font-size: 1.05rem;
  line-height: 1.6;
  transition: transform 0.2s ease, color 0.2s ease;
}
/* Platform standing: rating label, host status, ranking percentile. Small pills
   so three facts read at a glance without crowding the row. */
.rev-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}
.rev-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest-dark);
  background: rgba(44, 74, 59, 0.07);
  border: 1px solid rgba(44, 74, 59, 0.16);
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
  line-height: 1.35;
}
.rev-badge--star {
  color: #8a6410;
  background: rgba(201, 154, 58, 0.14);
  border-color: rgba(201, 154, 58, 0.4);
}
.rev-badge--top {
  color: var(--rust-dark);
  background: rgba(181, 89, 47, 0.09);
  border-color: rgba(181, 89, 47, 0.26);
}
.rev-src-updated {
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--stone);
}
.rev-link:hover .rev-go { color: var(--rust); transform: translateX(3px); }

/* Direct booking is ours, so it leads and carries the brand colour. */
.rev-link--direct { border-color: rgba(181, 89, 47, 0.3); background: rgba(181, 89, 47, 0.045); }
.rev-link--direct:hover { border-color: var(--rust); background: rgba(181, 89, 47, 0.09); }
.rev-link--direct .rev-mark {
  background: linear-gradient(150deg, #c4653a 0%, var(--rust) 55%, var(--rust-dark) 100%);
}
.rev-src-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(234, 227, 213, 0.9);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--gray);
}
/* Compact variant for the cabin-page sidebar card */
.rev-src--inline { padding: 0; border: none; box-shadow: none; background: none; }
.rev-src--inline:hover { transform: none; box-shadow: none; }
.rev-src--inline > h3 { display: none; }

/* ---------- Host note: a personal aside from Julie & Mark ----------
   Fraunces italic (the `ital` axis is requested in every page head) at a slightly
   larger size, with a warm rule down the left and an optional signature. Meant to
   read like a handwritten note rather than body copy. */
.host-note {
  position: relative;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.75;
  color: #43443c;
  padding: 4px 0 4px 30px;
  border-left: 3px solid var(--wood-light);
  max-width: 62ch;
}
.host-note::before {
  content: "\201C";
  position: absolute;
  left: 12px; top: 10px;
  font-size: 3.4rem;
  line-height: 0;
  color: var(--wood-pale);
  pointer-events: none;
}
.host-note a { font-style: normal; font-weight: 600; }
.host-note--center { margin-left: auto; margin-right: auto; }
.host-sign {
  display: block;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--wood);
  letter-spacing: 0.01em;
}
.host-sign::before { content: "\2014\00a0"; }
@media (max-width: 640px) {
  .host-note { font-size: 1.08rem; padding-left: 22px; }
  .host-note::before { left: 8px; font-size: 2.8rem; }
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 60px 0; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head p { color: var(--gray); margin-top: 14px; font-size: 1.05rem; line-height: 1.75; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Soft floating bands instead of hard-edged color blocks */
.bg-forest {
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(76, 110, 92, 0.55) 0%, rgba(30, 51, 42, 0) 55%),
    linear-gradient(165deg, #274235 0%, var(--forest-dark) 70%);
  color: var(--white);
  border-radius: var(--radius-lg);
  max-width: min(calc(100% - 32px), 1400px);
  margin: 28px auto;
  box-shadow: var(--shadow-lg);
}
.bg-forest h2, .bg-forest h3 { color: var(--white); }
.bg-forest p { color: #d8d2c4; }

.bg-wood {
  background:
    radial-gradient(100% 130% at 85% 0%, rgba(255, 255, 255, 0.65) 0%, rgba(243, 234, 218, 0) 55%),
    linear-gradient(180deg, #f6efe1 0%, #f1e7d4 100%);
  border-radius: var(--radius-lg);
  max-width: min(calc(100% - 32px), 1400px);
  margin: 28px auto;
}

.bg-white {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.bg-white + .bg-white { background: var(--white); }

/* ---------- Property Cards ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(234, 227, 213, 0.6);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.property-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.property-card:hover img { transform: scale(1.05); }
.property-card .card-body { padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.property-card .loc { font-size: 0.85rem; color: var(--gray); }
.property-card .meta { display: flex; gap: 8px; font-size: 0.82rem; color: var(--forest); margin: 4px 0 8px; flex-wrap: wrap; }
.property-card .meta span {
  background: var(--cream-dark);
  border-radius: 999px;
  padding: 4px 12px;
}
.rating-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--forest-dark); flex-wrap: wrap; }
.rating-badge .stars { color: var(--gold-text); }
.property-card .card-cta { margin-top: auto; padding-top: 6px; }

/* ---------- Feature / Amenity Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-grid--six { grid-template-columns: repeat(3, 1fr); }
/* 3-up variant. Declared without a media query so the responsive rules below
   (2-col at 900px, 1-col at 680px) still win by source order. Never set
   grid-template-columns inline on a .feature-grid: inline styles beat the
   media queries and cause horizontal overflow on phones. */
.feature-grid--three { grid-template-columns: repeat(3, 1fr); }
.feature {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(234, 227, 213, 0.6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bg-wood .feature { background: rgba(255, 255, 255, 0.72); }
.avail-grid { align-items: start; }
.avail-card { text-align: left; }
.avail-card h3 { font-size: 1.15rem; }
.avail-facts { margin: 6px 0 14px; color: var(--gray); font-size: 0.9rem; }
.avail-loc { display: flex; align-items: center; gap: 6px; color: var(--gray); font-size: 0.92rem; margin: 8px 0 12px; }
.avail-loc svg { width: 15px; height: 15px; color: var(--rust); flex: 0 0 auto; }
.avail-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 4px; padding: 0; }
.avail-stats li { display: flex; align-items: center; gap: 6px; background: var(--cream-dark); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; font-size: 0.85rem; font-weight: 600; color: var(--forest-dark); }
.avail-stats li svg { width: 15px; height: 15px; color: var(--wood); flex: 0 0 auto; }
.weather-panel .wp-month { width: 100%; box-sizing: border-box; padding: 11px 14px; border: 1px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 0.95rem; color: var(--charcoal); background: var(--white); cursor: pointer; }
.weather-panel .wp-result { margin-top: 16px; }
.weather-panel .wp-head { display: flex; align-items: center; gap: 12px; }
.weather-panel .wp-icon svg { width: 38px; height: 38px; color: var(--gold); display: block; }
.weather-panel .wp-temps { font-size: 1.02rem; color: var(--forest-dark); }
.weather-panel .wp-temps b { font-size: 1.3rem; font-weight: 700; }
.weather-panel .wp-cond { margin: 10px 0 0; color: var(--charcoal); font-size: 0.92rem; }
.weather-panel .wp-note { margin: 8px 0 0; color: var(--gray); font-size: 0.78rem; }
.weather-panel--inline { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); text-align: left; }
.weather-panel--inline .wp-title { font-weight: 700; color: var(--forest-dark); margin: 0 0 10px; font-size: 0.95rem; }
.cal-frame { width: 100%; border: 0; min-height: 470px; display: block; }
.avail-link { display: inline-block; margin-top: 12px; color: var(--rust); font-weight: 600; text-decoration: none; }
.avail-link:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .avail-card { padding-left: 8px; padding-right: 8px; }
  .cal-frame { min-height: 450px; }
  .avail-section.bg-wood { margin-left: 0; margin-right: 0; max-width: 100%; border-radius: 0; }
  .avail-section .container { padding-left: 8px; padding-right: 8px; }
}
.feature .icon {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(150deg, #e8d3ac 0%, var(--wood-light) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 12px rgba(169, 124, 80, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-dark);
}
.feature .icon svg { width: 28px; height: 28px; }
.feature h4 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--gray); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 14px;
}
.amenity-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  padding: 10px 16px;
  background: var(--cream);
  border: 1px solid rgba(234, 227, 213, 0.8);
  border-radius: var(--radius-sm);
}
.amenity-grid div::before {
  content: "✓";
  color: var(--rust);
  font-weight: 700;
  flex-shrink: 0;
}
.amenity-cat {
  font-family: "Work Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--rust);
  margin: 28px 0 12px;
}
.amenity-cat:first-of-type { margin-top: 20px; }
.amenities-full .amenity-cat:first-of-type { margin-top: 0; }
@media (min-width: 901px) {
  .amenities-full .amenity-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.gallery a {
  grid-column: span 1; grid-row: span 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery a:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery a:first-child { grid-column: span 2; grid-row: span 2; border-radius: var(--radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery a:hover img { transform: scale(1.06); }

/* ---------- Carousel (auto-scrolling, arrow-assisted) ---------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}
.carousel-item { flex: 0 0 min(360px, 82vw); display: flex; }
.carousel-item > * { width: 100%; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0.75;
}
.carousel-arrow:hover { background: var(--white); box-shadow: var(--shadow-md); opacity: 1; }
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }

.attraction-card {
  background: var(--white);
  border: 1px solid rgba(234, 227, 213, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.attraction-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.attraction-img.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--wood-pale) 0%, var(--cream-dark) 100%);
  color: var(--wood);
}
.attraction-img.ph svg { width: 44px; height: 44px; }
.attraction-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.feature h4 a:hover { color: var(--rust); }
.attraction-card .dist {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rust);
}
.attraction-card h4 { font-size: 1.05rem; }
.attraction-card p { font-size: 0.9rem; color: var(--gray); flex: 1; }
.attraction-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}
.attraction-card a:hover { color: var(--rust); }

/* Area guide section imagery */
.guide-img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .guide-img { aspect-ratio: 16 / 9; }
}

/* Photo tour */
.tour-cat { margin-bottom: 52px; }
.tour-cat:last-child { margin-bottom: 0; }
.tour-cat h3 {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 18px;
  padding: 8px 20px;
  background: var(--cream-dark);
  border-radius: 999px;
  font-size: 1.1rem;
}
.tour-cat .count { color: var(--gray); font-size: 0.82rem; font-weight: 400; margin-left: 10px; font-family: var(--font-body); }

.lightbox {
  position: fixed; inset: 0; background: rgba(20, 20, 18, 0.94);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 40px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox-figure {
  margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px;
  max-width: 90vw;
}
.lightbox img { max-width: 90vw; max-height: 78vh; border-radius: var(--radius-sm); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55); }
.lightbox-caption {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  justify-content: center; text-align: center;
  max-width: min(760px, 90vw);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem; line-height: 1.5;
}
.lightbox-count {
  flex-shrink: 0;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px; padding: 3px 11px;
}
@media (max-width: 680px) {
  .lightbox { padding: 20px; }
  .lightbox img { max-height: 68vh; }
  .lightbox-caption { font-size: 0.88rem; }
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: var(--white);
  font-size: 2rem; cursor: pointer; background: none; border: none;
  opacity: 0.85; transition: opacity 0.2s ease;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 1.8rem; width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- Info / Two Column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(234, 227, 213, 0.6);
}
.info-card h3 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--wood-pale); }
.booking-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

/* Responsive 16:9 video embed */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Click-to-play poster facade */
.video-lite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  display: block;
}
.video-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.video-lite:hover img { transform: scale(1.03); opacity: 0.92; }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45));
  transition: transform 0.2s ease;
}
.video-lite:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-play svg { display: block; width: 76px; height: auto; }

/* Cleaner contact card (About page) */
.contact-card .contact-card-sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin: -6px 0 20px;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list .ci {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(150deg, #e8d3ac 0%, var(--wood-light) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-dark);
}
.contact-list .ci svg { width: 19px; height: 19px; }
.contact-list li > span:last-child { display: flex; flex-direction: column; font-size: 0.98rem; line-height: 1.4; padding-top: 2px; }
.contact-list .ci-label {
  font-size: 0.76rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--gray); margin-bottom: 1px;
}
.contact-list a { color: var(--forest); word-break: break-word; }
.contact-list a:hover { color: var(--rust); }

/* Pre-booking terms callout */
.terms-note {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.terms-note strong { color: var(--forest-dark); }
.terms-note a { color: var(--rust-dark); font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
.terms-note a:hover { color: var(--rust); }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 0;
}
.trust-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(234, 227, 213, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.bg-forest .trust-item { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.14); }
.trust-item .num { font-family: var(--font-heading); font-size: 1.9rem; color: var(--forest-dark); }
.trust-item .label { font-size: 0.85rem; color: var(--gray); margin-top: 2px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem; /* 16px minimum prevents iOS Safari zoom-on-focus */
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--wood-light);
  box-shadow: 0 0 0 4px rgba(201, 168, 118, 0.18);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.hidden-field { position: absolute; left: -9999px; }

.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-detail .icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, #e8d3ac 0%, var(--wood-light) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 12px rgba(169, 124, 80, 0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-dark);
}
.contact-detail .icon svg { width: 22px; height: 22px; }
.contact-detail h4 { margin-bottom: 4px; }
.contact-detail p { color: var(--gray); font-size: 0.95rem; }
.contact-detail a {
  color: var(--rust-dark);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.contact-detail a:hover { color: var(--rust); text-decoration-thickness: 2px; }
/* Same problem in the compact .contact-list rows used on About and the cabin pages. */
.contact-list a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* Heading-sized links (attraction names, cabin names above a map or calendar) had
   no static affordance at all — they looked like plain headings. A quiet wood-tone
   underline marks them as clickable without turning every card title rust. */
.attraction-card h4 a,
.feature h4 a,
.map-grid h4 a,
.avail-card h3 a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--wood-light);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.attraction-card h4 a:hover,
.feature h4 a:hover,
.map-grid h4 a:hover,
.avail-card h3 a:hover { color: var(--rust); text-decoration-color: var(--rust); }
/* Outbound links get a small arrow so guests know they are leaving the site. */
.attraction-card h4 a[target="_blank"]::after,
.feature h4 a[target="_blank"]::after { content: "\00a0\2197"; font-size: 0.8em; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-grid.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.testimonial {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(234, 227, 213, 0.6);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 22px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--wood-pale);
  pointer-events: none;
}
.testimonial .stars { color: var(--gold-text); font-size: 1rem; letter-spacing: 3px; }
.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
}
.testimonial .who {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-dark);
}
.testimonial .who span { display: block; font-weight: 400; color: var(--gray); font-size: 0.82rem; }

/* Richer attribution row used on the homepage: initial badge, name/date, cabin chip.
   Opt-in via .who-rich so reviews.html keeps its simpler stacked attribution. */
.testimonial .who-rich {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(234, 227, 213, 0.9);
  border-left: none;
  padding-left: 0;
}
.testimonial .who-rich .who-avatar {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--wood-light) 0%, var(--wood) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(169, 124, 80, 0.28);
}
.testimonial .who-rich .who-meta { display: block; min-width: 0; flex: 1 1 auto; }
.testimonial .who-rich .who-meta strong { display: block; font-weight: 600; color: var(--forest-dark); font-size: 0.95rem; }
.testimonial .who-rich .who-meta span { display: block; font-weight: 400; color: var(--gray); font-size: 0.8rem; }
/* Chip is forest green, matching the "Read More Guest Reviews" button in this
   section. Terracotta is reserved for booking actions (Mark, July 25 2026). */
.testimonial .who-rich .who-cabin {
  flex: 0 0 auto;
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(44, 74, 59, 0.08);
  border: 1px solid rgba(44, 74, 59, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.testimonial .who-rich .who-cabin:hover { background: rgba(44, 74, 59, 0.16); color: var(--forest-dark); }
/* larger, quieter opening quote tucked behind the text (homepage cards only) */
.testimonial-grid--rich .testimonial { padding-top: 30px; }
.testimonial-grid--rich .testimonial::before {
  top: -8px; right: 18px;
  font-size: 6.5rem;
  color: rgba(236, 220, 194, 0.9);
}
.testimonial-grid--rich .testimonial::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--wood-light) 55%, var(--rust) 100%);
}
.testimonial-grid--rich .testimonial blockquote { position: relative; z-index: 1; }
@media (max-width: 420px) {
  .testimonial .who-rich { flex-wrap: wrap; }
  .testimonial .who-rich .who-cabin { order: 3; }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(110% 80% at 85% 100%, rgba(76, 110, 92, 0.4) 0%, rgba(30, 51, 42, 0) 55%),
    linear-gradient(180deg, #244134 0%, var(--forest-dark) 60%);
  color: #d8d2c4;
  padding: 72px 0 30px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid p { color: #d8d2c4; font-size: 0.92rem; }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.03em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a { transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--white); }
.note-inline { font-size: 0.82em; opacity: 0.78; white-space: nowrap; }

/* The Hostaway calendar widget renders at a fixed ~400px and cannot be shrunk, so the
   booking sidebar must never be narrower than that. Stacking .two-col at 1040px instead
   of 900px prevents the widget from pushing the page into horizontal scroll, which it did
   between roughly 901px and 1000px, including iPad landscape at 1024px. */
@media (max-width: 1040px) {
  .two-col { grid-template-columns: 1fr; }
}

/* "Nearby" distances read as two columns on wider screens: six short label/value
   pairs stacked in one column wasted vertical space and left the sidebar stranded.
   Stays single-column below 901px where the two-col layout has already collapsed. */
@media (min-width: 901px) {
  .nearby-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
  }
  /* min-width:0 is required on both the grid item and its flex child, or a long
     label like "Sink Mountain Boat Landing" sets a min-content floor that pushes
     the grid past the column and scrolls the whole page sideways around 1000px. */
  .nearby-list li {
    border-bottom: none;
    padding-bottom: 4px;
    min-width: 0;
  }
  .nearby-list li > span:last-child { min-width: 0; overflow-wrap: break-word; }
}

/* Booking-flow terms block: the two links lead, each with a one-line description.
   Mark's standing rule is that the Rental Agreement and Travel Insurance links stay
   visible in the booking flow, so keep them prominent here. */
.terms-item { margin: 0; }
.terms-item + .terms-item { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(181, 89, 47, 0.16); }
.terms-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--rust);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  margin-bottom: 3px;
}
.terms-link:hover { color: var(--rust-dark); }
.terms-desc { display: block; color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ---------- Accolade ribbon: slim credibility line between the nav and the
     hero, so the area's recognitions are visible without scrolling ---------- */
.accolade-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px max(24px, env(safe-area-inset-right)) 11px max(24px, env(safe-area-inset-left));
  background: linear-gradient(100deg, var(--forest-dark) 0%, #2f5946 50%, var(--forest-dark) 100%);
  color: #e8e3d8;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  border-bottom: 1px solid rgba(201, 154, 58, 0.35);
  transition: background 0.25s ease;
}
.accolade-ribbon:hover { background: linear-gradient(100deg, #244135 0%, #38664f 50%, #244135 100%); }
.accolade-ribbon b { color: var(--white); font-weight: 600; }
.accolade-ribbon .ar-badge {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  color: var(--gold);
}
.accolade-ribbon .ar-badge svg { width: 17px; height: 17px; }
.accolade-ribbon .ar-short { display: none; }
.accolade-ribbon .ar-go {
  flex: 0 0 auto;
  color: var(--wood-light);
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}
.accolade-ribbon:hover .ar-go { transform: translateX(3px); }
@media (max-width: 1100px) {
  .accolade-ribbon .ar-full { display: none; }
  .accolade-ribbon .ar-short { display: inline; }
}

/* ---------- Accolade bar: dark band below the hero that spells the same
     recognitions out with their sources ---------- */
.accolade-bar {
  background:
    radial-gradient(120% 140% at 12% 0%, rgba(201, 154, 58, 0.16) 0%, rgba(30, 51, 42, 0) 55%),
    linear-gradient(100deg, var(--forest-dark) 0%, #24473a 55%, var(--forest-dark) 100%);
  padding: 26px 0;
}
.accolade-bar .container {
  display: grid;
  grid-template-columns: 1.10fr 0.95fr 0.95fr;
  gap: 18px 26px;
  align-items: center;
}
.accolade-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.accolade-item:hover b { color: var(--wood-light); }
.accolade-item:hover .ac-ico { background: rgba(201, 154, 58, 0.3); }
.accolade-item .ac-ico {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(201, 154, 58, 0.16);
  border: 1px solid rgba(201, 154, 58, 0.42);
  color: var(--gold);
}
.accolade-item .ac-ico svg { width: 19px; height: 19px; }
.accolade-item b {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}
.accolade-item span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: #cfd8cf;
  margin-top: 2px;
}
.accolade-item .ac-arrow {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--wood-light);
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accolade-item:hover .ac-arrow { opacity: 1; transform: translateX(0); }
.accolade-bar .ac-eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-light);
}
@media (max-width: 1000px) {
  .accolade-bar .container { grid-template-columns: 1fr; gap: 16px; }
  .accolade-item .ac-arrow { opacity: 1; transform: none; }
  .accolade-bar .ac-eyebrow { text-align: left; }
}

/* ---------- FAQ nudge: button flanked by two arrows that drift toward it ---------- */
.faq-nudge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
}
.faq-nudge .faq-cta {
  flex: 1 1 auto;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 0.9rem;
}
.faq-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--rust);
  opacity: 0.5;
}
.faq-arrow svg { width: 19px; height: 19px; display: block; }
/* each arrow eases toward the button, then settles */
@keyframes faqDriftRight {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50%      { transform: translateX(5px); opacity: 1; }
}
@keyframes faqDriftLeft {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50%      { transform: translateX(-5px); opacity: 1; }
}
.faq-arrow.is-left  { animation: faqDriftRight 2.4s ease-in-out infinite; }
.faq-arrow.is-right { animation: faqDriftLeft  2.4s ease-in-out infinite; }
/* pause the motion while the guest is actually interacting with the button */
.faq-nudge:hover .faq-arrow,
.faq-nudge:focus-within .faq-arrow { animation-play-state: paused; opacity: 0.9; }
@media (prefers-reduced-motion: reduce) {
  .faq-arrow.is-left, .faq-arrow.is-right { animation: none; opacity: 0.65; }
}

/* ---------- "Where You'll Be" approximate-area map ---------- */
.map-lite {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(181, 89, 47, 0.10) 0%, rgba(181, 89, 47, 0) 46%),
    linear-gradient(150deg, #eef2ea 0%, #e3ebe1 45%, #dfe7dd 100%);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.map-lite:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
/* faint contour-style lines so the placeholder reads as a map, not a blank box */
.map-lite::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(44, 74, 59, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 74, 59, 0.055) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
}
.map-lite-ring {
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34%; aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(181, 89, 47, 0.55);
  background: rgba(181, 89, 47, 0.10);
}
.map-lite-cta {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600;
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.map-lite:hover .map-lite-cta { background: var(--white); box-shadow: var(--shadow-md); }
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: block;
}
.map-links { margin-top: 12px; font-size: 0.88rem; }
.map-links a { color: var(--rust); text-decoration: underline; }
.map-links a:hover { color: var(--rust-dark); }
.map-note { margin: 6px 0 14px; color: var(--gray); font-size: 0.9rem; }
/* three-up cabin maps on the Area Guide */
.map-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 901px) { .map-grid { grid-template-columns: repeat(3, 1fr); } }
.map-grid h4 { font-size: 1.02rem; margin-bottom: 4px; }
.map-grid .map-note { font-size: 0.85rem; margin-bottom: 12px; }
/* The three blurbs are written to run the same number of lines, but a viewport
   width that wraps one of them differently would knock the maps out of line.
   Making each cell a flex column and pushing the map down with margin-top:auto
   keeps the three maps aligned regardless of how the text wraps. */
.map-grid > div { display: flex; flex-direction: column; }
.map-grid .map-note { margin-top: 0; }
.map-grid .map-lite { margin-top: auto; }

/* "Good to Know" house-rules list on the property pages */
.rules-list { list-style: none; margin-top: 16px; }
.rules-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 13px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}
.rules-list li:last-child { margin-bottom: 0; }
.rules-list li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wood-light);
}
.rules-list strong { color: var(--charcoal); font-weight: 600; }

/* FAQ group headings (contact page) */
.faq-group {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rust);
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(181, 89, 47, 0.22);
}
.faq-group:first-of-type { margin-top: 8px; }
.faq-grid { gap: 32px; align-items: start; }
@media (min-width: 901px) { .faq-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- FAQ search (revealed by JS; hidden when JS is unavailable) ---------- */
.faq-search { max-width: 620px; margin: 0 auto 10px; text-align: center; }
.faq-search-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rust);
  margin-bottom: 10px;
}
.faq-search-wrap { position: relative; display: flex; align-items: center; }
.faq-search-icon {
  position: absolute; left: 18px; width: 19px; height: 19px;
  color: var(--gray); pointer-events: none;
}
.faq-search input[type="search"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  padding: 15px 46px 15px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.faq-search input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
.faq-search input[type="search"]::placeholder { color: #9a978c; }
.faq-search input[type="search"]:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(181, 89, 47, 0.16), var(--shadow-sm);
}
.faq-search-clear {
  position: absolute; right: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1;
  color: var(--gray);
  background: none; border: none; border-radius: 50%;
  cursor: pointer;
}
.faq-search-clear:hover { background: var(--cream-dark); color: var(--charcoal); }
.faq-search-status { margin-top: 10px; font-size: 0.86rem; color: var(--gray); min-height: 1.2em; }
.faq-search-empty { margin-top: 4px; font-size: 0.92rem; color: var(--charcoal); }
.faq-chip {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--rust);
  background: rgba(181, 89, 47, 0.09);
  border: 1px solid rgba(181, 89, 47, 0.2);
  border-radius: 999px;
  padding: 2px 11px;
  margin: 0 2px;
  cursor: pointer;
}
.faq-chip:hover { background: rgba(181, 89, 47, 0.18); }
/* Rental-agreement search: reuses the FAQ search chrome, sits in a light card so
   it reads as a tool rather than part of the contract text. */
.ra-search {
  max-width: 100%;
  text-align: left;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px 14px;
  margin: 0 0 30px;
}
.ra-search .faq-search-status { min-height: 0; }
.ra-search .faq-search-status:empty { display: none; }
/* These wrappers are built at runtime as <section> elements, which means the
   global `section { padding: 96px 0 }` rule hit all 35 of them and blew the
   agreement's spacing apart (338px between subsections). Reset it explicitly —
   .ra-sec is a document subsection, not a page band. */
.ra-sec {
  padding: 0;
  margin: 0;
  scroll-margin-top: 90px;
}
.ra-sec.ra-first > h3 { margin-top: 6px; }
.ra-notice[hidden] { display: none; }
.ra-sec[hidden] { display: none; }
mark.ra-hit {
  background: rgba(201, 154, 58, 0.32);
  color: inherit;
  border-radius: 3px;
  padding: 0 2px;
}

.faq-item mark {
  background: rgba(201, 154, 58, 0.32);
  color: inherit;
  border-radius: 3px;
  padding: 0 1px;
}
@media (max-width: 680px) {
  .faq-search input[type="search"] { font-size: 16px; }
}
.footer-logo { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: #a9a698;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .property-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid, .testimonial-grid.two { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .bg-forest, .bg-wood { border-radius: var(--radius); max-width: calc(100% - 20px); margin: 18px auto; }
}

/* Collapse nav to hamburger before the menu overflows */
/* Nav collapses to the hamburger here. Measured: with Home / Cabins▾ / Area Guide /
   About▾ / Contact plus the logo and CTA, the desktop nav needs ~1035px, so this
   breakpoint must stay comfortably above that or the links crowd the Check Availability
   button. Re-measure if you add another nav item. */
@media (max-width: 1080px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250, 247, 242, 0.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    flex-direction: column; padding: 20px 24px; gap: 10px;
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 60;
  }
  .nav.open .nav-links a { width: 100%; text-align: center; white-space: normal; }
  .nav.open .nav-links .nav-mobile-only {
    display: block;
    margin-top: 6px;
    background: var(--forest);
    color: var(--white);
  }
  .nav.open .nav-links .nav-mobile-only.call { background: var(--rust); }

  /* Cabins dropdown expands inline within the mobile menu */
  .nav.open .nav-drop { width: 100%; }
  .nav.open .nav-drop-btn { width: 100%; justify-content: center; }
  .nav.open .nav-drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 2px 0 0;
    margin-top: 2px;
    min-width: 0;
  }
  .nav.open .nav-drop-menu::before { display: none; }
  .nav.open .nav-drop-menu a { text-align: center; }
}

@media (max-width: 680px) {
  .property-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery a:first-child { grid-column: span 2; grid-row: span 1; }
  .hero { min-height: 92vh; min-height: 92svh; }
  .hero-inner { padding: 80px 24px 120px; }
  .hero p.lead { font-size: 1.02rem; line-height: 1.65; margin-bottom: 26px; }
  .hero-stats { gap: 22px 28px; padding: 16px 22px; }
  .hero-stat .num { font-size: 1.6rem; }
  .amenity-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .container { padding: 0 max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
  .lightbox { padding: 16px; }
  .lightbox img { max-width: 96vw; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .booking-buttons .btn { padding: 15px 22px; }
  .two-col { gap: 40px; }
}

/* ---- Hostaway calendar footer: emphasize the Book Direct & Save CTA ---- */
#hostaway-calendar-widget [class*="ButtonContainer"] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 8px;
}
#hostaway-calendar-widget [class*="ButtonContainer"] button:last-child {
  order: -1;
  width: 100%;
  padding: 22px 26px !important;
  font-size: 1.28rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #c9683c, #b5592f) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 16px 30px -10px rgba(181, 89, 47, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#hostaway-calendar-widget [class*="ButtonContainer"] button:last-child:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px -10px rgba(181, 89, 47, 0.62);
}
#hostaway-calendar-widget [class*="ButtonContainer"] button:first-child:not(:last-child) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--gray, #6b6b64) !important;
  font-size: 0.85rem !important;
  text-decoration: underline;
  cursor: pointer;
}

/* Secondary OTA (Airbnb / VRBO) buttons - kept smaller so Book Direct stays the star */
.ota-buttons { gap: 8px; margin-top: 16px; }
.ota-buttons .btn {
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  opacity: 0.92;
}
.ota-buttons .btn:hover { opacity: 1; }
