/* ─── RESET & TOKENS ─── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --water-light:#C8F0F0;
  --water-mid:#5BC8D0;
  --water-deep:#1A9BAB;
  --water-dark:#0D6B7A;
  --teal:#0F8A9A;
  --teal-dark:#0D5F6E;
  --navy:#0F2740;
  --navy-dark:#081929;
  --gold:#F4A832;
  --gold-deep:#E08F1A;
  --coral:#E8834A;
  --peach:#FFD3A8;
  --sand:#FDF6E8;
  --sand-dark:#F5EAC8;
  --white:#FFFFFF;
  --text-navy:#0F2740;
  --text-muted:rgba(15,39,64,0.66);
  --text-soft:rgba(15,39,64,0.78);
  --text-light:rgba(255,255,255,0.92);
  --text-dim:rgba(255,255,255,0.62);
}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{font-family:'Nunito',system-ui,sans-serif;background:var(--sand);color:var(--text-navy);overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}

/* skip-link for keyboard users */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--navy);color:var(--white);padding:0.6rem 1rem;border-radius:0 0 8px 0;z-index:1000}
.skip-link:focus{left:0}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* :focus-visible styles (a11y) */
:focus-visible{outline:3px solid var(--gold);outline-offset:3px;border-radius:6px}
.btn-primary:focus-visible,.btn-ghost-white:focus-visible,.btn-outline-teal:focus-visible,.btn-nav:focus-visible,.svc-btn:focus-visible{outline-offset:4px}

/* ─── ANIMATION KEYFRAMES ─── */
@keyframes wave1{0%,100%{transform:translateX(0) scaleY(1)}50%{transform:translateX(-2%) scaleY(0.95)}}
@keyframes wave2{0%,100%{transform:translateX(0) scaleY(1)}50%{transform:translateX(2%) scaleY(1.05)}}
@keyframes shimmer{0%{opacity:0.3;transform:translateX(-100%) rotate(25deg)}100%{opacity:0;transform:translateX(300%) rotate(25deg)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes ripple{0%{transform:scale(0.8);opacity:0.6}100%{transform:scale(2.4);opacity:0}}
@keyframes heroIn{from{opacity:0;transform:translateY(32px)}to{opacity:1;transform:translateY(0)}}
@keyframes sunRise{from{opacity:0;transform:scale(0.7)}to{opacity:1;transform:scale(1)}}
@keyframes bubbleUp{0%{opacity:0;transform:translateY(0) scale(1)}20%{opacity:0.7}80%{opacity:0.3}100%{opacity:0;transform:translateY(-100px) scale(0.4)}}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:0.75rem 3rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  transition:background 0.4s,backdrop-filter 0.4s,box-shadow 0.4s,padding 0.3s;
}
nav.scrolled{
  background:rgba(253,246,232,0.96);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 1px 0 rgba(15,39,64,0.08), 0 4px 24px rgba(15,39,64,0.06);
  padding:0.5rem 3rem;
}
.nav-logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0;opacity:0;pointer-events:none;transition:opacity 0.3s}
nav.scrolled .nav-logo{opacity:1;pointer-events:auto}
.nav-logo img{height:54px;width:auto;object-fit:contain;filter:drop-shadow(0 2px 8px rgba(15,39,64,0.12));transition:transform 0.3s}
.nav-logo:hover img{transform:scale(1.05)}

