/* ===================================================
   RIVERSIDE GORILLA LODGE — Main Stylesheet
   Theme: Monochrome — Black #000000, White #FFFFFF
   (matches official logo palette)
   =================================================== */

:root {
  --gold:        #FFFFFF;
  --gold-light:  #F5F5F5;
  --gold-dark:   #CCCCCC;
  --green:       #2A2A2A;
  --green-light: #888888;
  --green-dark:  #141414;
  --river:       #333333;
  --river-light: #AAAAAA;
  --bg-dark:     #000000;
  --bg-mid:      #0A0A0A;
  --bg-card:     #111111;
  --text-main:   #E8E8E8;
  --text-muted:  #999999;
  --text-dark:   #666666;
  --white:       #FFFFFF;
  --border:      rgba(255, 255, 255, 0.12);
  --shadow:      rgba(0, 0, 0, 0.6);
  --transition:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
body.nav-open { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

::selection { background: var(--gold); color: var(--bg-dark); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--white);
}
em { font-style: italic; color: var(--gold); }
.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-large { padding: 1.1rem 2.8rem; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ==========================
   NAVIGATION
========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: all 0.4s var(--transition);
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}
.nav-logo:hover { color: var(--gold); }
.logo-emblem {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.logo-emblem img, .logo-emblem .logo-fallback {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}
.logo-fallback { align-items: center; justify-content: center; }
.logo-fallback svg { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--bg-dark) !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
.nav-backdrop.visible { display: block; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================
   SOUND TOGGLE
========================== */
.sound-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.65rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  font-family: 'Jost', sans-serif;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.sound-toggle:hover { color: var(--gold); border-color: var(--gold); }
.sound-toggle.playing { color: var(--gold); border-color: var(--gold); }
.sound-icon svg { width: 18px; height: 18px; }
.wave-1, .wave-2 { opacity: 0; transition: opacity 0.3s; }
.sound-toggle.playing .wave-1,
.sound-toggle.playing .wave-2 { opacity: 1; }

/* ==========================
   HERO
========================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleDrift linear infinite;
  opacity: 0;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeDown 1s 0.3s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title .line-1 {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  animation: fadeDown 1s 0.5s both;
}
.hero-title .line-2 {
  display: block;
  animation: fadeDown 1s 0.7s both;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  font-style: italic;
  animation: fadeDown 1s 0.9s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 1s 1.1s both;
}
.hero-scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeDown 1s 1.3s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
.hero-river-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
}
.hero-river-wave svg { display: block; width: 100%; height: 80px; }

/* ==========================
   INTRO SECTION
========================== */
.intro-section {
  padding: 6rem 0 5rem;
  background: var(--bg-dark);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-body {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.intro-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 16px; height: 16px; color: var(--gold); }
.visual-stack {
  position: relative;
  height: 500px;
}
.visual-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 72%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.visual-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border: 3px solid var(--bg-dark);
}
.visual-badge {
  position: absolute;
  top: 55%;
  left: 2%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.badge-stars { color: var(--gold); font-size: 0.7rem; margin: 0.2rem 0; }
.badge-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ==========================
   RIVER SECTION
========================== */
.river-section {
  position: relative;
  padding: 0;
}
.river-content {
  background: linear-gradient(180deg, var(--river) 0%, var(--green-dark) 60%, var(--bg-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.river-inner {
  position: relative;
  z-index: 2;
}
.river-icon { margin-bottom: 2rem; }
.river-icon svg { width: 100px; height: 50px; margin: 0 auto; }
.river-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.river-content p {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  font-style: italic;
}
.river-wave-top, .river-wave-bottom {
  position: absolute;
  left: 0; right: 0;
}
.river-wave-top { top: -2px; }
.river-wave-bottom { bottom: -2px; }
.river-wave-top svg, .river-wave-bottom svg { display: block; width: 100%; height: 80px; }
.river-animated-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.wave-line {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: waveFlow 8s ease-in-out infinite;
}
.w1 { top: 30%; animation-delay: 0s; }
.w2 { top: 50%; animation-delay: 2.5s; opacity: 0.6; }
.w3 { top: 70%; animation-delay: 5s; opacity: 0.3; }
@keyframes waveFlow {
  0%, 100% { transform: translateX(-5%) scaleY(1); }
  50% { transform: translateX(5%) scaleY(0.7); }
}

/* ==========================
   ROOMS PREVIEW
========================== */
.rooms-preview {
  padding: 5rem 0 6rem;
  background: var(--bg-dark);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.room-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.room-img img { transition: transform 0.6s var(--transition); }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}
.room-tag.premium { background: var(--river); color: var(--white); }
.room-info { padding: 1.5rem; }
.room-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.room-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.room-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
}
.room-price small { font-size: 0.8rem; color: var(--text-muted); }
.room-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.room-link:hover { color: var(--gold); }

/* ==========================
   ACTIVITIES
========================== */
.activities-section {
  padding: 5rem 0 6rem;
  background: var(--bg-mid);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.activity-item {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}
.activity-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.activity-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.activity-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--gold-light);
}
.activity-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.activity-item-has-image {
  padding: 0 0 2rem;
  overflow: hidden;
}
.activity-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.activity-thumb img {
  transition: transform 0.6s var(--transition);
}
.activity-item-has-image:hover .activity-thumb img {
  transform: scale(1.05);
}
.activity-item-has-image .activity-num,
.activity-item-has-image h4,
.activity-item-has-image p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.activity-item-has-image .activity-num {
  margin-top: 1.25rem;
}

/* ==========================
   TESTIMONIAL
========================== */
.testimonial-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}
.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 1.5rem;
}
.testimonial-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-inner cite {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-top: 1rem; }

/* ==========================
   CTA SECTION
========================== */
.cta-section {
  padding: 5rem 0 7rem;
  background: var(--bg-dark);
}
.cta-inner {
  text-align: center;
  padding: 4rem 3rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,255,255,0.1) 100%);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-inner p { color: var(--text-muted); margin-bottom: 0; font-style: italic; }
.cta-actions {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==========================
   HOME GALLERY CAROUSEL
========================== */
.home-carousel {
  margin-top: 3rem;
  position: relative;
}
.home-carousel-frame {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.home-carousel-track {
  display: flex;
  transition: transform 0.7s var(--transition);
  will-change: transform;
}
.home-carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0.75rem;
}
.home-carousel-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-mid);
}
.home-carousel-item img {
  transition: transform 0.8s var(--transition);
}
.home-carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0.85;
  transition: opacity 0.4s;
  pointer-events: none;
}
.home-carousel-item:hover img {
  transform: scale(1.06);
}
.home-carousel-item:hover::after {
  opacity: 1;
}
.home-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.home-carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.9);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.home-carousel-arrow svg {
  width: 20px;
  height: 20px;
}
.home-carousel-arrow:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}
.home-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.home-carousel-dot {
  width: 32px;
  height: 2px;
  padding: 0;
  border: none;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.home-carousel-dot.active {
  width: 48px;
  background: var(--gold);
}

/* ==========================
   PAGE HERO
========================== */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-rooms .page-hero-bg,
.page-hero-rooms {
  background: url('../images/rooms/room-twin-vaulted.png') center/cover no-repeat;
}
.page-hero-gallery {
  background: url('../images/lodge/exterior-lodge-hillside-dusk.png') center/cover no-repeat;
}
.page-hero-contact {
  background: url('../images/banner-contact.png') center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.page-hero-content p { color: rgba(255, 255, 255, 0.75); font-style: italic; font-size: 1.05rem; }
.page-hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
}
.page-hero-wave svg { display: block; width: 100%; height: 80px; }

/* ==========================
   ROOMS FULL
========================== */
.rooms-full { padding: 4rem 0 6rem; }
.room-full-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.room-full-card.reverse { direction: rtl; }
.room-full-card.reverse > * { direction: ltr; }
.rfc-images { display: flex; flex-direction: column; gap: 0.8rem; }
.rfc-images > img { height: 320px; border-radius: 3px; }
.rfc-thumb-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.rfc-thumb-stack img { height: 140px; border-radius: 3px; }
.rfc-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.rfc-tag.premium { color: var(--river-light); border-color: rgba(255,255,255,0.25); }
.rfc-details h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.rfc-desc { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.rfc-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rfc-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.rfc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.rfc-price strong { font-size: 1.6rem; color: var(--gold); }
.rooms-note {
  padding: 2rem 0 4rem;
}
.note-inner {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.92rem;
}

/* ==========================
   GALLERY
========================== */
.gallery-section { padding: 3rem 0 6rem; }
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1rem;
  font-style: italic;
}
.gallery-item.hidden { display: none; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox-img-wrap img {
  max-height: 80vh;
  max-width: 85vw;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-caption {
  margin-top: 1rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: var(--bg-dark);
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

/* ==========================
   CONTACT
========================== */
.contact-section { padding: 4rem 0 5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-details { margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cd-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-icon svg { width: 18px; height: 18px; color: var(--gold); }
.cd-text { display: flex; flex-direction: column; }
.cd-text strong { color: var(--text-main); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.cd-text span, .cd-text a { color: var(--text-muted); font-size: 0.92rem; }
.contact-note {
  display: flex;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 1.2rem;
}
.note-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-note p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
}
.booking-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-main);
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.04);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-errors {
  background: rgba(200,60,60,0.1);
  border: 1px solid rgba(200,60,60,0.3);
  border-radius: 3px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.form-errors p { color: #e88; font-size: 0.85rem; padding: 0.2rem 0; }
.form-success {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  padding: 3rem 2rem;
  text-align: center;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--gold); }
.form-success p { color: var(--text-muted); margin-bottom: 1.5rem; }
.map-section { padding: 2rem 0 5rem; }
.map-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
  text-align: center;
}
.map-inner h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--gold-light); }
.map-inner > p { color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; font-size: 0.92rem; }
.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.5) 100%);
  border: 1px dashed var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}
