/* =========================================================
   Sand Dollar Boat Tours — stylesheet
   Palette: deep Gulf teal + bright aqua + sunset coral + sun gold,
   grounded in the brand's warm sand & shell-brown identity.
   ========================================================= */

:root {
  --deep:    #06323d;
  --deep-2:  #04242d;
  --teal:    #0c7385;
  --teal-2:  #0f93a6;
  --aqua:    #1ec8d8;
  --aqua-2:  #7fe6ee;

  --coral:   #ff6a3d;
  --coral-2: #ff875e;
  --coral-d: #e8542b;
  --sun:     #ffc24a;
  --sun-2:   #ffd982;

  --shell:   #8a4f24;
  --shell-2: #b06a34;

  --sand:    #f7efdd;
  --sand-2:  #efe3c9;
  --paper:   #fffdf6;

  --ink:     #0c2a2f;
  --muted:   #5b6e72;
  --line:    rgba(12, 42, 47, 0.12);

  --display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --script:  "Pacifico", "Brush Script MT", cursive;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 2px 12px rgba(6, 50, 61, 0.07);
  --shadow-md: 0 16px 44px rgba(6, 50, 61, 0.14);
  --shadow-lg: 0 32px 72px rgba(6, 50, 61, 0.22);

  --maxw: 1180px;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Custom branded scrollbars ---------- */
html { scrollbar-width: thin; scrollbar-color: var(--teal) rgba(12, 42, 47, 0.07); }
::-webkit-scrollbar { width: 13px; height: 13px; }
::-webkit-scrollbar-track { background: rgba(12, 42, 47, 0.07); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--aqua) 0%, var(--teal-2) 55%, var(--teal) 100%);
  border-radius: 100px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--coral-2) 0%, var(--coral) 55%, var(--coral-d) 100%);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:active { background: var(--coral-d); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: transparent; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.ic { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--aqua-2);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--teal); }
.eyebrow--script {
  font-family: var(--script);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 400;
  color: var(--sun);
}
.eyebrow--script.eyebrow--dark { color: var(--coral); }

.section { padding: clamp(66px, 9vw, 122px) 0; position: relative; }

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--deep);
}
.section__title--light { color: var(--paper); }
.section__sub { margin-top: 16px; font-size: 1.08rem; color: var(--muted); }
.section__sub--light { color: rgba(255, 253, 246, 0.8); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700; font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---- Booking buttons: animated sheen + coral glow ---- */
.btn--coral {
  background: linear-gradient(135deg, var(--coral-2) 0%, var(--coral) 55%, var(--coral-d) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 106, 61, 0.4);
  z-index: 0;
}
/* recurring glint that sweeps across the button, behind the label */
.btn--coral::before {
  content: "";
  position: absolute;
  top: -60%; left: -90%;
  width: 55%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-22deg);
  z-index: -1;
  pointer-events: none;
  animation: btnSheen 5.5s ease-in-out infinite;
}
@keyframes btnSheen {
  0%   { left: -90%; }
  14%  { left: 150%; }
  100% { left: 150%; }
}
.btn--coral:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 20px 46px rgba(255, 106, 61, 0.6), 0 0 0 4px rgba(255, 135, 94, 0.18);
}
.btn--coral:active { transform: translateY(-1px) scale(0.99); }
/* sheen also fires immediately on hover */
.btn--coral:hover::before { animation: btnSheen 0.7s ease-out; }

@media (prefers-reduced-motion: reduce) {
  .btn--coral::before { animation: none; display: none; }
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06); color: var(--paper);
  border-color: rgba(255, 253, 246, 0.55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; transform: translateY(-3px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--deep-2);
  color: rgba(255, 253, 246, 0.85);
  font-size: 0.82rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 253, 246, 0.78); }
.topbar__item .ic { width: 14px; height: 14px; fill: var(--aqua); }
.topbar__item a:hover { color: var(--aqua-2); }
.topbar__badge { color: var(--sun); font-weight: 600; letter-spacing: 0.02em; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 253, 246, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; transition: min-height .25s ease; }
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header.is-scrolled .header__inner { min-height: 64px; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { width: auto; height: 62px; transition: height .25s ease; }
.header.is-scrolled .brand__logo { height: 50px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-family: var(--display);
  font-size: 0.93rem; font-weight: 600; color: var(--ink);
  padding: 10px 14px; border-radius: 9px; transition: color .2s, background .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 2px; background: var(--coral); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--teal); }
.nav__cta {
  margin-left: 10px;
  font-family: var(--display);
  font-size: 0.93rem; font-weight: 700;
  padding: 11px 22px; border-radius: 100px;
  background: linear-gradient(135deg, var(--coral-2), var(--coral-d));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 106, 61, 0.34);
  transition: transform .2s, box-shadow .2s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 106, 61, 0.46); }

.navtoggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 9px; border-radius: 12px; transition: background .35s ease; }
.navtoggle span { width: 26px; height: 2.5px; background: var(--deep); border-radius: 3px; transform-origin: center; transition: transform .42s cubic-bezier(.55,.06,.1,1.5), opacity .25s ease, background .35s ease, width .3s ease; }
.navtoggle.is-open { background: rgba(255, 253, 246, .14); }
.navtoggle.is-open span { background: var(--paper); }
.navtoggle.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.navtoggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.navtoggle.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Tours megamenu ---------- */
.nav__mega { position: static; display: inline-flex; }
.nav__mega-trigger {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: none; border: 0; padding: 8px 4px; margin: 0; font-family: var(--display);
  font-size: 0.95rem; font-weight: 600; color: var(--deep); letter-spacing: .01em;
  position: relative; transition: color .2s ease;
}
.nav__mega-trigger:hover, .nav__mega.is-open .nav__mega-trigger { color: var(--teal); }
.nav__mega-trigger .mm-chev { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.nav__mega.is-open .nav__mega-trigger .mm-chev { transform: rotate(180deg); }

.megamenu {
  position: absolute; left: 0; right: 0; top: calc(100% - 2px); z-index: 55; padding: 0 28px;
  opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.megamenu.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.megamenu__inner {
  max-width: min(1040px, 95vw); margin: 0 auto; background: var(--paper, #fffdf6);
  border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 32px 72px rgba(4,36,45,.30);
  display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden;
}
.mm-head { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 18px 22px 4px; }
.mm-head h3 { font-family: var(--display); font-size: 1.02rem; font-weight: 800; color: var(--deep); margin: 0; }
.mm-head a { font-family: var(--display); font-weight: 700; font-size: .82rem; color: var(--teal); text-decoration: none; }
.mm-head a:hover { text-decoration: underline; }
.mm-list { padding: 8px 12px 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; align-content: start; }
.mm-item {
  display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 13px; cursor: pointer;
  text-decoration: none; color: var(--deep); transition: background .2s ease, transform .15s ease;
}
.mm-item:hover { transform: translateX(2px); }
.mm-item:hover, .mm-item.is-active { background: rgba(12,115,133,.10); }
.mm-item.is-active { box-shadow: inset 0 0 0 1.6px rgba(12,115,133,.28); }
.mm-item__ic {
  width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem;
  background: linear-gradient(135deg, var(--teal), var(--aqua-2, #1ec8d8)); box-shadow: 0 5px 12px rgba(12,115,133,.3);
}
.mm-item__txt { display: flex; flex-direction: column; line-height: 1.18; min-width: 0; }
.mm-item__txt b { font-family: var(--display); font-size: .9rem; font-weight: 700; white-space: nowrap; }
.mm-item__txt small { font-size: .71rem; color: #5b6b6f; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.mm-preview { position: relative; min-height: 330px; background: var(--deep-2, #04242d); overflow: hidden; margin: 4px 14px 14px 8px; border-radius: 16px; }
.mm-prev__art { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.mm-prev__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,50,61,.10) 26%, rgba(4,36,45,.42) 58%, rgba(4,36,45,.88) 100%); }
.mm-prev__emoji { position: absolute; left: 24px; top: 26px; font-size: 3.2rem; line-height: 1; filter: drop-shadow(0 6px 12px rgba(0,0,0,.45)); will-change: transform; }
.mm-prev__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 24px 22px; color: #fff; }
.mm-prev__tag { display: inline-block; font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sun, #ffc24a); margin: 0 0 6px; }
.mm-prev__body h4 { font-family: var(--display); font-size: 1.32rem; font-weight: 800; margin: 0 0 6px; line-height: 1.1; }
.mm-prev__body p { font-size: .85rem; line-height: 1.45; color: rgba(255,255,255,.9); margin: 0 0 13px; max-width: 34ch; }
.mm-prev__cta { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: .85rem; color: var(--deep); background: var(--sun, #ffc24a); padding: 9px 17px; border-radius: 999px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 6px 16px rgba(255,194,74,.4); }
.mm-prev__cta:hover { transform: translateX(3px); box-shadow: 0 9px 20px rgba(255,194,74,.5); }

@keyframes mmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mmSpin { to { transform: rotate(360deg); } }
@keyframes mmLeap { 0%,100% { transform: translateY(8px) rotate(-10deg); } 50% { transform: translateY(-22px) rotate(16deg); } }
@keyframes mmRise { 0% { transform: translateY(16px) scale(.86); filter: drop-shadow(0 0 0 rgba(255,190,90,0)); } 100% { transform: translateY(-4px) scale(1.06); filter: drop-shadow(0 0 24px rgba(255,190,90,.9)); } }
@keyframes mmFlicker { 0%,100% { transform: scale(1) rotate(-2deg); opacity: 1; } 28% { transform: scale(1.13) rotate(3deg); opacity: .85; } 62% { transform: scale(.95) rotate(-3deg); opacity: 1; } }
@keyframes mmBob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(4deg); } }
@keyframes mmGlide { 0% { transform: translateX(-14px) rotate(-2deg); } 100% { transform: translateX(66px) rotate(2deg); } }
@keyframes mmSway { 0%,100% { transform: rotate(-13deg); } 50% { transform: rotate(11deg); } }
@keyframes mmPop { 0% { transform: scale(.3) rotate(-14deg); opacity: 0; } 60% { transform: scale(1.2) rotate(8deg); opacity: 1; } 100% { transform: scale(1) rotate(0); opacity: 1; } }
.mm-prev__art--in { animation: mmFade .42s ease; }
.mm-anim--spin { animation: mmSpin 7s linear infinite; transform-origin: 50% 50%; }
.mm-anim--leap { animation: mmLeap 2.3s ease-in-out infinite; }
.mm-anim--rise { animation: mmRise 2.8s ease-in-out infinite alternate; }
.mm-anim--flicker { animation: mmFlicker 1.05s ease-in-out infinite; }
.mm-anim--bob { animation: mmBob 2.6s ease-in-out infinite; }
.mm-anim--glide { animation: mmGlide 3s ease-in-out infinite alternate; }
.mm-anim--sway { animation: mmSway 2.8s ease-in-out infinite; transform-origin: 50% 90%; }
.mm-anim--pop { animation: mmPop .62s cubic-bezier(.34,1.56,.64,1) both; }

@media (prefers-reduced-motion: reduce) {
  .mm-prev__emoji { animation: none !important; }
  .mm-prev__art--in { animation: none !important; }
  .megamenu { transition: opacity .2s ease, visibility .2s; transform: none; }
}

/* megamenu → mobile accordion (inside the nav overlay) */
@media (max-width: 760px) {
  .nav__mega { display: block; width: 100%; }
  .nav__mega-trigger { width: 100%; justify-content: space-between; font-size: 1.4rem; font-weight: 600; color: var(--paper); padding: 6px 0; }
  .nav__mega-trigger:hover, .nav__mega.is-open .nav__mega-trigger { color: var(--sun); }
  .nav__mega-trigger .mm-chev { width: 18px; height: 18px; }
  .megamenu { position: static; padding: 0; opacity: 1; visibility: visible; transform: none; pointer-events: auto; max-height: 0; overflow: hidden; transition: max-height .42s ease; }
  .megamenu.is-open { max-height: 1600px; }
  .megamenu__inner { display: block; max-width: none; margin: 6px 0 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); box-shadow: none; border-radius: 16px; }
  .mm-head { display: none; }
  .mm-list { grid-template-columns: 1fr; padding: 7px; gap: 2px; }
  .mm-item { color: var(--paper); }
  .mm-item:hover, .mm-item.is-active { background: rgba(255,255,255,.12); box-shadow: none; transform: none; }
  .mm-item__txt b { white-space: normal; }
  .mm-item__txt small { color: rgba(255,253,246,.62); white-space: normal; }
  .mm-preview { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--paper); overflow: hidden; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(54% 48% at 80% 50%, rgba(255, 138, 66, 0.55), rgba(255, 138, 66, 0) 70%),
    radial-gradient(30% 28% at 84% 47%, rgba(255, 214, 132, 0.72), transparent 64%),
    radial-gradient(72% 58% at 6% 14%, rgba(3, 24, 30, 0.6), transparent 72%),
    linear-gradient(168deg, #052a33 0%, #08414f 42%, #0b5d61 70%, #15706a 100%);
}
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(4, 28, 35, 0.88) 0%, rgba(4, 28, 35, 0.6) 40%, rgba(4, 28, 35, 0.2) 78%, rgba(4, 28, 35, 0.05) 100%),
    linear-gradient(180deg, rgba(4, 28, 35, 0.35) 0%, transparent 30%, transparent 70%, rgba(4, 28, 35, 0.35) 100%);
}

/* sun */
.hero__sun {
  position: absolute; top: 36%; right: 13%;
  width: clamp(116px, 14vw, 188px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ffe9b0, #ffb14e 52%, rgba(255, 150, 70, 0) 72%);
  filter: drop-shadow(0 0 54px rgba(255, 160, 80, 0.62));
  animation: sunPulse 6s ease-in-out infinite;
}
@keyframes sunPulse { 0%, 100% { transform: scale(1); opacity: .95; } 50% { transform: scale(1.06); opacity: 1; } }

/* clouds */
.hero__cloud {
  position: absolute; height: 14px; border-radius: 100px;
  background: rgba(255, 253, 246, 0.16); filter: blur(2px);
}
.hero__cloud::before, .hero__cloud::after {
  content: ""; position: absolute; bottom: 0; border-radius: 50%;
  background: rgba(255, 253, 246, 0.16);
}
.hero__cloud--1 { top: 22%; left: -120px; width: 90px; animation: drift 34s linear infinite; }
.hero__cloud--1::before { width: 34px; height: 34px; left: 14px; bottom: 2px; }
.hero__cloud--1::after { width: 24px; height: 24px; right: 12px; bottom: 4px; }
.hero__cloud--2 { top: 36%; left: -160px; width: 64px; animation: drift 50s linear infinite; animation-delay: -12s; opacity: .7; }
.hero__cloud--2::before { width: 26px; height: 26px; left: 10px; bottom: 2px; }
.hero__cloud--2::after { width: 18px; height: 18px; right: 8px; bottom: 4px; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(115vw); } }

/* dolphins */
.hero__dolphin { position: absolute; fill: rgba(127, 230, 238, 0.3); }
.hero__dolphin--a { width: clamp(90px, 13vw, 150px); right: 16%; bottom: 20%; animation: leap 7s ease-in-out infinite; }
.hero__dolphin--b { width: clamp(60px, 8vw, 96px); right: 30%; bottom: 14%; fill: rgba(127, 230, 238, 0.18); animation: leap 9s ease-in-out infinite; animation-delay: -3s; }
@keyframes leap {
  0%, 100% { transform: translateY(14px) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}

/* palm island on the horizon */
.hero__island { position: absolute; right: -1%; bottom: 31%; width: clamp(240px, 42vw, 560px); opacity: .96; }
/* sunset reflection shimmer on the water */
.hero__shimmer { position: absolute; right: 17.5%; top: 50%; width: clamp(60px, 8vw, 120px); height: clamp(110px, 24vh, 240px); border-radius: 50%; transform: scaleX(.55); background: linear-gradient(180deg, rgba(255, 188, 110, 0.55), rgba(255, 188, 110, 0)); filter: blur(5px); animation: shimmer 5s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { opacity: .7; } 50% { opacity: 1; } }
/* pontoon tour boat silhouette */
.hero__boat { position: absolute; width: clamp(120px, 17vw, 228px); right: 15%; bottom: 39%; animation: bob 5.5s ease-in-out infinite; filter: drop-shadow(0 6px 14px rgba(3, 24, 30, .4)); }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-7px) rotate(1.5deg); } }

/* waves */
.hero__waves { position: absolute; left: -10%; bottom: -1px; width: 120%; max-width: none; height: clamp(120px, 18vw, 220px); }
.hero__waves .wv { transform-box: view-box; }
.wv--1 { fill: var(--paper); }
.wv--2 { fill: rgba(255, 255, 255, 0.34); animation: sway 9s ease-in-out infinite; }
.wv--3 { fill: rgba(255, 255, 255, 0.17); animation: sway 13s ease-in-out infinite reverse; }
@keyframes sway { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3%); } }

.hero__inner { padding: clamp(64px, 11vw, 120px) 0 clamp(120px, 20vw, 230px); max-width: 760px; position: relative; }
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.6rem, 6.8vw, 5rem);
  line-height: 1.02; letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(4, 36, 45, 0.4);
}
.hero__title em { color: var(--sun); font-style: normal; position: relative; white-space: nowrap; }
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='10' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 Q 30 0 60 6 T 118 6' fill='none' stroke='%231ec8d8' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.hero__lede { margin-top: 24px; font-size: clamp(1.05rem, 1.8vw, 1.28rem); max-width: 600px; color: rgba(255, 253, 246, 0.9); font-weight: 300; }
.hero__lede strong { color: #fff; font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 50px);
  margin-top: 48px; padding-top: 30px;
  border-top: 1px solid rgba(255, 253, 246, 0.2);
  font-size: 0.9rem; color: rgba(255, 253, 246, 0.82);
}
.hero__trust li { display: flex; flex-direction: column; gap: 2px; max-width: 130px; }
.hero__trust-num { font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--sun); line-height: 1; }

/* ---------- Trust strip ---------- */
.strip { background: var(--teal); color: #fff; }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; padding: 16px 0; font-size: 0.92rem; font-weight: 600; }
.strip__item { color: rgba(255, 255, 255, 0.95); }
.strip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sun); }

