/* =========================================================
   DIAMOND SPRINGS RANCH — V2 Homepage (Rock Creek inspired)
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F2E8D9;
  --cream-mid:  #E4D8C4;
  --black:      #1A1510;
  --charcoal:   #2D2822;
  --gold:       #C49A3C;
  --gold-lt:    #D4AE5A;
  --brown:      #7C4B2A;
  --white:      #FFFFFF;
  --gray-body:  #5a4f44;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', 'Helvetica Neue', sans-serif;
  --font-disp:  'Norwester', 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }

/* ─── UTILITY ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.overline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid currentColor;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn-light  { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-dark   { color: var(--black); border-color: rgba(0,0,0,0.4); }
.btn-dark:hover  { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-gold   { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover  { background: #b38930; border-color: #b38930; }

/* ─── NAV ─── */
.v2-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
.v2-nav.scrolled { background: rgba(26,21,16,0.97); padding: 14px 56px; }
.v2-nav-logo { display: flex; align-items: center; gap: 12px; }
.v2-nav-logo img { height: 34px; width: auto; }
.v2-nav-logo-text {
  font-family: var(--font-disp); font-size: 0.9rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.v2-nav-links { display: flex; gap: 36px; list-style: none; }
.v2-nav-links a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.v2-nav-links a:hover { color: var(--gold); }
.v2-nav-book {
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--white);
  border: 1px solid rgba(255,255,255,0.38); padding: 10px 22px;
  transition: background 0.2s, border-color 0.2s;
}
.v2-nav-book:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }
/* ─── NAV DROPDOWNS ─── */
.v2-nav-caret {
  display: inline-block;
  width: 0; height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid rgba(255,255,255,0.5);
  transition: transform 0.2s, border-top-color 0.2s;
  position: relative; top: -1px;
}
.v2-nav-has-drop { position: relative; }
.v2-nav-has-drop:hover .v2-nav-caret { transform: rotate(180deg); }
.v2-nav-drop {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(22,17,11,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  list-style: none;
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.v2-nav-has-drop:hover .v2-nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.v2-nav-drop li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.v2-nav-drop li a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}
.v2-nav-drop li + li { border-top: 1px solid rgba(255,255,255,0.05); }
/* bridge gap so hover doesn't break when moving cursor down */
.v2-nav-has-drop::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 14px;
}

@media (max-width: 900px) {
  .v2-nav { padding: 18px 24px; }
  .v2-nav.scrolled { padding: 12px 24px; }
  .v2-nav-links { display: none; }
  .v2-nav-book { display: none; }
}

/* ─── HAMBURGER BUTTON ─── */
.v2-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 110;
}
.v2-hamburger span {
  display: block; width: 26px; height: 2px;
  background: rgba(255,255,255,0.85); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
@media (max-width: 900px) {
  .v2-hamburger { display: flex; }
}

/* ─── MOBILE OVERLAY ─── */
.v2-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 150;
  opacity: 0; transition: opacity 0.3s;
}
.v2-mobile-overlay.open { display: block; opacity: 1; }

/* ─── MOBILE DRAWER ─── */
.v2-mobile-nav {
  display: flex; flex-direction: column;
  position: fixed; top: 0; right: -100%; width: min(320px, 88vw); height: 100vh;
  background: rgba(22,17,11,0.98); backdrop-filter: blur(16px);
  z-index: 200; padding: 28px 28px 40px;
  overflow-y: auto; transition: right 0.32s cubic-bezier(0.25,0.46,0.45,0.94);
}
.v2-mobile-nav.open { right: 0; }
.v2-mobile-close {
  align-self: flex-end; background: none; border: none;
  color: rgba(255,255,255,0.6); font-size: 2rem; line-height: 1;
  cursor: pointer; margin-bottom: 24px; padding: 0;
  transition: color 0.2s;
}
.v2-mobile-close:hover { color: var(--gold); }
.v2-mobile-nav a {
  display: block; padding: 12px 0;
  font-family: var(--font-sans); font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.v2-mobile-nav a:hover { color: var(--gold); }
.v2-mobile-section { border-bottom: 1px solid rgba(255,255,255,0.08); }
.v2-mobile-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 12px 0; font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.v2-mobile-toggle:hover { color: var(--gold); }
.v2-mobile-caret { font-size: 1.1rem; font-weight: 300; }
.v2-mobile-group {
  display: none; flex-direction: column;
  padding: 0 0 8px 14px;
}
.v2-mobile-group.open { display: flex; }
.v2-mobile-group a {
  font-size: 0.76rem; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05); padding: 9px 0;
}
.v2-mobile-group a:hover { color: var(--gold); }
.v2-mobile-book {
  display: inline-block !important; margin-top: 24px;
  background: var(--gold) !important; color: var(--white) !important;
  text-align: center; padding: 14px 20px !important;
  border: none !important; font-weight: 600 !important;
  letter-spacing: 0.12em; border-radius: 2px;
}

