/* ================================================================
   FREECAST PATAGONIA — index.css
   Premium Fly Fishing Landing Page
   ================================================================ */

/* ---- Google Fonts are loaded via <head> link ---- */

/* ================================================================
   0. DESIGN TOKENS
   ================================================================ */
:root {
  --fc-obsidian:    #0A0E0D;
  --fc-charcoal:    #1A1F1E;
  --fc-slate:       #2C3432;
  --fc-moss:        #2D4A3E;
  --fc-pine:        #1B3A2D;
  --fc-sage:        #6B8F71;
  --fc-river:       #4A7C6F;
  --fc-champagne:   #C9A96E;
  --fc-gold-light:  #D4B87A;
  --fc-sand:        #E8DCC8;
  --fc-cream:       #F5F0E8;
  --fc-ivory:       #FAF8F4;
  --fc-white:       #FFFFFF;
  --fc-mist:        #B8C4B8;



  --fs-hero-narrative: clamp(1.4rem, 3vw, 2.4rem);
  --fs-hero-title:     clamp(3rem, 7vw, 6.5rem);
  --fs-section-title:  clamp(2rem, 4vw, 3.5rem);
  --fs-card-title:     clamp(1.2rem, 2vw, 1.6rem);
  --fs-body:           1.0625rem;
  --fs-body-lg:        1.125rem;
  --fs-caption:        0.8125rem;
  --fs-cta:            0.875rem;
  --fs-label:          0.75rem;

  --fc-radius-sm: 4px;
  --fc-radius-md: 8px;
  --fc-radius-lg: 16px;

  --fc-ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fc-ease-drama:  cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--fc-obsidian);
  color: var(--fc-cream);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.4s var(--fc-ease-out);
}

.nav__logo-img,
.mobile-menu__logo-img,
.footer__brand-img {
  opacity: 1 !important;
  filter: none !important;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ================================================================
   2. UTILITIES
   ================================================================ */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fc-champagne);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--fs-section-title);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fc-ivory);
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: var(--fs-body-lg);
  font-weight: 300;
  color: var(--fc-mist);
  line-height: 1.85;
  max-width: 760px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-cta);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--fc-radius-sm);
  transition: all 0.25s var(--fc-ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--fc-champagne);
  color: var(--fc-obsidian);
  border: 2px solid var(--fc-champagne);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--fc-gold-light);
  border-color: var(--fc-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--fc-champagne);
  border: 2px solid transparent;
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  color: var(--fc-gold-light);
}
.btn--outline {
  background: transparent;
  color: var(--fc-ivory);
  border: 1.5px solid rgba(201,169,110,0.4);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: var(--fc-champagne);
  color: var(--fc-champagne);
}
.btn--large {
  padding: 18px 52px;
  font-size: 0.9375rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

/* ================================================================
   3. NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-100%);
  transition: background 0.4s var(--fc-ease-out),
              box-shadow 0.4s var(--fc-ease-out),
              opacity 0.6s var(--fc-ease-out),
              transform 0.6s var(--fc-ease-drama);
}
.nav.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nav.is-scrolled {
  background: rgba(10, 14, 13, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--fc-champagne);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav__link {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-cream);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--fc-champagne); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__lang {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fc-mist);
  padding: 4px 10px;
  border: 1px solid rgba(184,196,184,0.25);
  border-radius: 12px;
  transition: all 0.2s;
}
.nav__lang:hover { color: var(--fc-champagne); border-color: var(--fc-champagne); }
.nav__cta {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fc-champagne);
  border: 1.5px solid var(--fc-champagne);
  padding: 8px 22px;
  border-radius: var(--fc-radius-sm);
  transition: all 0.25s;
}
.nav__cta:hover {
  background: var(--fc-champagne);
  color: var(--fc-obsidian);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fc-cream);
  border-radius: 2px;
  transition: all 0.3s;
}
/* Mobile Menu */
.nav__mobile {
  display: flex;
  position: fixed;
  inset: 0;
  height: 100vh;
  max-height: 100vh;
  background: rgba(10, 14, 13, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.4s var(--fc-ease-out), transform 0.4s var(--fc-ease-out), visibility 0.4s var(--fc-ease-out);
  overflow: hidden;
}
.nav__mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 110px;
  width: 100%;
  border-bottom: 1px solid rgba(250, 248, 244, 0.08);
  flex-shrink: 0;
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 160px;
}
.mobile-menu__logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
  display: block;
}
.mobile-menu__close {
  font-size: 2.5rem;
  color: var(--fc-cream);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 8px;
  line-height: 1;
}
.mobile-menu__close:hover {
  color: var(--fc-champagne);
}
.mobile-menu__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  width: 100%;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.nav__mobile li {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s var(--fc-ease-out), transform 0.4s var(--fc-ease-out);
}
.nav__mobile.is-open li {
  opacity: 1;
  transform: translateY(0);
}
.nav__mobile.is-open li:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile.is-open li:nth-child(2) { transition-delay: 0.10s; }
.nav__mobile.is-open li:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile.is-open li:nth-child(4) { transition-delay: 0.20s; }
.nav__mobile.is-open li:nth-child(5) { transition-delay: 0.25s; }
.nav__mobile.is-open li:nth-child(6) { transition-delay: 0.30s; }
.nav__mobile.is-open li:nth-child(7) { transition-delay: 0.35s; }
.nav__mobile.is-open li:nth-child(8) { transition-delay: 0.40s; }

