/* ============================================================
   BLUE ELEMENT — site layer (v2.0)
   Built on the design-system tokens. Imports the DS entry point,
   then adds page-level layout, navigation, and motion.
   ============================================================ */

@import url("assets/ds/styles.css");

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--be-font-body);
  font-weight: var(--be-w-regular);
  color: var(--be-text);
  background: var(--be-mist);
  line-height: var(--be-lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: var(--be-teal); color: #fff; }

:root { --header-h: 98px; --page-x: clamp(20px, 5vw, 64px); }

.container { width: 100%; max-width: var(--be-content-max); margin: 0 auto; padding-inline: var(--page-x); }
.container-wide { width: 100%; max-width: 1480px; margin: 0 auto; padding-inline: var(--page-x); }

/* ---------- type helpers ---------- */
.display {
  font-family: var(--be-font-display);
  text-transform: uppercase;
  letter-spacing: var(--be-track-display);
  font-weight: var(--be-w-bold);
  line-height: var(--be-lh-heading);
}
.impact {
  font-family: var(--be-font-impact);
  text-transform: uppercase;
  letter-spacing: var(--be-track-impact);
  line-height: var(--be-lh-tight);
}
.eyebrow {
  font-family: var(--be-font-body);
  font-weight: var(--be-w-semibold);
  text-transform: uppercase;
  letter-spacing: var(--be-track-label);
  font-size: var(--be-text-2xs);
  color: var(--be-teal);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--be-surface-teal); }
.lead { font-size: var(--be-text-lg); color: var(--be-text-soft); max-width: 56ch; }
.lead.on-dark { color: var(--be-text-soft-dark); }
.measure { max-width: var(--be-measure); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--be-font-body); font-weight: 600;
  text-transform: uppercase; font-size: 13px; letter-spacing: .15em;
  padding: 14px 28px; border-radius: var(--be-radius-pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform var(--be-dur-fast) var(--be-ease-out),
              background var(--be-dur) var(--be-ease-out),
              color var(--be-dur) var(--be-ease-out),
              box-shadow var(--be-dur) var(--be-ease-out),
              filter var(--be-dur-fast) var(--be-ease-out);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--be-shadow-md); filter: brightness(1.07); }
.btn:active { transform: translateY(0); filter: brightness(.94); }
.btn-teal { background: var(--be-teal); color: #fff; }
.btn-ocean { background: var(--be-ocean-blue); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: var(--be-border-strong); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: transparent; color: var(--be-ocean-blue); border-color: rgba(4,79,125,.32); }
.btn-outline:hover { background: rgba(4,79,125,.06); }
.btn-lg { padding: 17px 36px; font-size: 14px; letter-spacing: .17em; }
.btn-sm { padding: 11px 20px; font-size: 12px; }
.btn-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; font-size: 12.5px; color: var(--be-teal); }
.btn-link .arrow { transition: transform var(--be-dur) var(--be-ease-out); }
.btn-link:hover .arrow { transform: translateX(5px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--be-dur) var(--be-ease-out),
              box-shadow var(--be-dur) var(--be-ease-out),
              backdrop-filter var(--be-dur) var(--be-ease-out),
              border-color var(--be-dur) var(--be-ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 23, 34, .82);
  backdrop-filter: blur(var(--be-blur-panel));
  -webkit-backdrop-filter: blur(var(--be-blur-panel));
  border-bottom-color: var(--be-border);
  box-shadow: var(--be-shadow-sm);
}
.header-inner { width: 100%; max-width: 1480px; margin: 0 auto; padding-inline: var(--page-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 84px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 14px; color: #fff; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em; font-size: 12px;
  border-radius: var(--be-radius-pill); cursor: pointer;
  transition: color var(--be-dur-fast) var(--be-ease-out), background var(--be-dur-fast) var(--be-ease-out);
}
.nav-link .caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px); opacity: .7; transition: transform var(--be-dur) var(--be-ease-out); }
.nav-item:hover .nav-link { color: var(--be-surface-teal); }
.nav-item:hover .caret { transform: rotate(225deg) translateY(-1px); }
.nav-link.active { color: var(--be-surface-teal); }
.nav-link.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--be-surface-teal); border-radius: 2px; }
.nav-item { position: relative; }
.mobile-nav .m-head-link { display: block; text-decoration: none; }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  min-width: 252px; background: rgba(10, 23, 34, .94);
  backdrop-filter: blur(var(--be-blur-panel)); -webkit-backdrop-filter: blur(var(--be-blur-panel));
  border: 1px solid var(--be-border); border-radius: var(--be-radius-md);
  box-shadow: var(--be-shadow-lg), var(--be-inset-sheen);
  padding: 10px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--be-dur) var(--be-ease-out), transform var(--be-dur) var(--be-ease-out);
}
/* invisible bridge across the 10px gap so hover doesn't drop between link and menu */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: var(--be-radius-sm);
  transition: background var(--be-dur-fast) var(--be-ease-out); }
.dropdown a:hover { background: rgba(178,207,216,.10); }
.dropdown .d-title { color: #fff; font-weight: 600; font-size: 13.5px; letter-spacing: .02em; text-transform: none; }
.dropdown .d-sub { color: var(--be-text-soft-dark); font-size: 12px; opacity: .8; }

.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }

/* mobile menu toggle */
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0;
  transition: transform var(--be-dur) var(--be-ease-out), opacity var(--be-dur) var(--be-ease-out); }

/* mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 99; background: var(--be-abyss);
  transform: translateY(-100%); transition: transform var(--be-dur-slow) var(--be-ease-out);
  padding: calc(var(--header-h) + 24px) var(--page-x) 40px; overflow-y: auto; display: none; }
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .m-group { border-bottom: 1px solid var(--be-border); padding: 18px 0; }
.mobile-nav .m-head { color: #fff; font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 18px; margin-bottom: 12px; }
.mobile-nav .m-link { display: block; color: var(--be-text-soft-dark); padding: 8px 0; font-size: 15px; }
.mobile-nav .m-link:hover { color: var(--be-surface-teal); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section-tight { padding-block: clamp(48px, 6vw, 88px); }
.bg-light { background: var(--be-mist); }
.bg-white { background: #fff; }
.bg-deep { background: var(--be-abyss); color: #fff; }
.bg-ocean { background: var(--be-deep); color: #fff; }
.bg-ocean .section-head h2 { color: #fff; }
.bg-ocean .lead { color: var(--be-text-soft-dark); }
.bg-steel { background: var(--be-steel-navy); color: #fff; }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 56px); margin-top: 18px; color: var(--be-ocean-blue); }
.bg-deep .section-head h2, .bg-steel .section-head h2 { color: #fff; }
.section-head .lead { margin-top: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; color: #fff; background: var(--be-abyss); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 116%; object-fit: cover; object-position: center 66%; will-change: transform; }
.hero-media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,27,46,.26) 0%, rgba(2,27,46,0) 30%, rgba(2,27,46,.06) 60%, rgba(2,27,46,.7) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: var(--header-h); transform: translateY(-9vh); }
.hero-head { width: max-content; max-width: 100%; margin-inline: auto; text-align: center; }
.hero-head .eyebrow::after { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; flex: none; }
.hero-ctas-wrap { position: absolute; left: 0; right: 0; bottom: clamp(92px, 13vh, 148px); z-index: 2; }
.hero h1 { font-size: clamp(34px, 6.1vw, 94px); letter-spacing: .06em; }
.hero h1 .b1, .hero h1 .b2 { color: rgba(255,255,255,.62); display: inline; }
.hero h1 .b3 { color: #fff; }
.hero .sub { margin-top: 26px; font-size: clamp(15px, 1.6vw, 21px); color: var(--be-sky-blue);
  font-weight: 500; letter-spacing: .02em; max-width: 40ch; }
.hero-ctas { margin-top: 0; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
/* translucent glass CTAs — let the view show through */
.hero-ctas .btn { color: #fff; border-color: rgba(255,255,255,.34); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); box-shadow: 0 6px 24px rgba(2,27,46,.22); }
.hero-ctas .btn-teal { background: rgba(32,125,146,.32); }
.hero-ctas .btn-teal:hover { background: rgba(32,125,146,.5); }
.hero-ctas .btn-ocean { background: rgba(4,79,125,.32); }
.hero-ctas .btn-ocean:hover { background: rgba(4,79,125,.52); }
.hero-ctas .btn-ghost-light { background: rgba(255,255,255,.08); }
.hero-ctas .btn-ghost-light:hover { background: rgba(255,255,255,.18); }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); animation: scrolldrop 2.6s var(--be-ease) infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top; } 40% { transform: scaleY(1); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll .line { animation: none; } }

/* marquee positioning line under hero */
.beat-strip { position: relative; color: #fff; padding-block: clamp(40px, 6vw, 72px); overflow: hidden;
  background: url("assets/media/clean/hero-split.jpg") center 82% / cover no-repeat; }
.beat-strip .three { text-shadow: 0 2px 18px rgba(2,27,46,.45); }
.beat-strip .three { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .1em;
  font-size: clamp(20px, 3vw, 38px); line-height: 1.3; color: var(--be-sky-blue); max-width: 24ch; }
.beat-strip .three b { color: #fff; font-weight: 700; }

/* ============================================================
   THREE PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); margin-top: clamp(40px, 5vw, 64px); }
.pillar { position: relative; border-radius: var(--be-radius-lg); overflow: hidden; min-height: 540px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  box-shadow: var(--be-shadow-md); isolation: isolate; }
.pillar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform var(--be-dur-slow) var(--be-ease-out); }
.pillar::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(2,27,46,0) 30%, rgba(2,27,46,.55) 62%, rgba(2,27,46,.88) 100%); }
.pillar:hover img { transform: scale(1.05); }
.pillar-body { padding: clamp(24px, 2.4vw, 34px); text-shadow: 0 1px 12px rgba(2,27,46,.5); }
.pillar .ord { font-family: var(--be-font-impact); font-size: 15px; letter-spacing: .2em; color: var(--be-foam, #BFE8F2); text-shadow: 0 1px 10px rgba(2,27,46,.85); }
.pillar h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .08em; font-size: clamp(26px, 2.6vw, 34px); margin-top: 10px; }
.pillar p { margin-top: 12px; color: var(--be-sky-blue); font-size: 15px; max-width: 32ch; }
.pillar .pillar-link { margin-top: 20px; }
.pillar .badge-lvl { position: absolute; top: 22px; left: 22px; z-index: 1; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--be-font-body); font-weight: 600;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 7px 13px;
  border-radius: var(--be-radius-pill); line-height: 1;
}
.badge-glass { background: rgba(10,23,34,.5); color: #fff; border: 1px solid var(--be-border); backdrop-filter: blur(6px); }

/* ============================================================
   CONDITIONS BAND
   ============================================================ */
.band { position: relative; overflow: hidden; color: #fff; }
.band-media { position: absolute; inset: 0; z-index: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.band-media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(2,27,46,.88), rgba(3,60,98,.70)),
  linear-gradient(90deg, rgba(2,27,46,.62) 0%, rgba(2,27,46,.16) 52%, rgba(2,27,46,0) 100%); }
.band-inner { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 120px); }
.cond-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: clamp(36px, 4vw, 56px); }
.cond { border-left: 1px solid var(--be-border); padding-left: 20px; }
.cond .num { font-family: var(--be-font-impact); font-size: clamp(38px, 4.4vw, 60px); line-height: .92; }
.cond .num .u { font-size: .42em; color: var(--be-surface-teal); margin-left: 4px; }
.cond .lab { margin-top: 12px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--be-sky-blue); font-weight: 600; }

