/* Blue Current — SIGNATURE tier ($1,000)
   Designed and animated: parallax hero, kinetic type, counters,
   filterable gallery + lightbox, slider, accordion, custom cursor. */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --abyss: #06212b;
  --deep: #0a3243;
  --foam: #f5f8f8;
  --paper: #fff;
  --coral: #ff6b5a;
  --aqua: #35c7bb;
  --sand: #f3e8d8;
  --ink: #0e2b35;
  --muted: #63808a;
  --line: rgba(14, 43, 53, 0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper); color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: "Outfit", system-ui, sans-serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); }

.eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--aqua); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; text-decoration: none;
  font-size: 14.5px; font-weight: 600; border: 0; cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.2s ease;
}
.btn-coral { background: var(--coral); color: #2a0b06; box-shadow: 0 8px 24px rgba(255,107,90,.32); }
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,107,90,.42); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--deep); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); }

/* ---------- custom cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999; mix-blend-mode: difference; }
.cursor {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid #fff; border-radius: 50%;
  transition: width .22s ease, height .22s ease, margin .22s ease, opacity .2s ease;
}
.cursor.grow { width: 62px; height: 62px; margin: -31px 0 0 -31px; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; border-radius: 50%; background: #fff; }
@media (hover: none), (max-width: 860px) { .cursor, .cursor-dot { display: none; } }

/* ---------- header + progress ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.solid { background: rgba(6,33,43,.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #fff; }
.logo-badge { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(140deg, var(--aqua), var(--deep)); display: grid; place-items: center; }
.logo-badge svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.9; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-family: "Outfit", sans-serif; font-size: 16.5px; }
.logo-text span { font-size: 8.5px; letter-spacing: 0.24em; text-transform: uppercase; opacity: .7; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: #fff; text-decoration: none; font-size: 14.5px; font-weight: 500; position: relative; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
  background: var(--aqua); transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.progress { position: absolute; left: 0; bottom: 0; height: 2px; background: var(--coral); width: 0; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; background: linear-gradient(180deg, #041820, var(--deep) 55%, #10556b); }
.hero-layers { position: absolute; inset: 0; pointer-events: none; }
.hero-layers svg { position: absolute; left: 0; width: 100%; }
.layer-1 { bottom: -2%; opacity: .30; }
.layer-2 { bottom: -4%; opacity: .45; }
.layer-3 { bottom: -6%; opacity: 1; }
.sunbeam {
  position: absolute; top: -20%; left: 50%; width: 60vw; height: 120vh;
  transform: translateX(-50%) rotate(8deg);
  background: linear-gradient(180deg, rgba(255,255,255,.16), transparent 65%);
  filter: blur(28px); pointer-events: none;
}
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.bubble { position: absolute; bottom: -40px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24); animation: rise linear infinite; }
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: .8; }
  100% { transform: translateY(-105vh) translateX(28px); opacity: 0; }
}

/* longhand only: shorthand padding would wipe .wrap's side padding */
.hero-inner { position: relative; z-index: 5; color: #fff; padding-top: 130px; padding-bottom: 90px; }
.hero h1 { font-size: clamp(40px, 8vw, 96px); max-width: 14ch; margin: 16px 0 20px; }
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .word > span { display: inline-block; transform: translateY(105%); transition: transform .9s cubic-bezier(.16,1,.3,1); }
.hero.ready h1 .word > span { transform: none; }
.hero h1 em { font-style: normal; color: var(--aqua); }
.hero .lead { font-size: clamp(16px, 1.9vw, 19.5px); color: rgba(255,255,255,.82); max-width: 50ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 5; color: rgba(255,255,255,.6); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; text-align: center; }
.scroll-hint i { display: block; width: 1px; height: 40px; margin: 0 auto 8px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-hint i::after { content: ""; position: absolute; inset: 0; background: var(--aqua); animation: drop 2s ease-in-out infinite; }
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- marquee ---------- */
.marquee { background: var(--abyss); color: #fff; padding: 16px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); }
.marquee-track { display: flex; width: max-content; animation: slide 26s linear infinite; }
.marquee-set { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.marquee-set span { font-family: "Outfit", sans-serif; font-size: clamp(15px, 1.8vw, 21px); font-weight: 500; white-space: nowrap; }
.marquee-set i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.pad { padding: clamp(70px, 9vw, 120px) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(34px, 4.5vw, 56px); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 52px); margin: 13px 0 14px; }
.section-head h2 em { font-style: normal; color: var(--coral); }
.section-head p { color: var(--muted); }

/* ---------- stats ---------- */
.stats { background: var(--foam); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; }
.stat { text-align: center; }
.stat b { display: block; font-family: "Outfit", sans-serif; font-size: clamp(38px, 5.5vw, 62px); font-weight: 700; color: var(--deep); line-height: 1; letter-spacing: -0.03em; }
.stat span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted); letter-spacing: .04em; }

/* ---------- gallery ---------- */
.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 26px; }
.filter {
  font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background: none; color: var(--muted); transition: all .22s ease;
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.on { background: var(--deep); border-color: var(--deep); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.shot {
  position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
  cursor: pointer; border: 0; padding: 0; display: block;
  transition: opacity .4s ease, transform .4s ease;
}
.shot svg { width: 100%; height: 100%; display: block; }
.shot figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 14px 13px;
  background: linear-gradient(transparent, rgba(4,22,29,.86));
  color: #fff; font-size: 13.5px; font-weight: 600; text-align: left;
  font-family: "Outfit", sans-serif; letter-spacing: .01em;
}
.shot::after {
  content: ""; position: absolute; inset: 0; background: rgba(53,199,187,0);
  transition: background .3s ease;
}
.shot:hover::after { background: rgba(53,199,187,.22); }
.shot.hide { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 22px;
  background: rgba(4,18,24,.93); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox figure { max-width: 640px; width: 100%; }
.lightbox svg { width: 100%; height: auto; border-radius: 16px; display: block; }
.lightbox figcaption { color: #fff; text-align: center; margin-top: 14px; font-size: 15px; }
.lb-close {
  position: absolute; top: 18px; right: 20px; width: 42px; height: 42px;
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4);
  background: none; color: #fff; font-size: 20px; cursor: pointer; line-height: 1;
}
.lb-close:hover { background: rgba(255,255,255,.14); }

/* ---------- trips & rates ---------- */
.trip-card { aspect-ratio: auto; cursor: default; background: var(--foam); padding: 26px; border-radius: 16px; }
.trip-card h3 { font-size: 20px; margin-bottom: 8px; }
.trip-card p { font-size: 14.5px; color: var(--muted); }
.trip-card .trip-price { margin-top: 14px; font-weight: 700; color: var(--coral); font-size: 16px; }
.rates { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); margin-top: clamp(30px, 4vw, 46px); padding-top: clamp(24px, 3vw, 36px); border-top: 1px solid var(--line); }
.rates h3 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.rates ul { list-style: none; }
.rates li { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; font-size: 15px; }
.rates li span { color: var(--ink); }
.rates li em { font-style: normal; color: var(--muted); font-size: 13px; }
.rates li::after { content: ""; order: 2; flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-3px); }
.rates li span { order: 1; }
.rates li b { order: 3; font-weight: 700; white-space: nowrap; }
@media (max-width: 720px) { .rates { grid-template-columns: 1fr; } }