/* Wordmark variant for nav (replaces the squished badge image at small sizes) */
.nav-logo-text{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:0;line-height:1;padding:2px 0;transition:transform 0.25s}
.nav-logo-text:hover{transform:translateY(-1px)}
.nav-logo-text .nl-script{
  font-family:'Playfair Display',serif;
  font-style:italic;font-weight:700;
  font-size:1.65rem;color:var(--navy);
  line-height:0.9;letter-spacing:-0.02em;
}
.nav-logo-text .nl-sub{
  font-family:'Nunito',sans-serif;
  font-size:0.62rem;font-weight:700;
  color:var(--teal-dark);
  letter-spacing:0.22em;text-transform:uppercase;
  margin-top:2px;
}
/* Light treatment when nav sits over a dark hero (home page, top-of-page) */
nav:not(.scrolled) .nav-logo-text .nl-script{color:var(--white);text-shadow:0 1px 4px rgba(0,0,0,0.35)}
nav:not(.scrolled) .nav-logo-text .nl-sub{color:rgba(255,255,255,0.92);text-shadow:0 1px 4px rgba(0,0,0,0.35)}
.nav-links{display:flex;align-items:center;gap:2.25rem;list-style:none}
.nav-links a{
  color:var(--white);font-size:0.82rem;letter-spacing:0.1em;
  text-transform:uppercase;text-decoration:none;font-weight:600;
  transition:color 0.2s;text-shadow:0 1px 4px rgba(0,0,0,0.35);
}
nav.scrolled .nav-links a{color:var(--text-navy);text-shadow:none}
.nav-links a:hover{color:var(--teal)}
.btn-nav{
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:0.6rem 1.2rem;
  background:var(--teal);color:var(--white);
  font-size:0.8rem;font-weight:700;letter-spacing:0.04em;
  text-decoration:none;border-radius:50px;
  transition:background 0.25s,transform 0.2s,box-shadow 0.2s;
  box-shadow:0 4px 16px rgba(15,138,154,0.35);
  white-space:nowrap;
}
.btn-nav:hover{background:var(--teal-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(15,138,154,0.45)}
.nav-toggle{
  display:none;
  width:40px;height:40px;
  background:transparent;border:none;cursor:pointer;
  padding:0;align-items:center;justify-content:center;flex-direction:column;gap:5px;
  margin-left:auto;
}
.nav-toggle span{
  display:block;width:22px;height:2px;background:var(--white);
  border-radius:2px;transition:transform 0.25s,opacity 0.2s,background 0.25s;
}
nav.scrolled .nav-toggle span{background:var(--navy)}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ─── HERO ─── */
.hero{
  position:relative;min-height:100vh;min-height:100dvh;
  display:flex;align-items:center;
  overflow:hidden;
}
.hero-sky{
  position:absolute;inset:0;
  background:linear-gradient(180deg,
    #87CEEB 0%,
    #B8E4F5 30%,
    #D4EFF8 45%,
    #A8DEDE 58%,
    #5BC8D0 70%,
    #29A8B8 82%,
    #1A8898 100%);
}
/* ─── HERO VIDEO BACKGROUND (desktop only — mobile keeps painted scene to save data + battery) ─── */
.hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:1;
  opacity:0;
  transition:opacity 0.8s ease-out;
  pointer-events:none;
}
.hero-video.ready{opacity:1}
/* Subtle tint over the video so white text + logo stay readable */
.hero-video-tint{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(15,39,64,0.18) 0%,rgba(15,39,64,0.08) 35%,rgba(13,107,122,0.18) 100%);
  opacity:0;transition:opacity 0.8s ease-out;pointer-events:none;
}
.hero-video.ready ~ .hero-video-tint,
.hero-video.ready + .hero-video-tint{opacity:1}
/* Hide video on mobile — keep CSS-painted scene there (cheaper, no autoplay weirdness) */
@media(max-width:720px){
  .hero-video,.hero-video-tint{display:none}
}
/* Respect reduced-motion preference */
@media(prefers-reduced-motion:reduce){
  .hero-video,.hero-video-tint{display:none}
}
.sun{
  position:absolute;top:14%;right:14%;
  width:130px;height:130px;border-radius:50%;
  background:radial-gradient(circle,#FFE066 0%,#F4A832 50%,#E8834A 100%);
  box-shadow:0 0 60px 20px rgba(244,168,50,0.4),0 0 120px 40px rgba(244,168,50,0.15);
  animation:sunRise 2s ease-out both, float 8s ease-in-out 2s infinite;
  animation-play-state:running;
  z-index:1;
}
.hero.paused .sun,
.hero.paused .wave-layer,
.hero.paused .bubble,
.hero.paused .shimmer-line{animation-play-state:paused}
.sun-rays{
  position:absolute;top:8%;right:7%;
  width:340px;height:340px;
  background:radial-gradient(circle,rgba(244,168,50,0.22) 0%,transparent 70%);
  border-radius:50%;
  z-index:0;
  pointer-events:none;
}
.water-base{
  position:absolute;bottom:0;left:0;right:0;
  height:42%;
  background:linear-gradient(180deg,
    rgba(91,200,208,0.9) 0%,
    rgba(26,155,171,0.95) 40%,
    rgba(13,107,122,1) 100%);
}
.water-shimmer{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.shimmer-line{
  position:absolute;
  width:40%;height:2px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.6),transparent);
  border-radius:2px;
  animation:shimmer var(--sd) linear infinite;
  animation-delay:var(--ss);
}
.wave-layer{
  position:absolute;left:-5%;right:-5%;
  background-repeat:repeat-x;
  background-size:1400px 100%;
}
.wave-l1{
  bottom:38%;height:80px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 80'%3E%3Cpath d='M0,40 C175,10 350,70 525,40 C700,10 875,70 1050,40 C1225,10 1312,60 1400,40 L1400,80 L0,80 Z' fill='rgba(91,200,208,0.8)'/%3E%3C/svg%3E");
  animation:wave1 6s ease-in-out infinite;
}
.wave-l2{
  bottom:35%;height:100px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 100'%3E%3Cpath d='M0,50 C233,20 467,80 700,50 C933,20 1167,80 1400,50 L1400,100 L0,100 Z' fill='rgba(41,168,184,0.7)'/%3E%3C/svg%3E");
  animation:wave2 8s ease-in-out infinite;
}
.wave-l3{
  bottom:32%;height:120px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 120'%3E%3Cpath d='M0,60 C350,20 700,100 1050,60 C1225,40 1312,80 1400,60 L1400,120 L0,120 Z' fill='rgba(26,155,171,0.85)'/%3E%3C/svg%3E");
  animation:wave1 10s ease-in-out 1s infinite;
}
.water-clarity{
  position:absolute;bottom:0;left:0;right:0;height:38%;
  background:linear-gradient(180deg,transparent 0%,rgba(200,240,240,0.15) 20%,rgba(91,200,208,0.2) 50%,rgba(26,155,171,0.6) 100%);
  pointer-events:none;
}
.birds{position:absolute;top:18%;right:12%;opacity:0.55}
.bubbles{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.bubble{
  position:absolute;bottom:-10px;
  width:var(--bs);height:var(--bs);
  border-radius:50%;
  background:rgba(255,255,255,0.25);
  border:1px solid rgba(255,255,255,0.4);
  animation:bubbleUp var(--bd) ease-in infinite;
  animation-delay:var(--bde);
}

.hero-content{
  position:relative;z-index:10;
  width:100%;max-width:1100px;margin:0 auto;
  padding:5rem 3rem 9rem;
  display:flex;flex-direction:column;align-items:center;
  text-align:center;
  animation:heroIn 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-logo-wrap{
  margin-bottom:1.5rem;
  animation:float 6s ease-in-out infinite;
  filter:drop-shadow(0 8px 24px rgba(13,107,122,0.3));
}
.hero-logo-wrap img{width:240px;height:auto}
.hero-tagline{
  font-family:'Playfair Display',serif;
  font-style:italic;font-weight:500;
  font-size:clamp(1.05rem,2vw,1.4rem);
  color:var(--white);
  text-shadow:0 2px 12px rgba(13,107,122,0.5);
  margin-bottom:0.75rem;
  letter-spacing:0.01em;
}
.hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.4rem,5.5vw,4.6rem);
  font-weight:700;
  color:var(--white);
  line-height:1.1;
  text-shadow:0 4px 20px rgba(13,107,122,0.4);
  margin-bottom:1rem;
}
.hero-title em{font-style:italic;color:var(--water-light)}
.hero-sub{
  font-size:1.05rem;font-weight:400;
  color:var(--text-light);
  text-shadow:0 1px 6px rgba(13,107,122,0.45);
  max-width:560px;line-height:1.7;
  margin-bottom:1.75rem;
}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
.btn-primary{
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:1rem 2rem;
  background:var(--gold);color:var(--navy-dark);
  font-size:0.9rem;font-weight:800;letter-spacing:0.05em;text-transform:uppercase;
  text-decoration:none;border-radius:50px;border:none;cursor:pointer;
  transition:background 0.25s,transform 0.2s,box-shadow 0.2s;
  box-shadow:0 6px 24px rgba(244,168,50,0.45);
}
.btn-primary:hover{background:var(--gold-deep);transform:translateY(-2px);box-shadow:0 10px 32px rgba(244,168,50,0.55)}
.btn-ghost-white{
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:1rem 2rem;
  border:2px solid rgba(255,255,255,0.7);color:var(--white);
  font-size:0.9rem;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;
  text-decoration:none;border-radius:50px;
  transition:background 0.25s,border-color 0.25s,color 0.25s;
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
  background:rgba(255,255,255,0.12);
}
.btn-ghost-white:hover{background:rgba(255,255,255,0.22);border-color:white}