/* ============================================================
   SPLIT TEASERS (team, dominica)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split.trio { grid-template-columns: 1fr 1.15fr 1fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
.split.trio .split-body { padding-top: clamp(8px, 2vw, 28px); }
.founder-col { display: flex; flex-direction: column; }
.founder-col .split-media { flex: none; }
.mini-bio { margin-top: 14px; }
.photo-cap { margin-top: 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--be-text-soft); }

/* ---------- dominica teaser: pano + duo ---------- */
.dom-pano { position: relative; border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-lg);
  aspect-ratio: 21 / 7; margin-bottom: clamp(28px, 4vw, 52px); }
.dom-pano img { width: 100%; height: 100%; object-fit: cover; }
.dom-pano .photo-cap { text-shadow: 0 1px 10px rgba(2,27,46,.7); }
.dom-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 20px); }
.dom-duo .ph { border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-md); aspect-ratio: 4 / 5; }
.dom-duo .ph img { width: 100%; height: 100%; object-fit: cover; }
.dom-split { grid-template-columns: 1fr 1.25fr; align-items: center; }
.dom-quad { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 20px); }
.dom-quad .ph { border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-md); aspect-ratio: 5 / 4; }
.dom-quad .ph:nth-child(1), .dom-quad .ph:nth-child(4) { aspect-ratio: 4 / 4.6; }
.dom-quad .ph:nth-child(2) { margin-top: clamp(18px, 2.4vw, 34px); }
.dom-quad .ph:nth-child(4) { margin-top: calc(clamp(18px, 2.4vw, 34px) * -1); }
.dom-quad .ph img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) {
  .dom-split { grid-template-columns: 1fr; }
  .dom-quad .ph:nth-child(2) { margin-top: 0; }
  .dom-quad .ph:nth-child(4) { margin-top: 0; }
}
@media (max-width: 1024px) { .dom-pano { aspect-ratio: 16 / 7; } }
.partner-strip { margin-top: clamp(36px, 5vw, 64px); padding-top: clamp(26px, 3vw, 40px); border-top: 1px solid var(--be-border-ink); }
.partner-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 2vw, 28px); align-items: start; }
.partner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.partner image-slot { width: 100%; height: 86px; display: block; }
.partner span { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--be-text-soft); }
@media (max-width: 880px) { .partner-row { grid-template-columns: repeat(2, 1fr); } .partner-row .partner:last-child { grid-column: 1 / -1; } }
.mini-bio h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-size: 19px; color: var(--be-ocean-blue); }
.mini-bio .mb-role { margin-top: 4px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--be-teal); }
.mini-bio p:not(.mb-role) { margin-top: 10px; font-size: 13.5px; line-height: 1.6; color: var(--be-text-soft); text-wrap: pretty; }
@media (max-width: 1024px) { .split.trio { grid-template-columns: 1fr; } }
.split.flip .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-lg); aspect-ratio: 4 / 5; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.wide { aspect-ratio: 5 / 4; }
.split-body h2 { font-size: clamp(28px, 4vw, 50px); margin-top: 18px; color: var(--be-ocean-blue); }
.bg-deep .split-body h2 { color: #fff; }
.split-body .lead { margin-top: 20px; }
.split-body .actions { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.float-stat { position: absolute; left: 22px; bottom: 22px; background: var(--be-panel-strong);
  border: 1px solid var(--be-border); border-radius: var(--be-radius-md); padding: 18px 22px;
  box-shadow: var(--be-shadow-panel), var(--be-inset-sheen); backdrop-filter: blur(var(--be-blur-panel)); color: #fff; }
.float-stat .num { font-family: var(--be-font-impact); font-size: 40px; line-height: .9; }
.float-stat .lab { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--be-sky-blue); margin-top: 6px; font-weight: 600; }

.dot-list { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.dot-list li { display: flex; align-items: baseline; gap: 14px; font-size: 15.5px; color: var(--be-text-soft); }
.bg-deep .dot-list li { color: var(--be-sky-blue); }
.dot-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--be-teal); flex: none; transform: translateY(2px); }

/* ============================================================
   MEDIA / GALLERY TEASER
   ============================================================ */
.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; grid-auto-flow: dense; gap: 16px; margin-top: clamp(36px, 4vw, 56px); }
.media-cell { position: relative; border-radius: var(--be-radius-md); overflow: hidden; box-shadow: var(--be-shadow-md); }
.media-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--be-dur-slow) var(--be-ease-out); }
.media-cell:hover img { transform: scale(1.06); }
.media-cell.tall { grid-row: span 2; }
.media-cell.wide { grid-column: span 2; }
.media-cell .tag { position: absolute; left: 14px; bottom: 12px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #fff; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.media-cell .play { position: absolute; inset: 0; display: grid; place-items: center; }
.media-cell .play span { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px); display: grid; place-items: center; transition: background var(--be-dur) var(--be-ease-out); }
.media-cell .play span::after { content: ""; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
.media-cell:hover .play span { background: rgba(32,125,146,.7); }

/* ---------- official top countdown ---------- */
.topclock { border: 1px solid var(--be-border); border-radius: var(--be-radius-md); padding: 22px 24px 20px;
  background: rgba(255,255,255,.04); backdrop-filter: blur(4px); }
.topclock .tc-label { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: var(--be-surface-teal); }
.topclock .tc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--be-surface-teal); flex: none;
  animation: tc-pulse 2s var(--be-ease) infinite; }