/* ─── HERO ─── */
.v2-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.v2-hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/hero-sunset-v2.png');
  background-size: cover; background-position: center 40%;
}
.v2-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,8,4,0.45) 0%,
    rgba(12,8,4,0.55) 40%,
    rgba(12,8,4,0.65) 70%,
    rgba(12,8,4,0.75) 100%
  );
}
.v2-hero-content {
  position: relative; z-index: 2;
  padding: 0 24px; max-width: 820px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.v2-hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
  opacity: 0; transform: translateY(24px);
  animation: v2FadeUp 0.7s 0.15s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.v2-eyebrow-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.v2-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6rem); font-weight: 300; line-height: 1.04;
  color: var(--white); margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.65);
  opacity: 0; transform: translateY(32px);
  animation: v2FadeUp 0.9s 0.3s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.v2-hero-content h1 em { font-style: italic; }
.v2-hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.92); max-width: 480px; margin-bottom: 40px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  opacity: 0; transform: translateY(24px);
  animation: v2FadeUp 0.7s 0.5s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.v2-hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: v2FadeUp 0.6s 0.65s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.v2-hero-scroll-hint {
  position: absolute; bottom: 36px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.v2-scroll-line {
  width: 1px; height: 52px; background: rgba(255,255,255,0.25);
  animation: v2ScrollPulse 2s ease-in-out infinite;
}
@keyframes v2FadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes v2ScrollPulse {
  0%,100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 0.7;  transform: scaleY(1); }
}
@media (max-width: 768px) {
  .v2-hero-content { padding: 0 24px; }
  .v2-hero-scroll-hint { display: none; }
}

/* ─── TRUST STRIP ─── */
.v2-trust { background: var(--charcoal); padding: 18px 0; }
.v2-trust-inner { display: flex; justify-content: center; flex-wrap: wrap; }
.v2-trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 28px; border-right: 1px solid rgba(255,255,255,0.1);
}
.v2-trust-item:last-child { border-right: none; }
.v2-trust-icon { color: var(--gold); display: flex; align-items: center; }
.v2-trust-icon svg { stroke: var(--gold); }
.v2-trust-label {
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
@media (max-width: 640px) { .v2-trust-item { border: none; } }

/* ─── INTRO ─── */
.v2-intro { padding: 110px 0 90px; background: var(--cream); }
.v2-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.v2-intro-text .overline { display: block; margin-bottom: 16px; }
.v2-intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 300; line-height: 1.18; margin-bottom: 22px;
}
.v2-intro-text h2 em { font-style: italic; }
.v2-intro-text p { color: var(--gray-body); font-size: 0.97rem; font-weight: 300; margin-bottom: 14px; }
.v2-intro-text .btn { margin-top: 24px; }
.v2-intro-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.v2-intro-photo { overflow: hidden; }
.v2-intro-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.v2-intro-photo:hover img { transform: scale(1.05); }
.v2-intro-photo:first-child { grid-column: span 2; height: 256px; }
.v2-intro-photo:not(:first-child) { height: 184px; }
@media (max-width: 900px) { .v2-intro-inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 640px) {
  .v2-intro-photos { grid-template-columns: 1fr; gap: 8px; }
  .v2-intro-photo:first-child { grid-column: span 1; height: 200px; }
  .v2-intro-photo:not(:first-child) { height: 160px; }
}

