/* ============================================================
   AMFishing — Sydney Coast Fishing & Photography
   Dark cinematic ocean theme
   ============================================================ */

:root {
  --bg-0: #030810;
  --bg-1: #06101f;
  --bg-2: #0a1830;
  --ink: #eaf4ff;
  --ink-dim: #8fa8c4;
  --aqua: #3ee0ff;
  --aqua-deep: #0e86b8;
  --gold: #ffbf5e;
  --gold-deep: #d98a2b;
  --line: rgba(120, 180, 230, 0.14);
  --font-display: "Playfair Display", "Songti SC", Georgia, serif;
  --font-body: "Montserrat", "PingFang SC", "Helvetica Neue", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(62, 224, 255, 0.3); }

img {
  display: block; max-width: 100%;
  /* Image protection: images are not draggable, not selectable and are
     transparent to the pointer, so a right-click / long-press hits the
     wrapper element instead and the browser offers no "Save image as".
     Every hover effect is scoped to the parent, so nothing breaks. */
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--aqua-deep), var(--bg-2));
  border-radius: 5px;
}

/* ============================================================
   Preloader
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-0);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  background: linear-gradient(90deg, var(--aqua), #fff, var(--gold), var(--aqua));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 2.2s linear infinite;
}
@keyframes shimmer { to { background-position: -300% 0; } }
.loader-bar {
  width: min(260px, 60vw); height: 2px;
  background: rgba(120, 180, 230, 0.15);
  overflow: hidden; border-radius: 2px;
}
.loader-bar i {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  animation: loadslide 1.1s ease-in-out infinite;
}
@keyframes loadslide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s, box-shadow 0.5s;
}
.nav.scrolled {
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(4, 10, 20, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.22em;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo .hook {
  width: 26px; height: 26px; color: var(--aqua);
  filter: drop-shadow(0 0 6px rgba(62, 224, 255, 0.6));
}
.nav-logo b { color: var(--gold); font-weight: 700; }
.nav-links { display: flex; gap: clamp(16px, 3vw, 40px); list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-dim); position: relative; padding: 6px 2px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-burger {
  display: none; background: none; border: 0;
  width: 34px; height: 26px; position: relative; z-index: 1001;
}
.nav-burger span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--ink); transition: 0.4s var(--ease-out);
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 12px; }
.nav-burger span:nth-child(3) { top: 20px; }
.nav-burger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(3, 8, 16, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 34px;
    opacity: 0; visibility: hidden; transition: 0.45s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 16px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
/* The hero VIDEO is deliberately held still.
   Animating a transform on a <video> drifts the scale by a sub-pixel
   amount on every single frame, so the resampling grid shifts under the
   picture and every high-contrast edge — the horizon, wave crests, rock
   lines — shimmers. Drone and timelapse footage already carries its own
   motion, so the push-in bought nothing and cost that.
   object-fit: cover does the framing. */

/* The still-image fallback (shown only if the video cannot play) keeps
   the slow push-in: a photo needs that motion, and a static image can be
   promoted to its own compositor layer, so it does not shimmer. */