@keyframes tc-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(42,147,168,.55); } 50% { box-shadow: 0 0 0 7px rgba(42,147,168,0); } }
.topclock .tc-digits { margin-top: 14px; display: flex; align-items: baseline; gap: 10px; }
.topclock .tc-cell { display: flex; flex-direction: column; gap: 5px; min-width: 58px; }
.topclock .tc-num { font-family: var(--be-font-impact); font-size: clamp(30px, 2.8vw, 44px); line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums; }
.topclock .tc-num.tick { animation: tc-tick .45s var(--be-ease-out); }
@keyframes tc-tick { 0% { transform: translateY(-8px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
.topclock .tc-u { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-sky-blue); font-weight: 600; }
.topclock .tc-sep { font-family: var(--be-font-impact); font-size: clamp(22px, 2vw, 32px); color: var(--be-surface-teal); transform: translateY(-12px); }
.topclock .tc-sub { margin-top: 14px; font-size: 11.5px; letter-spacing: .08em; color: var(--be-sky-blue); }
@media (prefers-reduced-motion: reduce) { .topclock .tc-dot { animation: none; } .topclock .tc-num.tick { animation: none; } }

/* ============================================================
   CONVERSION BLOCK
   ============================================================ */
.convert { position: relative; overflow: hidden; color: #fff; background: var(--be-grad-depth-soft); }.convert::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 80% 0%, rgba(42,147,168,.4), transparent 60%); }
.convert-inner { position: relative; z-index: 1; padding-block: clamp(72px, 10vw, 140px); text-align: center; }
.convert h2 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .09em; font-size: clamp(32px, 5.4vw, 72px); line-height: 1.08; }
.convert .lead { margin: 24px auto 0; color: var(--be-sky-blue); }
.convert .actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--be-ink); color: var(--be-sky-blue); padding-block: clamp(56px, 7vw, 88px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 34px; margin-bottom: 22px; }
.footer-brand p { max-width: 32ch; font-size: 14px; color: var(--be-text-soft-dark); }
.footer-brand .three { margin-top: 20px; font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .1em; color: var(--be-surface-teal); font-size: 14px; }
.footer-col h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--be-text-soft-dark); transition: color var(--be-dur-fast) var(--be-ease-out); }
.footer-col a:hover { color: var(--be-surface-teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px); padding-top: 28px; border-top: 1px solid var(--be-border); font-size: 12.5px; color: var(--be-text-soft-dark); }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--be-border); display: grid; place-items: center;
  transition: background var(--be-dur) var(--be-ease-out), border-color var(--be-dur) var(--be-ease-out); }
.socials a:hover { background: var(--be-teal); border-color: var(--be-teal); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

/* ============================================================
   MOTION — scroll reveal
   ============================================================ */
/* Progressive enhancement: content is visible by default. Only once JS adds
   `anim` to <html> do reveals hide and then animate in — so if JS fails or is
   blocked, nothing ever disappears. */
html.anim .reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--be-dur-slow) var(--be-ease-out), transform var(--be-dur-slow) var(--be-ease-out); }
html.anim .reveal.in { opacity: 1; transform: none; }
html.anim .reveal.d1 { transition-delay: .08s; } html.anim .reveal.d2 { transition-delay: .16s; } html.anim .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { html.anim .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: 420px; }
  .cond-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 880px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: block; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.flip .split-media { order: 0; }
  .split-media { aspect-ratio: 4 / 3; }
  .media-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .media-cell.wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  :root { --header-h: 72px; }
  .brand img { height: 54px; }
  .cond-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .media-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .media-cell.wide, .media-cell.tall { grid-column: auto; grid-row: auto; }
}

/* ============================================================
   SUBPAGE COMPONENTS (v2.0)
   ============================================================ */