.nav__mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--fc-cream);
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.03);
  transition: color 0.3s, transform 0.3s;
}
.nav__mobile a:hover {
  color: var(--fc-champagne);
  transform: scale(1.05);
}
.nav__mobile .mobile-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fc-obsidian);
  background: var(--fc-champagne);
  border: 1.5px solid var(--fc-champagne);
  padding: 14px 40px;
  border-radius: var(--fc-radius-sm);
  width: 100%;
  display: block;
  text-align: center;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
  transition: all 0.25s;
}
.nav__mobile .mobile-cta:hover {
  background: transparent;
  color: var(--fc-champagne);
}
.nav__mobile .mobile-wa-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  border: 1.5px solid #25d366;
  padding: 14px 40px;
  border-radius: var(--fc-radius-sm);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.05);
  transition: all 0.25s;
}
.nav__mobile .mobile-wa-btn:hover {
  background: #25d366;
  color: var(--fc-obsidian);
}
.nav__mobile .wa-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.nav__mobile .mobile-lang {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--fc-mist);
  background: transparent;
  border: 1px solid rgba(184, 196, 184, 0.25);
  padding: 8px 24px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.nav__mobile .mobile-lang:hover {
  color: var(--fc-champagne);
  border-color: var(--fc-champagne);
}

/* ================================================================
   4. HERO VIDEO (Fullscreen cinematic header)
   ================================================================ */
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--fc-ease-out);
}
.nav__logo-img:hover {
  transform: scale(1.04);
}

.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--fc-obsidian);
  padding-bottom: 100px; /* leaves room for scroll indicator at bottom */
}

.hero-video__media-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.0);
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 13, 0.12) 0%,
    rgba(10, 14, 13, 0.02) 50%,
    rgba(10, 14, 13, 0.35) 100%
  );
  z-index: 1;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  padding-top: 80px; /* offset for nav */
  max-width: 850px;
}

.hero-video__content .section-label {
  color: var(--fc-champagne);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.hero-video__content .intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fc-ivory);
  margin-bottom: 1.5rem;
}

.hero-video__content .intro-body {
  font-size: clamp(1rem, 1.5vw, 1.20rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--fc-cream);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.hero-video__content .intro-badge {
  margin-bottom: 2rem;
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fc-cream);
  border: 1px solid rgba(250, 248, 244, 0.3);
  padding: 8px 20px;
  border-radius: 20px;
}