.hero-media img {
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.08) translateY(0); }
  to { transform: scale(1.16) translateY(-1.5%); }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(3, 8, 16, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 8, 16, 0.55) 0%, rgba(3, 8, 16, 0.25) 40%, rgba(3, 8, 16, 0.9) 100%);
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3; text-align: center;
  padding: 0 20px;
}
.hero-kicker {
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.55em; text-indent: 0.55em;
  text-transform: uppercase; color: var(--aqua);
  margin-bottom: 26px;
  text-shadow: 0 0 18px rgba(62, 224, 255, 0.55);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 11vw, 148px);
  line-height: 0.95; font-weight: 700;
  letter-spacing: 0.06em;
}
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: riseUp 1.2s var(--ease-out) forwards;
}
.hero-title .am span { animation-delay: 0.15s; }
.hero-title .fishing span {
  animation-delay: 0.3s;
  background: linear-gradient(100deg, #fff 10%, var(--aqua) 45%, var(--gold) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes riseUp { to { transform: translateY(0); } }
.hero-sub {
  margin-top: 30px;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 300; letter-spacing: 0.14em;
  color: var(--ink-dim);
  opacity: 0; animation: fadeIn 1.4s ease 0.9s forwards;
}
.hero-sub em { color: var(--gold); font-style: normal; }
.hero-cta {
  margin-top: 44px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeIn 1.4s ease 1.2s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 60px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s, color 0.4s;
}
.btn-primary {
  background: linear-gradient(120deg, var(--aqua-deep), var(--aqua));
  color: #02121c; font-weight: 700;
  box-shadow: 0 8px 32px rgba(62, 224, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(62, 224, 255, 0.45);
}
.btn-ghost {
  border-color: rgba(255, 191, 94, 0.5); color: var(--gold);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 34px rgba(255, 191, 94, 0.22);
}
.btn .shine {
  position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-24deg);
  animation: btnShine 3.6s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 60% { left: -80%; }
  100% { left: 160%; }
}
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink-dim); font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1.5s ease 1.8s forwards;
}
.hero-scroll .mouse {
  width: 22px; height: 36px; border: 1px solid var(--ink-dim); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll .mouse i {
  width: 3px; height: 7px; border-radius: 2px; background: var(--aqua);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   Sections / layout
   ============================================================ */
.section {
  position: relative;
  padding: clamp(90px, 12vw, 150px) clamp(20px, 6vw, 80px);
  max-width: 1440px; margin: 0 auto;
}
.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 18px;
}
.section-kicker::before {
  content: ""; width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--aqua), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600; line-height: 1.1;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--aqua), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-desc {
  margin-top: 18px; max-width: 560px;
  color: var(--ink-dim); font-weight: 300; line-height: 1.8; font-size: 15px;
}
.section-head.center { text-align: center; }
.section-head.center .section-kicker { justify-content: center; }
.section-head.center .section-kicker::before { display: none; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* deep-sea ambient glow between sections */
.glow-band {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 120vw; height: 500px; pointer-events: none; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(14, 134, 184, 0.12), transparent 65%);
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(46px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

/* ============================================================
   Stats strip
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--bg-0); padding: 44px 20px; text-align: center;
}
.stat b {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px);
  font-weight: 600; color: var(--ink);
  display: inline-block;
}
.stat b .plus { color: var(--aqua); }
.stat span {
  display: block; margin-top: 10px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-dim);
}

/* ============================================================
   Gallery grid
   ============================================================ */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--ink-dim);
  padding: 10px 22px; border-radius: 40px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  transition: 0.35s;
}
.filter-btn:hover { border-color: var(--aqua-deep); color: var(--ink); }
.filter-btn.active {
  background: linear-gradient(120deg, rgba(62,224,255,0.14), rgba(255,191,94,0.1));
  border-color: var(--aqua); color: var(--aqua);
  box-shadow: 0 0 20px rgba(62, 224, 255, 0.15);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 10px;
  gap: 18px;
}
.g-card {
  position: relative; border-radius: 14px; overflow: hidden;
  cursor: pointer; grid-row-end: span 10;
  transform-style: preserve-3d;
  transition: opacity 0.5s, transform 0.5s;
}
.g-card.tall { grid-row-end: span 14; }
.g-card.hidden-card { display: none; }
.g-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.6s;
}
.g-card:hover img { transform: scale(1.07); filter: saturate(1.15); }
.g-card .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 8, 16, 0.88));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; opacity: 0; transition: opacity 0.5s;
}
.g-card:hover .g-overlay { opacity: 1; }
.g-overlay .tag {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--aqua);
  margin-bottom: 6px;
}
.g-overlay h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; }
.g-card .corner {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(3, 8, 16, 0.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--aqua); font-size: 15px;
  opacity: 0; transform: translateY(-8px); transition: 0.45s;
}
.g-card:hover .corner { opacity: 1; transform: none; }