.hero-stats{
  position:absolute;bottom:0;left:0;right:0;z-index:10;
  display:flex;justify-content:center;gap:0;
  background:rgba(253,246,232,0.94);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-top:1px solid rgba(15,39,64,0.06);
}
.hero-stat{
  flex:1;min-width:0;
  padding:1.1rem 1.5rem;
  display:flex;flex-direction:column;align-items:center;
  border-right:1px solid rgba(15,39,64,0.08);
}
.hero-stat:last-child{border-right:none}
.hero-stat-num{
  font-family:'Playfair Display',serif;font-size:clamp(1.2rem,2.4vw,1.7rem);font-weight:700;
  color:var(--teal-dark);line-height:1;display:inline-flex;align-items:baseline;gap:2px;
}
.hero-stat-num .star{font-size:0.85em;color:var(--gold);font-family:'Nunito',sans-serif}
.hero-stat-label{
  font-size:0.66rem;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--text-muted);margin-top:0.25rem;text-align:center;font-weight:600;
}

/* ─── SECTION BASE ─── */
.section-inner{max-width:1200px;margin:0 auto;padding:0 3rem}
.eyebrow{
  display:inline-flex;align-items:center;gap:0.75rem;
  font-size:0.72rem;letter-spacing:0.22em;text-transform:uppercase;
  color:var(--teal);font-weight:700;margin-bottom:0.875rem;
}
.eyebrow::before{
  content:'';width:28px;height:2px;
  background:linear-gradient(90deg,var(--teal),var(--water-mid));
  border-radius:2px;display:block;
}
.section-h{
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,4vw,3rem);font-weight:700;
  color:var(--navy);line-height:1.15;margin-bottom:1rem;
}
.section-h em{font-style:italic;color:var(--teal)}
.section-h .star{font-size:0.85em;color:var(--gold);font-family:'Nunito',sans-serif}
.section-lead{
  font-size:1rem;font-weight:400;
  color:var(--text-soft);line-height:1.85;max-width:520px;
}
.section-lead a{color:var(--teal-dark);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.section-lead a:hover{color:var(--teal)}

/* ─── ABOUT ─── */
.about{background:var(--white);padding:7rem 0}
.about-grid{
  display:grid;grid-template-columns:1fr 1.1fr;
  gap:5rem;align-items:center;
}
.about-img-wrap{position:relative}
.about-img-main{
  width:100%;
  border-radius:24px;
  aspect-ratio:4/5;
  object-fit:cover;
  position:relative;z-index:1;
  box-shadow:0 20px 60px rgba(15,107,122,0.22);
}
.about-frame{
  position:absolute;top:-1rem;left:-1rem;width:calc(100% + 2rem);height:calc(100% + 2rem);
  border:2px solid rgba(91,200,208,0.4);border-radius:28px;
  pointer-events:none;z-index:0;
}
.about-float{
  position:absolute;bottom:-1.5rem;right:-1.5rem;
  background:var(--white);border-radius:16px;
  padding:1.1rem 1.4rem;z-index:2;
  box-shadow:0 8px 32px rgba(15,39,64,0.14);
  border:1px solid rgba(91,200,208,0.25);
  min-width:170px;
}
.about-float-val{
  font-family:'Playfair Display',serif;font-size:1.9rem;font-weight:700;
  color:var(--teal);line-height:1;display:inline-flex;align-items:baseline;gap:2px;
}
.about-float-val .star{font-size:0.85em;color:var(--gold);font-family:'Nunito',sans-serif}
.about-float-label{
  font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--text-muted);margin-top:0.3rem;font-weight:600;
}
.about-text .section-lead{max-width:100%;margin-bottom:1rem}
.perks{display:flex;flex-direction:column;gap:0.75rem;margin-top:1.75rem}
.perk{
  display:flex;align-items:center;gap:1rem;
  padding:0.875rem 1.125rem;
  border-radius:12px;background:var(--sand);
  border:1px solid transparent;
  transition:border-color 0.25s,background 0.25s,transform 0.25s;
}
.perk:hover{border-color:rgba(91,200,208,0.5);background:rgba(200,240,240,0.4);transform:translateX(4px)}
.perk-icon{
  width:42px;height:42px;border-radius:10px;
  background:linear-gradient(135deg,var(--water-light),var(--water-mid));
  color:var(--teal-dark);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.perk-icon svg{width:20px;height:20px}
.perk-text strong{display:block;font-size:0.92rem;font-weight:700;color:var(--navy);margin-bottom:0.1rem}
.perk-text span{font-size:0.82rem;color:var(--text-muted)}
.captain-card{
  margin-top:1.75rem;padding:1rem 1.25rem;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(200,240,240,0.5),rgba(91,200,208,0.18));
  border:1px solid rgba(91,200,208,0.35);
  display:flex;align-items:center;gap:1rem;
}
.cap-avatar{
  width:50px;height:50px;border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:2px solid rgba(91,200,208,0.6);
  box-shadow:0 2px 8px rgba(15,107,122,0.2);
}
.cap-info strong{display:block;font-size:0.96rem;font-weight:700;color:var(--navy)}
.cap-info span{font-size:0.78rem;color:var(--teal-dark);font-weight:600}

