/* ═══════════════════════════════════════════════════════════════════
   Hill Country Lakes Rentals — Global Stylesheet
   Covers: index-page, contact-page, activities-page (+ future pages)
   No preprocessor needed — plain CSS with custom properties.
   ═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --parchment:       #F2EBD8;
  --limestone:       #D8CEBC;
  --cedar-sage:      #6E7E60;   /* large/display text only on light bg */
  --caliche-gold:    #C8A870;   /* text on dark bg only */
  --bluebell:        #7A8EA0;   /* decorative bg/border only */
  --hill-shadow:     #3A3428;
  --deep-oak:        #2E3C28;
  --chalk-bluff:     #F8F4EC;
  --goldenrod:       #C09040;   /* large decorative text on dark only */
  --bluebell-pale:   #B8C8D4;   /* tint wash bg only */
  --cedar-sage-mid:  #5E6858;
  --limestone-rule:  #C8BCAC;
  --live-oak:        #4A5E40;
  --dusk-rose:       #9C7060;   /* large display text on light bg only */

  --serif: 'Lora', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  --nav-h:   72px;
  --max-w:   1240px;
  --gutter:  clamp(20px, 5vw, 80px);

  --focus-light: 3px solid #2E3C28;
  --focus-dark:  3px solid #C8A870;
  --focus-offset: 3px;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--parchment);
  color: var(--hill-shadow);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── SKIP LINK ──────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  background: var(--deep-oak);
  color: var(--parchment);
  padding: 14px 24px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 3px solid var(--caliche-gold);
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; outline: var(--focus-dark); outline-offset: 0; }

/* ── FOCUS STYLES ───────────────────────────────────────────────── */
:focus-visible {
  outline: var(--focus-light);
  outline-offset: var(--focus-offset);
  border-radius: 1px;
}
.hero :focus-visible,
.amenities-section :focus-visible,
.groups-section :focus-visible,
.cta-section :focus-visible,
.footer :focus-visible {
  outline: var(--focus-dark);
  outline-offset: var(--focus-offset);
}
.nav :focus-visible {
  outline: var(--focus-dark);
  outline-offset: 2px;
}

/* ── UTILITY ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

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

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--hill-shadow);
  opacity: 0.55;
}
.eyebrow-dark {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--caliche-gold);
}

a { color: inherit; text-decoration: none; }
.body-link {
  color: var(--deep-oak);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
}
.body-link:hover { opacity: 0.75; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  border: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--live-oak);
  color: var(--parchment);
  border: 2px solid var(--live-oak);
}
.btn-primary:hover { background: var(--deep-oak); border-color: var(--deep-oak); }
.btn-outline-gold {
  background: transparent;
  color: var(--caliche-gold);
  border: 2px solid var(--caliche-gold);
}
.btn-outline-gold:hover { background: var(--caliche-gold); color: var(--hill-shadow); }
.btn-outline-dark {
  background: transparent;
  color: var(--hill-shadow);
  border: 2px solid var(--hill-shadow);
}
.btn-outline-dark:hover { background: var(--hill-shadow); color: var(--parchment); }

/* ════════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--hill-shadow);
  border-bottom: 1px solid rgba(216,206,188,0.1);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(58,52,40,0.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--parchment);
  line-height: 1;
}
.nav-brand-sub {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--limestone);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--limestone);
  letter-spacing: 0.04em;
  transition: color 0.18s;
  position: relative;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--caliche-gold); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 12px; right: 12px;
  height: 1px;
  background: var(--caliche-gold);
}
.nav-cta-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--caliche-gold);
  border: 2px solid var(--caliche-gold);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta-link:hover { background: var(--caliche-gold); color: var(--hill-shadow); }
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--limestone);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--hill-shadow);
  border-top: 1px solid rgba(216,206,188,0.1);
  z-index: 99;
  padding: 8px 0 20px;
}
.nav-mobile-panel.open { display: block; }
.nav-mobile-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 var(--gutter);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--limestone);
  border-bottom: 1px solid rgba(216,206,188,0.06);
  transition: color 0.18s;
}
.nav-mobile-panel a:hover { color: var(--caliche-gold); }
.nav-mobile-panel .nav-mobile-cta {
  margin: 16px var(--gutter) 0;
  justify-content: center;
  border: 2px solid var(--caliche-gold);
  color: var(--caliche-gold);
  min-height: 52px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--hill-shadow);
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 60% 35%, rgba(74,94,64,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(122,142,160,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter) 56px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--limestone);
  margin-bottom: 28px;
}
.hero-h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.06;
  color: var(--parchment);
  margin-bottom: 28px;
}
.hero-h1 .accent { color: var(--caliche-gold); font-style: normal; }
.hero-body {
  font-size: 17px;
  color: var(--limestone);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-text-link {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--limestone);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.18s;
}
.hero-text-link:hover { color: var(--caliche-gold); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(216,206,188,0.1);
  position: relative;
  z-index: 2;
  list-style: none;
}
.hero-stat {
  padding: 28px var(--gutter);
  border-right: 1px solid rgba(216,206,188,0.07);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--limestone);
}

/* ════════════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--limestone);
  border-bottom: 1px solid var(--limestone-rule);
  padding: 16px var(--gutter);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  list-style: none;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-marker {
  width: 6px; height: 6px;
  background: var(--hill-shadow);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.trust-text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--hill-shadow);
}

/* ════════════════════════════════════════════════════════════════════
   SECTION SCAFFOLDING
   ════════════════════════════════════════════════════════════════════ */