/* ============================================================
   Video cards
   ============================================================ */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.v-card {
  position: relative; border-radius: 16px; overflow: hidden; cursor: pointer;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.v-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(62, 224, 255, 0.25);
}
.v-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.v-card:hover img { transform: scale(1.06); }
.v-card .v-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 8, 16, 0.85));
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(3, 8, 16, 0.45); backdrop-filter: blur(8px);
  border: 1px solid rgba(62, 224, 255, 0.5);
  display: flex; align-items: center; justify-content: center;
  transition: 0.4s;
}
.play-btn::before {
  content: ""; margin-left: 4px;
  border-left: 16px solid var(--aqua);
  border-top: 10px solid transparent; border-bottom: 10px solid transparent;
}
.play-btn::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid rgba(62, 224, 255, 0.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.7); opacity: 0; }
}
.v-card:hover .play-btn { background: rgba(62, 224, 255, 0.2); transform: translate(-50%, -50%) scale(1.1); }
.v-meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
}
.v-meta .tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.v-meta h3 { font-family: var(--font-display); font-size: 19px; font-weight: 500; margin-top: 6px; }
.v-meta .dur { font-size: 11px; color: var(--ink-dim); margin-top: 4px; letter-spacing: 0.1em; }

/* channel call-to-action card in the film grid */
.v-card-cta {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 26px; text-decoration: none;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(62, 224, 255, 0.12), transparent 60%),
    linear-gradient(160deg, var(--bg-2), var(--bg-1));
}
.v-card-cta .v-cta-inner { max-width: 300px; }
.v-card-cta .tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.v-card-cta h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  margin: 10px 0 8px; color: var(--ink);
}
.v-card-cta p { font-size: 13px; line-height: 1.65; color: var(--ink-dim); }
.v-cta-link {
  display: inline-block; margin-top: 14px; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--aqua);
  transition: transform 0.4s var(--ease-out);
}
.v-card-cta:hover .v-cta-link { transform: translateX(6px); }

/* ============================================================
   Split feature (drone section)
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-media {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.split-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(120, 180, 230, 0.2);
  pointer-events: none;
}
.split-media img { transition: transform 8s ease; }
.split-media:hover img { transform: scale(1.08); }
.split-media .float-chip {
  position: absolute; z-index: 2;
  background: rgba(4, 10, 20, 0.7); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip.c1 { top: 20px; left: 20px; }
.float-chip.c2 { bottom: 24px; right: 20px; animation-delay: 2.2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua); box-shadow: 0 0 12px var(--aqua);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }
.float-chip span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

/* featured film inside the split media */
.split-media.is-film { cursor: pointer; }
.split-media.is-film .v-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 8, 16, 0.15) 0%, transparent 35%, rgba(3, 8, 16, 0.85));
}
.split-media.is-film .play-btn { z-index: 2; }
.split-media.is-film:hover .play-btn {
  background: rgba(62, 224, 255, 0.2); transform: translate(-50%, -50%) scale(1.1);
}
.film-caption { position: absolute; left: 24px; bottom: 22px; z-index: 2; pointer-events: none; }
.film-caption .tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.film-caption h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-top: 6px; }

/* small film strip under the feature list */
.film-strip {
  margin-top: 34px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 520px) { .film-strip { grid-template-columns: repeat(2, 1fr); } }
.fs-card {
  position: relative; border-radius: 10px; overflow: hidden; cursor: pointer;
  aspect-ratio: 16 / 10; border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}
.fs-card:hover { transform: translateY(-4px); border-color: rgba(62, 224, 255, 0.4); }
.fs-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.fs-card:hover img { transform: scale(1.08); }
.fs-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 8, 16, 0.88));
}
.fs-play {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 0; height: 0;
  border-left: 11px solid rgba(234, 244, 255, 0.9);
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  filter: drop-shadow(0 0 8px rgba(3, 8, 16, 0.8));
  transition: 0.4s;
}
.fs-card:hover .fs-play { border-left-color: var(--aqua); transform: translate(-50%, -50%) scale(1.2); }
.fs-card p {
  position: absolute; left: 10px; right: 10px; bottom: 9px; z-index: 2;
  font-size: 11px; letter-spacing: 0.08em; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feature-list { margin-top: 34px; display: grid; gap: 22px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-item .ico {
  flex: 0 0 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(140deg, rgba(62,224,255,0.15), rgba(255,191,94,0.08));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--aqua); font-size: 19px;
}
.feature-item h4 { font-size: 15px; letter-spacing: 0.04em; margin-bottom: 5px; }
.feature-item p { font-size: 13.5px; color: var(--ink-dim); font-weight: 300; line-height: 1.7; }

/* ============================================================
   Shop
   ============================================================ */
.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}
.p-card {
  position: relative; border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.5s;
}
.p-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 191, 94, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
}
.p-card .p-img { position: relative; aspect-ratio: 1; overflow: hidden; }
.p-card .p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.p-card:hover .p-img img { transform: scale(1.08); }
.p-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  color: #211302; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 30px;
}
.p-info { padding: 22px; }
.p-info .cat { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--aqua); }
.p-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin: 8px 0 10px; }
.p-info p { font-size: 13px; color: var(--ink-dim); font-weight: 300; line-height: 1.7; }
.p-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
}
.p-price { font-family: var(--font-display); font-size: 20px; color: var(--gold); }
.p-price small { font-size: 11px; color: var(--ink-dim); font-family: var(--font-body); }
.p-notify {
  background: none; border: 1px solid var(--line); color: var(--ink-dim);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 30px; transition: 0.35s;
}
.p-notify:hover { border-color: var(--aqua); color: var(--aqua); }