/* ---------- Tours ---------- */
.tours { background: var(--sand); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: visible;
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--aqua), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(30, 200, 216, 0.45); }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--deep));
  margin-bottom: 20px;
}
.card__icon svg { width: 38px; height: 38px; overflow: visible; }
.card__tag {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--display); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--teal); background: rgba(30, 200, 216, 0.16);
  padding: 5px 11px; border-radius: 100px;
}
.card__title { font-family: var(--display); font-size: 1.42rem; font-weight: 700; line-height: 1.15; color: var(--deep); margin-bottom: 9px; }
.card__desc { color: var(--muted); margin-bottom: 18px; font-size: 0.97rem; }
.card__list { display: grid; gap: 11px; margin-bottom: 22px; }
.card__list li { position: relative; padding-left: 30px; font-size: 0.93rem; }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(30, 200, 216, 0.16);
  transition: background .25s ease, transform .25s ease;
}
.card__list li::after {
  content: ""; position: absolute; left: 7px; top: 5px;
  width: 4px; height: 8px; border: solid var(--teal); border-width: 0 2px 2px 0;
  transform: rotate(45deg); transition: border-color .25s ease;
}
.card:hover .card__list li::before { background: var(--teal); transform: scale(1.12); }
.card:hover .card__list li::after { border-color: #fff; }
.card:hover .card__list li:nth-child(1)::before, .card:hover .card__list li:nth-child(1)::after { transition-delay: .03s; }
.card:hover .card__list li:nth-child(2)::before, .card:hover .card__list li:nth-child(2)::after { transition-delay: .1s; }
.card:hover .card__list li:nth-child(3)::before, .card:hover .card__list li:nth-child(3)::after { transition-delay: .17s; }
.card__btn {
  font-family: var(--display); font-weight: 700; font-size: 0.93rem; color: var(--teal);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s, color .2s;
}
.card:hover .card__btn { color: var(--coral-d); gap: 9px; }
.tours__note { text-align: center; margin-top: 40px; color: var(--muted); font-size: 1.05rem; }
.tours__note a { color: var(--teal); font-weight: 700; border-bottom: 2px solid var(--sun); padding-bottom: 1px; }
.tours__note a:hover { color: var(--coral-d); }

/* ---- Animated tour icons ---- */
.svc { fill: var(--aqua-2); }

/* Dolphin: gentle swim with an occasional full flip */
.svc--dolphin .dolphin { fill: var(--aqua-2); transform-box: view-box; transform-origin: 24px 24px; animation: dolphinFlip 8s ease-in-out infinite; }
.svc-splash { fill: none; stroke: var(--sun); stroke-width: 2; stroke-linecap: round; opacity: .5; transform-box: view-box; transform-origin: 11px 40px; animation: dolphinSplash 8s ease-in-out infinite; }
.card:hover .svc--dolphin .dolphin, .card:hover .svc-splash { animation-duration: 3.4s; }
@keyframes dolphinFlip {
  0%, 14% { transform: translateY(2px) rotate(0deg); }
  28% { transform: translateY(-3px) rotate(0deg); }
  42% { transform: translateY(2px) rotate(0deg); }
  56% { transform: translateY(-3px) rotate(0deg); }
  68% { transform: translateY(2px) rotate(0deg); }
  76% { transform: translateY(-12px) rotate(150deg); }
  86% { transform: translateY(-13px) rotate(290deg); }
  94%, 100% { transform: translateY(2px) rotate(360deg); }
}
@keyframes dolphinSplash {
  0%, 70% { opacity: .5; transform: scaleX(1); }
  76% { opacity: .85; transform: scaleX(1.5); }
  88% { opacity: 0; transform: scaleX(.5); }
  95% { opacity: .8; transform: scaleX(1.6); }
  100% { opacity: .5; transform: scaleX(1); }
}

/* Sand dollar: slow spin + sweeping shine */
.sd2-body { fill: var(--sand-2); }
.sd2-petals { fill: var(--teal-2); }
.sd2-petals, .sd2-center { transform-box: view-box; transform-origin: 24px 24px; animation: sdSpin 18s linear infinite; }
.sd2-center { fill: var(--coral); }
.svc--shell { overflow: hidden; }
.sd2-shine { fill: rgba(255, 255, 255, 0.55); transform: skewX(-18deg); animation: sdShine 4s ease-in-out infinite; }
.card:hover .sd2-petals, .card:hover .sd2-center { animation-duration: 4s; }
@keyframes sdSpin { to { transform: rotate(360deg); } }
@keyframes sdShine { 0%, 60% { transform: translateX(-30px) skewX(-18deg); } 80%, 100% { transform: translateX(70px) skewX(-18deg); } }

/* Sun: rotating rays + pulsing core */
.sun2__rays { stroke: var(--sun); stroke-width: 2.6; stroke-linecap: round; transform-box: view-box; transform-origin: 24px 24px; animation: sdSpin 14s linear infinite; }
.sun2__core { fill: var(--sun); animation: corePulse 3s ease-in-out infinite; }
.card:hover .sun2__rays { animation-duration: 4s; }
@keyframes corePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* Helm wheel: spin on hover */
.helm { transform-box: view-box; transform-origin: 24px 24px; animation: sdSpin 22s linear infinite; }
.helm__ring { fill: none; stroke: var(--aqua-2); stroke-width: 3; }
.helm__hub { fill: var(--sun); }
.helm__spokes { stroke: var(--aqua-2); stroke-width: 2.6; stroke-linecap: round; }
.card:hover .helm { animation-duration: 2.4s; }

/* Compass: swaying needle */
.compass__ring { fill: none; stroke: var(--aqua-2); stroke-width: 2.6; }
.compass__needle { transform-box: view-box; transform-origin: 24px 24px; animation: needleSway 4s ease-in-out infinite; }
.needle--n { fill: var(--coral); }
.needle--s { fill: var(--aqua-2); }
.compass__pin { fill: var(--sun); }
.card:hover .compass__needle { animation-duration: 1.6s; }
@keyframes needleSway { 0%, 100% { transform: rotate(-22deg); } 50% { transform: rotate(28deg); } }

/* Anchor: pendulum sway */
.anchor { transform-box: view-box; transform-origin: 24px 9px; animation: anchorSway 5s ease-in-out infinite; }
.anchor__ring { fill: none; stroke: var(--aqua-2); stroke-width: 3; }
.anchor__shank, .anchor__stock, .anchor__arms { fill: none; stroke: var(--aqua-2); stroke-width: 3; stroke-linecap: round; }
.anchor__fluke { fill: var(--aqua-2); }
.card:hover .anchor { animation-duration: 2.2s; }
@keyframes anchorSway { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }

/* ---------- Booking (FareHarbor) ---------- */
.booking { background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%); }
.booking__frame {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(14px, 3vw, 30px);
  min-height: 220px;
}
.booking__loader {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 64px 0; color: var(--muted);
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
}
.booking__frame.fh-ready .booking__loader { display: none; }
.booking__spinner {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  border: 3px solid rgba(12, 115, 133, 0.22); border-top-color: var(--teal);
  animation: sdSpin 0.8s linear infinite;
}
.booking__help { text-align: center; margin-top: 26px; color: var(--muted); }
.booking__help a { color: var(--teal); font-weight: 700; }
.booking__help a:hover { color: var(--coral-d); }

/* ---------- The Experience ---------- */
.experience { background: var(--sand-2); }
.experience__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.experience__media { position: relative; }
.experience__panel {
  position: relative;
  background: linear-gradient(160deg, var(--teal), var(--deep) 90%);
  border-radius: 20px; padding: 56px 44px; min-height: 360px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(127, 230, 238, 0.2);
  overflow: hidden;
}
.experience__panel::before {
  content: ""; position: absolute; top: -60px; right: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 194, 74, 0.3), transparent 65%);
}
.experience__crest { font-size: 2.6rem; color: var(--sun); line-height: 1; }
.experience__quote { font-family: var(--script); font-size: clamp(2rem, 4vw, 2.7rem); color: #fff; line-height: 1.15; }
.experience__since { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--aqua-2); font-weight: 700; }
.experience__waves { margin-top: 8px; opacity: .9; }
.experience__lede { margin: 16px 0 28px; font-size: 1.12rem; color: var(--ink); }
.experience__points { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; margin-bottom: 30px; }
.experience__point h4 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--deep); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.experience__point h4::before { content: "⚓"; color: var(--coral); font-size: 0.9rem; }
.experience__point p { font-size: 0.93rem; color: var(--muted); }

