/* ===========================================
   TAGAL TAMAN TINOPIKON — Tourism Website
   Design: Borneo Eco-Premium
   Palette: Jungle Green · River Teal · Earth Gold
=========================================== */

/* ---- Tokens ---- */
:root {
  --jungle-black:  #07120d;
  --jungle-dark:   #0c1f15;
  --jungle:        #143a22;
  --jungle-mid:    #1f5c33;
  --jungle-light:  #2d8050;
  --teal-dark:     #076c60;
  --teal:          #0d9e8a;
  --teal-light:    #4ecdc4;
  --teal-pale:     #b2ede8;
  --gold:          #c8972a;
  --gold-light:    #e6b84a;
  --sand:          #c4a77d;
  --earth:         #8b6914;
  --cream:         #f5efe6;
  --cream-dark:    #ede4d6;
  --white:         #ffffff;
  --text-dark:     #1a2e1f;
  --text-mid:      #3d5947;
  --text-muted:    #6b8a74;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--teal); }
strong { font-weight: 700; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; }
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--jungle-dark);
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--teal-light); font-style: italic; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 2rem; height: 1.5px;
  background: var(--teal);
}
.eyebrow.light { color: var(--teal-light); }
.eyebrow.light::before { background: var(--teal-light); }

.section-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted); max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow::before { display: none; }

/* ---- Cursor ---- */
#cur {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px;
  background: var(--teal); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, background .2s;
  mix-blend-mode: multiply;
}
#curF {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px;
  border: 1.5px solid rgba(13,158,138,0.45); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), width .3s, height .3s, border-color .3s;
}
body.cursor-hover #cur { width: 16px; height: 16px; background: var(--gold); }
body.cursor-hover #curF { width: 64px; height: 64px; border-color: var(--gold); }

/* ---- Scroll progress ---- */
#scrollBar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--teal-dark), var(--gold));
  z-index: 10000; pointer-events: none;
  transition: width .08s linear;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed; inset: 0; z-index: 20000;
  background: var(--jungle-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; }
.pl-ripple {
  position: relative; width: 60px; height: 60px; margin: 0 auto 1.5rem;
}
.pl-ripple span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--teal);
  animation: pl-ripple-anim 1.8s ease-out infinite;
}
.pl-ripple span:nth-child(2) { animation-delay: .6s; }
@keyframes pl-ripple-anim {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.pl-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; color: var(--teal-light);
  letter-spacing: 0.12em;
  animation: pl-pulse 1.4s ease-in-out infinite alternate;
}
@keyframes pl-pulse { from { opacity: .4; } to { opacity: 1; } }