.map-pin-visual svg { width: 60px; height: 72px; }

/* ==========================
   FOOTER
========================== */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { padding: 0.3rem 0; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-bottom p { color: var(--text-dark); font-size: 0.78rem; letter-spacing: 0.05em; }

/* ==========================
   ANIMATIONS
========================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].animated {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.gallery-section,
.contact-section,
.rooms-full,
.cta-section,
.testimonial-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .home-carousel-track { transition: none; }
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 1024px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .navbar { padding: 0.75rem 1.25rem; }
  .navbar.scrolled { padding: 0.6rem 1.25rem; }
  .logo-name { font-size: 0.95rem; }
  .logo-tagline { display: none; }
  .hero-content { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-scroll { bottom: 4rem; }
  .page-hero { min-height: 45vh; }
  .page-hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .sound-toggle {
    bottom: 1rem;
    right: 1rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.7rem;
  }
  .sound-label { display: none; }
  .home-carousel-slide {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0.6rem;
  }
  .home-carousel-arrow { min-width: 44px; min-height: 44px; }
  .gallery-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 0.6rem 1.2rem;
  }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(85%, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--bg-mid);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transition: right 0.35s var(--transition);
    border-left: 1px solid var(--border);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1rem;
    padding: 0.9rem 0;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
    min-height: 48px !important;
  }
  .nav-burger { display: flex; }
  .btn { min-height: 44px; }
  .intro-grid { grid-template-columns: 1fr; }
  .visual-stack { height: 320px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .room-full-card,
  .room-full-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .rfc-amenities { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .gallery-item.wide { grid-column: span 2; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .intro-section { padding: 4rem 0 3rem; }
  .cta-section { padding: 3rem 0 4rem; }
  .cta-inner { padding: 2rem 1.25rem; }
  .footer-bottom p { font-size: 0.7rem; line-height: 1.5; }
  .home-carousel-frame { gap: 0.5rem; }
  .home-carousel-arrow { width: 40px; height: 40px; }
  .home-carousel-slide {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .home-carousel-caption { font-size: 0.8rem; padding: 0.75rem; }
}