.section-pad { padding: clamp(72px, 10vw, 128px) var(--gutter); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.18;
  color: var(--hill-shadow);
}
.section-headline em { font-style: italic; }
.section-headline .em-sage { color: var(--cedar-sage); font-style: italic; }
.section-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--cedar-sage-mid);
}
.divider-gold {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--caliche-gold);
  margin: 28px 0;
}

/* ════════════════════════════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════════════════════════════ */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.intro-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15;
  color: var(--hill-shadow);
}
.intro-headline em { font-style: italic; color: var(--cedar-sage); }
.address-block {
  font-size: 14px;
  line-height: 1.9;
  color: var(--cedar-sage-mid);
  padding: 24px 28px;
  border-left: 3px solid var(--live-oak);
  background: var(--chalk-bluff);
  margin-top: 24px;
}
.address-block a {
  color: var(--deep-oak);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
}
.address-block a:hover { opacity: 0.75; }

/* ════════════════════════════════════════════════════════════════════
   AMENITIES (dark)
   ════════════════════════════════════════════════════════════════════ */
.amenities-section {
  background: var(--deep-oak);
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,112,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.amenities-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.amenities-headline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.1;
  color: var(--parchment);
}
.amenities-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--limestone);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  list-style: none;
}
.amenity-card {
  background: rgba(242,235,216,0.04);
  border: 1px solid rgba(216,206,188,0.1);
  padding: 36px 32px;
  transition: background 0.25s ease;
}
.amenity-card:hover { background: rgba(242,235,216,0.08); }
.amenity-icon { font-size: 22px; margin-bottom: 14px; }
.amenity-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--parchment);
  margin-bottom: 10px;
}
.amenity-detail {
  font-size: 13px;
  line-height: 1.75;
  color: var(--limestone);
}
.amenities-notice {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 20px;
  align-items: start;
}
.amenities-notice-bar { background: var(--caliche-gold); height: 100%; min-height: 48px; }
.amenities-notice-text { font-size: 14px; line-height: 1.8; color: var(--limestone); padding: 4px 0; }
.amenities-notice-text strong { color: var(--caliche-gold); font-weight: 400; }

/* ════════════════════════════════════════════════════════════════════
   EXTENDED STAY
   ════════════════════════════════════════════════════════════════════ */
.stay-section { background: var(--parchment); }
.stay-header { text-align: center; margin-bottom: 64px; max-width: 640px; margin-left: auto; margin-right: auto; }
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}
.stay-card {
  border: 1px solid var(--limestone-rule);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stay-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(58,52,40,0.1); }
.stay-card-top { height: 200px; display: flex; align-items: flex-end; padding: 24px; }
.stay-top-1 { background: linear-gradient(155deg, var(--hill-shadow), #2a2620); }
.stay-top-2 { background: linear-gradient(155deg, var(--deep-oak), #1e2b1a); }
.stay-top-3 { background: linear-gradient(155deg, #4a3e2e, var(--hill-shadow)); }
.stay-card-tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--caliche-gold);
  padding: 6px 12px;
  border: 1px solid rgba(200,168,112,0.4);
}
.stay-card-body { padding: 28px; background: var(--chalk-bluff); }
.stay-card-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--hill-shadow);
  margin-bottom: 12px;
  line-height: 1.3;
}
.stay-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--cedar-sage-mid);
  margin-bottom: 24px;
}
.stay-card-list {
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid var(--limestone-rule);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.stay-card-list li {
  font-size: 12px;
  color: var(--cedar-sage-mid);
  letter-spacing: 0.04em;
  padding-left: 16px;
  position: relative;
}
.stay-card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--live-oak);
}