.coming-note {
  margin-top: 50px; text-align: center;
  border: 1px dashed rgba(255, 191, 94, 0.35); border-radius: 16px;
  padding: 34px 24px;
  background: rgba(255, 191, 94, 0.04);
}
.coming-note h3 { font-family: var(--font-display); font-size: 24px; color: var(--gold); margin-bottom: 10px; }
.coming-note p { color: var(--ink-dim); font-size: 14px; font-weight: 300; max-width: 520px; margin: 0 auto 22px; line-height: 1.8; }
.notify-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.notify-form input {
  background: rgba(6, 16, 31, 0.8); border: 1px solid var(--line);
  color: var(--ink); border-radius: 40px; padding: 13px 22px;
  font-family: inherit; font-size: 13px; width: min(300px, 70vw);
  outline: none; transition: border-color 0.3s;
}
.notify-form input:focus { border-color: var(--aqua); }

/* ============================================================
   Quote band
   ============================================================ */
.quote-band {
  position: relative; padding: clamp(90px, 12vw, 150px) 20px;
  text-align: center; overflow: hidden;
}
.quote-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(14, 134, 184, 0.22), transparent 60%),
    radial-gradient(ellipse at 80% -20%, rgba(255, 191, 94, 0.08), transparent 55%);
}
.quote-band blockquote {
  position: relative;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 3.6vw, 40px); font-weight: 500;
  max-width: 900px; margin: 0 auto; line-height: 1.45;
}
.quote-band cite {
  position: relative; display: block; margin-top: 26px;
  font-family: var(--font-body); font-style: normal;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ink-dim);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 90px) clamp(20px, 6vw, 80px) 40px;
  background: linear-gradient(180deg, var(--bg-0), #020509);
}
.footer-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(30px, 5vw, 60px);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 20px;
}
.footer-brand .nav-logo { font-size: 26px; margin-bottom: 16px; }
.footer-brand p { color: var(--ink-dim); font-size: 13.5px; font-weight: 300; line-height: 1.8; max-width: 320px; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { color: var(--ink-dim); font-size: 13.5px; transition: color 0.3s, padding-left 0.3s; }
.footer ul a:hover { color: var(--aqua); padding-left: 6px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim); font-size: 15px; transition: 0.35s;
}
.socials a:hover {
  color: #02121c; background: var(--aqua); border-color: var(--aqua);
  box-shadow: 0 0 24px rgba(62, 224, 255, 0.4);
  transform: translateY(-3px);
}
.footer-bottom {
  max-width: 1440px; margin: 50px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: #5a7292; font-size: 11.5px; letter-spacing: 0.06em;
}

