/* =========================================================================
   Happy Valley — The Lake View Escape
   Design system: warm Okanagan palette grounded in the golden-hour aerial.
   Signature accent = lake teal. Conversion accent = sunset gold.
   ========================================================================= */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Karla:wght@300;400;500;600;700&display=swap');

/* ----- Design tokens ----- */
:root {
  /* Warm neutrals (base) */
  --sand:        #F4EDE2;   /* warm paper background */
  --sand-soft:   #FBF7F0;   /* lifted surface */
  --sand-deep:   #E7DCC9;   /* hairline / muted fill */
  --ink:         #2A2520;   /* warm near-black text */
  --ink-soft:    #5C5246;   /* secondary text */

  /* Lake — the signature accent */
  --lake:        #3E6E78;
  --lake-deep:   #2C4F57;
  --lake-mist:   #DCE8E7;

  /* Sun — conversion accent */
  --gold:        #B8862F;
  --gold-bright: #D6A23F;
  --gold-soft:   #F3E4C4;

  /* Pop (umbrella) — used very sparingly */
  --terracotta:  #C25A3A;

  /* Semantic */
  --bg:          var(--sand);
  --surface:     var(--sand-soft);
  --surface-2:   #FFFFFF;
  --border:      var(--sand-deep);
  --text:        var(--ink);
  --text-muted:  var(--ink-soft);
  --accent:      var(--lake);
  --accent-deep: var(--lake-deep);
  --cta:         var(--gold);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Karla', system-ui, -apple-system, sans-serif;

  /* Spacing scale (8pt) */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-12: 3rem; --s-16: 4rem;
  --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Radius & shadow */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 999px;
  --shadow-sm: 0 1px 3px rgba(42,37,32,.08), 0 1px 2px rgba(42,37,32,.06);
  --shadow-md: 0 8px 24px rgba(42,37,32,.10);
  --shadow-lg: 0 20px 50px rgba(42,37,32,.16);
  --shadow-glass: 0 8px 32px rgba(44,79,87,.18);

  /* Layout */
  --maxw: 1200px;
  --maxw-text: 65ch;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .18s; --t-base: .3s; --t-slow: .6s;

  /* z-index scale */
  --z-nav: 50; --z-sticky: 60; --z-lightbox: 100;

  color-scheme: light;
}

/* ----- Dark mode (evening lake) ----- */
:root[data-theme="dark"] {
  --bg:         #14181A;
  --surface:    #1C2225;
  --surface-2:  #232A2D;
  --border:     #313A3D;
  --text:       #F1EADC;
  --text-muted: #B3AE9F;
  --lake-mist:  #1E2A2C;
  --gold-soft:  #3A2F18;
  --accent:     #6FA6B0;
  --accent-deep:#9BC6CD;
  --cta:        #D6A23F;
  --shadow-glass: 0 8px 32px rgba(0,0,0,.5);
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:#14181A; --surface:#1C2225; --surface-2:#232A2D; --border:#313A3D;
    --text:#F1EADC; --text-muted:#B3AE9F; --lake-mist:#1E2A2C; --gold-soft:#3A2F18;
    --accent:#6FA6B0; --accent-deep:#9BC6CD; --cta:#D6A23F;
    --shadow-glass:0 8px 32px rgba(0,0,0,.5); color-scheme: dark;
  }
}

/* ----- Reset ----- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----- Typography ----- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { color: var(--text-muted); max-width: var(--maxw-text); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content:""; width: 28px; height: 1px; background: var(--accent); display:inline-block; }

/* ----- Layout helpers ----- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.section__head { max-width: 56ch; margin-bottom: clamp(2rem,5vw,3.5rem); }
.section__head.center { margin-inline: auto; }
.section__head h2 { margin-top: .8rem; }
.section__head p { margin-top: 1rem; }
.center p { margin-inline: auto; }

/* ----- Skip link ----- */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--accent-deep); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--r-sm); transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ----- Focus visibility ----- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .95rem 1.7rem; border-radius: var(--r-full);
  min-height: 48px; min-width: 48px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--accent-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--lake); }