/* ─── DIVIDERS ─── */
.water-divider{display:block;width:100%;line-height:0;overflow:hidden}

/* ─── SERVICES (LIGHT palette per brief) ─── */
.services{
  background:linear-gradient(180deg,var(--sand) 0%,#FFFAF0 100%);
  padding:6rem 0 5rem;
  position:relative;overflow:hidden;
}
.services::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%,rgba(91,200,208,0.18) 0%,transparent 60%),
    radial-gradient(ellipse 40% 50% at 95% 90%,rgba(244,168,50,0.10) 0%,transparent 50%);
  pointer-events:none;
}
.services-header{
  display:grid;grid-template-columns:1fr 1fr;
  gap:3rem;align-items:end;margin-bottom:3.5rem;position:relative;
}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;position:relative;
}
.svc-card{
  background:var(--white);
  border:1px solid rgba(91,200,208,0.28);
  border-radius:20px;overflow:hidden;
  transition:transform 0.35s cubic-bezier(0.16,1,0.3,1),border-color 0.3s,box-shadow 0.3s;
  position:relative;
  box-shadow:0 4px 20px rgba(15,39,64,0.05);
  display:flex;flex-direction:column;
}
.svc-card:hover{
  transform:translateY(-6px);
  border-color:rgba(91,200,208,0.6);
  box-shadow:0 20px 50px rgba(15,107,122,0.18);
}
.svc-card-feature{
  grid-column:span 2;
  background:linear-gradient(135deg,var(--white) 0%,rgba(200,240,240,0.4) 100%);
  border-color:var(--water-mid);
}
.svc-card-feature .svc-img{aspect-ratio:16/8}
.svc-img{aspect-ratio:4/3;position:relative;overflow:hidden;background:var(--water-light)}
.svc-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover .svc-img img{transform:scale(1.06)}
.svc-tag{
  position:absolute;top:1rem;left:1rem;z-index:2;
  padding:0.35rem 0.85rem;
  background:var(--gold);
  border-radius:50px;
  font-size:0.7rem;font-weight:800;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--navy-dark);
  box-shadow:0 4px 12px rgba(244,168,50,0.4);
}
.svc-card-sunset .svc-img::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,transparent 50%,rgba(232,131,74,0.2) 100%);
}
.svc-body{padding:1.4rem 1.4rem 1.6rem;flex:1;display:flex;flex-direction:column}
.svc-meta{
  display:flex;flex-wrap:wrap;gap:0.5rem 1rem;
  margin-bottom:0.6rem;
}
.svc-dur,.svc-cap{
  font-size:0.7rem;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--teal-dark);font-weight:700;
}
.svc-cap{color:var(--text-muted)}
.svc-name{
  font-family:'Playfair Display',serif;
  font-size:1.4rem;font-weight:700;color:var(--navy);
  line-height:1.2;margin-bottom:0.6rem;
}
.svc-name a{color:inherit;text-decoration:none;transition:color 0.2s}
.svc-name a:hover{color:var(--teal)}
a.svc-img{display:block;width:100%;height:auto}
a.svc-img:focus-visible{outline:3px solid var(--gold);outline-offset:-3px}
.svc-price .from{
  font-size:0.8rem;font-weight:500;color:var(--text-muted);
  font-family:'Nunito',sans-serif;text-transform:uppercase;letter-spacing:0.08em;
  margin-right:0.3rem;
}
.svc-card-feature .svc-name{font-size:1.6rem}
.svc-desc{
  font-size:0.88rem;color:var(--text-soft);
  line-height:1.65;margin-bottom:1.25rem;flex:1;
}
.svc-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.svc-price{
  font-family:'Playfair Display',serif;font-style:italic;
  font-size:0.95rem;font-weight:500;color:var(--text-muted);
}
.svc-btn{
  display:inline-flex;align-items:center;gap:0.4rem;
  padding:0.55rem 1.2rem;
  background:var(--teal);
  border:none;
  border-radius:50px;
  font-size:0.78rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--white);text-decoration:none;
  transition:background 0.25s,transform 0.2s;
  white-space:nowrap;
}
.svc-btn:hover{background:var(--teal-dark);transform:translateY(-1px)}
.services-cta{text-align:center;margin-top:3rem}

/* ─── WATER VIBE ─── */
.water-vibe{
  position:relative;padding:7rem 0;
  background:linear-gradient(180deg,var(--water-light) 0%,#A8E4E8 40%,var(--water-mid) 100%);
  overflow:hidden;
}
.water-vibe::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 50%,rgba(255,255,255,0.3) 0%,transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%,rgba(255,255,255,0.2) 0%,transparent 50%);
  pointer-events:none;
}
.water-lines{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.wline{
  position:absolute;left:-10%;right:-10%;height:1px;
  background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,0.5) 30%,rgba(255,255,255,0.85) 50%,rgba(255,255,255,0.5) 70%,transparent 100%);
  animation:shimmer var(--wd) linear infinite;
  animation-delay:var(--ws);
  opacity:0;
  transform:rotate(-1deg);
}
.vibe-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:center;
}
.vibe-text .eyebrow{color:var(--teal-dark)}
.vibe-text .section-h{color:var(--navy)}
.vibe-text .section-lead{color:rgba(15,39,64,0.78);max-width:100%;margin-bottom:0}
.facts-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1rem;
}
.fact-card{
  background:rgba(255,255,255,0.78);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.95);
  border-radius:16px;padding:1.25rem;
  text-align:center;
  transition:transform 0.25s,box-shadow 0.25s;
}
.fact-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(13,107,122,0.18)}
.fact-num{
  font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;
  color:var(--teal-dark);line-height:1;
}
.fact-label{font-size:0.78rem;color:rgba(15,39,64,0.7);margin-top:0.4rem;line-height:1.45;font-weight:500}
.vibe-visual{position:relative}
.vibe-img-stack{position:relative;height:520px}
.vstack-main{
  position:absolute;right:0;top:0;
  width:78%;height:88%;
  border-radius:20px;
  object-fit:cover;
  box-shadow:0 20px 60px rgba(13,107,122,0.28);
}
.vstack-accent{
  position:absolute;left:0;bottom:0;
  width:54%;height:48%;
  border-radius:16px;
  object-fit:cover;
  border:5px solid var(--white);
  box-shadow:0 12px 40px rgba(13,107,122,0.22);
  z-index:2;
}