/* ---------- page hero (shorter than home hero) ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; background: var(--be-abyss);
  min-height: clamp(420px, 64vh, 640px); display: flex; align-items: flex-end; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
#heroImg { object-position: center 42%; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(2,27,46,.62) 0%, rgba(2,27,46,.3) 42%, rgba(2,27,46,0) 68%),
  linear-gradient(180deg, rgba(2,27,46,.62) 0%, rgba(2,27,46,.16) 34%, rgba(2,27,46,.34) 64%, rgba(2,27,46,.94) 100%); }
.page-hero-inner { position: relative; z-index: 2; width: 100%; padding-block: var(--header-h) clamp(46px, 6vw, 84px); }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--be-sky-blue); font-weight: 600; margin-bottom: 22px; opacity: .9; }
.breadcrumb a { color: var(--be-surface-teal); }
.breadcrumb .sep { opacity: .5; }
.page-hero h1 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: var(--be-track-display);
  font-weight: 700; line-height: 1.04; font-size: clamp(38px, 6.4vw, 92px); text-shadow: 0 2px 24px rgba(2,27,46,.55); }
.page-hero .ph-sub { margin-top: 22px; font-size: clamp(15px, 1.5vw, 20px); color: var(--be-sky-blue); max-width: 52ch; line-height: 1.6; text-shadow: 0 1px 14px rgba(2,27,46,.6); }
.page-hero .ph-meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.page-hero .ph-meta .mi { display: flex; flex-direction: column; gap: 4px; }
.page-hero .ph-meta .mi .v { font-family: var(--be-font-impact); font-size: 26px; line-height: 1; }
.page-hero .ph-meta .mi .l { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-surface-teal); font-weight: 600; }

/* ---------- generic intro / prose ---------- */
.intro-row { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.intro-row .lead { font-size: clamp(17px, 1.5vw, 21px); }
.prose p { color: var(--be-text-soft); font-size: 16.5px; line-height: 1.72; margin-bottom: 18px; max-width: 64ch; }
.bg-deep .prose p, .bg-steel .prose p { color: var(--be-sky-blue); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--be-ocean-blue); font-weight: 600; }
.bg-deep .prose strong { color: #fff; }

/* ---------- safety collage (2x2) ---------- */
.safety-collage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.4vw, 18px); }
.safety-collage .ph { border-radius: var(--be-radius-md); overflow: hidden; box-shadow: var(--be-shadow-lg); aspect-ratio: 4 / 4.4; }
.safety-collage .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--be-dur-slow) var(--be-ease-out); }
.safety-collage .ph:hover img { transform: scale(1.04); }
.safety-collage .ph:nth-child(even) { transform: translateY(clamp(10px, 1.4vw, 18px)); }