/* Scroll indicator — bottom-right, clickable, never overlaps content due to hero padding */
.hero-video__scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  left: auto;
  transform: none;
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  pointer-events: auto;        /* enabled click interaction */
  transition: border-color 0.3s, transform 0.3s var(--fc-ease-out);
}
.hero-video__scroll:hover {
  border-color: var(--fc-champagne);
  transform: translateY(-4px); /* premium micro-animation on hover */
}
.scroll-arrow {
  width: 5px;
  height: 5px;
  background: var(--fc-champagne);
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(16px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* Hide scroll indicator on mobile so it never overlaps stacked buttons */
@media (max-width: 767px) {
  .hero-video__scroll {
    display: none;
  }
}

/* Gallery Transition section */
.section-gallery-transition {
  background: var(--fc-obsidian);
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}
.section-gallery-transition .intro-gallery {
  margin-top: 0;
}

/* ================================================================
   5. MAIN CONTENT
   ================================================================ */
#main-content {
  opacity: 1;
  transform: none;
  background: var(--fc-obsidian);
}

/* ================================================================
   6. SECTION INTRO (post-reveal)
   ================================================================ */


.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section--dark  { background: linear-gradient(180deg, #0A0E0D 0%, #1A1F1E 100%); }
.section--mid   { background: #1A1F1E; }
.section--black { background: #0A0E0D; }


/* ── PHOTO STRIP (infinite scroll, zero-gap) ─────────────────────── */
.photo-strip-section {
  overflow: hidden;
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.photo-strip-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: grab;
  /* NO ::before/::after gradients — they create rendering artifacts with scrollLeft */
}
.photo-strip-outer:active { cursor: grabbing; }
.photo-strip-inner {
  display: flex;
  gap: 0;
  /* NO will-change:transform — it creates a GPU compositing layer that breaks
     sub-pixel alignment between adjacent flex items, causing a dark gap line */
}
.photo-strip-inner img {
  display: block;
  flex-shrink: 0;
  width: 260px;
  height: 380px;
  object-fit: cover;
  object-position: center;
  /* Close sub-pixel gap between items */
  margin-right: -1px;
  filter: brightness(0.88) saturate(1.05);
  transition: filter 0.3s ease, transform 0.4s ease;
  -webkit-user-drag: none;
  user-select: none;
}
.photo-strip-inner img:hover {
  filter: brightness(1) saturate(1.15);
  transform: scale(1.03);
  z-index: 2;
  position: relative;
}

/* ================================================================
   7. WATER CARDS (Rivers)
   ================================================================ */
.subsection { padding: clamp(3rem,7vw,6rem) 0; }
.subsection--alt { background: rgba(255,255,255,0.015); }

.subsection-header {
  margin-bottom: 3rem;
}

/* Split Header Layout */
.section-header-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 4rem;
}
.section-header-split .section-intro,
.section-header-split .subsection-intro {
  margin-bottom: 0;
}
.section-header-split .subsection-header {
  margin-bottom: 0;
}
.header-framed-img {
  position: relative;
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.4s var(--fc-ease-out), transform 0.4s var(--fc-ease-out);
}
.header-framed-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--fc-ease-out);
}
.header-framed-img:hover {
  border-color: var(--fc-champagne);
  transform: translateY(-4px);
}
.header-framed-img:hover img {
  transform: scale(1.04);
}
.subsection-label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fc-river);
  margin-bottom: 0.75rem;
}
.subsection-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fc-ivory);
  margin-bottom: 1rem;
}
.subsection-intro {
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--fc-mist);
  max-width: 680px;
  line-height: 1.8;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.water-card {
  position: relative;
  background: var(--fc-charcoal);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--fc-ease-out), box-shadow 0.4s, border-color 0.4s;
}
.water-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--fc-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,169,110,0.12) 0%, transparent 60%, rgba(201,169,110,0.03) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.4s var(--fc-ease-out);
}
.water-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(201,169,110,0.25);
}
.water-card:hover::after {
  background: linear-gradient(135deg, rgba(201,169,110,0.45) 0%, transparent 40%, rgba(201,169,110,0.15) 100%);
}
.water-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.water-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--fc-ease-out), filter 0.4s;
  filter: brightness(0.88) saturate(1.05);
}
.water-card:hover .water-card__img-wrap img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.15);
}
.water-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fc-obsidian);
  background: var(--fc-champagne);
  padding: 4px 12px;
  border-radius: 12px;
}
.water-card__body { padding: 1.5rem; }
.water-card__label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fc-ivory);
  display: block;
  margin-bottom: 0.3rem;
}
.water-card__title {
  font-style: italic;
  font-size: 0.9rem;
  font-family: 'Playfair Display', serif;
  color: var(--fc-champagne);
  margin-bottom: 0.9rem;
  font-weight: 400;
}
.water-card__text {
  font-size: 0.9375rem;
  color: var(--fc-mist);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.water-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.water-card__tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fc-river);
  background: rgba(74,124,111,0.12);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(74,124,111,0.2);
}