/* ============================================================
   Lightbox & video modal
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(2, 5, 10, 0.94); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-stage { position: relative; display: block; line-height: 0; }
.lightbox .lb-shield {
  position: absolute; inset: 0; z-index: 2; border-radius: 10px;
  display: block; cursor: default;
}
.lightbox img {
  max-width: 92vw; max-height: 86vh; border-radius: 10px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  transform: scale(0.92); transition: transform 0.5s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox .lb-caption {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: 0.2em; color: var(--ink-dim); text-transform: uppercase;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.06);
  border: 1px solid var(--line); color: var(--ink);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--aqua); color: #02121c; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

.video-modal {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(2, 5, 10, 0.94); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.4s;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal .vm-box {
  width: min(1100px, 92vw); aspect-ratio: 16/9;
  background: #000; border-radius: 12px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim); text-align: center; padding: 20px;
}
.video-modal video { width: 100%; height: 100%; }
.video-modal .vm-placeholder { font-size: 14px; line-height: 2; letter-spacing: 0.05em; }
.video-modal .vm-placeholder b { color: var(--aqua); }

/* ============================================================
   Page hero (subpages)
   ============================================================ */
.page-hero {
  position: relative; padding: 190px clamp(20px, 6vw, 80px) 90px;
  text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% -30%, rgba(14, 134, 184, 0.28), transparent 60%),
    radial-gradient(ellipse at 85% 20%, rgba(255, 191, 94, 0.07), transparent 50%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px); font-weight: 600;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--aqua), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p {
  margin-top: 18px; color: var(--ink-dim); font-weight: 300;
  letter-spacing: 0.1em; font-size: 14px;
}
.breadcrumb {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 20px;
}

/* back-to-top */
#toTop {
  position: fixed; right: 26px; bottom: 26px; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(6, 16, 31, 0.8); backdrop-filter: blur(10px);
  border: 1px solid var(--line); color: var(--aqua); font-size: 17px;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: 0.4s;
}
#toTop.show { opacity: 1; visibility: visible; transform: none; }
#toTop:hover { background: var(--aqua); color: #02121c; box-shadow: 0 0 26px rgba(62,224,255,0.5); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.2s !important; }
}

/* ============================================================
   v2 UPGRADES — cursor, progress, grain, marquee, crew, drone-drop
   ============================================================ */

/* ---------- logo image ---------- */
.nav-logo img.logo-img {
  height: 46px; width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s var(--ease-out);
}
.nav-logo:hover img.logo-img { transform: rotate(-6deg) scale(1.06); }
.footer-brand img.logo-img { height: 92px; margin-bottom: 18px; }
#preloader img.loader-logo {
  height: 110px;
  animation: logoFloat 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(62, 224, 255, 0.35));
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.loader-pct {
  font-family: var(--font-display); font-size: 15px;
  color: var(--ink-dim); letter-spacing: 0.3em;
}

/* ---------- scroll progress bar ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  z-index: 1200; pointer-events: none;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  box-shadow: 0 0 12px rgba(62, 224, 255, 0.6);
}

/* ---------- film grain ---------- */
/* This layer sits on top of everything at z-index 2000. It used to jump
   itself to a new offset four times every 0.9s (grainShift, steps(4)).
   Over flat, still content that is invisible; over moving video with fine
   detail the whole texture judders across the picture and reads as the
   video shaking. The texture is what gives the filmic tooth, so it stays —
   the motion is what had to go.
   The box is now viewport-sized instead of 300% x 300%, because a layer
   that no longer moves needs no room to move into, and compositing nine
   screens' worth of noise every frame was pure overhead. */
#grain {
  position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
}