/* ════════════════════════════════════════════════════════════════════
   SNOWBIRD
   ════════════════════════════════════════════════════════════════════ */
.snowbird-section { background: var(--limestone); position: relative; overflow: hidden; }
.snowbird-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30%; height: 3px;
  background: var(--dusk-rose);
}
.snowbird-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.snowbird-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.15;
  color: var(--hill-shadow);
  margin-bottom: 24px;
}
.snowbird-headline em { font-style: italic; color: var(--dusk-rose); }
.snowbird-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--hill-shadow);
  opacity: 0.75;
  margin-bottom: 32px;
}
.snowbird-panel { background: var(--hill-shadow); padding: 36px; }
.snowbird-panel-head {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caliche-gold);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(216,206,188,0.1);
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(216,206,188,0.08);
}
.rate-row:last-of-type { border-bottom: none; }
.rate-label { font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--limestone); }
.rate-value { font-family: var(--serif); font-size: 20px; color: var(--parchment); }
.rate-note { margin-top: 20px; font-size: 12px; color: var(--caliche-gold); letter-spacing: 0.08em; }
.snowbird-facts { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.snowbird-fact {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(58,52,40,0.04);
  border-left: 3px solid var(--live-oak);
}
.snowbird-fact-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--hill-shadow);
  margin-bottom: 4px;
}
.snowbird-fact-text { font-size: 13px; line-height: 1.65; color: var(--hill-shadow); opacity: 0.7; }

/* ════════════════════════════════════════════════════════════════════
   PROPERTIES
   ════════════════════════════════════════════════════════════════════ */
.properties-section { background: var(--parchment); }
.properties-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.view-all-link {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--live-oak);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.18s;
}
.view-all-link:hover { color: var(--deep-oak); }
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  list-style: none;
}
.prop-card {
  border: 1px solid var(--limestone-rule);
  background: var(--chalk-bluff);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(58,52,40,0.1); }
.prop-img { height: 240px; display: flex; align-items: flex-end; padding: 20px; position: relative; }
.prop-img-1 { background: linear-gradient(155deg, #3A3428, #2E3C28); }
.prop-img-2 { background: linear-gradient(155deg, #2E3C28, #3A3428); }
.prop-img-3 { background: linear-gradient(155deg, #4a3e2e, #2E3C28); }
.prop-chip {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  background: rgba(58,52,40,0.6);
  padding: 5px 12px;
  backdrop-filter: blur(4px);
}
.prop-body { padding: 24px 24px 28px; }
.prop-name { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--hill-shadow); margin-bottom: 6px; }
.prop-meta { font-family: var(--sans); font-weight: 300; font-size: 12px; color: var(--cedar-sage-mid); letter-spacing: 0.05em; margin-bottom: 16px; }
.prop-desc { font-size: 13px; line-height: 1.75; color: var(--cedar-sage-mid); margin-bottom: 20px; }
.prop-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--limestone-rule);
}
.prop-rate { font-family: var(--serif); font-size: 22px; color: var(--hill-shadow); }
.prop-rate small { font-family: var(--sans); font-size: 12px; font-style: italic; color: var(--cedar-sage-mid); margin-left: 4px; }

/* ════════════════════════════════════════════════════════════════════
   GROUPS (dark)
   ════════════════════════════════════════════════════════════════════ */
.groups-section { background: var(--hill-shadow); position: relative; overflow: hidden; }
.groups-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,94,64,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.groups-header { max-width: 600px; margin-bottom: 52px; }
.groups-headline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  color: var(--parchment);
  margin: 16px 0 20px;
}
.groups-sub { font-size: 15px; line-height: 1.8; color: var(--limestone); }
.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  list-style: none;
}
.group-card {
  border: 1px solid rgba(216,206,188,0.09);
  padding: 36px 32px;
  background: rgba(242,235,216,0.03);
  transition: background 0.25s ease;
}
.group-card:hover { background: rgba(242,235,216,0.07); }
.group-card-tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caliche-gold);
  margin-bottom: 14px;
}
.group-card-title { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--parchment); margin-bottom: 12px; line-height: 1.25; }
.group-card-desc { font-size: 13px; line-height: 1.75; color: var(--limestone); margin-bottom: 24px; }
.group-spec-list {
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid rgba(216,206,188,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.group-spec-list li {
  font-size: 12px;
  color: var(--limestone);
  opacity: 0.6;
  padding-left: 16px;
  position: relative;
}
.group-spec-list li::before { content: '—'; position: absolute; left: 0; color: var(--caliche-gold); }
.groups-contact { font-size: 14px; color: var(--limestone); }
.groups-contact a { color: var(--caliche-gold); text-decoration: underline; text-underline-offset: 3px; font-weight: 400; }

/* ════════════════════════════════════════════════════════════════════
   LOCATION
   ════════════════════════════════════════════════════════════════════ */
.location-section { background: var(--chalk-bluff); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.location-facts { margin-top: 36px; border-top: 1px solid var(--limestone-rule); }
.location-fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--limestone-rule);
  font-size: 14px;
}
.fact-label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hill-shadow);
  opacity: 0.55;
}
.fact-value { color: var(--hill-shadow); font-weight: 300; }
.map-placeholder {
  background: var(--hill-shadow);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.map-caption { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--parchment); text-align: center; position: relative; z-index: 1; }