/* ---------- Captains ---------- */
.captains { background: linear-gradient(165deg, var(--deep) 0%, var(--deep-2) 100%); position: relative; overflow: hidden; }
.captains::before {
  content: ""; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cpath d='M0 45 Q 22 28 45 45 T 90 45' fill='none' stroke='%237fe6ee' stroke-width='2'/%3E%3C/svg%3E");
}
.crew { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.capt {
  background: rgba(255, 253, 246, 0.05);
  border: 1px solid rgba(127, 230, 238, 0.16);
  border-radius: var(--radius); padding: 30px 26px;
  text-align: center;
  transition: transform .3s, background .3s, border-color .3s;
}
.capt:hover { transform: translateY(-6px); background: rgba(255, 253, 246, 0.08); border-color: var(--aqua); }
.capt__avatar {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: #fff;
  box-shadow: 0 10px 24px rgba(4, 36, 45, 0.4);
  border: 3px solid rgba(255, 253, 246, 0.18);
}
.capt__avatar--a { background: linear-gradient(135deg, var(--teal-2), var(--teal)); }
.capt__avatar--b { background: linear-gradient(135deg, var(--coral-2), var(--coral-d)); }
.capt__avatar--c { background: linear-gradient(135deg, var(--aqua), var(--teal-2)); }
.capt__avatar--d { background: linear-gradient(135deg, var(--shell-2), var(--shell)); }
.capt__name { font-family: var(--display); font-size: 1.18rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.capt__role { font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sun); font-weight: 600; margin-bottom: 14px; }
.capt__bio { font-size: 0.92rem; color: rgba(255, 253, 246, 0.78); margin-bottom: 14px; }
.capt__fun { font-size: 0.85rem; color: rgba(255, 253, 246, 0.7); border-top: 1px solid rgba(127, 230, 238, 0.18); padding-top: 13px; }
.capt__fun span { color: var(--aqua-2); font-weight: 700; }

/* ---------- How it works ---------- */
.how { background: linear-gradient(160deg, var(--teal) 0%, var(--deep) 100%); position: relative; overflow: hidden; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative; overflow: hidden;
  background: rgba(255, 253, 246, 0.05);
  border: 1px solid rgba(127, 230, 238, 0.18);
  border-radius: var(--radius); padding: 32px 26px;
  transition: transform .3s, background .3s, border-color .3s;
}
.step:hover { transform: translateY(-6px); background: rgba(255, 253, 246, 0.08); border-color: var(--sun); }
.step__num { font-family: var(--display); font-size: 2.6rem; font-weight: 800; color: var(--sun); display: block; line-height: 1; margin-bottom: 14px; }
.step__title { font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { color: rgba(255, 253, 246, 0.76); font-size: 0.93rem; }
.step__num, .step__title, .step p { position: relative; z-index: 1; }
.step__shell {
  position: absolute; top: 50%; right: -6%; width: 60%; height: 120%; z-index: 0;
  color: rgba(127, 230, 238, 0.9); pointer-events: none;
  opacity: 0; transform: translateY(-50%) rotate(12deg) scale(.7);
  transition: opacity .5s ease, transform .5s ease;
}
.step:hover .step__shell { opacity: .12; transform: translateY(-50%) rotate(2deg) scale(1); }

/* ---------- Reviews ---------- */
.reviews { background: var(--sand); }
.reviews__stars { margin-top: 14px; color: var(--sun); letter-spacing: 3px; font-size: 1.25rem; }
.reviews__stars span { color: var(--muted); font-size: 0.9rem; letter-spacing: 0; margin-left: 8px; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative;
}
.quote::before {
  content: "\201C"; font-family: var(--display); font-weight: 800; font-size: 4.4rem; color: var(--aqua-2);
  position: absolute; top: 8px; left: 22px; line-height: 1; opacity: .7;
}
.quote blockquote { font-size: 1.04rem; line-height: 1.6; color: var(--ink); margin: 30px 0 20px; position: relative; }
.quote figcaption { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 15px; }
.quote figcaption strong { font-family: var(--display); font-weight: 700; color: var(--deep); }
.quote figcaption span { font-size: 0.85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--sand-2); }
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: box-shadow .25s, border-color .25s;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: rgba(30, 200, 216, 0.45); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 19px 26px; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 1.1rem; font-weight: 600; color: var(--deep);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chev { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--teal); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 26px; color: var(--muted); }
.faq__item[open] .faq__a { padding-bottom: 22px; animation: faqIn .35s ease; }
.faq__a p { max-width: 66ch; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Final CTA ---------- */
.finalcta { background: linear-gradient(135deg, var(--teal) 0%, var(--deep) 60%, var(--deep-2) 100%); color: var(--paper); text-align: center; position: relative; overflow: hidden; }
.finalcta__waves { position: absolute; top: 0; left: 0; right: 0; line-height: 0; }
.finalcta__waves svg { width: 100%; height: clamp(50px, 7vw, 90px); }
.finalcta__inner { padding: clamp(40px, 7vw, 70px) 0 clamp(64px, 9vw, 100px); position: relative; }
.finalcta__title { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; }
.finalcta__lede { max-width: 540px; margin: 16px auto 32px; font-size: 1.1rem; color: rgba(255, 253, 246, 0.85); }
.finalcta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--deep-2); color: rgba(255, 253, 246, 0.78); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer__brand { max-width: 340px; }
.footer__logo { height: 64px; width: auto; margin-bottom: 10px; }
.footer__name { font-family: var(--display); color: #fff; font-size: 1.05rem; font-weight: 700; letter-spacing: .01em; margin: 0 0 12px; }
.footer__line { font-size: 0.92rem; line-height: 1.65; }
.footer__crest { margin-top: 14px; color: var(--aqua-2); font-weight: 600; }
.footer__col h4 { font-family: var(--display); color: #fff; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__muted { display: block; font-size: 0.92rem; margin-bottom: 11px; color: rgba(255, 253, 246, 0.72); }
.footer__col a:hover { color: var(--aqua-2); }
.footer__muted { color: rgba(255, 253, 246, 0.5); }
.footer__bar { border-top: 1px solid rgba(127, 230, 238, 0.14); }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 0.84rem; color: rgba(255, 253, 246, 0.6); gap: 16px; flex-wrap: wrap; }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Floating mobile book button ---------- */
.bookfab { display: none; }

/* ---------- Back to top ---------- */
.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 46;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; background: var(--teal);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .2s;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--coral); }
.totop svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* nav scrim */
.scrim { position: fixed; inset: 0; background: rgba(4, 36, 45, 0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease; z-index: 40; }
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .steps, .crew { grid-template-columns: 1fr 1fr; }
  .experience__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(87vw, 390px); z-index: 55;
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 2px; padding: 96px 36px 110px;
    background: linear-gradient(165deg, #0a4a59 0%, var(--deep) 46%, var(--deep-2) 100%);
    box-shadow: -26px 0 64px rgba(0, 0, 0, .5);
    transform: translateX(106%); transition: transform .5s cubic-bezier(.62,.04,.18,1);
    overflow: hidden;
  }
  .nav.is-open { transform: translateX(0); }
  /* ambient brand glows */
  .nav::before { content: ""; position: absolute; top: -70px; right: -70px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(30,200,216,.32), transparent 70%); pointer-events: none; }
  .nav::after { content: ""; position: absolute; left: -40px; bottom: -30px; width: 240px; height: 200px; background: radial-gradient(circle, rgba(255,106,61,.22), transparent 68%); pointer-events: none; }
  .nav__link {
    position: relative; z-index: 1;
    padding: 15px 6px; font-family: var(--display); font-weight: 700; font-size: 1.55rem;
    color: var(--paper); border-bottom: 1px solid rgba(255,253,246,.1); border-radius: 0;
    opacity: 0; transform: translateX(36px);
    transition: opacity .5s ease, transform .55s cubic-bezier(.22,1,.36,1), color .2s ease, padding-left .25s ease;
  }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link:active, .nav__link.is-active { color: var(--sun); padding-left: 14px; }
  .nav.is-open .nav__link { opacity: 1; transform: none; }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: .13s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: .19s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: .25s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: .31s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: .37s; }
  .nav__cta {
    position: relative; z-index: 1;
    margin: 28px 0 0; text-align: center; padding: 16px; font-size: 1.1rem;
    opacity: 0; transform: translateY(22px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1), box-shadow .2s ease;
  }
  .nav.is-open .nav__cta { opacity: 1; transform: none; transition-delay: .45s; }
  .navtoggle { display: flex; z-index: 60; }
  .topbar__item--hide-sm { display: none; }

  .cards, .quotes, .steps, .crew { grid-template-columns: 1fr; }
  .experience__points { grid-template-columns: 1fr; }

  .bookfab {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 46;
    padding: 15px 18px; border-radius: 100px; font-family: var(--display); font-weight: 700; font-size: 1rem;
    color: #fff; background: linear-gradient(135deg, var(--coral-2), var(--coral-d));
    box-shadow: 0 12px 30px rgba(255, 106, 61, 0.45);
  }
  .bookfab .ic { width: 18px; height: 18px; fill: #fff; }
  body { padding-bottom: 80px; }
  .totop { display: none; }
}

@media (max-width: 420px) {
  .container { padding: 0 20px; }
  .booking__frame { padding: 12px; }
  .hero__trust li { max-width: 44%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero__sun, .hero__cloud, .hero__dolphin, .hero__boat, .wv,
  .dolphin, .svc-splash, .sd2-petals, .sd2-center, .sd2-shine, .sun2__rays, .sun2__core,
  .helm, .compass__needle, .anchor, .booking__spinner { animation: none !important; }
}

/* =========================================================
   V2 UPGRADES — parallax hero, marquee, map, wildlife,
   review slider, card meta, ambient motion
   ========================================================= */

/* ---- Scroll progress bar ---- */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 100;
  background: linear-gradient(90deg, var(--aqua), var(--sun), var(--coral));
  box-shadow: 0 0 12px rgba(30, 200, 216, 0.6);
}