/* ---------- marquee band ---------- */
.marquee {
  position: relative; overflow: hidden; white-space: nowrap;
  padding: 26px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 24, 48, 0.35), rgba(3, 8, 16, 0.6));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 26px; padding-right: 26px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px); letter-spacing: 0.18em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(143, 168, 196, 0.5);
}
.marquee-track span i {
  font-style: normal; -webkit-text-stroke: 0;
  background: linear-gradient(100deg, var(--aqua), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.marquee-track span em { font-style: normal; -webkit-text-stroke: 0; color: var(--gold); font-size: 0.6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- crew section ---------- */
.crew-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 40px);
  margin-bottom: clamp(40px, 6vw, 64px);
}
@media (max-width: 760px) { .crew-grid { grid-template-columns: 1fr; } }
.crew-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(160deg, rgba(10, 24, 48, 0.65), rgba(3, 8, 16, 0.9));
  padding: clamp(28px, 4vw, 44px);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
}
.crew-card:hover {
  transform: translateY(-8px);
  border-color: rgba(62, 224, 255, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.crew-card::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 224, 255, 0.14), transparent 70%);
  transition: transform 0.6s;
}
.crew-card:nth-child(2)::before { background: radial-gradient(circle, rgba(255, 191, 94, 0.13), transparent 70%); }
.crew-card:hover::before { transform: scale(1.5); }
.crew-avatar {
  width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  background: linear-gradient(140deg, var(--aqua-deep), var(--aqua));
  color: #02121c; margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(62, 224, 255, 0.3);
}
.crew-card:nth-child(2) .crew-avatar {
  background: linear-gradient(140deg, var(--gold-deep), var(--gold));
  box-shadow: 0 10px 30px rgba(255, 191, 94, 0.3);
}
.crew-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.crew-card .role {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--aqua); margin: 8px 0 16px;
}
.crew-card:nth-child(2) .role { color: var(--gold); }
.crew-card p { color: var(--ink-dim); font-size: 14px; font-weight: 300; line-height: 1.85; }
.method-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.method-chip {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 50px;
  padding: 12px 22px;
  background: rgba(6, 16, 31, 0.6);
  transition: 0.4s var(--ease-out);
  cursor: default;
}
.method-chip:hover {
  border-color: var(--aqua);
  background: rgba(62, 224, 255, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}
.method-chip .mi { font-size: 18px; }
.method-chip b { font-size: 13px; letter-spacing: 0.06em; font-weight: 500; }
.method-chip small { font-size: 11px; color: var(--ink-dim); letter-spacing: 0.04em; }

/* ---------- drone drop cinematic section ---------- */
.drone-drop {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0 0;
  overflow: hidden;
}
.drone-stage {
  position: relative;
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px);
}
.drone-svg { width: 100%; height: auto; display: block; }
.drone-svg .flight-path {
  fill: none; stroke: var(--aqua); stroke-width: 2.5;
  stroke-dasharray: 8 10; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(62, 224, 255, 0.6));
}
.drone-svg .coast { fill: #0a1830; stroke: rgba(120, 180, 230, 0.25); stroke-width: 1.5; }
.drone-svg .sea-line { stroke: rgba(62, 224, 255, 0.3); stroke-width: 1.5; fill: none; }
.drone-svg text {
  font-family: var(--font-body); letter-spacing: 0.28em;
  fill: var(--ink-dim); text-transform: uppercase;
}
.drone-svg .dist-label { fill: var(--gold); font-weight: 700; letter-spacing: 0.2em; }
/* crew figures — Archy on the rod, Mark on the sticks */
.drone-svg .crew-fig { fill: var(--aqua); stroke: var(--aqua); }
.drone-svg .crew-fig .pack { fill: var(--aqua-deep); stroke: none; opacity: 0.9; }
.drone-svg .crew-fig .arm-far { opacity: 0.62; }
.drone-svg .rod { fill: #eaf4ff; }
.drone-svg .gear { fill: #c9e6f7; }
.drone-svg .sig-arcs { stroke: var(--aqua); fill: none; stroke-width: 1.9; stroke-linecap: round; opacity: 0.5; }
.drone-svg .drone-icon { filter: drop-shadow(0 4px 14px rgba(62, 224, 255, 0.5)); }
.drone-svg .bait {
  fill: var(--gold);
  filter: drop-shadow(0 0 8px rgba(255, 191, 94, 0.8));
}
.drone-svg .splash-ring { stroke: var(--aqua); fill: none; stroke-width: 2; opacity: 0; }
.drone-badges {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  padding: 10px clamp(20px, 6vw, 80px) 0;
}
.drone-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 40px; padding: 12px 22px;
  background: rgba(6, 16, 31, 0.5);
}
.drone-badge b { color: var(--gold); font-size: 14px; letter-spacing: 0.1em; }

/* ---------- image clip reveal (GSAP) ---------- */
.clip-reveal { overflow: hidden; }
.clip-reveal img { will-change: transform; }

/* ---------- split-title chars ---------- */
.section-title .char {
  display: inline-block; will-change: transform;
}

/* ---------- hero scroll-out layer ---------- */
.hero-inner, .hero-scroll { will-change: transform, opacity; }

/* keyboard focus visibility (a11y) */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--aqua); outline-offset: 3px; border-radius: 4px;
}
