/* /assets/wcm.base.css
   Base styles (theme-agnostic). No :root here.
*/

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-padding-top: 56px; }
section[id],
[id="top"]{ scroll-margin-top: 56px; }
body{
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

img{ max-width:100%; height:auto; display:block; }

/* links */
a{ color: inherit; text-decoration: none; }

/* inline links inside paragraph text */
p a{
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
p a:hover,
p a:focus-visible{
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}

/* layout wrapper */
.wrap{
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

/* topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: clamp(10px, 1.8vw, 18px);
  padding: clamp(10px, 1.8vw, 18px) 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.logo{
  width: 34px;
  height: 34px;
  background: var(--logo-bg);
  border-radius: 10px;
  box-shadow: var(--logo-shadow);
}

.brandName{
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.2px;
}

.navlinks{
  display:flex;
  gap: clamp(8px, 1.3vw, 18px);
  font-weight: 550;
  color: var(--muted);
}
.navlinks a{
  padding: clamp(5px, 0.75vw, 10px) clamp(7px, 1vw, 14px);
  border-radius: 999px;
}
.navlinks a:hover{ color: var(--text); }

@media (max-width: 1200px){
  .navlinks{
    font-size: clamp(14px, 1.28vw, 16px);
  }
}

.ctaRow{ display:flex; gap: 10px; }

/* buttons — rounded pill style with transitions */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 22px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: var(--btn-bg);
  color: var(--btn-text);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover{
  background: var(--btn-bg-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8,26,43,.12);
}

.btn.primary{
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(17,138,178,.30);
}
.btn.primary:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(17,138,178,.42);
}

/* Phone display in header (desktop: icon + number, not a button) */
.phoneLink{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1;
}

.phoneIcon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
}

.phoneIconImg{
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.phoneText{
  font-size: 14px;
  letter-spacing: .2px;
  white-space: nowrap;
}

.phoneTap{ display: none; }
.phoneLink[title]{ cursor: default; }

@media (max-width: 980px){
  .phoneText{ display: none; }

  .phoneLink{
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: var(--btn-bg);
  }

  .phoneTap{
    display: block;
    position: absolute;
    inset: 0;
  }
}

/* ---------- HERO ---------- */

.hero{ padding: 0 0 18px; }

/* Break out of any padded .wrap to go full viewport width */
.heroShell{
  position: relative;
  height: 760px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.heroMedia{
  position: absolute;
  inset: 0;
  will-change: transform;
}

.heroMedia img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 60% 30%;
  transform: translateY(0);
  will-change: transform;
}

/* no overlay */
.heroShell::before{ display: none; }

/* overlay text block — aligns to .wrap */
.heroOverlay{
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(20px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
  background: none;
  max-width: var(--max);
}

/* HERO TYPOGRAPHY (keep widths as they were) */
.heroKicker{
  margin: 0 0 16px;	
  font-size: 13px;
  font-weight: 800;
  color: var(--muted-2);
  letter-spacing: .2px;
  text-transform: none;
}
@media (max-width: 1134px){
  .heroKickerSep{ display: none; }
  .heroKickerBreak{
    display: block;
    margin-top: 2px;
  }
}
@media (max-width: 817px){
  .heroKickerLine2{
    display: block;
    margin-top: 2px;
  }
  .heroKickerJoin{ display: none; }
  .heroKickerSep{ display: inline; }
  .heroKickerBreak{
    display: inline;
    margin-top: 0;
  }
}
@media (max-width: 606px){
  .heroKickerBoat,
  .heroKickerExpWord{
    display: none;
  }
}

.heroTitle{
  margin: 0 0 16px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.8px;
  /* allow your <br> to control breaks */
  max-width: 26ch;
}
.heroTitleTag{
  display: block;
  margin-top: 14px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  opacity: .9;
  letter-spacing: .02em;
}
@media (min-width: 1268px){
  .heroTitleTag{
    font-size: 20px;
  }
}

.heroSub{
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 650;
  max-width: 48ch;
}
@media (min-width: 981px){
  .heroKicker{ margin-bottom: 22px; }
  .heroTitle{  margin-bottom: 22px; }
  .heroSub{    margin-bottom: 22px; }
}

.heroActions{
  display:flex;
  gap: 10px;
}
/* Make mobile hero prioritize CTA */

/* === HERO GLASS (per-element: kicker / h1 / paragraph) === */
.heroGlass{
  display: block;           /* keep your normal layout */
  width: fit-content;       /* ✅ shrink-wrap */
  max-width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.34);
  border: 1px solid rgba(255,255,255,.48);
  box-shadow: 0 10px 26px rgba(8,26,43,.18);
  /* keep face crisp */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
/* DESKTOP DEFAULT */
.g-kicker{
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.g-title { width: 50%; max-width: 26ch; }
.g-sub   { width: 50%; max-width: 65ch; }

@media (max-width: 1134px){
  .g-kicker{
    width: fit-content;
    max-width: 100%;
  }
}

@media (max-width: 980px){
	.g-kicker{
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  	.g-title {
    width: 50%;
    max-width: 450px;
  }
  	.g-sub {
    width: 50%;
    max-width: 450px;
  }
}


/* keep glass clean */
.heroKicker,
.heroTitle,
.heroSub{
  text-shadow: none !important;
}

/* keep button spacing consistent (but don't redefine widths) */
.heroActions{ margin-top: 14px; }

/* Hero title styling */
.heroTitleDesktop{ display: inline; }
.heroTitleDesktopSmall{
  font-size: 1em;
  font-weight: 700;
}

@media (max-width: 980px){
  .heroShell{ min-height: 480px; max-height: 600px; }

  .heroTitle{
    font-size: clamp(30px, 4.2vw, 44px);

  }
  .heroTitleTag{
    font-size: clamp(16px, 1.8vw, 18px);
  }
}
@media (min-width: 823px) and (max-width: 980px){
  .heroShell{
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .heroOverlay{
    /* One proportional spacing value for top, between blocks, and bottom. */
    --hero-glass-gap: clamp(8px, 1.2vw, 12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: var(--hero-glass-gap);
    padding-bottom: var(--hero-glass-gap);
  }
  .heroOverlay > *{
    margin-bottom: 0;
  }
  .heroOverlay > * + *{
    margin-top: var(--hero-glass-gap);
  }
}
@media (max-width: 822px){
  .heroKicker,
  .heroTitle,
  .heroSub{
    margin-bottom: 20px;
  }
  .g-sub{
    width: 100%;
    max-width: none;
    background: rgba(255,255,255,.48);
    border-color: rgba(255,255,255,.62);
  }
  .g-title {
    width: fit-content;
    max-width: 100%;
    min-width: 0;
  }
  .heroTitle{
    font-size: clamp(26px, 5.8vw, 34px);
  }
}
@media (max-width: 1075px){
  .heroTitleTagBreak{
    display: block;
    margin-top: 4px;
  }
}
.heroCtaStack{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.32);
  border: 1px solid rgba(255,255,255,.48);
  box-shadow: 0 10px 24px rgba(8,26,43,.18);	
}

.heroPriceNote{
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,.75);
  text-align: center;
  width: 100%;
}
.heroPriceNoteSub{
  display: block;
  text-align: center;
  font-size: 12px;
  width: 100%;
}
/* ---------- FEATURE SPLIT ---------- */
.feature{ padding: 26px 0 18px; }

.featureGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  /* NEW: subtle “lift” */
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  padding: clamp(18px, 2vw, 26px);
  box-shadow: 0 18px 55px rgba(8,26,43,.12);	
}

.featureImg{
  position: relative;
  cursor: pointer;
}
.featureImgTitle{
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  pointer-events: none;
}

.featureImg img{
  width:100%;
  height: auto;
  border-radius: 16px;
  box-shadow: none;
  display: block;
}

.featureCopy h2{
  margin:0 0 8px;
  font-size: clamp(26px, 2.4vw, 31px);
  letter-spacing: -0.4px;
}

.lead{
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 650;
}

.bullets{
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--text);
  font-weight: 650;
}
.bullets li{ margin: 6px 0; }

.fine{
  margin: 0;
  color: var(--muted-2);
  font-weight: 650;
  font-size: 13px;
}

/* ---------- ICONIC WATERS ---------- */
.IconicWatersTiles{
  padding: 16px 0 10px;
}
.IconicWatersTiles > .wrap{
  padding-left: clamp(18px, 2vw, 26px);
  padding-right: clamp(18px, 2vw, 26px);
}
.IconicWatersTiles .TilesGrid{ gap: 14px; }
.IconicWatersTiles .Tile{
  position: relative;
  /* 16:9 cards need to be wider than 5:4 cards to match height */
  flex: 0 0 calc((100% - 42px) * 16 / 45);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.IconicWatersTiles .Tile:hover,
.ExperiencesTiles .Tile:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 18px -12px rgba(8,26,43,.35);
}
.IconicWatersTiles .Tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.Tile:hover img{ transform: scale(1.04); }
.IconicWatersTiles .Tile::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 65%, rgba(0,0,0,.68) 100%);
}
/* ---------- TILES GRID ---------- */
.ExperiencesTiles{
  padding: 18px 0 28px;
  margin-top: 12px;
}
.ExperiencesTiles > .wrap{
  background: #fff;
  border-left: 1px solid rgba(15,28,39,.08);
  border-right: 1px solid rgba(15,28,39,.08);
  padding-left: clamp(18px, 2vw, 26px);
  padding-right: clamp(18px, 2vw, 26px);
}
.ExperiencesTiles > .wrap:first-child{
  border-top: 1px solid rgba(15,28,39,.08);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  padding-top: 16px;
}
.ExperiencesTiles > .wrap:last-child{
  border-bottom: 1px solid rgba(15,28,39,.08);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  box-shadow: 0 10px 28px rgba(8,26,43,.08);
  padding-bottom: 16px;
}
.tilesSectionHead{
  text-align: center;
  padding-bottom: 10px;
  --tiles-title-size: clamp(28px, 2.6vw, 36px);
  --tiles-sub-ratio: 0.5;
}
.tilesSectionTitle{
  margin: 0 0 6px;
  font-size: var(--tiles-title-size);
  letter-spacing: -0.4px;
}
.tilesSectionSubheading{
  margin: 0 auto;
  max-width: 90ch;
  color: var(--muted-2);
  font-weight: 500;
  font-size: calc(var(--tiles-title-size) * var(--tiles-sub-ratio));
}
.TilesTItles{
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.center{ margin-left:auto; margin-right:auto; max-width: 90ch; }

/* Bridge line container */
.curatedTagline{
  margin: 12px auto 42px;
  text-align: center;
}

/* The badge */
.curatedTagline em{
  display: inline;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(15,28,39,.6);
}

/* Mobile */
@media (max-width: 980px){
  .IconicWatersTiles .Tile{ flex-basis: calc((100% - 14px) * 32 / 45); }
  .curatedTagline{ margin: 10px auto 30px; }
  .curatedTagline em{
    font-size: 15px;
  }
}

.TilesGrid{
  display:flex;
  gap: 14px;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none;
  scroll-padding-inline: 0;
  scroll-behavior: auto;
  overscroll-behavior-x: contain;
}
.TilesGrid::-webkit-scrollbar{
  display: none;
}
.tilesViewport{
  padding-left: clamp(24px, 3vw, 36px);
  padding-right: clamp(24px, 3vw, 36px);
  box-sizing: border-box;
  background: transparent;
}
.tilesSlider{
  margin-top: 0;
  padding-top: 12px;
}
.tilesSliderTrack{
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.32);
  background: linear-gradient(180deg, rgba(255,255,255,.36) 0%, rgba(255,255,255,.18) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(10,28,43,.12),
    0 8px 24px rgba(9,27,43,.12);
  backdrop-filter: blur(8px) saturate(135%);
  -webkit-backdrop-filter: blur(8px) saturate(135%);
  overflow: hidden;
}
.tilesSliderThumb{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 28%;
  min-width: 56px;
  border-radius: 999px;
  border: 1px solid rgba(82,198,236,.62);
  background: linear-gradient(90deg, rgba(20,184,230,.68) 0%, rgba(15,159,202,.6) 100%);
  box-shadow:
    inset 0 1px 0 rgba(224,250,255,.6),
    0 3px 10px rgba(9,27,43,.2);
  backdrop-filter: blur(10px) saturate(145%);
  -webkit-backdrop-filter: blur(10px) saturate(145%);
  transform: translateX(0);
}
.tilesSlider.is-hidden{
  display: none;
}

.bookingPreviewOverlay{
  position: fixed;
  inset: 0;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8,16,26,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  overscroll-behavior: contain;
}
.bookingPreviewCard{
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 60px rgba(5,21,36,.28);
  padding: 20px;
}
.bookingPreviewCard h3{
  margin: 0 0 8px;
  font-size: clamp(1.12rem, 2.8vw, 1.36rem);
}
.bookingPreviewSub{
  margin: 0;
  color: #3f5367;
}
.bookingPreviewBody{
  display: grid;
  gap: 14px;
}
.bookingPreviewHead{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.bookingPreviewPrice{
  font-weight: 800;
  color: #0d2b45;
  font-size: 1.2rem;
}
.bookingPreviewPrice.is-hidden{
  display: none;
}
.bookingPreviewMediaRow{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
}
.bookingPreviewCopy p{
  margin: 0 0 12px;
  color: #2b3e51;
}
.bookingPreviewCopy h4{
  margin: 8px 0 6px;
  color: #0d2b45;
}
.bookingPreviewCopy ul{
  margin: 0 0 12px 18px;
  padding: 0;
  color: #2b3e51;
}
.bookingPreviewFootnote{
  font-size: .95rem;
  color: #475f74;
}
.bookingPreviewImageWrap{
  align-self: start;
}
.bookingPreviewImageWrap img{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(13,32,49,.12);
  display: block;
}
.bookingPreviewOptions{
  border-top: 1px solid rgba(13,32,49,.12);
  padding-top: 12px;
}
.bookingPreviewOptions.is-hidden{
  display: none;
}
.bookingPreviewDeparture{
  margin-top: 12px;
  border-top: 1px solid rgba(13,32,49,.12);
  padding-top: 12px;
}
.bookingPreviewDeparture.is-hidden{
  display: none;
}
.bookingPreviewOption{
  display: grid;
  grid-template-columns: 18px minmax(0,1fr);
  gap: 10px;
  align-items: start;
  margin: 8px 0;
}
.bookingPreviewOption.is-locked-out{
  opacity: .46;
}
.bookingPreviewOptionText{
  display: grid;
  gap: 2px;
}
.bookingPreviewOptionTextInline{
  display: block;
}
.bookingPreviewOptionTextInline strong,
.bookingPreviewOptionTextInline em{
  display: inline;
}
.bookingPreviewOptionText strong{
  color: #0d2b45;
}
.bookingPreviewOptionText em{
  color: #4a6175;
  font-style: normal;
}
.bookingPreviewAreaLockHint{
  color: #4a6175;
  font-weight: 500;
  font-size: .93em;
}
.bookingPreviewNote{
  margin-top: 12px;
  border-top: 1px solid rgba(13,32,49,.12);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}
.bookingPreviewTextarea{
  width: 100%;
  border: 1px solid rgba(13,32,49,.2);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: #0d2b45;
  background: rgba(255,255,255,.95);
  resize: vertical;
  min-height: 84px;
  box-sizing: border-box;
}
.bookingPreviewTextarea:focus{
  outline: none;
  border-color: var(--accent);
}
.bookingPreviewSummary{
  border: 1px solid rgba(13,32,49,.12);
  border-radius: 12px;
  padding: 10px 12px 12px;
  margin-top: 24px;
  display: grid;
  gap: 8px;
  color: #0d2b45;
}
.bookingPreviewSummaryMetrics{
  display: grid;
  grid-template-columns: max-content 80px max-content;
  grid-template-rows: auto auto;
  gap: 6px 10px;
  width: max-content;
  margin: 0 auto;
  align-items: center;
}
.bookingPreviewSummaryMetricRow{
  display: contents;
}
.bookingPreviewSummaryLabel{
  color: #334b60;
  grid-column: 1;
  font-weight: 600;
}
.bookingPreviewSummaryValue{
  grid-column: 2;
  justify-self: start;
  display: block;
  width: 80px;
  text-align: center;
}
.bookingPreviewSummarySuffix{
  color: #4a6175;
  font-size: .92rem;
  white-space: nowrap;
  grid-column: 3;
  justify-self: start;
}
.bookingPreviewSharedGuests{
  margin-top: 0;
}
.bookingPreviewSharedGuests.is-hidden{
  display: none;
}
.bookingPreviewSharedGuestsLabel{
  color: #334b60;
  font-weight: 600;
  grid-column: 1;
  justify-self: end;
}
.bookingPreviewGuestsSelect{
  grid-column: 2;
  justify-self: start;
  width: 80px;
  min-width: 80px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(13,32,49,.22);
  background: #fff;
  color: #0d2b45;
  font: inherit;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
}
.bookingPreviewGuestsSelect:disabled{
  opacity: .6;
  cursor: not-allowed;
}
.bookingPreviewSummaryCta{
  display: flex;
  justify-content: center;
  margin-top: 2px;
}
.bookingPreviewSummary strong{
  font-size: 1.06rem;
}
.bookingPreviewContinueBtn{
  min-height: 52px;
  min-width: 184px; /* ~20-30% larger than Back */
  width: min(100%, 520px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.06rem;
}
.bookingPreviewContinueLock{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  line-height: 1;
}
.bookingPreviewContinueLock svg{
  width: 16px;
  height: 16px;
  fill: #fff;
  display: block;
}
.bookingPreviewActions{
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bookingPreviewActions .btn.ghost{
  min-width: 138px;
}
.bookingPreviewStatusOverlay{
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7,19,31,.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: all;
}
.bookingPreviewStatusOverlay[hidden]{
  display: none;
}
.bookingPreviewStatusPanel{
  width: min(560px, calc(100% - 28px));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  padding: 14px;
}
.bookingPreviewStatusPanel.is-error{
  border-color: rgba(230,140,60,.35);
  background: #fff5ee;
}
.bookingPreviewStatus{
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0d2b45;
}
.bookingPreviewProgress{
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13,43,69,.14);
  overflow: hidden;
}
.bookingPreviewProgressFill{
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8e6 0%, #0e9ec4 100%);
  transition: width .25s ease;
}
.bookingPreviewProgressSteps{
  margin-top: 10px;
  display: grid;
  gap: 6px;
}
.bookingPreviewProgressStep{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #577088;
  font-weight: 600;
}
.bookingPreviewProgressStep.is-active{
  color: #0d2b45;
}
.bookingPreviewProgressStep.is-done{
  color: #0f6f43;
}
.bookingPreviewProgressIcon{
  width: 16px;
  text-align: center;
  font-weight: 800;
}
.bookingPreviewStatusHint{
  margin: 10px 0 0;
  color: #204158;
  font-size: .93rem;
  font-weight: 600;
}
.bookingPreviewErrorActions{
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.bookingPreviewErrorActions .btn{
  width: auto;
}
.bookingPreviewStatus.is-error{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  color: #c05a00;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}
.bookingPreviewErrorIcon{
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5a623;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bookingPreviewErrorText{
  flex: 1;
}
@media (max-width: 560px){
  .bookingPreviewSummaryCta{
    justify-content: stretch;
  }
  .bookingPreviewContinueBtn{
    width: 100%;
    min-width: 0;
  }
  .bookingPreviewActions{
    margin-top: 10px;
  }
  .bookingPreviewActions .btn.ghost{
    align-self: center;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #173a57;
    text-decoration: underline;
    text-underline-offset: 3px;
    box-shadow: none;
  }
  .bookingPreviewActions .btn.ghost:hover{
    background: transparent;
    transform: none;
    box-shadow: none;
  }
}
@media (max-width: 820px){
  .bookingPreviewMediaRow{
    grid-template-columns: minmax(0, 1fr);
  }
  .bookingPreviewImageWrap{
    order: -1;
  }
}

.ExperiencesTiles .Tile{
  position: relative;
  flex: 0 0 calc((100% - 42px) / 4);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease;
  scroll-snap-align: start;
}

.ExperiencesTiles .Tile img{
  width:100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.ExperiencesTiles .Tile::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
  border-radius: 14px;
}

.vibeLabel{
  position:absolute;
  left: 14px;
  bottom: 13px;
  z-index: 1;
  padding: 0;
  background: none;
}

.expLightbox[hidden]{
  display: none;
}
.expLightbox{
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.expLightboxBackdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,20,30,.58);
}
.expLightboxDialog{
  position: relative;
  width: min(1070px, 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 58px rgba(8,26,43,.32);
}
.expLightboxScroll{
  width: 100%;
  height: auto;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  overscroll-behavior: contain;
  touch-action: pan-x;
}
.expLightboxScroll::-webkit-scrollbar{
  display: none;
}
.expLightboxSlide{
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.expLightboxSlide img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 980px) and (orientation: portrait){
  .expLightboxSlide img{
    aspect-ratio: 4 / 5;
  }
}
@media (max-width: 980px) and (orientation: landscape){
  .expLightbox{
    padding: 0;
  }
  .expLightboxDialog{
    width: 100%;
    border-radius: 0;
  }
}
.expLightboxGlass{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 10px 28px rgba(8,26,43,.20);
  backdrop-filter: blur(5px);
  touch-action: none;
  pointer-events: none;
}
.expLightboxGlass h3{
  margin: 0 0 6px;
  font-size: clamp(24px, 2.8vw, 34px);
  color: #0f2235;
}
.expLightboxGlass p{
  margin: 0;
  font-size: 15px;
  font-weight: 520;
  color: rgba(15,28,39,.86);
}
@media (hover: none) and (pointer: coarse) and (max-width: 629px), (hover: none) and (pointer: coarse) and (max-height: 560px){
  .expLightbox{
    padding: 0;
  }
  .expLightboxDialog{
    width: 95%;
  }
  .expLightboxGlass{
    max-height: 68px;
    overflow: hidden;
    padding-top: 12px;
    pointer-events: none;
  }
  .expLightboxGlass h3{
    margin: 0;
    display: block;
    position: relative;
    width: 100%;
    min-height: 34px;
    pointer-events: auto;
    cursor: pointer;
  }
  .expLightboxGlass h3::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(15,34,53,.82);
    border-bottom: 2px solid rgba(15,34,53,.82);
    transform: translate(-50%, -50%) rotate(-135deg);
    opacity: .9;
    transition: transform .2s ease, opacity .2s ease;
  }
  .expLightboxGlass p{
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
  }
  .expLightboxGlass.is-open{
    max-height: min(58vh, 340px);
    overflow: auto;
    padding-top: 14px;
    pointer-events: none;
  }
  .expLightboxGlass.is-open h3{
    margin: 0 0 6px;
  }
  .expLightboxGlass.is-open:not(.is-desc-large) h3::after{
    width: 15px;
    height: 15px;
    border: 0;
    background: center / contain no-repeat url("../images/double-chevron-up.svg");
    transform: translate(-50%, -50%);
    opacity: .9;
  }
  .expLightboxGlass.is-open.is-desc-large h3::after{
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(15,34,53,.82);
    border-bottom: 2px solid rgba(15,34,53,.82);
    background: none;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: .9;
  }
  .expLightboxGlass.is-open p{
    display: block;
    max-height: 240px;
    opacity: 1;
    margin: 0;
  }
  .expLightboxGlass.is-desc-large p{
    font-size: 17px;
    line-height: 1.55;
  }
}
@media (hover: none) and (pointer: coarse) and (max-width: 629px) and (orientation: portrait){
  .expLightboxGlass h3::after{
    left: auto;
    right: 2px;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
  }
  .expLightboxGlass.is-open:not(.is-desc-large) h3::after{
    width: 15px;
    height: 15px;
    border: 0;
    background: center / contain no-repeat url("../images/double-chevron-up.svg");
    transform: translateY(-50%);
    opacity: .9;
  }
  .expLightboxGlass.is-open.is-desc-large h3::after{
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(15,34,53,.82);
    border-bottom: 2px solid rgba(15,34,53,.82);
    background: none;
    transform: translateY(-50%) rotate(45deg);
  }
}
.expLightboxClose{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 999px;
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.82);
  color: #10253a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
body.lightbox-open{
  overflow: hidden;
}

/* ---------- GOOGLE REVIEWS SNIPPET ---------- */
.reviewsSnippet{
  padding: 0 0 30px;
}
.reviewsSnippetInner{
  /* Same outer width as .ExperiencesTiles > .wrap (site content rail) */
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  max-width: none;
  margin: 0 auto;
  /* Match ExperiencesTiles inner horizontal inset */
  padding: 14px clamp(18px, 2vw, 26px) 16px;
}
.reviewsSnippetTitle{
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.4px;
  color: #0f2235;
  text-align: center;
  justify-self: center;
}
.reviewsSnippetHead{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 12px;
}
.reviewsSnippetBrand{
  display: flex;
  align-items: center;
  justify-self: start;
}
.reviewsSnippetKicker{
  margin: 0;
  gap: 6px;
  line-height: 1;
  font-size: 0.9rem;
  font-weight: 700;
  color: #101820;
  display: flex;
  align-items: center;
}
.reviewsSnippetRating{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  color: #111;
}
.reviewsSnippetRating strong{
  font-size: 1.05rem;
  font-weight: 700;
}
.reviewsSnippetStars{
  color: #f2b01e;
  letter-spacing: .6px;
  font-size: 16px;
  line-height: 1;
}
.reviewsSnippetCount{
  color: #7a848f;
  font-size: .96rem;
}
.reviewsSnippetBtn{
  justify-self: end;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid #d7e8fd;
  color: #1a73e8;
  background: #eaf2ff;
  box-shadow: none;
}
.reviewsSnippetBtn:hover,
.reviewsSnippetBtn:focus-visible{
  transform: none;
  color: #155dc2;
  background: #deecff;
  border-color: #cadeff;
  box-shadow: 0 1px 0 rgba(26,115,232,.08);
}
.reviewsSnippetTable{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.reviewsSnippetCard{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(8,26,43,.10);
  border-radius: 12px;
  padding: 12px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviewsSnippetCardStars{
  margin: 0;
  color: #f2b01e;
  letter-spacing: .8px;
  font-size: .95rem;
  line-height: 1;
}
.reviewsSnippetQuote{
  margin: 0;
  color: #233b50;
  line-height: 1.5;
  font-size: .98rem;
  font-weight: 500;
}
.reviewsSnippetMeta{
  margin: auto 0 0;
  color: var(--muted-2);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* ---------- BOOKING BAND ---------- */
.booking{
  position: relative;
  padding: 26px 0 30px;
  overflow: hidden;
}

.bookingBg{
  position:absolute;
  inset:0;
  z-index:0;
}
.bookingBg img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.10) contrast(1.05);
  border-radius: 0;
}

.booking::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.30);
  z-index:1;
}

.bookingInner{
  position: relative;
  z-index: 2;
  text-align:center;
}

.bookingTitle{
  margin: 0;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.4px;
  color: #0f2235;
  text-shadow: 0 1px 2px rgba(255,255,255,.5);
  display: block;
}

.bookingKicker{
  margin: 0;
  color: #223a50;
  font-size: 15px;
  font-weight: 500;
  display: block;
  text-align: center;
  line-height: 1.35;
}
.bookingKickerSub{
  display: block;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.bookingHeadingGlass{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto 14px;
  padding: 10px 60px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 16px rgba(8,26,43,.10);
}

.bookingForm{
  display:grid;
  grid-template-columns: minmax(175px, .96fr) minmax(148px, .78fr) minmax(0, 1.14fr) minmax(150px, .90fr) minmax(90px, .42fr);
  gap: 10px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 34px rgba(8,26,43,.14);
}

.bookingFormTitle{
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  margin-bottom: 4px;
}

.field{ text-align:left; display:flex; flex-direction:column; gap: 6px; }
@media (max-width: 900px){
  .reviewsSnippetInner{
    padding: 14px clamp(18px, 2vw, 26px);
  }
  .reviewsSnippetHead{
    grid-template-columns: 1fr;
  }
  .reviewsSnippetTitle{
    grid-row: 1;
  }
  .reviewsSnippetBrand{
    grid-row: 2;
    align-items: center;
    justify-self: center;
  }
  .reviewsSnippetBtn{
    grid-row: 3;
    justify-self: center;
  }
  .reviewsSnippetTable{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px){
  .reviewsSnippetHead{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .reviewsSnippetTitle{
    text-align: center;
  }
  .reviewsSnippetBrand{
    align-items: center;
    justify-self: center;
  }
  .reviewsSnippetKicker{
    justify-content: center;
    text-align: center;
  }
  .reviewsSnippetBtn{
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}
.field.field-date,
.field.field-charter,
.field.field-experience,
.field.field-time-slot,
.field.field-guests{
  width: 100%;
  max-width: none;
  justify-self: stretch;
}
.field.field-guests{
  position: relative;
}
.bookingForm select[name="guests"].guestsNativeHidden{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.guestsCustomTrigger{
  width: 100%;
  min-height: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
  border-radius: 10px;
  color: #0f2235;
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px 30px;
  position: relative;
  cursor: pointer;
}
.guestsCustomTrigger.is-placeholder{
  color: #8c97a3;
}
.guestsCustomTrigger::after{
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #6b7785;
  border-bottom: 2px solid #6b7785;
  transform: translateY(-60%) rotate(45deg);
}
.field.field-guests.is-open .guestsCustomTrigger{
  border-color: var(--accent);
}
.guestsCustomMenu{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 10030;
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(8,26,43,.18);
  padding: 4px;
}
.guestsCustomOption{
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: #0f2235;
  text-align: center;
  line-height: 1.2;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.guestsCustomOption:hover{
  background: rgba(17,138,178,.10);
}
.guestsCustomOption.is-selected{
  background: #0a6fcc;
  color: #fff;
}
.guestsCustomOption:disabled{
  color: #9da8b3;
  cursor: not-allowed;
  background: transparent;
}
.field.field-subtotal .fieldValue{
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(240,246,252,.92);
  font-weight: 700;
  border-radius: 10px;
  box-sizing: border-box;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  height: 42px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.field.field-subtotal{
  grid-column: 1 / -1;
  align-self: start;
  width: 100%;
  max-width: 160px;
  justify-self: center;
}
.field.field-subtotal .fieldLabel{
  text-align: center;
  padding-left: 0;
  font-weight: 700;
}
.field.field-subtotal .fieldSubnote{
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted-2);
  padding-left: 0;
  text-align: center;
  font-style: italic;
}
.fieldLabel{
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-2);
  padding-left: 3px;
}

select,
.bookingForm input[type="date"],
.bookingForm input[type="number"],
.bookingForm input[type="text"],
.bookingForm input[type="email"],
.bookingForm input[type="tel"]{
  width:100%;
  max-width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  transition: border-color .15s;
  min-height: 42px;
  height: 42px;
}
.bookingForm input[type="date"]::-webkit-datetime-edit,
.bookingForm input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.bookingForm input[type="date"]::-webkit-datetime-edit-text,
.bookingForm input[type="date"]::-webkit-datetime-edit-month-field,
.bookingForm input[type="date"]::-webkit-datetime-edit-day-field,
.bookingForm input[type="date"]::-webkit-datetime-edit-year-field{
  font: inherit;
  color: inherit;
}
.bookingForm input[type="date"]:required:invalid{
  color: #8c97a3;
}
.bookingForm input[type="date"]:required:invalid::-webkit-datetime-edit{
  color: #8c97a3;
}
.bookingForm select:required:invalid{
  color: #8c97a3;
}
.bookingForm select option{
  color: #0f2235;
}
.bookingForm select option[value=""]{
  color: #8c97a3;
}
select:focus,
.bookingForm input[type="date"]:focus,
.bookingForm input[type="number"]:focus,
.bookingForm input[type="text"]:focus,
.bookingForm input[type="email"]:focus,
.bookingForm input[type="tel"]:focus{ border-color: var(--accent); }

/* ── Custom date picker ─────────────────────────────────────────────────── */
.wcmCal{
  position: static;
}
.wcmCalTrigger{
  width: 100%;
  padding: 10px 36px 10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  text-align: left;
  min-height: 42px;
  height: 42px;
  cursor: pointer;
  color: #0f2235;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  transition: border-color .15s;
}
.wcmCalTrigger--empty{ color: #8c97a3; }
.wcmCalTrigger:focus{ border-color: var(--accent); }
.wcmCalTrigger:hover{ border-color: rgba(0,0,0,.22); }
.wcmCalTriggerText{ flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wcmCalTriggerIcon{ flex-shrink: 0; color: var(--accent); opacity: .7; }
.wcmCalTrigger--empty .wcmCalTriggerIcon{ color: #8c97a3; }

.wcmCalPopup{
  position: fixed;
  /* top/left set dynamically by JS via getBoundingClientRect */
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(8,26,43,.18);
  z-index: 9900;
  padding: 12px;
  user-select: none;
  -webkit-user-select: none;
  min-width: 260px;
}
.wcmCalHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wcmCalMonthLabel{
  font-weight: 700;
  font-size: 15px;
  color: #081A2B;
  flex: 1;
  text-align: center;
}
.wcmCalNav{
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--accent);
  padding: 0 8px;
  border-radius: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 36px;
  transition: background .12s;
}
.wcmCalNav:hover:not(:disabled){ background: rgba(17,138,178,.1); }
.wcmCalNav:disabled{ opacity: .3; cursor: default; }

.wcmCalGrid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.wcmCalDow{
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #8c97a3;
  padding: 4px 0 6px;
  letter-spacing: .02em;
}
.wcmCalDay{
  text-align: center;
  padding: 8px 2px;
  border: none;
  background: none;
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  color: #081A2B;
  transition: background .12s;
  line-height: 1;
}
.wcmCalDay--filler{ background: none; cursor: default; }
.wcmCalDay--past{
  color: #c8d2da;
  cursor: default;
}
.wcmCalDay:not(:disabled):not(.wcmCalDay--selected):hover{
  background: rgba(17,138,178,.12);
}
.wcmCalDay--today{
  font-weight: 700;
  outline: 1.5px solid var(--accent);
  outline-offset: -1.5px;
}
.wcmCalDay--selected{
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
}
/* ── end custom date picker ─────────────────────────────────────────────── */

.bookingBtn{
  white-space: nowrap;
  grid-column: 1 / -1;
  justify-self: center;
}

/* ---------- Weather widget (NWS) ---------- */
.wx-wrap{
  margin: 14px auto 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 24px rgba(8,26,43,.10);
}
.wx-head{
  margin-bottom:8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wx-loc-switch{
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
  white-space: nowrap;
}
.wx-wrap[data-collapsed="true"] .wx-loc-switch{
  display: none;
}
.wx-loc-label{
  opacity: .75;
}
.wx-loc-select{
  border: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233f4f61' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 12px 12px;
  color: var(--muted-2);
  border-radius: 0;
  padding: 0 22px 0 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.wx-toggle{
  border: 0;
  background: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.wx-title{
  font-size:13px;
  font-weight:700;
  opacity:.8;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--muted-2);
}
.wx-toggle-icon{
  width: 12px;
  height: 12px;
  opacity: .8;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233f4f61' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  transition: transform .15s ease;
}
.wx-wrap[data-collapsed="true"] .wx-cards,
.wx-wrap[data-collapsed="true"] .wx-foot{
  display: none;
}
.wx-wrap[data-collapsed="false"] .wx-toggle-icon{
  transform: rotate(180deg);
}
.wx-grid-scroll{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wx-cards{
  display:grid;
  grid-template-columns: 78px repeat(7, minmax(46px, 1fr));
  min-width: 560px;
  gap:2px;
  align-items: stretch;
}
.wx-labels{
  text-align:left;
  padding:8px 6px;
  border-radius:10px;
  background: #eef3f8;
  border: 1px solid rgba(0,0,0,.10);
  display:grid;
  grid-template-rows: repeat(7, minmax(0, 1fr));
  row-gap:5px;
  position: sticky;
  left: 0;
  z-index: 3;
}
.wx-label{
  font-size:10px;
  font-weight:700;
  color: var(--muted-2);
  opacity:.85;
  line-height:1.25;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.wx-day{
  text-align:center;
  padding:8px 6px;
  border-radius:10px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.06);
  display:grid;
  grid-template-rows: repeat(7, minmax(0, 1fr));
  row-gap:5px;
}
.wx-dow{
  font-size:12px;
  opacity:.8;
  font-weight:700;
  line-height:1.25;
}
.wx-cond{
  font-size:18px;
  line-height:1;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wx-temp{
  font-size:13px;
  font-weight:700;
  line-height:1.25;
}
.wx-day > div{
  display: flex;
  align-items: center;
  justify-content: center;
}
.wx-rain{
  font-size:13px;
  opacity:1;
  line-height:1.15;
  color: #0066a6;
  white-space:nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.wx-rain-drop{
  display: inline-block;
  line-height: 1;
  transform: translateY(-1px);
}
.wx-rain-value{
  line-height: 1;
}
.wx-rain-total{
  font-size:12px;
  opacity:1;
  color:#0a5c91;
  white-space:nowrap;
  line-height:1.2;
}
.wx-wind,
.wx-wave{
  font-size:12px;
  opacity:1;
  white-space:nowrap;
  line-height:1.2;
}
.wx-wave{
  color:#004f85;
}
.wx-foot{
  margin-top:8px;
  font-size:11px;
  opacity:.65;
  text-align: center;
}
.wx-skeleton{
  height:80px;
  border-radius:10px;
  background:linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.06), rgba(255,255,255,.03));
  background-size:200% 100%;
  animation:wxShimmer 1.2s infinite linear;
}
@keyframes wxShimmer{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}
@media (max-width: 664px){
  .wx-wrap{
    overflow-x: visible;
  }
  .wx-day{
    padding:8px 6px;
  }
  .wx-label{ font-size:9px; }
  .wx-temp{ font-size:12px; }
  .wx-dow{ font-size:10px; }
  .wx-wind,
  .wx-wave{
    font-size:11px;
    white-space: normal;
    line-height: 1.15;
  }
}

.bookingNote{
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--muted-2);
  padding-top: 6px;
  text-align:center;
}

/* ---------- HOW + FAQ + FOOTER ---------- */
.how{ padding: 24px 0; }
.how h2{ margin:0 0 10px; font-size: 28px; letter-spacing:-0.3px; }
.steps{
  margin:0;
  padding-left: 18px;
  color: var(--text);
}
.steps li{ margin: 8px 0; color: var(--muted); font-weight: 650; }
.steps b{ color: var(--text); }

.guidesHome{ padding: 8px 0 24px; }
.guidesHome h2{
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.3px;
}
.guidesHomeGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.guideHomeTile{
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8,26,43,.14);
  box-shadow: 0 10px 28px rgba(8,26,43,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.guideHomeTile img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.guideHomeTile::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,26,43,.72) 0%, rgba(8,26,43,.16) 46%, rgba(8,26,43,0) 72%);
}
.guideHomeTileTitle{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.guideHomeTile:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8,26,43,.16);
}
.guideHomeTile:hover img{
  transform: scale(1.04);
}
.guideHomeTile:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.faq{ padding: 10px 0 30px; }
.faq h2{ margin:0 0 10px; font-size: 28px; letter-spacing:-0.3px; }
details{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 10px 0;
  box-shadow: 0 4px 14px rgba(8,26,43,.06);
  transition: box-shadow .15s;
}
details[open]{ box-shadow: 0 6px 20px rgba(8,26,43,.10); }
summary{ cursor:pointer; font-weight: 900; }
details p{ margin: 10px 0 0; color: var(--muted); font-weight: 500; }

.footer{
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
}
.footerRow{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 12px;
}
.tiny{ font-size: 12px; color: var(--muted-2); font-weight: 650; }
.footerRow .tiny:first-child{ justify-self:start; }
.footerRow .tiny:last-child{ justify-self:end; text-align:right; }
.footerWaiverLink{
  justify-self:center;
  text-align:center;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footerWaiverLink:hover{ color: var(--text); }

@media (max-width: 760px){
  .guidesHomeGrid{
    grid-template-columns: 1fr;
  }
  .footerRow{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }
  .footerWaiverLink{
    order: 1;
  }
  .footerRow .tiny:last-child{
    order: 2;
  }
  .footerRow .tiny:first-child,
  .footerRow .tiny:last-child{
    text-align:center;
  }
  .footerRow .tiny:first-child{
    order: 3;
  }
}

@media (max-width: 980px){
  .nav{
    gap: clamp(6px, 1vw, 10px);
    padding: clamp(5px, 0.95vw, 10px) 0;
  }
  .ctaRow{
    gap: clamp(4px, 0.8vw, 8px);
  }
  .navlinks{
    display:flex;
    gap: clamp(3px, 0.8vw, 8px);
  }
  .navlinks a{
    padding: clamp(3px, 0.65vw, 6px) clamp(4px, 0.95vw, 9px);
    line-height: 1.1;
  }
  .featureGrid{ grid-template-columns: 1fr; }
  .ExperiencesTiles .Tile{ flex-basis: calc((100% - 14px) / 2); }
  .bookingForm{
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .bookingForm .field{
    width: 100%;
    max-width: 340px;
    min-width: 0;
    justify-self: center;
  }
  .bookingForm select,
  .wcmCalTrigger,
  .bookingForm input[type="date"],
  .bookingForm input[type="number"],
  .field.field-subtotal .fieldValue{
    width: 100%;
    max-width: 340px;
    min-width: 0;
    font-size: 18px;
  }
  .bookingForm input[type="date"]{
    -webkit-appearance: none;
    appearance: none;
    overflow: hidden;
  }
  .bookingBtn{
    width: auto;
  }
  .field.field-guests,
  .field.field-time-slot,
  .field.field-subtotal{
    width: 100%;
    max-width: 340px;
    justify-self: center;
  }
  .fieldLabel{
    font-size: 15px;
  }
}

@media (max-width: 832px){
  .navlinks a[href="#how"],
  .navlinks a[href="/#how"],
  .navlinks a[href="#iconic-waters"],
  .navlinks a[href="/#iconic-waters"],
  .navlinks a[href="#experiences"],
  .navlinks a[href="/#experiences"],
  .navlinks a[href="#faq"],
  .navlinks a[href="/#faq"]{ display:none; }
  .phoneText{
    display: inline;
    font-size: 13px;
  }
  .phoneLink{
    gap: 6px;
    padding: 10px 12px;
  }
}
@media (max-width: 618px){
  .phoneText{
    display: none;
  }
}


@media (min-width: 981px) and (max-width: 1200px){
  .ExperiencesTiles .Tile{ flex-basis: calc((100% - 28px) / 3); }
  .IconicWatersTiles .Tile{ flex-basis: calc((100% - 28px) * 64 / 135); }
}

@media (min-width: 981px){
  .bookingForm{
    /* Grow proportionally above 980px, capped at +100px total. */
    max-width: clamp(900px, calc(900px + (100vw - 980px) * 0.2), 1000px);
  }
  .wx-wrap{
    /* Match booking form desktop scaling. */
    max-width: clamp(900px, calc(900px + (100vw - 980px) * 0.2), 1000px);
  }
}

@media (max-width: 560px){
  .ExperiencesTiles .Tile{
    flex-basis: 86%;
    max-width: 340px;
  }
  .IconicWatersTiles .Tile{
    flex-basis: 100%;
    max-width: 480px;
  }
}

@media (min-width: 630px) and (max-width: 980px){
  .bookingForm{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 760px;
    justify-items: stretch;
    gap: 12px;
  }
  .wx-wrap{
    max-width: 760px;
  }
  .bookingForm .field{
    max-width: none;
  }
  .field.field-date{ grid-column: 1 / 4; }
  .field.field-charter{ grid-column: 4 / 7; }
  .field.field-experience{ grid-column: 1 / 4; }
  .field.field-time-slot{ grid-column: 4 / 6; justify-self: stretch; max-width: none; }
  .field.field-guests{ grid-column: 6 / 7; justify-self: stretch; max-width: none; }
  .bookingForm select,
  .bookingForm input[type="date"],
  .bookingForm input[type="number"],
  .field.field-subtotal .fieldValue{
    max-width: none;
  }
  .field.field-subtotal{
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 145px;
  }
  .bookingBtn{
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: center;
  }
}