/* ---- Hero extras ---- */
.hero__rays {
  position: absolute; top: -16%; right: -6%; width: 70vw; height: 110vh; z-index: -1;
  pointer-events: none; opacity: .7; transform-origin: 90% 0;
  background: conic-gradient(from 196deg at 96% 4%,
    transparent 0deg, rgba(255,214,128,.12) 10deg, transparent 20deg,
    rgba(255,214,128,.09) 30deg, transparent 42deg, rgba(255,214,128,.12) 54deg,
    transparent 66deg, rgba(255,214,128,.07) 78deg, transparent 90deg);
  animation: rayswing 13s ease-in-out infinite;
}
@keyframes rayswing { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

.hero__sparkles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__sparkles i {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 7px rgba(255,253,246,.9);
  opacity: 0; animation: twinkle 4.5s ease-in-out infinite;
}
.hero__sparkles i:nth-child(1){left:14%;top:62%;animation-delay:.1s}
.hero__sparkles i:nth-child(2){left:26%;top:70%;animation-delay:1.4s}
.hero__sparkles i:nth-child(3){left:38%;top:66%;animation-delay:.7s}
.hero__sparkles i:nth-child(4){left:48%;top:74%;animation-delay:2.1s}
.hero__sparkles i:nth-child(5){left:58%;top:64%;animation-delay:1s}
.hero__sparkles i:nth-child(6){left:66%;top:72%;animation-delay:2.6s}
.hero__sparkles i:nth-child(7){left:74%;top:66%;animation-delay:.4s}
.hero__sparkles i:nth-child(8){left:82%;top:73%;animation-delay:1.8s}
.hero__sparkles i:nth-child(9){left:90%;top:64%;animation-delay:3s}
.hero__sparkles i:nth-child(10){left:20%;top:78%;animation-delay:2.3s}
.hero__sparkles i:nth-child(11){left:54%;top:80%;animation-delay:.9s}
.hero__sparkles i:nth-child(12){left:70%;top:82%;animation-delay:3.4s}
@keyframes twinkle { 0%,100% { opacity: 0; transform: scale(.4); } 50% { opacity: .95; transform: scale(1.4); } }

.hero__bird { position: absolute; top: 16%; left: -10%; width: 56px; z-index: 0; opacity: .75; animation: birdFly 26s linear infinite; }
@keyframes birdFly {
  0% { transform: translate(0, 0); opacity: 0; }
  8% { opacity: .75; }
  50% { transform: translate(62vw, -5vh); }
  92% { opacity: .75; }
  100% { transform: translate(122vw, 3vh); opacity: 0; }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: clamp(132px, 19vw, 200px); transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,253,246,.82);
}
.hero__scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,253,246,.6); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.hero__scroll-mouse span { width: 4px; height: 7px; border-radius: 3px; background: var(--sun); animation: scrolldot 1.7s ease-in-out infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* ---- Marquee ---- */
.marquee { background: linear-gradient(90deg, var(--coral), var(--coral-d)); color: #fff; overflow: hidden; padding: 13px 0; }
.marquee__track { display: flex; align-items: center; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--display); font-weight: 700; font-size: 1.02rem; white-space: nowrap; padding: 0 22px; }
.marquee__sep { color: var(--sun); font-size: .78rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Tour card meta + ribbon + tilt ---- */
.cards { perspective: 1400px; }
.card { transform-style: preserve-3d; }
.card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }
.card__price { font-family: var(--display); font-size: .82rem; color: var(--muted); font-weight: 500; }
.card__price b { font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: var(--coral-d); }
.card__price i { font-style: normal; font-size: .78rem; color: var(--muted); }
.card__cap { font-size: .8rem; font-weight: 600; color: var(--teal); background: rgba(30,200,216,.12); padding: 5px 11px; border-radius: 100px; white-space: nowrap; }
.card__avail { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 600; font-size: .82rem; color: var(--teal); }
.card__avail svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.card__ribbon {
  position: absolute; top: 18px; left: -38px; transform: rotate(-45deg); z-index: 3;
  background: linear-gradient(135deg, var(--sun), #ef9f24); color: #3a2a06;
  font-family: var(--display); font-weight: 800; font-size: .68rem; letter-spacing: .03em;
  padding: 6px 44px; box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.card--featured { border-color: rgba(255,194,74,.55); }
.card--featured::after { background: linear-gradient(90deg, var(--sun), var(--coral)); transform: scaleX(1); }

/* ---- Explore map ---- */
.explore { background: linear-gradient(160deg, #0a5d6e 0%, var(--deep) 100%); position: relative; overflow: hidden; }
.explore::before, .explore::after {
  content: ""; position: absolute; left: 0; right: 0; height: clamp(34px, 5vw, 60px); z-index: 4; pointer-events: none;
}
.explore::before {
  top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0 0H1440V30C1080 64 720 18 360 34 120 44 0 30 0 30Z' fill='%23f7efdd'/%3E%3C/svg%3E") no-repeat top center / 100% 100%;
}
.explore::after {
  bottom: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath d='M0 64H1440V34C1080 0 720 46 360 30 120 20 0 34 0 34Z' fill='%23f7efdd'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
}
.explore__grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(22px, 3.5vw, 42px); align-items: stretch; }
.map { position: relative; isolation: isolate; z-index: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(127,230,238,.25); aspect-ratio: 8 / 5.2; margin: 0; }
.map__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__route { animation: routeflow 1.3s linear infinite; }
@keyframes routeflow { to { stroke-dashoffset: -14; } }
.mappin { position: absolute; transform: translate(-50%, -50%); z-index: 3; background: none; border: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 0; }
.mappin__dot { position: relative; width: 18px; height: 18px; border-radius: 50%; background: var(--coral); border: 3px solid #fff; box-shadow: 0 3px 10px rgba(0,0,0,.45); transition: transform .2s, background .2s; }
.mappin__dot::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--coral); animation: pinPulse 2.4s ease-out infinite; }
@keyframes pinPulse { 0% { transform: scale(.55); opacity: .85; } 100% { transform: scale(2.2); opacity: 0; } }
.mappin__label { font-family: var(--display); font-weight: 700; font-size: .7rem; color: #fff; background: rgba(4,36,45,.78); padding: 3px 9px; border-radius: 100px; white-space: nowrap; opacity: 0; transform: translateY(-3px); transition: opacity .2s, transform .2s; }
.mappin:hover .mappin__label, .mappin.is-active .mappin__label { opacity: 1; transform: none; }
.mappin:hover .mappin__dot, .mappin.is-active .mappin__dot { transform: scale(1.3); background: var(--sun); }
.mappin.is-active .mappin__dot::before { border-color: var(--sun); }
.map__info { background: rgba(255,253,246,.06); border: 1px solid rgba(127,230,238,.2); border-radius: 20px; padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; justify-content: center; }
.map__info-tag { align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: #3a2a06; background: var(--sun); padding: 5px 13px; border-radius: 100px; margin-bottom: 16px; }
.map__info-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.55rem, 3vw, 2.2rem); color: #fff; margin-bottom: 12px; line-height: 1.1; }
.map__info-desc { color: rgba(255,253,246,.85); font-size: 1.04rem; margin-bottom: 26px; }
.map__info-foot { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.map__info-hint { font-size: .85rem; color: rgba(255,253,246,.6); }
.map__info.is-swapping .map__info-tag, .map__info.is-swapping .map__info-title, .map__info.is-swapping .map__info-desc { animation: infoIn .42s ease; }
@keyframes infoIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- Wildlife ---- */
.wildlife { background: var(--sand); }
.critters { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.critter { text-align: center; }
.critter__port { position: relative; width: clamp(104px, 12vw, 128px); aspect-ratio: 1; margin: 0 auto 18px; border-radius: 50%; background: radial-gradient(circle at 50% 30%, #2cc1d2, #094f5e 85%); display: grid; place-items: center; border: 5px solid #fffdf6; box-shadow: 0 14px 30px rgba(6,50,61,.22), inset 0 -6px 18px rgba(4,36,45,.4); transition: transform .3s; }
.critter__port::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 7px 12px rgba(255,255,255,.25); pointer-events: none; }
.critter:hover .critter__port { transform: translateY(-6px); }
.crit { width: 60%; height: 60%; fill: #fffdf6; overflow: visible; }
.crit-eye { fill: #094f5e; }
.critter__name { font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--deep); margin-bottom: 6px; }
.critter__fact { font-size: .88rem; color: var(--muted); max-width: 22ch; margin: 0 auto; }
.crit-dolphin { animation: floatY 4s ease-in-out infinite; }
.crit-manatee, .crit-turtle { animation: floatY 5s ease-in-out infinite; }
.crit-shell { color: #fffdf6; animation: floatY 4.5s ease-in-out infinite; }
.crit-turtle .turtle__flippers { transform-box: view-box; transform-origin: 32px 35px; animation: paddle 2.4s ease-in-out infinite; }
.crit-bird .bird__wing--l { transform-box: view-box; transform-origin: 28px 32px; animation: flapL .5s ease-in-out infinite; }
.crit-bird .bird__wing--r { transform-box: view-box; transform-origin: 36px 32px; animation: flapR .5s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(3px); } 50% { transform: translateY(-3px); } }
@keyframes paddle { 0%,100% { transform: rotate(-9deg); } 50% { transform: rotate(9deg); } }
@keyframes flapL { 0%,100% { transform: rotate(2deg); } 50% { transform: rotate(-24deg); } }
@keyframes flapR { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(24deg); } }

/* ---- Reviews rating + slider ---- */
.reviews__rating { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; margin-top: 18px; }
.reviews__score { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--coral-d); line-height: 1; }
.reviews__starline { display: flex; flex-direction: column; color: var(--sun); font-size: 1.3rem; letter-spacing: 2px; }
.reviews__starline em { font-style: normal; color: var(--muted); font-size: .82rem; letter-spacing: 0; margin-top: 3px; }
.reviews__badges { display: flex; gap: 8px; }
.reviews__badges b { font-family: var(--display); font-size: .72rem; font-weight: 700; color: var(--teal); background: var(--paper); border: 1px solid var(--line); padding: 6px 12px; border-radius: 100px; }
.slider { position: relative; max-width: 840px; margin: 46px auto 0; display: flex; align-items: center; gap: 14px; }
.slider__viewport { overflow: hidden; flex: 1; }
.slider__track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.slide { flex: 0 0 100%; padding: 6px 12px; text-align: center; }
.slide__stars { color: var(--sun); letter-spacing: 3px; font-size: 1.1rem; }
.slide blockquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.12rem, 2.3vw, 1.55rem); line-height: 1.42; color: var(--deep); margin: 16px auto; max-width: 58ch; }
.slide figcaption { display: flex; flex-direction: column; gap: 2px; }
.slide figcaption strong { font-family: var(--display); font-weight: 700; color: var(--coral-d); font-size: 1rem; }
.slide figcaption span { font-size: .85rem; color: var(--muted); }
.slider__nav { flex: none; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; transition: background .2s, transform .2s; }
.slider__nav:hover { background: var(--teal); transform: scale(1.07); }
.slider__nav svg { width: 22px; height: 22px; fill: none; stroke: var(--teal); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.slider__nav:hover svg { stroke: #fff; }
.slider__dots { position: absolute; bottom: -28px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.slider__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.slider__dot.is-active { background: var(--coral); transform: scale(1.35); }

/* ---- Ambient bubbles ---- */
.has-bubbles { position: relative; }
.has-bubbles > .container, .finalcta__inner { position: relative; z-index: 1; }
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubbles i { position: absolute; bottom: -24px; border-radius: 50%; background: rgba(255,253,246,.1); border: 1px solid rgba(255,253,246,.08); animation: rise linear infinite; }
@keyframes rise { 0% { transform: translateY(0) scale(1); opacity: 0; } 12% { opacity: 1; } 100% { transform: translateY(-112vh) scale(.35); opacity: 0; } }

/* ---- Reveal direction variants ---- */
.js .reveal--left { transform: translateX(-34px); }
.js .reveal--right { transform: translateX(34px); }
.js .reveal--left.is-visible, .js .reveal--right.is-visible { transform: none; }

/* ---- V2 responsive ---- */
@media (max-width: 980px) {
  .explore__grid { grid-template-columns: 1fr; }
  .map { aspect-ratio: 8 / 6; }
  .critters { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .hero__scroll { display: none; }
  .critters { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  .marquee__item { font-size: .92rem; padding: 0 16px; }
  .slider { gap: 6px; }
  .slider__nav { width: 40px; height: 40px; }
  .reviews__rating { gap: 10px; }
}
@media (max-width: 420px) {
  .map { aspect-ratio: 1 / 1; }
  .mappin__label { display: none; }
}

/* ---- V2 reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .scrollbar { display: none; }
  .hero__rays, .hero__sparkles i, .hero__bird, .hero__scroll-mouse span,
  .marquee__track, .map__route, .mappin__dot::before,
  .crit-dolphin, .crit-manatee, .crit-turtle, .crit-shell,
  .crit-turtle .turtle__flippers, .crit-bird .bird__wing--l, .crit-bird .bird__wing--r,
  .bubbles i { animation: none !important; }
  .hero__sparkles i { opacity: .5; }
  .marquee__track { transform: none; }
}

/* =========================================================
   V3 — sticky bar, 10-service cards, fan-out hover art
   ========================================================= */

/* ---- Sticky booking bar ---- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 47;
  background: rgba(6, 50, 61, 0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(127, 230, 238, 0.22);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(115%); transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.stickybar.is-visible { transform: none; }
.stickybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 60px; padding-top: 10px; padding-bottom: 10px; }
.stickybar__msg { display: flex; align-items: center; gap: 12px; color: #fff; font-size: .98rem; }
.stickybar__msg b { font-family: var(--display); font-weight: 700; }
.stickybar__emoji { font-size: 1.5rem; line-height: 1; }
.stickybar__actions { display: flex; align-items: center; gap: 14px; }
.stickybar__phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; color: var(--aqua-2); white-space: nowrap; }
.stickybar__phone .ic { width: 16px; height: 16px; fill: var(--aqua); }
.stickybar__phone:hover { color: #fff; }
.stickybar .btn { padding: 11px 24px; }
.stickybar__close { background: none; border: 0; color: rgba(255,253,246,.55); font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 2px 6px; transition: color .2s; }
.stickybar__close:hover { color: #fff; }
@media (max-width: 860px) { .stickybar__msg { font-size: .9rem; } .stickybar__phone { display: none; } }
@media (max-width: 760px) { .stickybar { display: none; } }

/* ---- Card fan-out hover art ---- */
.card:hover { overflow: visible; z-index: 10; }
.card__pop { position: absolute; left: 50%; top: 4px; width: 0; height: 0; z-index: 6; pointer-events: none; }
.pop { position: absolute; left: 0; bottom: 0; width: max-content; transform-origin: bottom center; opacity: 0; transform: translate(-50%, 8px) scale(.25); transition: transform .55s cubic-bezier(.34,1.55,.5,1), opacity .35s ease; }
.pop svg { display: block; width: 48px; height: 54px; max-width: none; filter: drop-shadow(0 7px 12px rgba(6,50,61,.28)); }
.pop--2 svg { width: 58px; height: 64px; }
.pop__i { display: block; transform-origin: bottom center; animation: popSway 2.8s ease-in-out infinite; animation-play-state: paused; }
.card:hover .pop__i { animation-play-state: running; }
.pop--1 .pop__i { animation-delay: .1s; }
.pop--3 .pop__i { animation-delay: .25s; animation-duration: 3.1s; }
.pop--4 .pop__i { animation-delay: .15s; animation-duration: 2.4s; }
@keyframes popSway { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
.card:hover .pop--1 { opacity: 1; transform: translate(calc(-50% - 48px), -50px) rotate(-26deg) scale(1); transition-delay: .02s; }
.card:hover .pop--2 { opacity: 1; transform: translate(-50%, -82px) rotate(0deg) scale(1.06); transition-delay: .09s; }
.card:hover .pop--3 { opacity: 1; transform: translate(calc(-50% + 48px), -50px) rotate(26deg) scale(1); transition-delay: .15s; }
.card:hover .pop--4 { opacity: 1; transform: translate(-50%, -24px) rotate(0deg) scale(.82); transition-delay: .2s; }

/* Touch devices: JS adds .is-active as each card scrolls through center, so mobile gets the same fan-out delight */
.card.is-active { overflow: visible; z-index: 10; transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(30, 200, 216, 0.45); }
.card.is-active::after { transform: scaleX(1); }
.card.is-active .pop__i { animation-play-state: running; }
.card.is-active .pop--1 { opacity: 1; transform: translate(calc(-50% - 48px), -50px) rotate(-26deg) scale(1); transition-delay: .02s; }
.card.is-active .pop--2 { opacity: 1; transform: translate(-50%, -82px) rotate(0deg) scale(1.06); transition-delay: .09s; }
.card.is-active .pop--3 { opacity: 1; transform: translate(calc(-50% + 48px), -50px) rotate(26deg) scale(1); transition-delay: .15s; }
.card.is-active .pop--4 { opacity: 1; transform: translate(-50%, -24px) rotate(0deg) scale(.82); transition-delay: .2s; }
.card.is-active .card__list li::before { background: var(--teal); transform: scale(1.12); }
.card.is-active .card__list li::after { border-color: #fff; }
.card.is-active .card__btn { color: var(--coral-d); gap: 9px; }

/* restyle "Most Popular" as a pill (works with overflow toggling) */
.card__ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sun), #ef9f24); color: #3a2a06;
  font-family: var(--display); font-weight: 800; font-size: .68rem; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 100px; box-shadow: 0 6px 16px rgba(0,0,0,.18); white-space: nowrap; z-index: 7;
}

/* new tour icons (line-art on the teal tile) */
.svc--line { fill: none; }
.svc--line * { fill: none; stroke: var(--aqua-2); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.svc--line .fillpart { fill: var(--aqua-2); stroke: none; }
.svc--bob { transform-box: view-box; transform-origin: center; animation: floatY 3.4s ease-in-out infinite; }
.card:hover .svc--bob { animation-duration: 1.6s; }

@media (prefers-reduced-motion: reduce) {
  .pop__i, .svc--bob { animation: none !important; }
  .card:hover .pop { transition: none; }
}

/* ---- Footer cancellation policy ---- */
.footer__policy { border-top: 1px solid rgba(127, 230, 238, 0.12); padding: 26px 0 4px; }
.footer__policy h4 { font-family: var(--display); color: rgba(255, 253, 246, 0.82); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.footer__policy p { font-size: 0.8rem; line-height: 1.7; color: rgba(255, 253, 246, 0.5); max-width: 92ch; }

/* =========================================================
   V4 — booking CTA + modal, fleet, hero scene
   ========================================================= */

/* ---- Booking CTA (replaces inline grid) ---- */
.booking__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn--ghost-dark { background: transparent; color: var(--deep); border-color: rgba(12, 42, 47, 0.25); }
.btn--ghost-dark:hover { background: rgba(12, 42, 47, 0.05); border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }
.btn--ghost-dark .ic { fill: var(--teal); }

/* ---- Booking modal ---- */
body.modal-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
.bookmodal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 18px; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.bookmodal.is-open { opacity: 1; visibility: visible; }
.bookmodal__overlay { position: absolute; inset: 0; background: rgba(4, 36, 45, 0.62); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.bookmodal__panel {
  position: relative; z-index: 1; width: min(920px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--paper); border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 46px);
  transform: translateY(24px) scale(.97); transition: transform .4s cubic-bezier(.34, 1.4, .5, 1);
  display: flex; flex-direction: column;
}
.bookmodal.is-open .bookmodal__panel { transform: none; }
/* sticky so it stays visible while the FareHarbor list scrolls */
.bookmodal__close {
  position: sticky; top: 0; align-self: flex-end;
  margin: -8px -8px -44px 0;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--deep); display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(4, 36, 45, .35);
  transition: background .2s, transform .3s; z-index: 6;
}
.bookmodal__close:hover { background: var(--coral); transform: rotate(90deg); }
.bookmodal__close svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; }
.bookmodal__head { text-align: center; margin-bottom: 22px; }
.bookmodal__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.6vw, 2.4rem); color: var(--deep); letter-spacing: -.02em; line-height: 1.08; }
.bookmodal__sub { color: var(--muted); margin-top: 8px; font-size: 0.98rem; }
.bookmodal__frame { position: relative; min-height: 200px; }
.bookmodal__frame.fh-ready .booking__loader { display: none; }
.bookmodal__help { text-align: center; margin-top: 18px; color: var(--muted); font-size: 0.9rem; }
.bookmodal__help a { color: var(--teal); font-weight: 700; }

/* ---- Fleet ---- */
.fleet { background: var(--sand-2); }
.fleet__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.fleet__grid--six { grid-template-columns: repeat(3, 1fr); }
/* ---- Magazine-style fleet cards: full-bleed photo, name overlaid, details reveal on hover ---- */
.boat {
  position: relative; display: block;
  aspect-ratio: 3 / 4; border-radius: 22px; overflow: hidden;
  background: var(--deep); box-shadow: 0 14px 34px rgba(6, 50, 61, .16);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.boat:hover, .boat:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 38px 72px rgba(6, 50, 61, .34), 0 0 0 2px rgba(255, 135, 94, .6);
}
.boat__art, .boat__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.boat:hover .boat__photo, .boat:focus-within .boat__photo, .boat:hover .boat__art { transform: scale(1.08); }
/* diagonal sheen sweep on hover */
.boat::before { content: ""; position: absolute; top: 0; left: -65%; width: 55%; height: 100%; z-index: 3; pointer-events: none; transform: skewX(-20deg); background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .4), transparent); opacity: 0; }
.boat:hover::before { animation: boatSheen .9s ease; }
@keyframes boatSheen { 0% { left: -65%; opacity: 1; } 100% { left: 135%; opacity: 1; } }
.boat__badge {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  background: rgba(6, 50, 61, .5); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, .3); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: .72rem;
  padding: 6px 13px; border-radius: 100px; box-shadow: 0 5px 16px rgba(4, 36, 45, .32);
}
/* overlay with gradient scrim — grows as the reveal expands */
.boat__overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 70px 22px 22px; color: #fff;
  background: linear-gradient(to top, rgba(4,36,45,.95) 0%, rgba(4,36,45,.78) 40%, rgba(4,36,45,.18) 82%, transparent 100%);
}
.boat__type { font-family: var(--display); font-weight: 800; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--aqua-2); margin-bottom: 5px; }
.boat__name { font-family: var(--display); font-weight: 800; font-size: 1.5rem; line-height: 1.05; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.45); }
/* details slide open on hover (always shown on touch) */
.boat__reveal {
  max-height: 0; opacity: 0; overflow: hidden; transform: translateY(6px);
  transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .4s ease, transform .45s ease, margin-top .45s ease;
}
.boat:hover .boat__reveal, .boat:focus-within .boat__reveal { max-height: 460px; opacity: 1; transform: none; margin-top: 13px; }
.boat__desc { font-size: .9rem; line-height: 1.55; color: rgba(255,253,246,.9); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.boat__features { display: grid; gap: 8px; margin-bottom: 18px; }
.boat__features li { position: relative; padding-left: 25px; font-size: .85rem; color: rgba(255,253,246,.92); font-weight: 500; }
.boat__features li::before { content: "⚓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; display: grid; place-items: center; font-size: .6rem; color: var(--deep); background: var(--aqua-2); border-radius: 50%; }
.boat__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--coral-2), var(--coral-d)); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  padding: 11px 20px; border-radius: 100px; box-shadow: 0 10px 24px rgba(255,106,61,.4);
  transition: gap .2s ease, box-shadow .2s ease, transform .2s ease;
}
.boat__btn:hover { gap: 12px; box-shadow: 0 14px 30px rgba(255,106,61,.55); transform: translateY(-2px); }
/* Touch devices + narrow screens: stacked card with details always shown (no hover gating) */
@media (hover: none), (max-width: 560px) {
  .boat { aspect-ratio: auto; }
  .boat__photo, .boat__art { position: relative; height: clamp(200px, 56vw, 270px); }
  .boat__overlay { position: relative; background: var(--deep); padding: 20px 22px 24px; }
  .boat__reveal { max-height: none; opacity: 1; transform: none; margin-top: 12px; }
}
.boatbob { transform-box: view-box; transform-origin: center; animation: boatBob 4s ease-in-out infinite; }
.boat:hover .boatbob { animation-duration: 2s; }
@keyframes boatBob { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-3px) rotate(1deg); } }