/* ─── HOW IT WORKS ─── */
.how{background:var(--white);padding:6rem 0}
.how-header{text-align:center;margin-bottom:4rem}
.how-header .eyebrow{justify-content:center}
.how-header .eyebrow::before{display:none}
.how-header .section-h{text-align:center}
.steps-row{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;position:relative;list-style:none;
}
.steps-row::before{
  content:'';position:absolute;
  top:1.6rem;left:12.5%;right:12.5%;height:2px;
  background:linear-gradient(90deg,var(--water-light),var(--water-mid),var(--teal),var(--water-mid),var(--water-light));
  z-index:0;
}
.step{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;padding:0 1.25rem;
  position:relative;z-index:1;
}
.step-circle{
  width:54px;height:54px;border-radius:50%;
  background:linear-gradient(135deg,var(--water-mid),var(--teal));
  display:flex;align-items:center;justify-content:center;
  font-family:'Playfair Display',serif;font-size:1.25rem;font-weight:700;
  color:var(--white);margin-bottom:1.25rem;
  box-shadow:0 4px 16px rgba(15,138,154,0.4);
  border:4px solid var(--white);
}
.step h3{font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:0.5rem}
.step p{font-size:0.85rem;color:var(--text-soft);line-height:1.65}

/* ─── REVIEWS (LIGHT palette per brief) ─── */
.testi{
  background:linear-gradient(180deg,#FFFAF0 0%,var(--sand) 100%);
  padding:6rem 0;position:relative;overflow:hidden;
}
.testi::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 40% at 50% 0%,rgba(91,200,208,0.12) 0%,transparent 60%);
  pointer-events:none;
}
.testi-header{text-align:center;margin-bottom:3rem;position:relative}
.testi .eyebrow{color:var(--teal-dark);justify-content:center}
.testi .eyebrow::before{display:none}
.testi .section-h{color:var(--navy);text-align:center;margin-bottom:0.75rem}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;position:relative}
.tcard{
  background:var(--white);
  border:1px solid rgba(91,200,208,0.25);
  border-radius:20px;padding:1.75rem 1.5rem;
  position:relative;overflow:hidden;
  transition:transform 0.3s,border-color 0.3s,box-shadow 0.3s;
  box-shadow:0 4px 16px rgba(15,39,64,0.04);
}
.tcard::before{
  content:'"';
  position:absolute;top:0.25rem;right:1rem;
  font-family:'Playfair Display',serif;font-size:6rem;font-weight:700;
  color:rgba(91,200,208,0.18);line-height:1;
}
.tcard:hover{transform:translateY(-4px);border-color:rgba(91,200,208,0.5);box-shadow:0 14px 36px rgba(15,107,122,0.12)}
.stars{margin-bottom:0.85rem;color:var(--gold);font-size:0.95rem;letter-spacing:0.1em}
.tcard-text{
  font-family:'Playfair Display',serif;font-style:italic;
  font-size:0.98rem;font-weight:400;
  color:var(--text-soft);line-height:1.7;margin-bottom:1.25rem;
  position:relative;
}
.tcard-author{
  display:flex;align-items:center;gap:0.875rem;
  padding-top:1rem;border-top:1px solid rgba(15,39,64,0.06);
}
.t-avatar{
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(135deg,var(--water-mid),var(--teal-dark));
  display:flex;align-items:center;justify-content:center;
  font-family:'Playfair Display',serif;font-size:1rem;font-weight:700;
  color:var(--white);flex-shrink:0;
}
.t-name strong{display:block;font-size:0.92rem;font-weight:700;color:var(--navy)}
.t-name span{font-size:0.74rem;color:var(--text-muted);font-weight:500}