/* Creeks Grid */
.creeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.creek-card {
  background: var(--fc-charcoal);
  border: 1px solid rgba(201,169,110,0.07);
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--fc-ease-out), border-color 0.3s;
}
.creek-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.2);
}
.creek-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: transform 0.5s var(--fc-ease-out), filter 0.3s;
}
.creek-card:hover img { transform: scale(1.06); filter: brightness(0.95) saturate(1.2); }
.creek-card__body { padding: 1.25rem; }
.creek-card__body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--fc-ivory);
  margin-bottom: 0.25rem;
}
.creek-card__tagline {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--fc-champagne);
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}
.creek-card__body p { font-size: 0.9rem; color: var(--fc-mist); line-height: 1.7; }

/* Lakes */
.lakes-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.lake-card {
  position: relative;
  background: var(--fc-charcoal);
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.07);
  transition: transform 0.4s var(--fc-ease-out), border-color 0.4s;
  display: flex;
  flex-direction: column;
}
.lake-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--fc-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 60%, rgba(201,169,110,0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.4s var(--fc-ease-out);
}
.lake-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,169,110,0.22);
}
.lake-card:hover::after {
  background: linear-gradient(135deg, rgba(201,169,110,0.4) 0%, transparent 40%, rgba(201,169,110,0.12) 100%);
}
.lake-card--featured {
  border-color: rgba(201,169,110,0.25);
  box-shadow: 0 0 45px rgba(201,169,110,0.12);
}
.lake-card__img { overflow: hidden; }
.lake-card__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.1);
  transition: transform 0.5s var(--fc-ease-out);
}
.lake-card:hover .lake-card__img img { transform: scale(1.07); }
.lake-card__body { padding: 1.5rem; flex: 1; }
.lake-card__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fc-river);
  display: block;
  margin-bottom: 0.5rem;
}
.lake-card__body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--fc-ivory);
  margin-bottom: 0.25rem;
}
.lake-card__tagline {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--fc-champagne);
  margin-bottom: 0.75rem;
}
.lake-card__body p { font-size: 0.9rem; color: var(--fc-mist); line-height: 1.75; }

/* ================================================================
   8. SPECIES
   ================================================================ */
.species-scroll {
  padding: 0 clamp(1.5rem, 5vw, 4rem) 2rem;
}

.species-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 992px) {
  .species-scroll {
    overflow-x: visible;
    padding-bottom: 0;
  }
  .species-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 1.5rem;
    flex-direction: row;
    align-items: stretch;
  }
}

.species-card {
  width: 100%;
  max-width: 420px;
  background: var(--fc-charcoal);
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.08);
  transition: transform 0.4s var(--fc-ease-out), border-color 0.4s;
}
@media (min-width: 992px) {
  .species-card {
    max-width: none;
  }
}
.species-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.25);
}
.species-card__img {
  position: relative;
  height: clamp(160px, 45vw, 240px);
  overflow: hidden;
}
.species-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.15);
  transition: transform 0.6s var(--fc-ease-out), filter 0.4s;
}
.species-card:hover .species-card__img img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.2);
}
.species-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(10,14,13,0.8) 0%, transparent 100%);
}
.species-card__scientific {
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(201,169,110,0.8);
  font-family: 'Playfair Display', serif;
}
.species-card__body { padding: 1.5rem; }
.species-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--fc-ivory);
  margin-bottom: 0.25rem;
}
.species-card__tagline {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--fc-champagne);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.species-card__body p {
  font-size: 0.9rem;
  color: var(--fc-mist);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.species-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.species-card__meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.meta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-river);
}
.species-card__meta span:not(.meta-label):not(.peak-chip) {
  font-size: 0.875rem;
  color: var(--fc-cream);
}
.peak-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fc-ivory) !important;
  padding: 3px 10px;
  border-radius: 10px;
  width: fit-content;
}

/* ================================================================
   9. MODALITIES
   ================================================================ */