.map-coords { font-family: var(--sans); font-weight: 300; font-size: 10px; letter-spacing: 0.25em; color: var(--limestone); text-align: center; position: relative; z-index: 1; }
.map-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; position: relative; z-index: 1; padding: 0 20px; list-style: none; }
.map-badge {
  background: rgba(242,235,216,0.09);
  border: 1px solid rgba(216,206,188,0.15);
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--limestone);
}

/* ════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════════════════ */
.faq-section { background: var(--parchment); }
.faq-header { max-width: 540px; margin-bottom: 52px; }
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.faq-item { border: 1px solid var(--limestone-rule); background: var(--chalk-bluff); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  transition: background 0.2s;
}
.faq-trigger:hover { background: rgba(58,52,40,0.03); }
.faq-item.open .faq-trigger { border-bottom: 1px solid var(--limestone-rule); }
.faq-question-text { font-family: var(--serif); font-weight: 400; font-size: 17px; color: var(--hill-shadow); line-height: 1.4; }
.faq-icon {
  font-size: 22px;
  color: var(--live-oak);
  line-height: 1;
  font-family: var(--sans);
  font-weight: 200;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 1px;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-panel {
  padding: 0 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--cedar-sage-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
/* When hidden attr is removed, panel becomes visible via .open class */
.faq-item.open .faq-panel {
  max-height: 300px;
  padding: 20px 28px 28px;
}

/* ════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--limestone); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; }
.testimonial { background: var(--parchment); padding: 32px; border-top: 2px solid var(--live-oak); }
.testimonial-mark { font-family: var(--serif); font-size: 48px; color: var(--live-oak); opacity: 0.25; line-height: 1; margin-bottom: -8px; }
.testimonial-text { font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.8; color: var(--hill-shadow); margin-bottom: 20px; }
.testimonial-attr { font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cedar-sage-mid); }

/* ════════════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════════════ */
.cta-section { background: var(--deep-oak); text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-headline { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(34px, 4.5vw, 60px); line-height: 1.1; color: var(--parchment); margin: 16px 0 20px; }
.cta-body { font-size: 15px; line-height: 1.8; color: var(--limestone); margin-bottom: 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-sub { margin-top: 24px; font-size: 13px; color: var(--limestone); opacity: 0.5; letter-spacing: 0.06em; }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
.footer { background: var(--hill-shadow); border-top: 1px solid rgba(216,206,188,0.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  border-bottom: 1px solid rgba(216,206,188,0.07);
}
.footer-brand { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 24px; color: var(--parchment); margin-bottom: 4px; }
.footer-entity { font-family: var(--sans); font-weight: 300; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--limestone); opacity: 0.4; margin-bottom: 20px; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--limestone); opacity: 0.4; line-height: 1.65; max-width: 240px; margin-bottom: 24px; }
.footer-contact { font-family: var(--sans); font-size: 13px; line-height: 2; color: var(--limestone); opacity: 0.5; }
.footer-contact a { color: var(--caliche-gold); text-decoration: underline; text-underline-offset: 3px; font-weight: 400; }
.footer-contact a:hover { opacity: 0.8; }
.footer-col-head { font-family: var(--sans); font-weight: 400; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--caliche-gold); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--limestone);
  opacity: 0.5;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: opacity 0.18s, color 0.18s, text-decoration-color 0.18s;
}
.footer-links a:hover { opacity: 1; color: var(--caliche-gold); text-decoration-color: var(--caliche-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 24px var(--gutter) 32px; }
.footer-legal { font-family: var(--sans); font-weight: 200; font-size: 11px; color: var(--limestone); opacity: 0.25; letter-spacing: 0.05em; }
.footer-credit { font-family: var(--sans); font-size: 11px; color: var(--limestone); opacity: 0.2; }

/* ════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ─────────────────────────────────────────────────────────────────────
   FIX: Elements start visible (opacity:1) as a safe default.
   JS in script.js re-applies the animation class only when
   IntersectionObserver is confirmed available. This prevents
   the "everything invisible" bug caused by the observer
   callback being cut off or failing silently.
   ════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 1;           /* Safe default: always visible */
  transform: none;
}

/* JS adds .js-reveal-ready to <body> only after observer is set up */
body.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
body.js-reveal-ready .reveal.in {
  opacity: 1;
  transform: none;
}
body.js-reveal-ready .reveal-d1 { transition-delay: 0.1s; }
body.js-reveal-ready .reveal-d2 { transition-delay: 0.2s; }
body.js-reveal-ready .reveal-d3 { transition-delay: 0.3s; }

/* Reduced motion: skip animation regardless */
@media (prefers-reduced-motion: reduce) {
  body.js-reveal-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro, .amenities-header, .snowbird-inner,
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .stay-grid, .groups-grid, .prop-grid { grid-template-columns: 1fr 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta-link { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stay-grid, .groups-grid, .amenities-grid,
  .prop-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/**** FAQ Page *****/

/* ════════════════════════════════════════════════════════════════════
   FAQ PAGE — additions to style.css
   Append these blocks to assets/css/style.css.
   Nothing below duplicates index-page rules.
   ════════════════════════════════════════════════════════════════════ */


/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--limestone);
  border-bottom: 1px solid var(--limestone-rule);
  padding: 14px var(--gutter);
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--hill-shadow);
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-list li::after { content: '/'; opacity: 0.3; }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a {
  color: var(--live-oak);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
  font-weight: 400;
}
.breadcrumb-list [aria-current] { opacity: 0.9; font-weight: 400; }


/* ── PAGE HERO (non-homepage variant) ───────────────────────────── */
.page-hero {
  background: var(--hill-shadow);
  padding: calc(var(--nav-h) + 64px) var(--gutter) 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--limestone);
  margin-bottom: 20px;
}
.page-hero-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--parchment);
  margin-bottom: 24px;
}
.page-hero-h1 em { font-style: italic; color: var(--caliche-gold); }
.page-hero-body {
  font-size: 17px;
  color: var(--limestone);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }


/* ── FAQ JUMP NAV ───────────────────────────────────────────────── */
.faq-jumpnav {
  background: var(--limestone);
  border-bottom: 1px solid var(--limestone-rule);
  padding: 16px var(--gutter);
}
.faq-jumpnav-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.faq-jumpnav-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hill-shadow);
  opacity: 0.5;
  white-space: nowrap;
}
.faq-jumpnav a {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--live-oak);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition: color 0.18s;
}
.faq-jumpnav a:hover { color: var(--deep-oak); }


/* ── FAQ LIST — 2-column variant used on FAQ page ───────────────── */
/* The index page .faq-list is also 2-col but scoped to that section.
   This class makes the grid explicit and reusable across FAQ categories. */
.faq-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}


/* ── CTA BAND ───────────────────────────────────────────────────── */
.cta-band { background: var(--deep-oak); text-align: center; }
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  color: var(--parchment);
  margin: 16px 0 20px;
}
.cta-band p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--limestone);
  margin-bottom: 36px;
}
.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* Parchment outline button — only used in CTA band on dark bg */
.btn-outline-parchment {
  background: transparent;
  color: var(--parchment);
  border: 2px solid rgba(242,235,216,0.5);
}
.btn-outline-parchment:hover { background: var(--parchment); color: var(--hill-shadow); }


/* ── SECTION HEADLINE VARIANTS ──────────────────────────────────── */
/* Light version used on dark-bg sections (not on index page) */
.section-headline-light {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.18;
  color: var(--parchment);
}
.section-headline-light em { font-style: italic; }


/* ── RESPONSIVE — FAQ page ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .faq-list-2col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cta-band-actions { flex-direction: column; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .faq-jumpnav-inner { gap: 8px; }
}