@media (max-width: 980px) { .fleet__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fleet__grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .boatbob { animation: none !important; } }

/* ---- Real map (Leaflet) ---- */
.map .leaflet-container { width: 100%; height: 100%; border-radius: inherit; background: #0a5d6e; font-family: var(--sans); }
.leaflet-container a { color: var(--teal); }
.lmark-wrap { background: none; border: 0; }
.lmark { display: block; width: 22px; height: 22px; border-radius: 50%; background: var(--coral); border: 3px solid #fff; box-shadow: 0 3px 10px rgba(0,0,0,.45); position: relative; }
.lmark::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--coral); animation: pinPulse 2.4s ease-out infinite; }
.lmark--active { background: var(--sun); border-color: #fff; }
.lmark--active::before { border-color: var(--sun); }
.leaflet-tooltip.lmark-tip { background: rgba(4,36,45,.92); color: #fff; border: 0; border-radius: 8px; font-family: var(--display); font-weight: 700; font-size: .76rem; padding: 4px 10px; box-shadow: var(--shadow-sm); }
.leaflet-tooltip.lmark-tip.leaflet-tooltip-top::before { border-top-color: rgba(4,36,45,.92); }
.map--fallback { display: grid; place-items: center; background: linear-gradient(160deg, #1aa6bd, #0a5d6e); }
.map--fallback::after { content: "Live map of our marinas & destinations"; color: rgba(255,253,246,.85); font-family: var(--display); font-weight: 600; font-size: .95rem; text-align: center; padding: 0 24px; }
@media (prefers-reduced-motion: reduce) { .lmark::before { animation: none !important; } }

/* ---- Trust bar (reviews + credentials) ---- */
.trustbar { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(26px, 4vw, 40px) 0; }
.trustbar__ratings { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.ratecard { display: flex; flex-direction: column; align-items: center; gap: 3px; background: var(--sand); border: 1px solid var(--line); border-radius: 14px; padding: 13px 28px; min-width: 156px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ratecard:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--sun); }
.ratecard__brand { font-family: var(--display); font-weight: 700; font-size: .92rem; color: var(--deep); }
.ratecard__stars { color: var(--sun); letter-spacing: 2px; font-size: 1.05rem; }
.ratecard__meta { font-size: .8rem; color: var(--muted); }
.ratecard__meta b { color: var(--coral-d); font-family: var(--display); font-weight: 800; }
.trustbar__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-top: 24px; }
.trustbar__badges li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--teal); }
.trustbar__badges svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
@media (max-width: 520px) {
  .ratecard { min-width: 0; flex: 1 1 44%; padding: 12px 10px; }
  .trustbar__badges { gap: 10px 18px; }
  .trustbar__badges li { font-size: .82rem; }
}

/* ---------- Memberships / affiliations strip ---------- */
.affiliations { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(34px, 5vw, 56px) 0; }
.affiliations__label { text-align: center; font-family: var(--display); font-weight: 700; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.affiliations__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px; }
.afmark {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  width: 188px; min-height: 86px; padding: 16px 20px; text-align: center;
  border: 1.5px solid var(--line); border-radius: 14px; background: #fff;
  filter: grayscale(.45); opacity: .85;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, opacity .25s ease, border-color .25s ease;
}
.afmark:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); filter: none; opacity: 1; border-color: var(--sun); }
.afmark__name { font-family: var(--display); font-weight: 800; font-size: 1.02rem; line-height: 1.15; letter-spacing: -.01em; color: var(--deep); }
.afmark__tag { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
@media (max-width: 560px) {
  .afmark { width: auto; flex: 1 1 42%; min-width: 0; padding: 14px 10px; min-height: 78px; }
  .afmark__name { font-size: .92rem; }
}

/* ---- Photo gallery ---- */
.gallery { background: var(--sand-2); overflow: hidden; }

/* ---- Angled scrolling filmstrip ---- */
.gallery__marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 112%;
  margin-left: -6%;
  padding: 26px 0;
  transform: rotate(-2.6deg);
}
.gallery__row { display: flex; }   /* no overflow clip here so a hovered card can pop out; the section clips horizontally */
.gallery__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: galScroll 60s linear infinite;
}
.gallery__track--rev { animation: galScrollRev 76s linear infinite; }
.gallery__row:hover .gallery__track { animation-play-state: paused; }
@keyframes galScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes galScrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.gphoto {
  position: relative;
  flex: 0 0 auto;
  margin-right: 18px;   /* per-card margin (NOT track gap) keeps the loop seamless */
  height: clamp(180px, 23vw, 260px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  background: var(--deep);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.gphoto img { height: 100%; width: auto; display: block; object-fit: cover; transition: filter .4s ease; }
.gphoto:hover {
  transform: scale(1.14) rotate(2.6deg);   /* straighten + pop boldly out of the tilt */
  box-shadow: 0 34px 64px rgba(6, 50, 61, .45), 0 0 0 5px rgba(255, 253, 246, .92);  /* white frame + deep shadow */
  z-index: 6;
}
.gphoto:hover img { filter: saturate(1.12) contrast(1.04); }
.gphoto figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 13px;
  color: #fff; font-family: var(--display); font-weight: 600; font-size: .9rem;
  background: linear-gradient(transparent, rgba(4, 36, 45, .85));
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; pointer-events: none;
}
.gphoto:hover figcaption { opacity: 1; transform: none; }

/* edge fades so cards melt in/out at the sides */
.gallery__fade { position: absolute; top: 0; bottom: 0; width: 11%; z-index: 3; pointer-events: none; }
.gallery__fade--l { left: 0; background: linear-gradient(to right, var(--sand-2), transparent); }
.gallery__fade--r { right: 0; background: linear-gradient(to left, var(--sand-2), transparent); }

.gallery__note { text-align: center; margin-top: 34px; color: var(--muted); font-size: 1.02rem; }
.gallery__note strong { color: var(--coral-d); font-family: var(--display); }

@media (max-width: 560px) {
  .gallery__marquee { transform: rotate(-2deg); gap: 12px; }
  .gphoto { height: 160px; border-radius: 13px; margin-right: 12px; }
  .gphoto:hover { transform: scale(1.05) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__marquee { transform: none; width: 100%; margin-left: 0; }
  .gallery__row { overflow-x: auto; }
  .gallery__track { animation: none !important; }
  .gphoto:hover { transform: none; }
  .gallery__fade { display: none; }
}

/* ---- Lightbox ---- */
.lightbox { position: fixed; inset: 0; z-index: 210; display: grid; place-items: center; padding: 24px; background: rgba(4, 36, 45, .9); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1040px, 94vw); max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 18px; right: 20px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255, 253, 246, .16); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; transition: background .2s, transform .2s; }
.lightbox__close:hover { background: var(--coral); transform: rotate(90deg); }