/* ---------- feature rows (alternating) ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.frow + .frow { margin-top: clamp(56px, 7vw, 104px); }
.frow.flip .frow-media { order: 2; }
.frow-media { position: relative; border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-lg); aspect-ratio: 4 / 3; }
.frow-media.portrait { aspect-ratio: 4 / 5; }
.frow-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--be-dur-slow) var(--be-ease-out); }
.frow-media:hover img { transform: scale(1.04); }
.frow-body h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .07em; font-weight: 700;
  font-size: clamp(24px, 3vw, 40px); color: var(--be-ocean-blue); margin-top: 16px; line-height: 1.1; }
.bg-deep .frow-body h3 { color: #fff; }
.frow-body .lead { margin-top: 18px; }
.frow-body .actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- card grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); margin-top: clamp(36px, 4vw, 56px); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--be-border-ink); border-radius: var(--be-radius-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--be-shadow-sm); transition: transform var(--be-dur) var(--be-ease-out), box-shadow var(--be-dur) var(--be-ease-out); }
.card:hover { transform: translateY(-4px); box-shadow: var(--be-shadow-md); }
.card-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--be-dur-slow) var(--be-ease-out); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media .badge { position: absolute; top: 14px; left: 14px; }
.card-body { padding: clamp(20px, 1.8vw, 28px); display: flex; flex-direction: column; flex: 1; }
.card-body .k { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-teal); font-weight: 600; }
.card-body h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .05em; font-weight: 700;
  font-size: 22px; color: var(--be-ocean-blue); margin-top: 8px; }
.card-body p { color: var(--be-text-soft); font-size: 14.5px; line-height: 1.6; margin-top: 12px; }
.card-body .card-foot { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-body .price { font-family: var(--be-font-impact); font-size: 26px; color: var(--be-ocean-blue); line-height: 1; }
.card-body .price small { display: block; font-family: var(--be-font-body); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--be-text-soft); font-weight: 600; margin-top: 5px; }

/* dark card variant */
.card.dark { background: var(--be-steel-navy); border-color: var(--be-border); color: #fff; }
.card.dark h3 { color: #fff; }
.card.dark p { color: #fff; }
.card.dark .specs li { color: #fff; }
.card.dark .price { color: #fff; }
.card.dark .price small { color: #fff; }

/* ---------- level / comparison table ---------- */
.compare-band { position: relative; overflow: hidden; color: #fff;
  background: url("assets/media/clean/fishes-baitball.jpg") center 24% / cover no-repeat; }
.compare-band::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,27,46,.72), rgba(2,27,46,.45) 40%, rgba(2,27,46,.66)); }
.compare-band .container { position: relative; z-index: 1; }
.compare-band .ltable { box-shadow: 0 24px 60px rgba(2,27,46,.45); border-color: rgba(255,255,255,.18); }
.ltable { margin-top: clamp(36px, 4vw, 52px); border: 1px solid var(--be-border-ink); border-radius: var(--be-radius-lg);
  overflow: hidden; background: #fff; box-shadow: var(--be-shadow-sm); }
.ltable .row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.ltable .row + .row { border-top: 1px solid var(--be-border-ink); }
.ltable .row.head { background: var(--be-abyss); color: #fff; }
.ltable .cell { padding: 18px 22px; display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.ltable .row.head .cell { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--be-sky-blue); }
.ltable .row.head .cell:first-child { color: #fff; }
.ltable .cell .t { font-weight: 600; color: var(--be-ocean-blue); font-size: 15.5px; }
.ltable .cell .s { font-size: 13px; color: var(--be-text-soft); }
.ltable .cell .big { font-family: var(--be-font-impact); font-size: 22px; color: var(--be-ocean-blue); }
.ltable .row:nth-child(even):not(.head) { background: var(--be-sky-50); }

/* ---------- spec / inclusion list ---------- */
.specs { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.specs li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--be-text-soft); line-height: 1.5; }
.bg-deep .specs li { color: var(--be-sky-blue); }
.specs li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--be-teal); fill: none; stroke-width: 2.4; }
.bg-deep .specs li svg { stroke: var(--be-surface-teal); }

/* ---------- stat band (reused) ---------- */
.statline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.statline .s { border-left: 1px solid var(--be-border); padding-left: 20px; }
.statline .s .n { font-family: var(--be-font-impact); font-size: clamp(34px, 4vw, 56px); line-height: .9; color: #fff; }
.statline .s .n .u { font-size: .42em; color: var(--be-surface-teal); margin-left: 3px; }
.statline .s .l { margin-top: 16px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-sky-blue); font-weight: 600; }
.statline.light .s .n { color: var(--be-ocean-blue); }
.statline.light .s { border-color: var(--be-border-ink); }
.statline.light .s .l { color: var(--be-text-soft); }

/* ---------- accordion (FAQ) ---------- */
.acc { margin-top: clamp(30px, 3vw, 44px); border-top: 1px solid var(--be-border-ink); max-width: 860px; }
.bg-deep .acc { border-color: var(--be-border); }
.acc-item { border-bottom: 1px solid var(--be-border-ink); }
.bg-deep .acc-item { border-color: var(--be-border); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--be-font-body); font-weight: 600; font-size: 17px; color: var(--be-ocean-blue); }
.bg-deep .acc-q { color: #fff; }
.acc-q .ico { width: 22px; height: 22px; position: relative; flex: none; }
.acc-q .ico::before, .acc-q .ico::after { content: ""; position: absolute; background: var(--be-teal); border-radius: 2px; transition: transform var(--be-dur) var(--be-ease-out); }
.acc-q .ico::before { top: 10px; left: 0; width: 22px; height: 2px; }
.acc-q .ico::after { top: 0; left: 10px; width: 2px; height: 22px; }
.acc-item.open .acc-q .ico::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height var(--be-dur-slow) var(--be-ease-out); }
.acc-a .inner { padding: 0 8px 24px; color: var(--be-text-soft); font-size: 15.5px; line-height: 1.7; max-width: 70ch; }
.bg-deep .acc-a .inner { color: var(--be-sky-blue); }

/* ---------- timeline (past events) ---------- */
.timeline { margin-top: clamp(36px, 4vw, 56px); position: relative; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--be-border); }
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -27px; top: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--be-surface-teal); box-shadow: 0 0 0 4px rgba(42,147,168,.22); }
.tl-item .yr { font-family: var(--be-font-impact); font-size: 22px; color: #fff; letter-spacing: .02em; }
.tl-item h4 { font-weight: 600; font-size: 17px; color: var(--be-surface-teal); margin-top: 4px; }
.tl-item p { color: var(--be-sky-blue); font-size: 14.5px; line-height: 1.6; margin-top: 8px; max-width: 60ch; }

/* ---------- quote ---------- */
.quote { max-width: 880px; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--be-font-display); font-weight: 500; font-style: italic; letter-spacing: .01em;
  font-size: clamp(22px, 2.8vw, 36px); line-height: 1.32; color: #fff; margin: 0; }
.bg-light .quote blockquote { color: var(--be-ocean-blue); }
.quote .cite { margin-top: 24px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--be-surface-teal); font-weight: 600; }