/* ---- Navbar ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background .5s, padding .5s, backdrop-filter .5s, box-shadow .5s;
}
#navbar.scrolled {
  background: rgba(7, 18, 13, 0.9);
  backdrop-filter: blur(20px);
  padding: .85rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  color: var(--white);
}
.brand-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  transition: transform .3s var(--ease);
}
.nav-brand:hover .brand-logo { transform: rotate(8deg) scale(1.08); }
.brand-words { display: flex; flex-direction: column; gap: 2px; }
.brand-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .95rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.brand-sub {
  font-size: .6rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  position: relative; padding-bottom: 3px;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--teal-light);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover { color: var(--teal-light); }
.nav-links a:hover::after { width: 100%; }
.nav-pill {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: .5rem 1.25rem !important;
  border-radius: 50px;
  transition: background .3s, transform .3s !important;
}
.nav-pill:hover { background: var(--teal-light) !important; transform: translateY(-2px); }
.nav-pill::after { display: none !important; }

/* ---- Language Toggle ---- */
.nav-right {
  display: flex; align-items: center; gap: 1.25rem;
}
.lang-toggle {
  display: flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 50px; overflow: hidden;
  transition: border-color .3s;
}
#navbar.scrolled .lang-toggle { border-color: rgba(13,158,138,.4); }
.lt-btn {
  padding: .38rem .8rem;
  background: transparent; border: none;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.45); cursor: none;
  transition: color .25s, background .25s;
  line-height: 1;
}
.lt-btn.active {
  background: var(--teal);
  color: #fff;
  border-radius: 50px;
}
.lt-div {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* ---- Language transition overlay ---- */
#langOverlay {
  position: fixed; inset: 0; z-index: 9990;
  background: var(--jungle-dark);
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease;
}
#langOverlay.flash { opacity: .35; pointer-events: all; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: .5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: -60px;
  background-size: cover; background-position: center;
  will-change: transform;
  transition: transform .05s linear;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(7,18,13,.7) 100%);
  z-index: 1;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,18,13,.2) 0%,
    rgba(7,18,13,.3) 40%,
    rgba(7,18,13,.75) 85%,
    rgba(7,18,13,.95) 100%
  );
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 5; text-align: center; padding: 0 2rem;
  max-width: 1000px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: #ffffff;
  background: rgba(4,70,62,.75);
  border: 1px solid rgba(13,158,138,.55);
  padding: .5rem 1.4rem; border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.badge-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: .5; }
}
.hero-title-wrap { margin-bottom: 1.5rem; }
.hero-title-wrap h1 {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.ht-word {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5.2vw, 6.2rem);
  font-weight: 900; line-height: .95;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(13,158,138,.25), 0 0 80px rgba(7,18,13,.5);
  letter-spacing: .32em;
  text-indent: .32em;
}
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,.8); margin-bottom: 1rem;
}
.hero-loc {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white); font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(13,158,138,.35);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(13,158,138,.5); }
.btn-primary.large { padding: 1.1rem 2.8rem; font-size: .9rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem; border-radius: 50px;
  background: transparent; border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white); font-size: .85rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, transform .3s var(--ease-spring);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 11px; position: relative;
}
.scroll-dot {
  width: 4px; height: 6px; background: var(--teal-light); border-radius: 2px;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 6;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; }

/* ---- Ramp-in animation ---- */
.ramp-in {
  opacity: 0; transform: translateY(30px);
  animation: ramp-up .9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes ramp-up {
  to { opacity: 1; transform: none; }
}

/* ---- Floating Leaves ---- */
.floating-leaves {
  position: absolute; inset: 0; overflow: hidden; z-index: 3;
  pointer-events: none;
}
.leaf {
  position: absolute; top: -40px;
  width: 18px; height: 24px;
  opacity: 0;
  animation: leaf-drift linear infinite;
}
.leaf svg { width: 100%; height: 100%; }
@keyframes leaf-drift {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  5%   { opacity: .6; }
  95%  { opacity: .2; }
  100% { transform: translateY(105vh) rotate(960deg) translateX(var(--drift, 40px)); opacity: 0; }
}

/* ---- Stats ---- */
.section-stats { background: var(--cream); padding: 4rem 0; }
.stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: var(--white);
  border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 4px 40px rgba(20, 58, 34, .08);
}
.stat {
  flex: 1 1 180px; padding: 2.5rem 2rem;
  text-align: center;
  transition: background .3s;
}
.stat:hover { background: rgba(13,158,138,.04); }
.stat-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--jungle-dark);
  line-height: 1; margin-bottom: .5rem;
}
.stat-lbl {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px; height: 60px; background: var(--cream-dark);
  flex-shrink: 0;
}

/* ---- Story ---- */
.section-story { background: var(--cream); padding: 8rem 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.story-text { display: block; }
.story-text .section-title { margin-top: .5rem; }
.lead-text {
  font-size: 1.15rem; line-height: 1.8; color: var(--text-dark);
  margin-bottom: 1.5rem; font-weight: 400;
}
.story-text p {
  font-size: .98rem; line-height: 1.85; color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-dark); margin-top: 1rem;
  transition: gap .3s, color .3s;
}
.link-arrow:hover { gap: 1rem; color: var(--teal); }