@media (prefers-reduced-motion: reduce) { .gphoto, .gphoto img { transition: none; } }

/* ---- Instagram-style feed ---- */
.insta { background: var(--paper); }
.insta__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 680px; margin: 0 auto 30px; flex-wrap: wrap; }
.insta__profile { display: flex; align-items: center; gap: 14px; }
.insta__avatar { width: 66px; height: 66px; border-radius: 50%; padding: 3px; background: conic-gradient(from 30deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34); flex: none; }
.insta__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #fff; border: 2px solid #fff; display: block; }
.insta__id { display: flex; flex-direction: column; line-height: 1.2; }
.insta__handle { font-family: var(--display); font-weight: 700; color: var(--deep); display: inline-flex; align-items: center; gap: 5px; font-size: 1.06rem; }
.insta__handle svg { width: 16px; height: 16px; }
.insta__name { font-size: .88rem; color: var(--muted); }
.insta__follow { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7); color: #fff; font-family: var(--display); font-weight: 700; padding: 11px 22px; border-radius: 100px; transition: transform .2s, box-shadow .2s; }
.insta__follow:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(238, 42, 123, .35); }
.insta__follow svg { width: 18px; height: 18px; fill: currentColor; }
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.insta__tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 10px; }
.insta__tile img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .5s ease; }
.insta__tile:hover img { transform: scale(1.08); }
.insta__hover { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 18px; color: #fff; font-family: var(--display); font-weight: 700; font-size: .95rem; background: rgba(4, 36, 45, .42); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.insta__tile:hover .insta__hover { opacity: 1; }
.insta__hover span { display: inline-flex; align-items: center; gap: 6px; }
.insta__hover svg { width: 20px; height: 20px; fill: #fff; }
.insta__cta { text-align: center; margin-top: 26px; color: var(--muted); font-size: 1.02rem; }
.insta__cta strong { color: #ee2a7b; font-family: var(--display); }
@media (max-width: 760px) { .insta__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .insta__grid { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) { .insta__tile img { transition: none; } }

/* ================================================================
   SEASONAL GUIDE
   ================================================================ */
.seasonal { background: var(--paper); }
.seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.season {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.season::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.season:nth-child(1)::before { background: linear-gradient(90deg, var(--aqua), var(--teal-2)); }
.season:nth-child(2)::before { background: linear-gradient(90deg, var(--teal-2), var(--aqua)); }
.season:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--sun)); }
.season:nth-child(4)::before { background: linear-gradient(90deg, var(--shell-2), var(--coral)); }
.season:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.season__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.season__icon { font-size: 2rem; line-height: 1; }
.season__badge {
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--teal);
  padding: 5px 10px;
  border-radius: 100px;
}
.season__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--deep);
  margin-bottom: 4px;
}
.season__range {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
}
.season__desc {
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
}
.season__tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.season__tags li {
  font-size: .83rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}