/* ---------- info grid (travel/logistics) ---------- */
.infogrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2vw, 30px); margin-top: clamp(34px, 4vw, 52px); }
.infocard { background: #fff; border: 1px solid var(--be-border-ink); border-radius: var(--be-radius-lg); padding: clamp(24px, 2.4vw, 34px); box-shadow: var(--be-shadow-sm); }
.bg-deep .infocard, .bg-steel .infocard { background: rgba(255,255,255,.04); border-color: var(--be-border); }
.infocard .k { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-teal); font-weight: 600; }
.bg-deep .infocard .k { color: var(--be-surface-teal); }
.infocard h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; font-size: 22px; color: var(--be-ocean-blue); margin-top: 8px; }
.bg-deep .infocard h3 { color: #fff; }
.infocard p { color: var(--be-text-soft); font-size: 15px; line-height: 1.65; margin-top: 12px; }
.bg-deep .infocard p { color: var(--be-sky-blue); }

/* ---------- team cards ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 3vw, 40px); margin-top: clamp(36px, 4vw, 56px); }
.team-card { background: #fff; border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-md); display: grid; grid-template-columns: 0.9fr 1.1fr; }
.team-card .tc-media { position: relative; aspect-ratio: 3 / 4; }
.team-card .tc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-card .tc-body { padding: clamp(22px, 2vw, 32px); display: flex; flex-direction: column; }
.team-card .tc-body .role { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-teal); font-weight: 600; }
.team-card .tc-body h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; font-size: 24px; color: var(--be-ocean-blue); margin-top: 8px; }
.team-card .tc-body p { color: var(--be-text-soft); font-size: 14.5px; line-height: 1.6; margin-top: 12px; }
.team-card .tc-tags { margin-top: auto; padding-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.team-card .tc-tags .badge { background: var(--be-sky-50); color: var(--be-ocean-blue); }

/* ---------- gallery (filterable) ---------- */
.gal-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; margin-bottom: clamp(28px, 3vw, 44px); }
.gal-chip { font-family: var(--be-font-body); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 20px; border-radius: var(--be-radius-pill); border: 1px solid var(--be-border); background: transparent; color: var(--be-sky-blue);
  cursor: pointer; transition: background var(--be-dur) var(--be-ease-out), color var(--be-dur) var(--be-ease-out), border-color var(--be-dur) var(--be-ease-out); }
.gal-chip:hover { border-color: var(--be-surface-teal); color: #fff; }
.gal-chip.active { background: var(--be-teal); border-color: var(--be-teal); color: #fff; }
.gal-grid { columns: 4; column-gap: 16px; }
.gal-grid .g-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--be-radius-md); overflow: hidden; position: relative; box-shadow: var(--be-shadow-md);
  transition: opacity var(--be-dur) var(--be-ease-out), transform var(--be-dur) var(--be-ease-out); }
.gal-grid .g-item img { width: 100%; display: block; transition: transform var(--be-dur-slow) var(--be-ease-out); }
.gal-grid .g-item:hover img { transform: scale(1.05); }
.gal-grid .g-item .g-tag { position: absolute; left: 14px; bottom: 12px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.7); }
.gal-grid .g-item.hide { display: none; }

/* ---------- crew (staff) ---------- */
.crew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.2vw, 30px); }
.crew-card { background: #fff; border: 1px solid var(--be-border-ink); border-radius: var(--be-radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--be-shadow-md); }
.crew-media { aspect-ratio: 4 / 4.4; background: var(--be-mist); }
.crew-media image-slot { width: 100%; height: 100%; }
.crew-body { padding: clamp(20px, 1.8vw, 28px); display: flex; flex-direction: column; }
.crew-body h3 { font-family: var(--be-font-display); font-size: clamp(20px, 1.7vw, 25px); color: var(--be-ocean-blue); line-height: 1.1; }
.crew-role { margin-top: 8px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--be-teal); line-height: 1.5; }
.crew-body p { margin-top: 14px; font-size: 14.5px; line-height: 1.62; color: var(--be-text-soft); }
.crew-ig { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--be-ocean-blue); text-decoration: none; }
.crew-ig svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.crew-ig:hover { color: var(--be-teal); }
@media (max-width: 900px) { .crew-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } .crew-media { aspect-ratio: 16 / 11; } }

/* ---------- athletes roster ---------- */
.ath-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 2.4vw, 36px); margin-top: clamp(40px, 4.5vw, 64px); align-items: start; }
.ath-col { display: flex; flex-direction: column; gap: clamp(22px, 2.4vw, 34px); }
.ath-col-label { color: var(--be-teal); font-weight: 600; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; padding-bottom: 2px; }
.ath-card { background: #fff; border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-md);
  display: flex; flex-direction: column; scroll-margin-top: 110px; }
.ath-card .ath-media { position: relative; aspect-ratio: 4 / 5; }
.ath-card .ath-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ath-card .ath-media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,27,46,.18) 0%, rgba(2,27,46,0) 30%, rgba(2,27,46,.32) 100%); }
.ath-card .ath-flag { position: absolute; top: 16px; left: 16px; z-index: 1; }
.ath-card .ath-media.portrait img { object-position: center 22%; }
#harry .ath-media img { object-position: center 32%; }
#arron .ath-media img { object-position: center 28%; }
#natalie .ath-media img { object-position: center 30%; }
#kathleen .ath-media img { object-position: center 18%; }
.ath-body { padding: clamp(26px, 2.4vw, 44px); display: flex; flex-direction: column; }
.ath-body .role { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-teal); font-weight: 600; }
.ath-body h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .04em; font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px); color: var(--be-ocean-blue); margin-top: 9px; line-height: 1.02; }
.ath-body .ath-meta { margin-top: 10px; font-size: 12.5px; letter-spacing: .04em; color: var(--be-text-soft); font-weight: 500; }
.ath-body .ath-meta .up { color: var(--be-teal); font-weight: 600; }
.ath-body p { color: var(--be-text-soft); font-size: 14.5px; line-height: 1.62; margin-top: 16px; max-width: 54ch; }
.pb-strip { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--be-border-ink); border-radius: var(--be-radius-md); overflow: hidden; }
.pb-strip .pb { flex: 1 1 0; min-width: 72px; padding: 12px 14px; border-right: 1px solid var(--be-border-ink); }
.pb-strip .pb:last-child { border-right: 0; }
.pb-strip .pb .d { font-family: var(--be-font-impact); font-size: 25px; line-height: .9; color: var(--be-ocean-blue); }
.pb-strip .pb .d span { font-size: 13px; color: var(--be-text-soft); margin-left: 1px; }
.pb-strip .pb .l { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--be-teal); font-weight: 700; margin-top: 6px; }
.ath-tags { margin-top: auto; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.ath-tags .badge { background: var(--be-sky-50); color: var(--be-ocean-blue); }
.ath-card .ath-ig { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--be-teal); letter-spacing: .02em; }
.ath-card .ath-ig svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.ath-card .ath-ig .foll { color: var(--be-text-soft); font-weight: 500; }