/* ─── EXPERIENCES ─── */
.v2-exp { padding: 100px 0; background: var(--black); overflow: hidden; }
.v2-exp-header {
  padding: 0 56px; margin-bottom: 48px;
  text-align: center;
}
.v2-exp-header .overline { display: block; margin-bottom: 12px; }
.v2-exp-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--white); line-height: 1.15;
}
.v2-exp-header h2 em { font-style: italic; }
.v2-exp-see-all {
  display: inline-block; margin-top: 16px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.v2-exp-see-all:hover { color: var(--gold); border-color: var(--gold); }
.v2-exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  padding: 0 56px;
}
/* Bottom row: 2 cards — center them spanning the middle two columns */
.v2-exp-card:nth-child(4) { grid-column: 1 / 2; }
.v2-exp-card:nth-child(5) { grid-column: 2 / 3; }
.v2-exp-card:nth-child(6) { grid-column: 3 / 4; }
.v2-exp-card {
  position: relative; height: 420px;
  overflow: hidden; cursor: pointer;
  background: var(--black);
  will-change: transform;
  transition: box-shadow 0.3s ease;
}
.v2-exp-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.5); z-index: 2; }
.v2-exp-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.55s ease;
}
.v2-exp-card:hover .v2-exp-card-bg { transform: scale(1.05); }
.v2-exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.45) 100%);
}
.v2-exp-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 32px; }
.v2-exp-card-name {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 300;
  color: var(--white); margin-bottom: 6px;
}
.v2-exp-card-price {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 14px; font-weight: 700;
}
.v2-exp-card-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.65;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.v2-exp-card:hover .v2-exp-card-desc { max-height: 100px; margin-bottom: 16px; }
.v2-exp-card-cta {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s, color 0.2s;
}
.v2-exp-card:hover .v2-exp-card-cta { opacity: 1; transform: translateY(0); }
.v2-exp-card-cta:hover { color: var(--gold); border-color: var(--gold); }
.v2-exp-card-desc { max-height: 90px; margin-bottom: 16px; }
.v2-exp-card:hover .v2-exp-card-desc { max-height: 120px; }
.v2-exp-card-cta { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .v2-exp-header, .v2-exp-cards { padding: 0 24px; }
  .v2-exp-cards { grid-template-columns: 1fr 1fr; }
  .v2-exp-card:nth-child(4),
  .v2-exp-card:nth-child(5),
  .v2-exp-card:nth-child(6) { grid-column: auto; }
  .v2-exp-card { height: 340px; }
  .v2-exp-card:hover { transform: none; box-shadow: none; }
}
@media (max-width: 560px) {
  .v2-exp-cards { grid-template-columns: 1fr; }
  .v2-exp-card { height: 300px; }
}

/* ─── FULL-BLEED QUOTE ─── */
.v2-quote {
  position: relative; height: 50vh; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.v2-quote-bg {
  position: absolute; inset: 0;
  background-image: url('/images/trail_ride1.png');
  background-size: cover; background-position: center 30%;
  background-attachment: fixed;
}
.v2-quote-overlay { position: absolute; inset: 0; background: rgba(12,8,4,0.6); }
.v2-quote-inner { position: relative; z-index: 2; max-width: 720px; padding: 0 32px; }
.v2-quote-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.35; margin-bottom: 20px;
}
.v2-quote-attr {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt);
}

/* ─── STORY ─── */
.v2-story { padding: 110px 0; background: var(--cream); }
.v2-story-inner { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: center; }
.v2-story-img { position: relative; }
.v2-story-img img { width: 100%; height: 580px; object-fit: cover; object-position: center top; }
.v2-story-badge {
  position: absolute; bottom: -28px; right: -24px;
  width: 118px; height: 118px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 12px;
}
.v2-badge-num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.v2-badge-label {
  font-size: 0.58rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 4px;
}
.v2-story-text { padding-left: 8px; }
.v2-story-text .overline { display: block; margin-bottom: 14px; }
.v2-story-text h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 24px;
}
.v2-story-text h2 em { font-style: italic; }
.v2-story-text p { color: var(--gray-body); font-size: 0.96rem; font-weight: 300; margin-bottom: 14px; }
.v2-story-text blockquote {
  border-left: 3px solid var(--gold); padding: 14px 0 14px 22px; margin: 26px 0;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; font-style: italic;
  color: var(--charcoal); line-height: 1.5;
}
.v2-story-text .btn { margin-top: 12px; }
@media (max-width: 900px) {
  .v2-story-inner { grid-template-columns: 1fr; }
  .v2-story-text { padding-left: 0; }
  .v2-story-img img { height: 280px; }
  .v2-story-badge { right: 12px; bottom: -20px; width: 96px; height: 96px; }
}