/* ---------- sites row ---------- */
.sites-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 27vw, 310px);
  gap: 16px; overflow-x: auto; padding: 6px 4px 22px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--aqua) transparent;
}
.sites-row::-webkit-scrollbar { height: 6px; }
.sites-row::-webkit-scrollbar-thumb { background: rgba(53,199,187,.5); border-radius: 3px; }
.site-card {
  scroll-snap-align: start; border-radius: 16px; padding: 24px 22px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.site-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); border-color: var(--aqua); }
.site-card b { font-family: "Outfit", sans-serif; font-size: 26px; color: var(--aqua); letter-spacing: -0.02em; }
.site-card h3 { font-size: 19px; margin: 8px 0 8px; color: #fff; }
.site-card p { font-size: 14px; color: rgba(255,255,255,.62); }
.site-card span { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); }

/* ---------- crew ---------- */
.crew-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.crew-card { background: var(--foam); border-radius: 16px; padding: 26px 22px; transition: transform .3s ease; }
.crew-card:hover { transform: translateY(-5px); }
.crew-avatar {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(140deg, var(--aqua), var(--deep) 80%);
  color: #fff; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 18px;
  margin-bottom: 15px;
}
.crew-card h3 { font-size: 17.5px; }
.crew-role { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin: 4px 0 8px; }
.crew-card p:not(.crew-role) { font-size: 14px; color: var(--muted); }

/* ---------- testimonials ---------- */
.quotes { background: var(--deep); color: #fff; overflow: hidden; }
.quote-view { position: relative; min-height: 190px; }
.quote {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease; pointer-events: none;
}
.quote.on { opacity: 1; transform: none; pointer-events: auto; }
.quote p { font-family: "Outfit", sans-serif; font-size: clamp(19px, 2.7vw, 30px); line-height: 1.35; font-weight: 500; max-width: 24ch; }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-size: 14px; color: var(--aqua); }
.dots { display: flex; gap: 9px; margin-top: 26px; }
.dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.28); transition: background .25s ease, transform .25s ease; }
.dot.on { background: var(--coral); transform: scale(1.25); }

/* ---------- faq ---------- */
.faq { max-width: 780px; }
.q { border-bottom: 1px solid var(--line); }
.q button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font: inherit; font-family: "Outfit", sans-serif; font-size: clamp(16px, 2vw, 19px); font-weight: 600;
  color: var(--ink); padding: 22px 40px 22px 0; position: relative;
}
.q button::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--coral); transition: transform .3s ease;
}
.q.open button::after { transform: translateY(-50%) rotate(45deg); }
.q .a { overflow: hidden; height: 0; transition: height .35s cubic-bezier(.4,0,.2,1); }
.q .a p { padding-bottom: 22px; color: var(--muted); }

/* ---------- booking ---------- */
.book { background: var(--sand); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1.5px solid transparent; border-radius: 10px; padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,90,.16);
}
.field textarea { resize: vertical; min-height: 108px; }
.form-ok { display: none; background: #fff; border-radius: 14px; padding: 26px; }
.form-ok.show { display: block; }
.form-ok h3 { color: var(--aqua); font-size: 20px; margin-bottom: 8px; }

/* ---------- footer ---------- */
.site-footer { background: var(--abyss); color: #b9d0d7; padding: 44px 0; font-size: 14px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-footer a { color: var(--aqua); }

/* ---------- reveals ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.rv.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: .08s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .24s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(6) { transition-delay: .40s; }

@media (max-width: 860px) {
  .book-grid { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(6,33,43,.97); padding: 8px 22px 18px; }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-toggle { display: block; }
  .site-header .wrap { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .stagger > * { opacity: 1; transform: none; transition: none; }
  .marquee-track, .bubble, .scroll-hint i::after { animation: none; }
  .hero h1 .word > span { transform: none; }
}