.btn--gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #2A2008; box-shadow: 0 10px 26px rgba(184,134,47,.35); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(184,134,47,.45); }
.btn--ghost { border: 1.5px solid var(--border); color: var(--text); background: var(--surface); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); }
.btn--light:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* =========================================================================
   Navigation (floating glass)
   ========================================================================= */
.nav {
  position: fixed; inset: 1rem 1rem auto 1rem; z-index: var(--z-nav);
  max-width: calc(var(--maxw) + 2rem); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem .8rem .7rem 1.3rem; border-radius: var(--r-full);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.nav.is-hidden { transform: translateY(-150%); }
.nav__brand { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; display:flex; align-items:center; gap:.5rem; }
.nav__brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.nav__links { display: none; gap: .3rem; align-items: center; }
.nav__links a { padding: .5rem .85rem; border-radius: var(--r-full); font-weight: 500; font-size: .95rem; color: var(--text-muted); transition: color var(--t-fast), background var(--t-fast); }
.nav__links a:hover { color: var(--text); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.nav__actions { display: flex; align-items: center; gap: .5rem; }
.nav .btn { padding: .7rem 1.3rem; min-height: 44px; }
.nav__cta { display: none; }

.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: color-mix(in srgb, var(--surface-2) 80%, transparent); border: 1px solid var(--border);
  transition: transform var(--t-fast) var(--ease), color var(--t-fast);
}
.theme-toggle:hover { transform: rotate(18deg); color: var(--accent); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .moon { display: block; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .theme-toggle .sun { display:none; } :root:not([data-theme="light"]) .theme-toggle .moon { display:block; } }

.nav__burger { display: grid; place-items:center; width: 44px; height: 44px; }
.nav__burger span { display:block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav__burger span + span { margin-top: 5px; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* Mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-nav); background: var(--bg);
  display: flex; flex-direction: column; padding: 6rem 2rem 2rem;
  transform: translateY(-100%); transition: transform var(--t-base) var(--ease-out);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; padding: .6rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 1.5rem; }
.mobile-menu__close { position: absolute; top: 1.6rem; right: 1.6rem; width: 48px; height: 48px; font-size: 2rem; }

/* =========================================================================
   Hero — cinematic Ken Burns
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transform: scale(1.08);
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.08) translate3d(0,0,0); }
  100% { transform: scale(1.18) translate3d(-2%, -2.5%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,24,26,.34) 0%, rgba(20,24,26,0) 28%, rgba(20,24,26,.08) 55%, rgba(20,24,26,.72) 100%),
    linear-gradient(95deg, rgba(44,79,87,.34) 0%, rgba(44,79,87,0) 50%);
}
.hero__inner { position: relative; z-index: 2; color: #fff; padding-bottom: clamp(3rem, 8vw, 6rem); }
.hero__inner .eyebrow { color: #F3E4C4; }
.hero__inner .eyebrow::before { background:#F3E4C4; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); margin-top: 1rem; }
.hero__sub { color: rgba(255,255,255,.92); font-size: clamp(1.05rem,2vw,1.3rem); max-width: 46ch; margin-top: 1.2rem; text-shadow: 0 1px 14px rgba(0,0,0,.3); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem,5vw,3.5rem); margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.22); }
.hero__stat .n { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color:#fff; }
.hero__stat .l { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.hero__scroll { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.8); display: grid; place-items: center; gap: .4rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content:""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 60%{opacity:1;transform:translate(-50%,10px)} 100%{opacity:0;transform:translate(-50%,12px)} }

@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; transform: scale(1.04); }
  .hero__scroll .mouse::after { animation: none; }
}

/* Floating glass booking bar */
.bookbar {
  position: relative; z-index: 3; margin: -2.4rem auto 0; max-width: calc(var(--maxw) - 2rem);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-glass); padding: 1.1rem 1.2rem;
  display: grid; gap: .8rem; grid-template-columns: 1fr; align-items: end;
}
.bookbar__field { display: grid; gap: .35rem; }
.bookbar__field label { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.bookbar__field input, .bookbar__field select {
  font-family: inherit; font-size: 1rem; color: var(--text); background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--r-sm); padding: .7rem .8rem; min-height: 48px; width: 100%;
}
.bookbar__field input:focus, .bookbar__field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent); }
.bookbar .btn { width: 100%; }
@media (min-width: 760px) {
  .bookbar { grid-template-columns: 1fr 1fr 1fr auto; padding: 1.2rem 1.4rem; gap: 1rem; }
  .bookbar .btn { width: auto; }
}

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   Intro / welcome split
   ========================================================================= */