/* ─── LODGING ─── */
.v2-lodge { background: var(--cream-mid); }
.v2-lodge-header { padding: 80px 0 52px; text-align: center; }
.v2-lodge-header .overline { display: block; margin-bottom: 14px; }
.v2-lodge-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.15;
}
.v2-lodge-header h2 em { font-style: italic; }
.v2-lodge-cards { display: grid; grid-template-columns: 1fr 1fr; }
.v2-lodge-card {
  position: relative; height: 560px; overflow: hidden;
  display: flex; align-items: flex-end; cursor: pointer;
}
.v2-lodge-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.65s ease;
}
.v2-lodge-card:hover .v2-lodge-card-bg { transform: scale(1.05); }
.v2-lodge-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 55%);
}
.v2-lodge-card-body { position: relative; z-index: 2; padding: 36px 40px; }
.v2-lodge-card-name {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300;
  color: var(--white); margin-bottom: 8px;
}
.v2-lodge-card-price {
  font-size: 0.73rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 20px;
}
.v2-lodge-card .btn { font-size: 0.72rem; padding: 11px 22px; }
@media (max-width: 768px) {
  .v2-lodge-cards { grid-template-columns: 1fr; }
  .v2-lodge-card { height: 400px; }
}

/* ─── REVIEWS ─── */
.v2-reviews { padding: 100px 0; background: var(--charcoal); }
.v2-reviews-head { text-align: center; margin-bottom: 52px; }
.v2-reviews-head .overline { display: block; margin-bottom: 14px; }
.v2-reviews-head h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; color: var(--white);
}
.v2-reviews-head h2 em { font-style: italic; }
.v2-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.v2-review {
  background: rgba(255,255,255,0.04); padding: 36px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.v2-review-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 20px; font-size: 0.85rem; }
.v2-review-body {
  font-family: var(--font-serif); font-size: 1.02rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 22px;
}
.v2-review-name {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38);
}
@media (max-width: 900px) { .v2-reviews-grid { grid-template-columns: 1fr; } }

/* ─── PLAN YOUR VISIT ─── */
.v2-plan { padding: 100px 0; background: var(--cream); }
.v2-plan-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.v2-plan-left .overline { display: block; margin-bottom: 14px; }
.v2-plan-left h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 20px;
}
.v2-plan-left h2 em { font-style: italic; }
.v2-plan-left p { color: var(--gray-body); font-size: 0.95rem; font-weight: 300; margin-bottom: 28px; }
.v2-plan-faq { border-top: 1px solid rgba(0,0,0,0.1); }
.v2-plan-faq:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.v2-plan-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; gap: 16px;
  font-size: 0.93rem; font-weight: 500; color: var(--charcoal); user-select: none;
}
.v2-plan-faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); transition: transform 0.3s;
}
.v2-plan-faq.open .v2-plan-faq-icon { transform: rotate(45deg); }
.v2-plan-faq-a {
  font-size: 0.9rem; font-weight: 300; color: var(--gray-body); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding-bottom: 0;
}
.v2-plan-faq.open .v2-plan-faq-a { max-height: 300px; padding-bottom: 18px; }
@media (max-width: 900px) { .v2-plan-inner { grid-template-columns: 1fr; } }