/* ─── FAQ ─── */
.faq{background:var(--white);padding:5rem 0}
.faq-header{text-align:center;margin-bottom:3rem}
.faq-header .eyebrow{justify-content:center}
.faq-header .eyebrow::before{display:none}
.faq-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:0.75rem}
.faq-item{
  background:var(--sand);
  border:1px solid rgba(91,200,208,0.25);
  border-radius:14px;
  overflow:hidden;
  transition:border-color 0.25s,background 0.25s;
}
.faq-item:hover{border-color:rgba(91,200,208,0.5)}
.faq-item[open]{background:#FFFAF0;border-color:rgba(91,200,208,0.55)}
.faq-item summary{
  padding:1.1rem 1.4rem;
  font-size:1rem;font-weight:700;color:var(--navy);
  cursor:pointer;list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'';
  width:14px;height:14px;flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%230F8A9A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M7 1v12M1 7h12'/%3E%3C/svg%3E");
  background-size:contain;background-repeat:no-repeat;
  transition:transform 0.25s;
}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{
  padding:0 1.4rem 1.2rem;
  font-size:0.92rem;color:var(--text-soft);line-height:1.7;
}
.faq-item p a{color:var(--teal-dark);font-weight:700}

/* ─── LOCATION ─── */
.location{background:var(--sand);padding:6rem 0}
.loc-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.loc-details{list-style:none;display:flex;flex-direction:column;gap:0.7rem}
.loc-detail{display:flex;align-items:center;gap:0.75rem;font-size:0.92rem;color:var(--text-soft)}
.loc-detail a{color:var(--text-soft);text-decoration:none;font-weight:600}
.loc-detail a:hover{color:var(--teal)}
.loc-dot{width:8px;height:8px;background:var(--teal);border-radius:50%;flex-shrink:0;display:block}
.loc-cta{margin-top:2rem;display:flex;flex-wrap:wrap;gap:0.75rem}
.loc-card{
  border-radius:20px;overflow:hidden;
  background:var(--white);
  box-shadow:0 16px 48px rgba(15,39,64,0.12);
  border:1px solid rgba(91,200,208,0.25);
}
.map-frame{
  width:100%;height:280px;border:0;display:block;
  background:var(--water-light);
}
.loc-card-body{padding:1.5rem 1.75rem}
.loc-card-body h3{font-family:'Playfair Display',serif;font-size:1.25rem;font-weight:700;color:var(--navy);margin-bottom:0.4rem}
.loc-card-body p{font-size:0.88rem;color:var(--text-muted);line-height:1.7}

/* ─── CTA BAND (sunrise gradient, on-brief) ─── */
.cta-band{
  position:relative;padding:7rem 0;overflow:hidden;
  background:linear-gradient(135deg,#1A4A60 0%,#0F2740 30%,#26506B 65%,#7A4030 100%);
}
.cta-water{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%,rgba(91,200,208,0.18) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%,rgba(244,168,50,0.32) 0%,transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 70%,rgba(232,131,74,0.25) 0%,transparent 50%);
}
.cta-inner{position:relative;z-index:2;text-align:center;max-width:680px;margin:0 auto;padding:0 3rem}
.cta-inner .eyebrow{justify-content:center;color:var(--peach)}
.cta-inner .eyebrow::before{display:none}
.cta-inner .section-h{color:var(--white);text-align:center;font-size:clamp(2rem,4vw,3.2rem)}
.cta-inner .section-h em{color:var(--peach)}
.cta-inner .section-lead{text-align:center;margin:0 auto 2rem;color:rgba(255,255,255,0.78)}
.cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn-outline-teal{
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:1rem 2rem;
  border:2px solid rgba(255,255,255,0.55);color:var(--white);
  font-size:0.88rem;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;
  text-decoration:none;border-radius:50px;
  transition:background 0.25s,border-color 0.25s,color 0.25s;
}
.btn-outline-teal:hover{background:rgba(255,255,255,0.12);border-color:white}

/* In light sections, btn-outline-teal needs darker variant */
.location .btn-outline-teal{
  border-color:var(--teal);color:var(--teal-dark);
}
.location .btn-outline-teal:hover{background:rgba(15,138,154,0.1);border-color:var(--teal-dark);color:var(--teal-dark)}

/* ─── FOOTER ─── */
footer{
  background:#050E18;
  padding:4rem 0 2rem;
  border-top:1px solid rgba(91,200,208,0.12);
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;margin-bottom:3rem;
}
.footer-logo{margin-bottom:1rem}
.footer-logo img{height:80px;width:auto;filter:drop-shadow(0 2px 8px rgba(91,200,208,0.25)) brightness(1.1)}
.footer-tagline{font-size:0.86rem;color:rgba(255,255,255,0.55);line-height:1.7;margin-bottom:1.5rem;max-width:340px}
.social-row{display:flex;gap:0.75rem}
.soc-btn{
  width:40px;height:40px;border-radius:50%;
  border:1px solid rgba(91,200,208,0.3);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.6);text-decoration:none;
  transition:border-color 0.25s,color 0.25s,background 0.25s,transform 0.2s;
}
.soc-btn svg{width:18px;height:18px}
.soc-btn:hover{border-color:var(--water-mid);color:var(--water-mid);background:rgba(15,138,154,0.12);transform:translateY(-2px)}
.footer-col h4{
  font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--water-mid);margin-bottom:1.25rem;font-weight:700;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.6rem}
.footer-col li a{color:rgba(255,255,255,0.55);text-decoration:none;font-size:0.86rem;transition:color 0.25s}
.footer-col li a:hover{color:rgba(255,255,255,0.95)}
.footer-col li span{font-size:0.86rem;color:rgba(255,255,255,0.55);line-height:1.6;display:block}
.footer-bottom{
  padding-top:2rem;border-top:1px solid rgba(255,255,255,0.06);
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;
}
.footer-bottom p{font-size:0.78rem;color:rgba(255,255,255,0.38)}

/* ─── MOBILE STICKY CALL BAR ─── */
.mobile-call-bar{
  display:none;
  position:fixed;left:0;right:0;bottom:0;z-index:50;
  background:var(--gold);color:var(--navy-dark);
  padding:0.85rem 1rem;
  align-items:center;justify-content:center;gap:0.6rem;
  font-size:0.92rem;font-weight:800;letter-spacing:0.04em;
  text-decoration:none;
  box-shadow:0 -4px 24px rgba(0,0,0,0.18);
  border-top:1px solid rgba(0,0,0,0.08);
}
.mobile-call-bar:hover{background:var(--gold-deep)}

/* ─── REVEAL (progressively enhanced) ─── */
html.js .reveal{opacity:0;transform:translateY(28px);transition:opacity 0.75s cubic-bezier(0.16,1,0.3,1),transform 0.75s cubic-bezier(0.16,1,0.3,1)}
html.js .reveal.visible{opacity:1;transform:translateY(0)}
.rd1{transition-delay:0.1s}.rd2{transition-delay:0.2s}.rd3{transition-delay:0.3s}
.rd4{transition-delay:0.4s}.rd5{transition-delay:0.5s}