.modalities-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.modality-card {
  background: var(--fc-charcoal);
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--fc-ease-out), border-color 0.4s;
}
.modality-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.2);
}
.modality-card--featured {
  border-color: rgba(201,169,110,0.22);
  box-shadow: 0 0 50px rgba(201,169,110,0.12);
}
.modality-card__img {
  overflow: hidden;
  flex-shrink: 0;
}
.modality-card__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: transform 0.6s var(--fc-ease-out), filter 0.4s;
}
.modality-card:hover .modality-card__img img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.2);
}
.modality-card__body { padding: 2rem; flex: 1; }
.modality-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.modality-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--fc-ivory);
  margin-bottom: 0.4rem;
}
.modality-card__tagline {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--fc-champagne);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.modality-card__body p {
  font-size: 0.9375rem;
  color: var(--fc-mist);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.modality-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modality-card__info div {
  font-size: 0.875rem;
  color: var(--fc-mist);
}
.modality-card__info span {
  font-weight: 600;
  color: var(--fc-river);
  margin-right: 0.3rem;
}

/* ================================================================
   10. TIMELINE / CALENDAR
   ================================================================ */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-top: 2rem;
}


.timeline-act {
  display: grid;
  grid-template-columns: auto 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative;
  padding: 3rem;
  background: var(--fc-charcoal);
  border-radius: var(--fc-radius-lg);
  border: 1px solid rgba(201,169,110,0.06);
  transition: border-color 0.4s;
}
.timeline-act:hover { border-color: rgba(201,169,110,0.18); }

.timeline-act--reverse {
  border-color: rgba(201,169,110,0.15);
  box-shadow: 0 0 60px rgba(201,169,110,0.08);
}

.timeline-act__number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  color: var(--fc-sage);
  border: 2px solid var(--fc-sage);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-act__months {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline-act__name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--fc-ivory);
  margin-bottom: 0.25rem;
}
.timeline-act__sub {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--fc-champagne);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}


.timeline-act__details {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
}
.timeline-act__details dt {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-river);
}
.timeline-act__details dd {
  font-size: 0.9rem;
  color: var(--fc-mist);
  line-height: 1.65;
}

.timeline-act__img {
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  align-self: stretch;
}
.timeline-act__img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: transform 0.6s var(--fc-ease-out);
}
.timeline-act:hover .timeline-act__img img { transform: scale(1.06); }

/* ================================================================
   11. LODGING
   ================================================================ */
.lodging-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.lodge-card {
  position: relative;
  background: var(--fc-charcoal);
  border-radius: var(--fc-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.07);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--fc-ease-out), box-shadow 0.4s var(--fc-ease-out);
}
.lodge-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--fc-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 60%, rgba(201,169,110,0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.4s var(--fc-ease-out);
}
.lodge-card:hover {
  border-color: rgba(201,169,110,0.22);
  box-shadow: 0 16px 45px rgba(0,0,0,0.45);
}
.lodge-card:hover::after {
  background: linear-gradient(135deg, rgba(201,169,110,0.45) 0%, transparent 40%, rgba(201,169,110,0.15) 100%);
}
.lodge-card--featured {
  border-color: rgba(201,169,110,0.28);
  box-shadow: 0 0 65px rgba(201,169,110,0.14);
}
.lodge-card__gallery { flex-shrink: 0; }
.lodge-card__main {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.05);
  transition: filter 0.4s;
}
.lodge-card:hover .lodge-card__main { filter: brightness(0.95) saturate(1.15); }
.lodge-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.lodge-card__thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.95);
  transition: filter 0.3s;
  cursor: pointer;
}
.lodge-card__thumbs img:hover { filter: brightness(1) saturate(1.1); }

.lodge-card__body { padding: 2rem; flex: 1; }
.lodge-card__new-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-obsidian);
  background: var(--fc-champagne);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.lodge-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--fc-ivory);
  margin-bottom: 0.3rem;
}
.lodge-card__tagline {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--fc-champagne);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.lodge-card__body p {
  font-size: 0.9375rem;
  color: var(--fc-mist);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.lodge-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.lodge-card__features li {
  font-size: 0.9rem;
  color: var(--fc-cream);
  font-weight: 400;
}

/* Gastro */
.gastro-strip { padding-top: 2rem; }
.gastro-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.gastro-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--fc-radius-sm);
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.3s, transform 0.4s var(--fc-ease-out);
}
.gastro-grid img:hover { filter: brightness(1) saturate(1.1); transform: scale(1.04); }

/* ================================================================
   12. CTA FINAL
   ================================================================ */