/* ─── CTA ─── */
.v2-cta { position: relative; overflow: hidden; padding: 120px 0; text-align: center; }
.v2-cta-bg {
  position: absolute; inset: 0;
  background-image: url('/images/Trail_Ride2.png');
  background-size: cover; background-position: center;
}
.v2-cta-overlay { position: absolute; inset: 0; background: rgba(12,8,4,0.72); }
.v2-cta-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; padding: 0 24px; }
.v2-cta-inner .overline { display: block; margin-bottom: 18px; }
.v2-cta-inner h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 18px;
}
.v2-cta-inner h2 em { font-style: italic; }
.v2-cta-inner p { color: rgba(255,255,255,0.7); font-size: 0.97rem; font-weight: 300; margin-bottom: 36px; }
.v2-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.v2-cta-phone { display: block; margin-top: 22px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.v2-cta-phone a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.v2-cta-phone a:hover { color: var(--gold); }

/* ─── FOOTER ─── */
.v2-footer { background: var(--black); padding: 64px 0 0; }
.v2-footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.v2-footer-brand img { height: 40px; width: auto; margin-bottom: 18px; }
.v2-footer-brand p { font-size: 0.86rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.v2-footer-social { display: flex; gap: 14px; margin-top: 20px; }
.v2-footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.v2-footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.v2-footer-col h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 18px;
}
.v2-footer-col ul { list-style: none; }
.v2-footer-col li { margin-bottom: 10px; }
.v2-footer-col a { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.v2-footer-col a:hover { color: var(--gold); }
.v2-footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.v2-footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; font-size: 0.85rem; margin-top: 2px; }
.v2-footer-contact-item span:last-child { font-size: 0.86rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.5; }
.v2-footer-bottom {
  padding: 18px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.76rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px;
}
.v2-footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.v2-footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) { .v2-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .v2-footer-inner { grid-template-columns: 1fr; } }
/* ===== MOBILE IMAGE & SECTION FIXES (max-width: 640px) ===== */
@media (max-width: 640px) {

  /* Hero: reduce from 100vh to a tighter phone height */
  .v2-hero { height: 85vh; min-height: 480px; }
  .v2-hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .v2-hero-sub { font-size: 0.92rem; }
  .v2-hero-btns { justify-content: center; }

  /* Section padding � tighter on phone */
  .v2-intro { padding: 60px 0 48px; }
  .v2-exp { padding: 60px 0; }
  .v2-story { padding: 60px 0; }
  .v2-lodge { padding-bottom: 0; }
  .v2-lodge-header { padding: 48px 0 32px; }
  .v2-reviews { padding: 60px 0; }
  .v2-plan { padding: 60px 0; }
  .v2-cta { padding: 72px 0; }

  /* Experience cards: shorter on phone */
  .v2-exp-header, .v2-exp-cards { padding: 0 16px; }
  .v2-exp-cards { grid-template-columns: 1fr; }
  .v2-exp-card { height: auto; min-height: 0; overflow: visible; }
  .v2-exp-card-overlay { position: absolute; inset: 0; height: 300px; }
  .v2-exp-card-bg { position: absolute; inset: 0; height: 300px; }
  .v2-exp-card-body { position: relative; bottom: auto; padding: 24px 20px 28px; background: var(--black); }
  .v2-exp-card-desc { max-height: none !important; overflow: visible !important; margin-bottom: 16px; }
  .v2-exp-card-cta { opacity: 1; transform: none; }

  /* Lodge cards: single column, shorter */
  .v2-lodge-cards { grid-template-columns: 1fr; }
  .v2-lodge-card { height: 300px; }

  /* Quote parallax section: fixed bg can be janky on iOS, reduce height */
  .v2-quote { height: auto; min-height: 220px; padding: 56px 24px; }
  .v2-quote-bg { background-attachment: scroll; }

  /* Story image: already 280px from earlier, keep */
  .v2-story-img img { height: 240px; }
  .v2-story-badge { width: 80px; height: 80px; right: 8px; bottom: -16px; }
  .v2-badge-num { font-size: 1.8rem; }
  .v2-badge-label { font-size: 0.5rem; }

  /* Intro photo grid: already single-column from earlier rule, keep heights sensible */
  .v2-intro-photo:first-child { height: 180px; }
  .v2-intro-photo:not(:first-child) { height: 140px; }

  /* Reviews: already single col */
  .v2-review { padding: 24px 20px; }

  /* Footer */
  .v2-footer { padding: 48px 0 0; }
  .v2-footer-inner { gap: 28px; }

  /* CTA buttons: stack vertically */
  .v2-cta-btns { flex-direction: column; align-items: center; }
}