/* a11y: reduced motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important}
  html.js .reveal{opacity:1;transform:none}
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  nav{padding:0.6rem 1.25rem}
  nav.scrolled{padding:0.5rem 1.25rem}
  .section-inner{padding:0 1.5rem}
  .about-grid,.vibe-grid,.loc-grid{grid-template-columns:1fr;gap:2.5rem}
  .services-header{grid-template-columns:1fr;gap:1rem}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .svc-card-feature{grid-column:span 2}
  .svc-card-feature .svc-img{aspect-ratio:16/9}
  .steps-row{grid-template-columns:repeat(2,1fr);gap:2rem;row-gap:2.5rem}
  .steps-row::before{display:none}
  .testi-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .vibe-img-stack{height:380px}
  .nav-links{gap:1.25rem}
  .nav-links a{font-size:0.74rem}
  .hero-stats{padding-bottom:env(safe-area-inset-bottom)}
}
@media(max-width:720px){
  body{padding-bottom:60px}
  nav{padding:0.5rem 1rem;flex-wrap:wrap}
  nav.scrolled{padding:0.4rem 1rem}
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;top:100%;left:1rem;right:1rem;
    flex-direction:column;align-items:stretch;gap:0;
    max-height:0;overflow:hidden;
    transition:max-height 0.3s ease;
    background:rgba(8,25,41,0.96);
    backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
    border-radius:12px;
  }
  nav.scrolled .nav-links{background:rgba(253,246,232,0.98)}
  .nav-links.open{max-height:400px;margin-top:0.75rem;padding:0.5rem 0}
  .nav-links li{width:100%}
  .nav-links a{display:block;padding:0.85rem 1.25rem;font-size:0.85rem;width:100%;color:var(--white)}
  nav.scrolled .nav-links a{color:var(--text-navy)}
  .nav-links a:hover{background:rgba(91,200,208,0.15)}
  .btn-nav span{display:none}
  .btn-nav{padding:0.55rem 0.75rem}
  .hero-content{padding:5rem 1.5rem 7.5rem}
  .hero-logo-wrap img{width:180px}
  .hero-title{font-size:2.4rem}
  .hero-sub{font-size:0.98rem;line-height:1.65}
  .hero-stats{flex-wrap:wrap}
  .hero-stat{flex:1 1 50%;padding:0.85rem 0.5rem;border-bottom:1px solid rgba(15,39,64,0.06)}
  .hero-stat:nth-child(2){border-right:none}
  .hero-stat:nth-child(3),.hero-stat:nth-child(4){border-bottom:none}
  /* Mobile: keep sun in the upper-right "sky" but vertically below the nav (so it
     doesn't crash either the centered logo OR the top-right call button) */
  .sun{width:70px;height:70px;top:14%;right:6%}
  .sun-rays{width:200px;height:200px;top:8%;right:-4%}
  .services-grid{grid-template-columns:1fr;gap:1rem}
  .svc-card-feature{grid-column:span 1}
  .svc-card-feature .svc-img,.svc-img{aspect-ratio:5/3}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .facts-grid{grid-template-columns:1fr 1fr}
  .vibe-img-stack{height:320px}
  .about-float{right:1rem;bottom:-1rem;min-width:140px;padding:0.85rem 1rem}
  .mobile-call-bar{display:flex;padding-bottom:calc(0.85rem + env(safe-area-inset-bottom))}
  .cta-band{padding:5rem 0}
  .footer-bottom{flex-direction:column;text-align:center}
  .section-h{font-size:clamp(1.7rem,7vw,2.4rem)}
  .about{padding:4.5rem 0}
  .services,.testi,.faq,.location,.water-vibe,.how{padding:4.5rem 0}
}
@media(max-width:420px){
  .footer-grid{grid-template-columns:1fr}
  .hero-ctas{flex-direction:column;width:100%}
  .hero-ctas .btn-primary,.hero-ctas .btn-ghost-white{width:100%;justify-content:center}
}

/* ─── PHASE G: Top sticky call strip (mobile only) ─── */
.top-call-strip{
  display:none;
  position:fixed;top:0;left:0;right:0;z-index:101;
  height:38px;
}
.top-call-strip a{
  flex:1;display:flex;align-items:center;justify-content:center;gap:0.4rem;
  font-size:0.78rem;font-weight:800;letter-spacing:0.05em;
  text-decoration:none;color:var(--white);
  transition:filter 0.2s;
}
.top-call-strip a:hover{filter:brightness(1.08)}
.top-call-strip svg{width:14px;height:14px;flex-shrink:0}
.top-call-strip .tcs-call{background:#0F8A4A}
.top-call-strip .tcs-book{background:var(--gold);color:var(--navy-dark)}
@media(max-width:720px){
  .top-call-strip{display:flex}
  body{padding-top:38px}
  nav{top:38px}
}

/* ─── PHASE G: Quick-facts icon row (charter cards + trip hero) ─── */
.svc-quickfacts{
  display:flex;flex-wrap:wrap;gap:0.5rem 0.9rem;
  margin-bottom:0.85rem;
  font-size:0.74rem;letter-spacing:0.06em;
  color:var(--teal-dark);font-weight:700;
}
.svc-quickfacts .qf{display:inline-flex;align-items:center;gap:0.35rem;text-transform:uppercase}
.svc-quickfacts .qf svg{width:14px;height:14px;flex-shrink:0;stroke:currentColor}

/* ─── PHASE G: Per-review "View on Google" link ─── */
.tcard-google{
  display:inline-flex;align-items:center;gap:0.3rem;
  margin-top:0.5rem;
  font-size:0.78rem;font-weight:700;
  color:var(--teal-dark);text-decoration:none;
  border-bottom:1px solid rgba(15,138,154,0.35);padding-bottom:1px;
  transition:color 0.2s,border-color 0.2s;
}
.tcard-google:hover{color:var(--teal);border-color:var(--teal)}
.tcard-google svg{width:11px;height:11px}

/* ─── PHASE G: Carousel (CSS scroll-snap + JS controls) ─── */
.carousel{
  position:relative;
  border-radius:20px;overflow:hidden;
  background:var(--water-light);
  box-shadow:0 12px 40px rgba(13,107,122,0.18);
}
.carousel-track{
  display:flex;
  overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.carousel-track::-webkit-scrollbar{display:none}
.carousel-slide{
  flex:0 0 100%;
  scroll-snap-align:start;scroll-snap-stop:always;
  position:relative;
  aspect-ratio:4/3;
  background:var(--water-light);
}
.carousel-slide img{
  width:100%;height:100%;
  object-fit:cover;display:block;
}
.carousel-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:42px;height:42px;
  border:none;border-radius:50%;
  background:rgba(255,255,255,0.92);
  color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:3;
  box-shadow:0 4px 14px rgba(15,39,64,0.18);
  transition:background 0.2s,transform 0.2s,opacity 0.2s;
}
.carousel-btn:hover{background:var(--white);transform:translateY(-50%) scale(1.05)}
.carousel-btn[disabled]{opacity:0.35;cursor:default;transform:translateY(-50%)}
.carousel-btn svg{width:18px;height:18px}
.carousel-prev{left:12px}
.carousel-next{right:12px}
.carousel-dots{
  position:absolute;bottom:12px;left:50%;transform:translateX(-50%);
  display:flex;gap:0.4rem;z-index:3;
  background:rgba(8,25,41,0.4);
  padding:6px 10px;border-radius:50px;
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}
.carousel-dot{
  width:7px;height:7px;border-radius:50%;
  background:rgba(255,255,255,0.55);border:none;
  cursor:pointer;padding:0;
  transition:background 0.2s,transform 0.2s;
}
.carousel-dot[aria-current="true"]{background:var(--white);transform:scale(1.3)}
.carousel[data-slides="1"] .carousel-btn,
.carousel[data-slides="1"] .carousel-dots{display:none}

/* When carousel sits inside a service card (flagship), strip its bg/shadow so the card frames it */
.svc-img .carousel{box-shadow:none;border-radius:0;height:100%}
.svc-img .carousel-track{height:100%}
.svc-img .carousel-slide{aspect-ratio:auto;height:100%}

/* ─── PHASE G: Trip detail page layout ─── */
.trip-hero{
  padding:6rem 0 4rem;
  background:linear-gradient(180deg,var(--sand) 0%,#FFFAF0 100%);
  position:relative;
}
.trip-hero-inner{
  max-width:1200px;margin:0 auto;padding:0 3rem;
  display:grid;grid-template-columns:1fr 1.1fr;
  gap:4rem;align-items:center;
}
.trip-hero-text .eyebrow{margin-bottom:0.6rem}
.trip-hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,4.4vw,3.4rem);font-weight:700;
  color:var(--navy);line-height:1.1;margin-bottom:0.5rem;
}
.trip-hero-title em{font-style:italic;color:var(--teal)}
.trip-hero-price{
  font-family:'Playfair Display',serif;
  font-size:1.5rem;font-weight:700;color:var(--gold-deep);
  margin-bottom:1rem;
}
.trip-hero-price .from{
  font-size:0.85rem;font-weight:500;color:var(--text-muted);
  font-family:'Nunito',sans-serif;text-transform:uppercase;letter-spacing:0.1em;
  margin-right:0.4rem;
}
.trip-hero-price.tbd{color:var(--text-muted);font-style:italic;font-size:1.1rem;font-weight:500}
.trip-hero-desc{
  font-size:1rem;color:var(--text-soft);line-height:1.75;
  margin-bottom:1.75rem;max-width:520px;
}
.trip-hero-cta{display:flex;gap:0.75rem;flex-wrap:wrap}