.seasonal__note {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 1.02rem;
}
.seasonal__link {
  color: var(--coral);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.seasonal__link:hover { color: var(--coral-d); }
@media (max-width: 900px) { .seasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .seasons { grid-template-columns: 1fr; } }

/* ================================================================
   CELEBRATIONS
   ================================================================ */
.celebrations { background: var(--deep); }
.celeb__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.celeb {
  position: relative;
  background: rgba(255, 253, 246, .05);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 246, .1);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.celeb:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 66px rgba(0, 0, 0, .42);
  border-color: rgba(255, 135, 94, .45);
}
.celeb__img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
/* darkening gradient + shine sweep on the photo */
.celeb__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 36, 45, .55), transparent 58%);
  opacity: .55;
  transition: opacity .4s ease;
  pointer-events: none;
}
.celeb:hover .celeb__img::after { opacity: .8; }
.celeb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.22,1,.36,1);
}
.celeb:hover .celeb__img img { transform: scale(1.09); }
.celeb__body {
  position: relative;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* floating coral badge that overlaps the photo and pops on hover */
.celeb__emoji {
  position: absolute;
  top: -28px;
  left: 26px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--coral-2), var(--coral-d));
  border-radius: 50%;
  border: 3px solid var(--deep);
  box-shadow: 0 10px 26px rgba(255, 106, 61, .5);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s ease;
  z-index: 2;
}
.celeb:hover .celeb__emoji {
  transform: translateY(-5px) rotate(-8deg) scale(1.1);
  box-shadow: 0 16px 34px rgba(255, 106, 61, .65);
}
/* Touch scroll-activation: mirror the hover delights so mobile sees them as cards scroll in.
   Note the `.js` prefix on the lift rules — it raises specificity to (0,3,0) so they win
   over `.js .reveal.is-visible { transform: none }`, which would otherwise cancel the lift. */
.js .celeb.is-active { transform: translateY(-7px); box-shadow: 0 30px 66px rgba(0,0,0,.42); border-color: rgba(255,135,94,.45); }
.celeb.is-active .celeb__img::after { opacity: .8; }
.celeb.is-active .celeb__img img { transform: scale(1.09); }
.celeb.is-active .celeb__emoji { transform: translateY(-5px) rotate(-8deg) scale(1.1); box-shadow: 0 16px 34px rgba(255,106,61,.65); }
.js .capt.is-active { transform: translateY(-6px); background: rgba(255,253,246,.08); border-color: var(--aqua); }
.critter.is-active .critter__port { transform: translateY(-6px); }
.js .season.is-active { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.celeb__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paper);
}
.celeb__desc {
  font-size: .96rem;
  color: rgba(255, 253, 246, .72);
  line-height: 1.6;
}
.celeb__cta { text-align: center; }
.celeb__ctapara {
  color: rgba(255, 253, 246, .65);
  font-size: 1rem;
  margin-bottom: 22px;
}
.celeb__ctabtns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 660px) {
  .celeb__grid { grid-template-columns: 1fr; }
  .celeb__img { aspect-ratio: 3 / 2; }
}
@media (prefers-reduced-motion: reduce) { .celeb__img img { transition: none; } }

/* ================================================================
   REVIEWS — Leave a review CTA
   ================================================================ */
.reviews__cta {
  margin-top: 44px;
  text-align: center;
}
.reviews__cta-text {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 20px;
}
.reviews__ctabtns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ratelink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
}
.ratelink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.ratelink--google:hover { box-shadow: 0 8px 24px rgba(66, 133, 244, .25); }
.ratelink--ta:hover { box-shadow: 0 8px 24px rgba(0, 170, 108, .25); }
.ratelink__icon { width: 20px; height: 20px; flex: none; }

/* ================================================================
   GIFT CARD
   ================================================================ */
.giftcard { background: var(--deep-2); }
.giftcard__inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}
.giftcard__text {
  flex: 1 1 420px;
}
.giftcard__text .eyebrow { color: var(--sun); }
.giftcard__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 16px;
}
.giftcard__sub {
  font-size: 1.05rem;
  color: rgba(255, 253, 246, .7);
  line-height: 1.65;
  margin-bottom: 30px;
}
.giftcard__sub em { color: var(--aqua-2); font-style: italic; }
.giftcard__visual {
  flex: none;
  width: clamp(260px, 36%, 380px);
}
/* The card itself */
.gc-card {
  width: 100%;
  aspect-ratio: 8.56 / 5.4;
  border-radius: 18px;
  background: linear-gradient(135deg, #0c5a6e 0%, #0f93a6 45%, #1ec8d8 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px 20px;
  transform: rotate(-3deg);
  transition: transform .4s ease;
  animation: gcFloat 5.5s ease-in-out infinite;
}
.gc-card:hover { animation: none; transform: rotate(0deg) scale(1.04); }
@keyframes gcFloat {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-11px); }
}
.gc-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
/* sweeping glint, like light catching a real card */
.gc-card::after {
  content: "";
  position: absolute;
  top: -50%; left: -80%;
  width: 48%; height: 200%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg);
  z-index: 3;
  pointer-events: none;
  animation: gcSheen 6s ease-in-out infinite;
}
@keyframes gcSheen {
  0%   { left: -80%; }
  16%  { left: 160%; }
  100% { left: 160%; }
}
@media (prefers-reduced-motion: reduce) {
  .gc-card { animation: none; }
  .gc-card::after { animation: none; display: none; }
}
.gc-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.gc-card__logo-mark { width: 36px; height: 36px; flex: none; }
.gc-card__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: .9rem;
  color: rgba(255, 253, 246, .95);
  letter-spacing: -.01em;
}
.gc-card__waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  width: 100%;
  max-width: none;
}
.gc-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gc-card__label {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 253, 246, .65);
}
.gc-card__val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--paper);
  letter-spacing: -.02em;
}
@media (max-width: 820px) {
  .giftcard__inner { flex-direction: column; text-align: center; }
  .giftcard__visual { width: min(380px, 90%); }
  .giftcard__text .eyebrow { margin-left: auto; margin-right: auto; }
}
@media (prefers-reduced-motion: reduce) { .gc-card, .gc-card:hover { transform: none; } }

/* ================================================================
   BUTTON CLICK FX — thematic particle animations
   ================================================================ */

/* Ripple (inside the button, masked by overflow:hidden on .btn) */
.btn { overflow: hidden; }
.bfx-ripple {
  position: absolute;
  border-radius: 50%;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  background: rgba(255, 255, 255, 0.38);
  animation: bfxRipple 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes bfxRipple {
  to { transform: scale(32); opacity: 0; }
}

/* Floating particle (emoji / text) */
.bfx-p {
  position: fixed;
  user-select: none;
  pointer-events: none;
  z-index: 9999;
  line-height: 1;
  transform: translate(-50%, -50%);
  animation: bfxP var(--dur, 900ms) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}
@keyframes bfxP {
  0%   { transform: translate(-50%, -50%) scale(1.3) rotate(0deg); opacity: 1; }
  50%  { opacity: 1; }
  100% {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty)))
               scale(0.25) rotate(var(--rot, 30deg));
    opacity: 0;
  }
}

/* Confetti variant — rectangular + spin */
.bfx-confetti {
  transform: translate(-50%, -50%);
  animation: bfxConfetti var(--dur, 1000ms) cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes bfxConfetti {
  0%   { transform: translate(-50%, -50%) scale(1.2) rotate(0deg); opacity: 1; }
  100% {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty)))
               scale(0.4) rotate(var(--rot, 400deg));
    opacity: 0;
  }
}

/* Expanding ring */
.bfx-ring {
  position: fixed;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  border: 2px solid;
  pointer-events: none;
  z-index: 9998;
  animation: bfxRing 0.72s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes bfxRing {
  0%   { transform: scale(0.4); opacity: 0.85; }
  100% { transform: scale(9);   opacity: 0; }
}

/* Phone vibrate */
.bfx-vibe {
  animation: bfxVibe 0.44s ease both !important;
  transform-origin: center;
}
@keyframes bfxVibe {
  0%,100% { transform: translateX(0); }
  15%     { transform: translateX(-5px) rotate(-1deg); }
  30%     { transform: translateX(5px)  rotate(1deg); }
  45%     { transform: translateX(-4px) rotate(-1deg); }
  60%     { transform: translateX(4px)  rotate(0.5deg); }
  75%     { transform: translateX(-2px); }
  88%     { transform: translateX(2px); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .bfx-p, .bfx-confetti, .bfx-ring, .bfx-ripple, .bfx-vibe { animation: none !important; display: none !important; }
}

/* ---- Experience video panel ---- */
.experience__video { position: relative; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(127, 230, 238, .2); }
.experience__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.experience__videocap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 44px 36px 34px; background: linear-gradient(transparent 34%, rgba(4, 36, 45, .55) 64%, rgba(4, 36, 45, .88)); }
/* rotating testimonial swap fade */
.experience__vid, .experience__videocap { transition: opacity .32s ease; }
.experience__video.is-swapping .experience__vid,
.experience__video.is-swapping .experience__videocap { opacity: 0; }
/* progress dots */
.experience__dots { position: absolute; top: 16px; right: 16px; display: flex; gap: 7px; z-index: 3; }
.experience__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255, 253, 246, .45); transition: background .25s ease, transform .25s ease; }
.experience__dot:hover { background: rgba(255, 253, 246, .85); }
.experience__dot.is-active { background: var(--sun); transform: scale(1.3); box-shadow: 0 0 0 3px rgba(255, 194, 74, .3); }