.story-imgs { display: flex; flex-direction: column; gap: 1rem; }
.si-main {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(7,18,13,.2);
}
.si-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.si-main:hover img { transform: scale(1.04); }
.si-main-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem 1.25rem;
  background: linear-gradient(transparent, rgba(7,18,13,.75));
  font-size: .78rem; font-style: italic; color: rgba(255,255,255,.85);
}
.si-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.si-small {
  position: relative; border-radius: 1rem; overflow: hidden;
  aspect-ratio: 3/2;
}
.si-small img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.si-small:hover img { transform: scale(1.05); }
.si-small span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .5rem .75rem;
  background: linear-gradient(transparent, rgba(7,18,13,.75));
  font-size: .72rem; font-style: italic; color: rgba(255,255,255,.8);
}

/* ---- Experiences ---- */
.section-experiences {
  background: var(--jungle-dark); padding: 0;
  position: relative;
}
.wave-in, .wave-out { line-height: 0; }
.wave-in  svg, .wave-out svg { width: 100%; }
.wave-in  { height: 60px; }
.wave-out { height: 60px; }
.section-experiences .container { padding-top: 4rem; padding-bottom: 6rem; }
.section-experiences .section-title { color: var(--white); }

.exp-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1.5rem;
}
.exp-card {
  flex: 0 0 calc(33.33% - 1rem);
  max-width: calc(33.33% - 1rem);
  min-width: 280px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.5rem; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .3s;
}
.exp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  border-color: rgba(13,158,138,.4);
}
.ec-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  transition: transform .6s var(--ease);
}
.exp-card:hover .ec-img { transform: scale(1.04); }
.ec-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(7,18,13,.7) 100%);
}
.ec-body { padding: 1.75rem; }
.ec-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  color: rgba(13,158,138,.25); margin-bottom: .75rem;
}
.ec-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: .75rem;
}
.ec-body p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.ec-meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.ec-meta span {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .06em;
  background: rgba(13,158,138,.15);
  border: 1px solid rgba(13,158,138,.25);
  color: var(--teal-light); padding: .3rem .8rem; border-radius: 50px;
}

/* ---- Fish background scroll reveal ---- */
.fish-bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('images/491827508_2717735585093874_8366181339227630026_n.jpg');
  background-size: cover; background-position: center 60%;
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,.9) 55%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,.9) 55%, black 100%);
}
.fish-bg-layer::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(7,18,13,.72);
}
.section-experiences .wave-in,
.section-experiences .container,
.section-experiences .wave-out { position: relative; z-index: 2; }

/* ---- Fish Panel (inside experiences section) ---- */
.fish-panel {
  margin-top: 5rem;
  padding-top: 4.5rem;
  border-top: 1px solid rgba(78,205,196,.18);
  position: relative;
}
.fish-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.fish-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.fish-text .section-title { color: var(--white); }
.fish-text .section-title em { color: var(--teal-light); }
.fish-text p {
  font-size: .98rem; line-height: 1.85; color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
}
.fish-counters {
  display: flex; flex-direction: column; gap: 2.5rem;
}
.fc-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(13,158,138,.2);
  border-radius: 1rem;
  transition: background .3s, border-color .3s, transform .3s;
}
.fc-item:hover {
  background: rgba(13,158,138,.08);
  border-color: rgba(13,158,138,.5);
  transform: translateX(8px);
}
.fc-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--teal-light);
  line-height: 1; min-width: 100px; text-align: right;
}
.fc-label { font-size: .85rem; line-height: 1.5; color: rgba(255,255,255,.6); }