.trip-section{padding:5rem 0;background:var(--white)}
.trip-section.alt{background:var(--sand)}
.trip-section .section-inner{max-width:920px}
.trip-section h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.7rem,3vw,2.2rem);font-weight:700;color:var(--navy);
  line-height:1.2;margin-bottom:1.25rem;
}
.trip-section h2 em{font-style:italic;color:var(--teal)}
.trip-section p{font-size:1rem;line-height:1.85;color:var(--text-soft);margin-bottom:1rem}
.trip-section p:last-child{margin-bottom:0}

.trip-list{
  display:grid;grid-template-columns:1fr 1fr;gap:0.85rem 2rem;
  list-style:none;padding:0;margin-top:1rem;
}
.trip-list li{
  display:flex;align-items:flex-start;gap:0.75rem;
  font-size:0.95rem;color:var(--text-soft);line-height:1.55;
}
.trip-list li::before{
  content:'';flex-shrink:0;
  width:18px;height:18px;border-radius:50%;
  background:var(--water-light);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%230D5F6E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,8 6,11 11,4'/%3E%3C/svg%3E");
  background-size:11px;background-repeat:no-repeat;background-position:center;
  margin-top:1px;
}

/* Other Charters cross-sell grid */
.other-charters{background:linear-gradient(180deg,#FFFAF0 0%,var(--sand) 100%);padding:5rem 0}
.other-charters-header{text-align:center;margin-bottom:3rem}
.other-charters-header .eyebrow{justify-content:center}
.other-charters-header .eyebrow::before{display:none}
.other-charters-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;
  max-width:1200px;margin:0 auto;padding:0 3rem;
}
.oc-card{
  background:var(--white);
  border:1px solid rgba(91,200,208,0.25);
  border-radius:16px;overflow:hidden;
  text-decoration:none;color:inherit;
  box-shadow:0 4px 16px rgba(15,39,64,0.05);
  transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s;
  display:flex;flex-direction:column;
}
.oc-card:hover{transform:translateY(-4px);border-color:rgba(91,200,208,0.55);box-shadow:0 14px 36px rgba(13,107,122,0.16)}
.oc-card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.oc-body{padding:1rem 1.1rem 1.25rem}
.oc-name{
  font-family:'Playfair Display',serif;
  font-size:1.05rem;font-weight:700;color:var(--navy);
  line-height:1.2;margin-bottom:0.3rem;
}
.oc-meta{font-size:0.74rem;letter-spacing:0.06em;text-transform:uppercase;color:var(--teal-dark);font-weight:700}

@media(max-width:1024px){
  .trip-hero-inner{grid-template-columns:1fr;gap:2.5rem;padding:0 1.5rem}
  .trip-hero{padding:5rem 0 3rem}
  .other-charters-grid{grid-template-columns:repeat(2,1fr);padding:0 1.5rem}
  .trip-list{grid-template-columns:1fr}
}
@media(max-width:720px){
  .trip-hero{padding:4rem 0 2.5rem}
  .trip-hero-title{font-size:2rem}
  .trip-section{padding:3.5rem 0}
  .other-charters{padding:3.5rem 0}
  .other-charters-grid{grid-template-columns:1fr}
  .carousel-btn{width:36px;height:36px}
  .carousel-btn svg{width:14px;height:14px}
}