.section-cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.section-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.6);
}
.section-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,45,0.6) 0%, rgba(10,14,13,0.75) 100%);
}
.section-cta__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.section-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fc-ivory);
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.section-cta__body {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: var(--fc-mist);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ================================================================
   13. FOOTER
   ================================================================ */
.footer {
  background: var(--fc-obsidian);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--fc-champagne);
  display: block;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: var(--fs-caption);
  color: var(--fc-mist);
  letter-spacing: 0.08em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer__links a {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-mist);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--fc-champagne); }
.footer__logo-brand { display: flex; justify-content: flex-end; }
.footer__brand-img { height: 85px; width: auto; opacity: 0.8; filter: brightness(2); }
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.07);
  font-size: var(--fs-caption);
  color: rgba(184,196,184,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer__credits a {
  color: rgba(201, 169, 110, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__credits a:hover {
  color: var(--fc-champagne);
}

/* ================================================================
   14. SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--fc-ease-out), transform 0.7s var(--fc-ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   15. REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #main-content { opacity: 1 !important; transform: none !important; }
  .nav { opacity: 1 !important; transform: none !important; }
}

/* ================================================================
   16. RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .section-header-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .header-framed-img img {
    height: 240px;
  }
  .timeline-act {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .timeline-act__img {
    grid-column: 1 / -1;
    height: 250px;
  }
  .modalities-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .lakes-row { grid-template-columns: 1fr; }
  .lodging-split { grid-template-columns: 1fr; }
  .gastro-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__links { justify-content: center; }
  .footer__logo-brand { justify-content: center; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .nav__inner {
    height: 84px; /* compact but breathable on mobile */
    padding: 0 1.5rem;
  }
  
  .nav__logo-img {
    height: 44px;
  }

  .hero-video {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 4rem; /* clean bottom padding for mobile layout */
  }

  .hero-video__content { 
    padding-top: 140px; /* clear offset for nav to prevent overlap */
  }
  .hero-video__content .intro-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem;
  }
  .cta-group .btn {
    width: 100%;
  }

  /* Prevent horizontal overflow on buttons and badges on mobile */
  .btn {
    padding: 12px 24px;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
  .btn--large {
    padding: 14px 32px;
    font-size: 0.875rem;
  }
  .hero-video__content .intro-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    letter-spacing: 0.1em;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }
  
  /* Enforce fluidity on modal form layouts to prevent horizontal overflow */
  .modal-container {
    max-width: 90%;
    box-sizing: border-box;
  }
  .modal-content,
  .modal-form,
  .form-group-row,
  .form-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .intro-gallery { height: 260px; }
  .gallery-item--tall { flex: 1; }

  .cards-row { grid-template-columns: 1fr; }
  .creeks-grid { grid-template-columns: 1fr; }

  .photo-strip-inner img {
    width: 200px;
    height: 280px;
  }

  .timeline-act {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .timeline-act__number { width: 60px; height: 60px; font-size: 2.5rem; }
  .timeline-act__details { grid-template-columns: 1fr; }
  .timeline-act__details dt { margin-top: 0.5rem; }
  .timeline-act__img {
    height: 200px;
  }
  .timeline-act__img img {
    min-height: auto;
    height: 100%;
  }

  .header-framed-img img {
    height: 180px;
  }
  .lake-card__img img {
    height: 200px;
  }
  .lodge-card__thumbs img {
    height: 75px;
  }
  .gastro-grid img {
    height: 120px;
  }

  .lodge-card__thumbs { grid-template-columns: repeat(3, 1fr); }
  .gastro-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__inner { gap: 1.5rem; }
  .footer__links { gap: 1rem; }
}

@media (max-width: 480px) {
  .intro-gallery { flex-direction: column; height: auto; }
  .gallery-item { height: 200px; }
  .section-cta__title { font-size: 2rem; }
}

/* ================================================================
   17. BOOKING MODAL (Pop-up Form)
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--fc-ease-out);
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}
.modal-container {
  background: var(--fc-charcoal);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--fc-radius-lg);
  width: 90%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s var(--fc-ease-drama);
}
.modal-overlay.is-active .modal-container {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fc-ivory);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
  transition: all 0.2s var(--fc-ease-out);
}
.modal-close:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--fc-champagne);
  color: var(--fc-champagne);
  transform: rotate(90deg);
}
.modal-content, .modal-success {
  padding: 3rem clamp(1.5rem, 5vw, 3rem);
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--fc-ivory);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.modal-subtitle {
  font-size: 0.95rem;
  color: var(--fc-mist);
  margin-bottom: 2rem;
  font-weight: 300;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 580px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-champagne);
}
.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  max-width: 100%;
  background: rgba(10, 14, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--fc-radius-sm);
  color: var(--fc-cream);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--fc-ease-out), box-shadow 0.25s var(--fc-ease-out);
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--fc-champagne);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.2);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A96E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}
.form-group textarea {
  resize: vertical;
}
.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Modal Success State */
.modal-success {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(107, 143, 113, 0.15);
  border: 2px solid var(--fc-sage);
  color: var(--fc-sage);
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.modal-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--fc-ivory);
  line-height: 1.2;
}
.modal-success p {
  font-size: 1.05rem;
  color: var(--fc-mist);
  max-width: 440px;
  line-height: 1.6;
}
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.success-info {
  font-size: 0.875rem !important;
  color: rgba(184, 196, 184, 0.6) !important;
  margin-bottom: 0.5rem;
}
.success-actions .btn {
  width: 100%;
}