/* ---- Gallery ---- */
.section-gallery { background: var(--cream-dark); padding: 8rem 0 2rem; }
.gallery-cta {
  text-align: center; margin-top: 2rem; padding: 2rem;
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted);
}
.gallery-masonry {
  column-count: 4; column-gap: 6px;
  padding: 0 6px; margin-top: 1rem;
}
.gal-item {
  break-inside: avoid; margin-bottom: 6px;
  position: relative; overflow: hidden;
  border-radius: 6px; cursor: pointer;
  background: var(--jungle-mid);
}
.gal-item img {
  width: 100%; display: block;
  transition: transform .7s var(--ease);
}
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,18,13,.65) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.gal-expand {
  position: absolute; top: .75rem; right: .75rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(13,120,108,.95); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8);
  transition: opacity .3s, transform .3s;
}
.gal-item:hover .gal-expand { opacity: 1; transform: scale(1); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  width: 100vw; height: 100vh;
  margin: 0; padding: 0; border: none;
  max-width: 100vw; max-height: 100vh;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lightbox::backdrop { display: none; }
.lightbox:not([open]) { display: none; }
.lb-backdrop {
  position: fixed; inset: 0; z-index: -1;
  background: rgba(7,18,13,.95);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.lb-stage {
  position: relative; z-index: 1;
  max-width: 88vw; max-height: 88vh;
}
.lb-stage img {
  max-width: 88vw; max-height: 80vh;
  border-radius: .75rem;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  object-fit: contain;
}
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,30,20,.75); border: none;
  color: #ffffff; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
}
.lb-close:hover { background: rgba(255,255,255,.25); transform: scale(1.1) rotate(90deg); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(13,90,80,.85); border: 1.5px solid rgba(13,158,138,.7);
  color: #ffffff; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
}
.lb-nav:hover { background: rgba(13,158,138,.6); transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-info {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
  display: flex; flex-direction: column; gap: .3rem;
}
#lbCounter { font-size: .72rem; font-weight: 700; color: var(--teal-light); letter-spacing: .15em; }
#lbCaption { font-size: .78rem; font-style: italic; color: rgba(255,255,255,.5); }

/* ---- Conservation ---- */
.section-conservation {
  position: relative; padding: 10rem 0 12rem; overflow: hidden;
}
.section-conservation::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; z-index: 4; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.cons-bg {
  position: absolute; inset: -80px;
  background-size: cover; background-position: center;
  will-change: transform;
}
.cons-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,18,13,.88) 0%, rgba(7,18,13,.78) 100%);
  z-index: 1;
}
.section-conservation .container { position: relative; z-index: 2; }
.zone-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 5rem;
}
.zone-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem; padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s, background .3s;
}
.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.zc-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.zone-red   .zc-accent { background: #ef4444; }
.zone-amber .zc-accent { background: #f59e0b; }
.zone-green .zc-accent { background: #22c55e; }
.zone-red:hover   { background: rgba(239,68,68,.08); border-color: rgba(239,68,68,.3); }
.zone-amber:hover { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.3); }
.zone-green:hover { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.3); }
.zc-dot {
  width: 12px; height: 12px; border-radius: 50%;
  margin-bottom: 1.25rem;
}
.zc-dot.red   { background: #ef4444; box-shadow: 0 0 12px rgba(239,68,68,.6); }
.zc-dot.amber { background: #f59e0b; box-shadow: 0 0 12px rgba(245,158,11,.6); }
.zc-dot.green { background: #22c55e; box-shadow: 0 0 12px rgba(34,197,94,.6); }
.zc-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.zone-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
  margin-bottom: 1rem;
}
.zone-card p { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.zc-rule {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08);
}
.cons-quote {
  text-align: center; max-width: 700px; margin: 0 auto;
  padding: 3rem; border: 1px solid rgba(13,158,138,.25);
  border-radius: 1.5rem; background: rgba(13,158,138,.06);
}
.cons-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic; font-weight: 700;
  color: rgba(255,255,255,.85); line-height: 1.55; margin-bottom: 1.5rem;
}
.cons-quote figcaption {
  font-size: .8rem; letter-spacing: .1em; color: rgba(255,255,255,.45);
}

/* ---- Visit ---- */
.section-visit { background: var(--cream); padding: 5rem 0 8rem; }
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 5rem;
}
.vc {
  background: var(--white); border-radius: 1.5rem;
  padding: 2.5rem; border: 1px solid var(--cream-dark);
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.vc:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(20,58,34,.1); }
.vc-icon-wrap {
  width: 52px; height: 52px; border-radius: 1rem;
  background: rgba(13,158,138,.1); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.vc h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-weight: 700; color: var(--jungle-dark);
  margin-bottom: 1.25rem;
}
.vc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .6rem 0; border-bottom: 1px solid var(--cream-dark);
  font-size: .9rem;
}
.vc-row strong { color: var(--text-dark); font-weight: 600; }
.vc-row span { color: var(--text-mid); }
.vc-row .price { color: var(--teal-dark); font-weight: 700; font-size: 1rem; }
.vc-link {
  color: var(--teal); font-size: .85rem; word-break: break-all;
  transition: color .2s;
}
.vc-link:hover { color: var(--teal-dark); }
.vc p { font-size: .9rem; line-height: 1.7; color: var(--text-mid); margin-top: .75rem; }
.vc-note {
  font-size: .8rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: .75rem;
}
.vc-list { margin-top: .75rem; }
.vc-list li {
  padding: .45rem 0; border-bottom: 1px solid var(--cream-dark);
  font-size: .88rem; color: var(--text-mid);
  display: flex; align-items: center; gap: .6rem;
}
.vc-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.visit-cta { text-align: center; }
.visit-cta p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 1.3rem;
  color: var(--text-mid); margin-bottom: 1.5rem;
}