.intro { display: grid; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (min-width: 900px) { .intro { grid-template-columns: 1.05fr .95fr; } }
.intro__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.intro__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; transition: transform .9s var(--ease); }
.intro__media:hover img { transform: scale(1.05); }
.intro__media .badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem; background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: var(--r-full);
  padding: .55rem 1rem; font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: .5rem;
}
.intro__body p + p { margin-top: 1.1rem; }
.intro__sign { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--text); margin-top: 1.4rem; }

/* =========================================================================
   Amenities (bento)
   ========================================================================= */
.bento { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .bento { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .bento { grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; } }
.tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem;
  color: #fff; box-shadow: var(--shadow-md); isolation: isolate;
}
.tile img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.tile::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20,24,26,0) 30%, rgba(20,24,26,.78) 100%); }
.tile:hover img { transform: scale(1.07); }
.tile h3 { color: #fff; font-size: 1.45rem; }
.tile p { color: rgba(255,255,255,.88); font-size: .95rem; margin-top: .3rem; }
.tile__icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); display: grid; place-items: center; margin-bottom: auto; border: 1px solid rgba(255,255,255,.3); }
.tile__icon svg { width: 22px; height: 22px; color: #fff; }
.tile--wide { grid-column: span 1; }
@media (min-width: 1000px) { .tile--wide { grid-column: span 2; } .tile--tall { grid-row: span 2; } }

/* Feature chips row */
.features { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: var(--r-full); background: var(--surface); border: 1px solid var(--border); font-size: .92rem; font-weight: 500; }
.chip svg { width: 18px; height: 18px; color: var(--accent); }

/* =========================================================================
   Gallery strip + grid
   ========================================================================= */
.gallery-grid { display: grid; gap: .8rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: var(--r-md); cursor: pointer; background: var(--sand-deep); }
.gallery-grid img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform .6s var(--ease), filter var(--t-base); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 60%, rgba(44,79,87,.55)); opacity:0; transition: opacity var(--t-base); }
.gallery-grid figure:hover::after { opacity:1; }
.gallery-grid .tag { position: absolute; left: .7rem; bottom: .7rem; z-index: 2; color:#fff; font-size: .8rem; font-weight:600; opacity:0; transform: translateY(6px); transition: all var(--t-base); }
.gallery-grid figure:hover .tag { opacity:1; transform:none; }
.gallery-grid figure.tall { grid-row: span 2; }
.gallery-grid figure.tall img { aspect-ratio: 1/2.05; }

/* =========================================================================
   Things to do — filters
   ========================================================================= */
.filters { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.filters__row + .filters__row { margin-top: 1.3rem; }
.filters__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .7rem; display:block; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.fchip { padding: .55rem 1.05rem; border-radius: var(--r-full); border: 1.5px solid var(--border); background: transparent; font-weight: 600; font-size: .92rem; transition: all var(--t-fast); }
.fchip:hover { border-color: var(--accent); color: var(--accent); }
.fchip.is-active { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.slider-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
input[type="range"] { -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; background: var(--sand-deep); width: min(360px, 100%); }
:root[data-theme="dark"] input[type="range"] { background: var(--border); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); border: 3px solid var(--surface); box-shadow: var(--shadow-sm); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); border: 3px solid var(--surface); cursor: pointer; }
.slider-val { font-weight: 700; color: var(--accent); background: var(--lake-mist); padding: .3rem .8rem; border-radius: var(--r-full); font-size: .9rem; }
.results-count { text-align: center; color: var(--text-muted); margin: 1.6rem 0; font-size: .95rem; }

.acts { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .acts { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .acts { grid-template-columns: repeat(3,1fr); } }
.act {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.3rem; display: flex; flex-direction: column; gap: .5rem;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base), border-color var(--t-base);
}
.act:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb,var(--accent) 40%, var(--border)); }
.act__top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.act__cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: var(--lake-mist); padding: .25rem .6rem; border-radius: var(--r-full); }
.act__dist { font-size: .85rem; font-weight: 700; color: var(--gold); }
.act h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.act p { font-size: .92rem; }
.act__seasons { display: flex; gap: .35rem; margin-top: auto; padding-top: .6rem; }
.sdot { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .62rem; font-weight: 800; color: #fff; }
.sdot.spring { background:#5C8A4A; } .sdot.summer { background:var(--gold); color:#2A2008; } .sdot.fall { background:var(--terracotta); } .sdot.winter { background:#5681A8; }
.act.is-hidden { display: none; }

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(3,1fr); } }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative; }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .8rem; }
.review p { color: var(--text); font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.55; }
.review__by { margin-top: 1rem; font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.review__mark { position: absolute; top: 1rem; right: 1.3rem; font-family: var(--font-display); font-size: 3.4rem; color: var(--lake-mist); line-height: 1; }

/* =========================================================================
   Direct booking band (gold)
   ========================================================================= */
.bookband {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #E9C877 0%, var(--gold-bright) 40%, var(--gold) 100%);
  color: #2A2008; padding: clamp(2.5rem,6vw,4.5rem); text-align: center; box-shadow: var(--shadow-lg);
}
.bookband::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.5), transparent 45%); pointer-events:none; }
.bookband__badge { display: inline-flex; align-items: center; gap: .5rem; background: #2A2008; color: var(--gold-bright); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; padding: .5rem 1.1rem; border-radius: var(--r-full); }
.bookband h2 { color: #2A2008; margin: 1.1rem 0 .6rem; }
.bookband p { color: #5A4416; margin-inline: auto; font-weight: 500; }
.bookband__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.8rem; }
.bookband .btn--dark { background: #2A2008; color: var(--gold-soft); }
.bookband .btn--dark:hover { background: #1A1405; transform: translateY(-2px); }
.bookband__note { font-size: .85rem; color: #5A4416; margin-top: 1.1rem; }
.bookband__compare { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2.2rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(42,32,8,.18); }
.bookband__compare div { font-size: .9rem; color: #5A4416; }
.bookband__compare b { display:block; font-family: var(--font-display); font-size: 1.5rem; color: #2A2008; }

/* =========================================================================
   Sticky mobile CTA
   ========================================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px); border-top: 1px solid var(--border);
  display: flex; gap: .7rem; align-items: center;
  transform: translateY(120%); transition: transform var(--t-base) var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .price { flex: 1; }
.sticky-cta .price b { font-family: var(--font-display); font-size: 1.2rem; }
.sticky-cta .price span { display:block; font-size: .76rem; color: var(--text-muted); }
.sticky-cta .btn { flex: 0 0 auto; }
@media (min-width: 900px) { .sticky-cta { display: none !important; } }

/* =========================================================================
   Lightbox
   ========================================================================= */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); background: rgba(12,14,15,.94); backdrop-filter: blur(6px); display: none; place-items: center; padding: clamp(1rem,4vw,3rem); }
.lightbox.is-open { display: grid; }
.lightbox__img { max-width: 100%; max-height: 84vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__btn { position: absolute; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 1.5rem; display: grid; place-items: center; transition: background var(--t-fast), transform var(--t-fast); }
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: #fff; background: rgba(0,0,0,.45); padding: .4rem 1rem; border-radius: var(--r-full); font-size: .9rem; }
.lightbox__cap { position: absolute; bottom: 3.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-size: .92rem; text-align: center; width: min(90%, 600px); }
@media (max-width: 640px) { .lightbox__prev { left: .5rem; } .lightbox__next { right: .5rem; } .lightbox__btn { width: 46px; height: 46px; } }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--lake-deep); color: #E9E2D4; padding-block: clamp(3rem,6vw,5rem) 2rem; margin-top: 0; }
:root[data-theme="dark"] .footer { background: #0E1416; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1rem; }
.footer__brand .name { font-family: var(--font-display); font-size: 1.6rem; color: #fff; }
.footer p, .footer li, .footer a { color: rgba(233,226,212,.8); font-size: .95rem; }
.footer ul { list-style: none; display: grid; gap: .6rem; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .85rem; color: rgba(233,226,212,.6); }

/* Utility */
.muted { color: var(--text-muted); }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}
.hidden { display: none !important; }