/* ---------- sponsorship: squad reach line ---------- */
.card .reach { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--be-border-ink); }
.card .reach .big { font-family: var(--be-font-impact); font-size: 22px; color: var(--be-ocean-blue); line-height: 1; }
.card .reach .big span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--be-text-soft); font-weight: 600; display: block; margin-top: 5px; }
.card .reach .prof { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--be-teal); white-space: nowrap; }
.card:hover .reach .prof { color: var(--be-ocean-blue); }

/* ---------- competition calendar ---------- */
.cal { margin-top: clamp(40px, 4.5vw, 64px); display: flex; flex-direction: column; }
.cal-row { display: grid; grid-template-columns: 124px 1fr 178px; gap: clamp(16px, 2.4vw, 40px); align-items: center;
  padding: clamp(22px, 2.2vw, 30px) clamp(8px, 1.4vw, 22px); border-top: 1px solid var(--be-border-ink);
  transition: background var(--be-dur) var(--be-ease-out); }
.cal-row:last-child { border-bottom: 1px solid var(--be-border-ink); }
.cal-row:hover { background: var(--be-sky-50); }
.cal-row.home { background: linear-gradient(90deg, rgba(32,125,146,.08), rgba(32,125,146,0) 70%); box-shadow: inset 3px 0 0 var(--be-teal); }
.cal-when { display: flex; flex-direction: column; gap: 3px; }
.cal-when .mo { font-family: var(--be-font-impact); font-size: clamp(22px, 2.2vw, 28px); line-height: .9; color: var(--be-ocean-blue); text-transform: uppercase; letter-spacing: .02em; }
.cal-when .dd { font-size: 12px; letter-spacing: .06em; color: var(--be-text-soft); font-weight: 600; }
.cal-main .org { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--be-teal); font-weight: 700; }
.cal-main h3 { font-family: var(--be-font-display); text-transform: uppercase; letter-spacing: .04em; font-weight: 700;
  font-size: clamp(18px, 1.9vw, 25px); color: var(--be-ocean-blue); margin-top: 6px; line-height: 1.05; }
.cal-main .loc { margin-top: 8px; font-size: 13.5px; color: var(--be-text-soft); }
.cal-tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }
.cal-tags .badge { background: var(--be-sky-50); color: var(--be-ocean-blue); font-size: 10px; padding: 6px 11px; }
.cal-tags .badge.wr { background: var(--be-ocean-blue); color: #fff; }
.cal-tags .badge.home { background: var(--be-teal); color: #fff; }

/* ---------- sponsorship tiers ---------- */
.tier-incl { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.tier-incl li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; line-height: 1.5; color: var(--be-sky-blue); }
.tier-incl li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; stroke: var(--be-surface-teal); fill: none; stroke-width: 2.4; }
.card.dark.featured { outline: 2px solid var(--be-surface-teal); outline-offset: -2px; }
.card.dark .tier-cap { font-family: var(--be-font-impact); font-size: 20px; color: #fff; line-height: 1; }
.card.dark .tier-cap span { display: block; font-family: var(--be-font-body); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--be-sky-blue); font-weight: 600; margin-top: 6px; }

@media (max-width: 880px) {
  .cal-row { grid-template-columns: 96px 1fr; gap: 16px 20px; }
  .cal-tags { grid-column: 1 / -1; justify-content: flex-start; padding-left: 116px; }
}
@media (max-width: 520px) {
  .cal-row { grid-template-columns: 1fr; }
  .cal-tags { padding-left: 0; }
}

@media (max-width: 1024px) {
  .intro-row { grid-template-columns: 1fr; gap: 24px; }
  .cards, .cards.four { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { columns: 3; }
  .ltable .row { grid-template-columns: 1.2fr 1fr 1fr; }
  .ltable .cell.hide-narrow { display: none; }
}
@media (max-width: 880px) {
  .frow { grid-template-columns: 1fr; gap: 28px; }
  .frow.flip .frow-media { order: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .ath-grid { grid-template-columns: 1fr; }
  .ath-card .ath-media { aspect-ratio: 16 / 10; }
  .statline { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .specs { grid-template-columns: 1fr; }
  .infogrid { grid-template-columns: 1fr; }
  .gal-grid { columns: 2; }
}
@media (max-width: 560px) {
  .cards, .cards.two, .cards.four { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-card .tc-media { aspect-ratio: 4 / 3; }
  .ltable .row { grid-template-columns: 1fr; }
  .ltable .row.head { display: none; }
  .ltable .cell { padding: 14px 18px; }
  .statline { grid-template-columns: 1fr 1fr; }
  .gal-grid { columns: 1; }
  .page-hero .ph-meta { gap: 12px 20px; }
}