/* ---- Footer ---- */
.site-footer { position: relative; padding: 8rem 0 4rem; overflow: hidden; }
.footer-bg {
  position: absolute; inset: -60px;
  background-size: cover; background-position: center;
  will-change: transform;
}
.footer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,18,13,.88) 0%, rgba(7,18,13,.97) 100%);
  z-index: 1;
}
.footer-inner { position: relative; z-index: 2; text-align: center; }
.footer-logo { width: 80px; height: 80px; margin: 0 auto 1.5rem; border-radius: 50%; }
.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--white); margin-bottom: .75rem;
}
.footer-loc {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1.25rem;
}
.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--teal-light); margin-bottom: 1.5rem;
}
.footer-contact {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 2.5rem;
}
.footer-contact-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--teal-light); }
.footer-contact-item svg { flex-shrink: 0; }
.footer-nav {
  display: flex; justify-content: center; gap: 2.5rem;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.footer-nav a {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--teal-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p {
  font-size: .78rem; line-height: 1.8;
  color: rgba(255,255,255,.25);
}

/* ---- Ambient fish school ---- */
.ambient-fish {
  position: fixed; z-index: 500; pointer-events: none;
  width: 300px; height: 110px; opacity: 0;
}
.school-fish {
  position: absolute;
}
@keyframes fish-wobble {
  from { transform: translateY(-5px) rotate(-1deg); }
  to   { transform: translateY(5px)  rotate(1deg);  }
}

/* ---- Scroll reveal ---- */
.reveal-up {
  opacity: 0; transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-up.in { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-left.in { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-right.in { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0; transform: scale(.88);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-scale.in { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 4rem; }
  .fish-layout { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-masonry { column-count: 3; }
  .zone-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #navbar { padding: 1rem 1.5rem; }
  #navbar.scrolled { padding: .7rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column; gap: 1.5rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,18,13,.97); backdrop-filter: blur(20px);
    padding: 2rem 1.5rem; border-bottom: 1px solid rgba(13,158,138,.2);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .exp-card { flex: 0 0 100%; max-width: 100%; }
  .gallery-masonry { column-count: 2; }
  .fish-counters { gap: 1rem; }
  .fc-item { flex-direction: column; gap: .5rem; text-align: center; }
  .fc-num { min-width: unset; text-align: center; }
  .stats-row { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .zone-grid { grid-template-columns: 1fr; }
  .si-pair { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-masonry { column-count: 1; }
  .visit-grid { grid-template-columns: 1fr; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}