/* ================================================================
   18. PORTFOLIO GRID & LIGHTBOX (Pop-up Gallery Styles)
   ================================================================ */
.modal-container--portfolio {
  max-width: 900px;
  width: 85%;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--fc-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  background: var(--fc-obsidian);
  transition: transform 0.3s var(--fc-ease-out), border-color 0.3s var(--fc-ease-out), box-shadow 0.3s var(--fc-ease-out);
}
.portfolio-item:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--fc-champagne);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.95);
  transition: filter 0.3s var(--fc-ease-out), transform 0.6s var(--fc-ease-out);
}
.portfolio-item:hover img {
  filter: brightness(1) saturate(1.1);
  transform: scale(1.04);
}

/* Lightbox Visor Overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 6, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--fc-ease-out), visibility 0.3s var(--fc-ease-out);
}
.lightbox-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fc-ivory);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.25s var(--fc-ease-out);
}
.lightbox-close:hover {
  background: rgba(201, 169, 110, 0.18);
  border-color: var(--fc-champagne);
  color: var(--fc-champagne);
  transform: scale(1.05) rotate(90deg);
}
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s var(--fc-ease-drama);
}
.lightbox-overlay.is-active .lightbox-img-wrap {
  transform: scale(1);
}
.lightbox-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

/* Hamburger animations */
.nav__hamburger span {
  transition: transform 0.3s var(--fc-ease-out), opacity 0.3s var(--fc-ease-out), background-color 0.3s;
}
.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background-color: var(--fc-champagne);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background-color: var(--fc-champagne);
}

.mobile-lang {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fc-mist);
  padding: 6px 16px;
  border: 1px solid rgba(184, 196, 184, 0.3);
  border-radius: 20px;
  margin-top: 1.5rem;
  transition: all 0.3s;
}
.mobile-lang:hover {
  color: var(--fc-champagne);
  border-color: var(--fc-champagne);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .modal-container--portfolio {
    width: 95%;
    max-height: 85vh;
  }
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 998; /* below lightbox (3000) and mobile menu (9999), but above normal content */
  transition: transform 0.3s var(--fc-ease-out), box-shadow 0.3s;
  text-decoration: none;
}
.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.floating-wa-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.floating-wa-tooltip {
  position: absolute;
  right: 76px;
  background: var(--fc-obsidian);
  color: var(--fc-cream);
  padding: 8px 16px;
  border-radius: var(--fc-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.3s var(--fc-ease-out), transform 0.3s var(--fc-ease-out);
  border: 1px solid rgba(250, 248, 244, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.floating-wa-btn:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Adjust floating button position on smaller viewports if needed */
@media (max-width: 768px) {
  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .floating-wa-icon {
    width: 28px;
    height: 28px;
  }
  .floating-wa-tooltip {
    display: none; /* hide tooltip on mobile touch devices */
  }
}

/* Hide floating WA button when mobile menu is open to avoid visual overlap */
body:has(.nav__mobile.is-open) .floating-wa-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}

/* Adjust section bottom spacing to prevent excessive empty space between Lakes and Species */
#aguas {
  padding-bottom: 0;
}
#aguas .subsection:last-of-type {
  padding-bottom: 0;
}


/* ================================================================
   22. CREEK BADGE MODIFIER
   ================================================================ */
.badge--creek {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
}

