/* Base */
:root{
  /* Luxury / lifestyle palette (warm neutrals + deep ocean + soft brass) */
  --bg: #fff;                 /* white */
  --surface: #ffffff;         /* card surface */
  --text: rgba(14, 18, 22, .92);
  --muted: rgba(14, 18, 22, .70);
  --muted2: rgba(14, 18, 22, .58);
  --line: rgba(14, 18, 22, .10);
  --shadow: 0 18px 48px rgba(14, 18, 22, .10);
  --shadow2: 0 10px 26px rgba(14, 18, 22, .08);
  --radius: 18px;
  --radius2: 26px;
  --max: 1180px;

  --navy: #0f2230;            /* deep ocean */
  --navy2:#122b3b;
  --brass:#125294;            /* blue */
}

*{ box-sizing:border-box; }
img{
  display: block;
  max-width: 100%;
  height: auto;
}
html,body{
  margin:0;
  color:var(--text);
  overflow-x: hidden;
  /* Visible luxury gradients (warm sand + ocean shadow + brand pink) */
  background:
    radial-gradient(1200px 760px at 14% -8%, rgba(231,160,179,.26), transparent 62%),
    radial-gradient(1100px 760px at 92% 0%, rgba(15,34,48,.16), transparent 62%),
    radial-gradient(1100px 820px at 18% 112%, rgba(176,141,87,.20), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--bg) 40%, #fff 100%);
  font-family: var(--brand-font-body);
  line-height: 1.55;
}

/* Extra layer to ensure gradients remain visible even on some displays */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 70% 20%, rgba(231,160,179,.16), transparent 60%),
    radial-gradient(900px 560px at 20% 30%, rgba(15,34,48,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(246,241,232,.65) 55%, rgba(255,255,255,.0) 100%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  position:fixed; left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  border-radius: 10px; background: rgba(255,255,255,.12); outline: 2px solid rgba(255,255,255,.35);
  z-index: 9999;
}

.wrap{ max-width: var(--max); margin:0 auto; padding: 0 18px; }

/* Hero */
.hero{
  padding: 16px 0 0;
}

.hero-shell{
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(14,18,22,.10);
  box-shadow: var(--shadow);
  background: #F7F5F0;
}

.hero-controls{
  position:absolute;
  right: 10px;
  top: 10px;
  display:flex;
  gap: 8px;
  z-index: 3;
}

.iconbtn{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(14,18,22,.14);
  background: rgba(255,255,255,.85);
  color: var(--navy2);
  cursor: pointer;
  display:grid;
  place-items:center;
  backdrop-filter: blur(8px);
}
.iconbtn:hover{ background: rgba(255,255,255,.98); }

.hero-track{
  display:flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.24) transparent;
}
.hero-track::-webkit-scrollbar{ height: 10px; }
.hero-track::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.18); border-radius: 999px; }
.hero-track::-webkit-scrollbar-track{ background: transparent; }

.hero-slide{
  scroll-snap-align: start;
  min-width: 100%;
  height: min(520px, 58vw);
  max-height: 560px;
  padding: 0;
}

.mosaic{
  display:grid;
  height:100%;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f2eb;
  border: 1px solid rgba(14,18,22,.10);
  cursor: zoom-in;
}

.tile.big{ grid-row: 1 / span 2; grid-column: 1; }

.ph-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.01);
}

/* Lightweight placeholder until final images are selected. */
.tile::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 320px at 15% 20%, rgba(176,141,87,.14), transparent 60%),
    radial-gradient(520px 280px at 90% 10%, rgba(15,34,48,.08), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,0));
  z-index:0;
}
.tile img{ position: relative; z-index: 1; }

.hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 2;
}

.hero-title{
  position:absolute;
  left: 12px;
  right: auto;
  bottom: 14px;
  z-index: 4;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15,34,48,.38), rgba(0,0,0,.28));
  border: 1px solid rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  width: calc((100% - 24px - 10px) * 2 / 3);
  max-width: calc((100% - 24px - 10px) * 2 / 3);
  display: grid;
  gap: 10px;
}

.hero-title h1{
  margin: 0;
  font-size: clamp(26px, 3.0vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title p{
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  max-width: 64ch;
}

.activity-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.activity-hero-button{
  display: inline-flex;
  min-height: 42px;
  padding: 10px 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 10px;
  background: rgba(9,28,41,.54);
  color: #fff;
  font-family: var(--brand-font-display);
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
}

.activity-hero-button:hover,
.activity-hero-button:focus-visible{
  background: rgba(9,28,41,.78);
  text-decoration: none;
}

.activity-hero-button--primary{
  border-color: #e7a0b3;
  background: #c33040;
}

.hero-best-for{
  margin-top: 0;
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 8px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.hero-best-for .pill{
  padding: 4px 10px;
  font-size: inherit;
  line-height: 1.35;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.90);
  font-size: 12.5px;
  white-space: nowrap;
}

/* Content Layout and Shared Typography */
main{
  padding: 18px 0 40px;
}

.content-grid{
  display:grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "left";
  align-items: start;
  margin-top: 18px;
}

.content-grid--no-sidebar{
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "left";
}

.content-grid--no-sidebar .left-stack{
  grid-column: 1 / -1;
}

.content-grid > *{
  min-width: 0;
}

.panel{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}

.left{
  grid-area: left;
  padding: 18px;
  overflow-wrap: break-word;
}

.service-intro-booking{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-intro-booking--with-booking{
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
}

.service-intro-copy{
  min-width: 0;
  overflow-wrap: break-word;
}

.service-intro-copy > :first-child{
  margin-top: 0;
}

.service-inline-booking{
  min-width: 0;
}

.service-inline-booking[hidden]{
  display: none;
}

.service-booking-intro{
  padding: 16px;
  border: 1px solid rgba(14,18,22,.1);
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f9fb, #fff);
}

.service-booking-intro h2{
  margin: 5px 0 6px;
}

.service-booking-intro p{
  margin: 0;
  font-size: 14px;
}

.activity-reference-page .service-booking-ready .service-calendar-only:not(.is-open){
  display: none !important;
}

.service-calendar-only{
  scroll-margin-top: 18px;
}

.left-stack{
  grid-area: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-content: start;
}

.left-stack > *{
  min-width: 0;
}

.left-stack > .left{
  grid-area: auto;
}

.kicker{ color: var(--muted2); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }

h2{
  font-size: 20px;
  margin: 14px 0 8px;
  letter-spacing: -0.01em;
  color: rgba(14,18,22,.92);
}

h3{
  font-size: 16px;
  margin: 18px 0 8px;
  letter-spacing: -0.01em;
}

p{ margin: 8px 0 0; color: var(--muted); }

ul{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
li{ margin: 6px 0; }

.addons-panel{
  padding: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / 95%), #F7F5F0);
}

.addons-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.addons-column{
  min-width: 0;
}

.addons-column + .addons-column{
  border-left: 1px solid rgba(14,18,22,.10);
  padding-left: 18px;
}

.addons-title{
  margin: 4px 0 10px;
  font-size: 16px;
}

.addons-list,
.addons-links{
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  transition: max-height .32s ease;
}

.addons-list{
  display: grid;
  gap: 10px;
}

.addons-list li{
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(14,18,22,.08);
  background: rgba(255,255,255,.74);
  color: rgba(14,18,22,.78);
  font-size: 14px;
  line-height: 1.35;
}

.addons-links{
  display: grid;
  gap: 10px;
}

.addons-links li{
  margin: 0;
}

.addons-collapse{
  position: relative;
  padding-bottom: 12px;
}

.addons-collapse.is-collapsed{
  padding-bottom: 34px;
}

.addons-collapse.is-collapsed::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 64px;
  background: linear-gradient(180deg, rgba(246,241,232,0), rgba(246,241,232,.92) 55%, rgba(246,241,232,1));
  pointer-events: none;
}

.addons-link{
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  padding-right: 40px;
  border-radius: 12px;
  border: 1px solid rgba(14,18,22,.08);
  background: rgba(255,255,255,.74);
  color: rgba(14,18,22,.78);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.addons-link::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(14,18,22,.34);
  border-radius: 2px;
  background: transparent;
  transform: translateY(-50%);
}

.addons-link:hover{
  border-color: rgba(176,141,87,.38);
  background: rgba(255,255,255,.9);
  transform: translateX(1px);
  text-decoration: none;
}

.addons-toggle{
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(14,18,22,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(14,18,22,.12);
  color: rgba(14,18,22,.64);
  cursor: pointer;
  transform: translateX(-50%);
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}

.addons-toggle:hover{
  color: rgba(176,141,87,.92);
  border-color: rgba(176,141,87,.34);
  box-shadow: 0 12px 26px rgba(14,18,22,.16);
}

.addons-toggle:focus-visible{
  outline: none;
  color: rgba(176,141,87,.92);
  border-color: rgba(176,141,87,.44);
  box-shadow: 0 0 0 4px rgba(176,141,87,.16), 0 12px 26px rgba(14,18,22,.16);
}

.addons-toggle-chevron{
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .24s ease;
}

.addons-collapse.is-expanded .addons-toggle-chevron{
  transform: translateY(2px) rotate(-135deg);
}

/* Contact Form */
.contact-card{
  position: relative;
  overflow: hidden;
  padding: 22px 18px 18px;
  background: #F7F5F0;
}

.contact-card::before{
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #125294, #ca2f45, #125294);
}

.contact-card > *{
  position: relative;
  z-index: 1;
}

.divider{ height: 1px; background: rgba(255,255,255,.10); margin: 16px 0; }

table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 12px;
  overflow:hidden;
  border-radius: 16px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(255,255,255,.80);
}

/* Shared Tab Controls */
.itinerary-tabs{
  display:flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(14,18,22,.10);
}

.itinerary-tab{
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(14,18,22,.70);
  cursor: pointer;
  letter-spacing: .02em;
}

th, td{
  padding: 11px 10px;
  font-size: 13px;
  text-align:left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

th{
  color: rgba(14,18,22,.88);
  font-weight: 650;
  background: #E7EDF4;
}

tr:last-child td{ border-bottom: 0; }

.cal{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(255,255,255,.78);
  overflow:hidden;
  min-width: 0;
  position: relative;
  max-height: 980px;
  transition: max-height .28s ease;
}

.cal .cal-body{ padding: 10px 12px; }

.note{ color: var(--muted2); font-size: 12px; margin-top: 8px; }
.booking-deposit-note{
  margin-top: 0;
  font-size: 13px;
  color: rgba(14,18,22,.72);
  font-weight: 700;
}

/* Itinerary */
.itinerary-block{
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(14,18,22,.10);
  background: #F7F5F0;
}

.itinerary-block h3{
  margin: 6px 0 8px;
}

.itinerary-block > p{
  margin-top: 0;
  max-width: 62ch;
}

.itinerary-tabs{
  flex-wrap: wrap;
  margin-top: 14px;
  background: rgba(255,255,255,.74);
}

.itinerary-tab{
  flex: 1 1 120px;
  padding: 10px 12px;
}

.itinerary-tab[aria-selected="true"]{
  background: rgba(195,48,64);
  color: #fff;
  box-shadow: 0 10px 20px rgba(231,160,179,.16);
}

.itinerary-tab:hover{
  background: #E7EDF4;
}

.itinerary-panel{
  margin-top: 16px;
}

.timeline{
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 34px;
}

.timeline::before{
  content:"";
  position:absolute;
  top: 8px;
  bottom: 8px;
  left: 12px;
  width: 2px;
  background: #125294;
}

.timeline-item{
  position: relative;
  padding: 0 0 0 16px;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left: -28px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid var(--brass);
  box-shadow: 0 0 0 4px #E7EDF4;
}

.timeline-item::after{
  content:"";
  position:absolute;
  left: -14px;
  top: 14px;
  width: 14px;
  height: 2px;
  background: #125294;
}

.timeline-item h4{
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(14,18,22,.92);
  font-weight: 500;
}

.timeline-item p{
  margin: 0;
  font-size: 13px;
  color: rgba(14,18,22,.70);
}

.timeline-item.is-new-stop h4{
  font-weight: 900;
  color: #125294;
}

.timeline-item.is-new-stop::before{
  background: #125294;
  border-color: #ffffff;
  box-shadow: 0 0 0 4px #E7EDF4;
}

/* Gallery */
.service-media-slider{
  position: relative;
  margin: 28px 0 32px;
  border-radius: 18px;
  overflow: hidden;
  background: #071d33;
  border: 1px solid rgba(14,18,22,.12);
  box-shadow: 0 18px 42px rgba(10,31,52,.16);
}

.service-media-slider__track{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.service-media-slider__track::-webkit-scrollbar{
  display: none;
}

.service-media-slider__slide{
  flex: 0 0 100%;
  margin: 0;
  min-height: 280px;
  aspect-ratio: 16 / 9;
  scroll-snap-align: start;
}

.service-media-slider__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.service-media-slider__button{
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(7,29,51,.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.service-media-slider__button:hover,
.service-media-slider__button:focus-visible{
  background: rgba(255,255,255,.94);
  color: #071d33;
}

.service-media-slider__button--prev{ left: 16px; }
.service-media-slider__button--next{ right: 16px; }

.gallery{
  margin-top: 22px;
  padding: 18px;
}

.gallery-grid{
  margin-top: 12px;
  display:grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}

.thumb{
  appearance: none;
  width: 100%;
  padding: 0;
  position: relative;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  min-height: 96px;
}

.thumb:focus-visible,
.ph-img:focus-visible,
.service-media-slider__slide img:focus-visible{
  outline: 3px solid var(--accent, #e5b45b);
  outline-offset: 3px;
}

.thumb img{ width:100%; height:100%; object-fit: cover; display:block; filter: saturate(1.03) contrast(1.03); }

.thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.25) 100%);
  opacity: .65;
}

/* Activity Pages */
.hero-title .hero-best-for{
  margin-top: 12px;
}

.boat-section{
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(14,18,22,.10);
}

.boat-section-head{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.boat-section-head h3{
  margin: 6px 0 0;
}

.boat-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(246,241,232,.86);
}

.boat-filter{
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(14,18,22,.70);
  padding: 9px 11px;
  font-size: 12.5px;
  line-height: 1;
  cursor: pointer;
}

.boat-filter[aria-selected="true"]{
  background: #c33040;
  color: #fff;
  box-shadow: 0 10px 20px rgba(231,160,179,.16);
}

.boat-filter:hover{
  background: #E7EDF4;
}

.boat-filter[aria-selected="true"]:hover{
  background: #c33040;
}

.boat-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.boat-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 24px rgba(14,18,22,.07);
}

.boat-card[hidden]{
  display: none;
}

.boat-card img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f5f2eb;
}

.boat-card-body{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.boat-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 8px;
}

.boat-meta span{
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(18,82,148,.14);
  background: #E7EDF4;
  color: rgba(14,18,22,.72);
  font-size: 11px;
  line-height: 1.25;
}

.boat-card h4{
  margin: 0;
  color: rgba(14,18,22,.92);
  font-size: 16px;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.boat-card p,
.boat-card-copy{
  font-size: 13px;
  line-height: 1.45;
}

.boat-card-copy{
  margin-top: 4px;
  min-height: 5.8em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.boat-rate{
  margin-top: auto;
  padding-top: 12px;
  font-weight: 750;
  color: #125294;
  font-size: 13px;
}

.boat-detail-toggle{
  margin-top: 12px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #125294;
  color: #fff;
  padding: 11px 14px;
  font-family: var(--brand-font-display);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}

.boat-detail-toggle:hover,
.boat-detail-toggle:focus-visible{
  background: #0f4479;
  transform: translateY(-1px);
}

.boat-detail-toggle:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(18,82,148,.16);
}

.boat-detail{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(14,18,22,.10);
}

.boat-detail[hidden]{
  display: none;
}

.boat-detail ul{
  margin: 0;
  padding-left: 18px;
}

.boat-detail li{
  margin: 5px 0;
  font-size: 13px;
}

.boat-link{
  display: inline-flex;
  margin-top: 12px;
  color: #125294;
  font-weight: 700;
  font-size: 13px;
}

.activity-copy{
  margin-top: 22px;
  padding: 22px;
}

.activity-copy h2{
  margin-top: 22px;
}

.activity-copy h2:first-of-type{
  margin-top: 6px;
}

.activity-copy h2,
.activity-copy h3{
  margin-top: 20px;
  color: #125294;
}

.activity-copy p{
  max-width: none;
}

.activity-copy,
.boat-card-body{
  overflow-wrap: break-word;
}

.activity-copy a{
  color: #125294;
  font-weight: 700;
}

/* FareHarbor embed safety styling */
.fh-embed iframe{
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  min-height: 520px;
  background: transparent;
}

.fh-embed{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.service-calendar-only{
  margin-top: 0;
}


/* Responsive Adjustments */
@media (max-width: 980px){
  .content-grid{
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "left";
  }

  .service-intro-booking--with-booking{
    grid-template-columns: 1fr;
  }

  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .boat-section-head{
    grid-template-columns: 1fr;
    align-items: start;
  }
  .boat-filters{
    justify-content: flex-start;
    border-radius: 20px;
  }
  .hero-slide,
  .mosaic{
    display: contents;
  }
  .hero-track{
    align-items: stretch;
  }
  .tile,
  .mosaic .tile.big{
    flex: 0 0 100%;
    height: min(520px, 72vw);
    border-radius: 0;
    border: 0;
  }
  .hero-title{
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
  }
  .hero-best-for{
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-best-for::-webkit-scrollbar{ display: none; }
  .hero-best-for > span,
  .hero-best-for .pill{
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .addons-grid{
    grid-template-columns: 1fr;
  }
  .addons-column + .addons-column{
    border-left: 0;
    border-top: 1px solid rgba(14,18,22,.10);
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 560px){
  .wrap{
    padding-left: 10px;
    padding-right: 10px;
  }
  .left{
    padding: 14px;
  }
  .service-intro-booking{
    gap: 14px;
  }
  .service-inline-booking{
    margin-left: -6px;
    margin-right: -6px;
  }
  .tile,
  .mosaic .tile.big{
    height: min(540px, 118vw);
  }
  .hero-title{
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 12px;
    gap: 7px;
  }
  .hero-title h1{
    font-size: clamp(22px, 7vw, 30px);
  }
  .hero-title p{
    font-size: 13px;
    line-height: 1.45;
  }
  .activity-hero-actions{
    gap: 6px;
  }
  .activity-hero-button{
    min-height: 40px;
    padding: 9px 11px;
    font-size: 11px;
    letter-spacing: .06em;
  }
  .hero-best-for{
    font-size: 12px;
  }
  .pill{
    padding: 7px 9px;
    font-size: 11.5px;
  }
  .itinerary-tabs{
    border-radius: 20px;
  }
  .itinerary-tab{
    flex: 1 1 calc(50% - 8px);
  }
  .timeline{
    padding-left: 28px;
  }
  .timeline-item{
    padding-left: 12px;
  }
  .timeline-item::before{
    left: -23px;
  }
  .timeline-item::after{
    left: -9px;
    width: 10px;
  }
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .contact-submit{
    width: 100%;
    justify-self: stretch;
  }
  .addons-panel{
    padding: 16px;
  }
  .addons-list li{
    padding: 9px 11px;
  }
  .boat-grid{
    grid-template-columns: 1fr;
  }
  .boat-filter{
    flex: 1 1 calc(50% - 8px);
  }
  .activity-copy{
    padding: 18px;
  }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .service-media-slider{
    border-radius: 14px;
    margin: 22px 0 26px;
  }
  .service-media-slider__slide{
    min-height: 220px;
  }
  .service-media-slider__button{
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
  .service-media-slider__button--prev{ left: 10px; }
  .service-media-slider__button--next{ right: 10px; }
}

@media (prefers-reduced-motion: reduce){
  .hero-track{ scroll-behavior: auto !important; }
}


/* semrush-seo:start */
.seo-intent-section{margin-top:24px}
.seo-answer,.things-answer{font-size:clamp(1.05rem,1.6vw,1.25rem);line-height:1.65;color:#16202c}
.seo-planning-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin:22px 0}
.seo-planning-grid>div{padding:18px;border:1px solid rgba(14,18,22,.12);border-radius:14px;background:#f7f9fb}
.seo-planning-grid h3{margin-top:0}
.seo-topic-note{font-size:.92rem;color:#53606d}
.seo-related-grid{display:flex;flex-wrap:wrap;gap:10px;margin:14px 0 28px}
.seo-related-grid a{display:inline-flex;padding:10px 14px;border:1px solid rgba(14,18,22,.16);border-radius:999px;font-weight:700;text-decoration:none}
.seo-faq details{border-top:1px solid rgba(14,18,22,.13);padding:14px 0}
.seo-faq details:last-child{border-bottom:1px solid rgba(14,18,22,.13)}
.seo-faq summary{cursor:pointer;font-weight:700}
.seo-faq details p{margin-bottom:0}
@media(max-width:700px){.seo-planning-grid{grid-template-columns:1fr}}
.services-overview-copy .home-hero__secondary{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:10px 18px;border:1px solid rgba(14,18,22,.25);border-radius:6px;color:#0b1220;background:#fff;font-weight:700;text-decoration:none}
/* semrush-seo:end */

/* Screenshot-reference activity detail rebuild */
body.activity-reference-page{background:#fff;color:#263b41;font-family:var(--brand-font-body);font-size:15px;line-height:1.65;}
.activity-reference-page .hero{padding:0;background:linear-gradient(90deg,rgba(3,47,57,.8),rgba(3,47,57,.52) 58%,rgba(3,47,57,.22)),var(--activity-hero-image) center/cover no-repeat;}
.activity-reference-page .hero>.wrap{width:100%;max-width:none;padding:0;}
.activity-reference-hero{display:grid;width:min(100%,1180px);min-height:650px;margin:auto;padding:58px 18px;grid-template-columns:minmax(0,1fr) 430px;gap:58px;align-items:center;}
.activity-reference-page .hero-shell{display:flex;min-height:520px;align-items:center;overflow:visible;border:0;border-radius:0;background:transparent;box-shadow:none;}
.activity-reference-page .hero-controls,.activity-reference-page .hero-track,.activity-reference-page .hero-overlay{display:none!important;}
.activity-reference-page .hero-title{position:static;display:block;width:auto;max-width:690px;padding:0;border:0;border-radius:0;background:transparent;color:#fff;box-shadow:none;backdrop-filter:none;}
.activity-reference-page .hero-title::before{content:'Fort Lauderdale Activity';display:block;margin-bottom:11px;color:rgba(255,255,255,.78);font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;}
.activity-reference-page .hero-title h1{max-width:650px;margin:0;color:#fff;font:600 clamp(48px,5vw,66px)/.98 var(--brand-font-display);}
.activity-reference-page .hero-title>p{max-width:620px;margin:18px 0 0;color:rgba(255,255,255,.86);font-size:17px;line-height:1.5;}
.activity-reference-page .hero-best-for{display:none;}
.activity-reference-page .activity-hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px;}
.activity-reference-page .activity-hero-button{display:inline-flex;min-height:40px;align-items:center;justify-content:center;padding:10px 18px;border:1px solid rgba(255,255,255,.52);border-radius:999px;color:#fff;background:rgba(255,255,255,.07);font-size:12px;font-weight:700;text-decoration:none;}
.activity-reference-page .activity-hero-button--primary{border-color:#cf3043;background:#cf3043;}
.activity-reference-page .activity-reference-hero>.contact-card{margin:0;padding:24px;border:1px solid #dfe5e4;border-radius:10px;background:#fff;color:#263b41;box-shadow:0 18px 46px rgba(0,0,0,.18);}
.activity-reference-page .activity-reference-hero>.contact-card .kicker{margin-bottom:12px;color:#263b41;font:600 25px/1.1 var(--brand-font-display);letter-spacing:0;text-transform:none;}
.activity-reference-page .activity-reference-hero>.contact-card .kicker::after{content:'Popular weekends fill fast — send your details for instant options.';display:block;margin-top:5px;color:#6b7a7e;font:400 11px/1.4 var(--brand-font-body);}
.activity-reference-page .activity-reference-hero .contact-form{display:grid;gap:9px;}
.activity-reference-page .activity-reference-hero .contact-grid{grid-template-columns:1fr;gap:8px;}
.activity-reference-page .activity-reference-hero .contact-field{gap:4px;}
.activity-reference-page .activity-reference-hero .contact-field label{color:#3a5055;font:700 10px/1.2 var(--brand-font-body);letter-spacing:0;text-transform:none;}
.activity-reference-page .activity-reference-hero .contact-input{padding:8px 9px;border:1px solid #dfe5e4;border-radius:5px;background:#fff;color:#263b41;font-size:12px;}
.activity-reference-page .activity-reference-hero .contact-textarea{min-height:70px;}
.activity-reference-page .activity-reference-hero .contact-opt-in{color:#718083;font-size:8.5px;line-height:1.3;}
.activity-reference-page .activity-reference-hero .contact-opt-in a{color:#0b6571;}
.activity-reference-page .activity-reference-hero .contact-submit{width:100%;min-height:36px;padding:9px;border-radius:999px;background:#cf3043;font:800 10px/1 var(--brand-font-body);letter-spacing:0;text-transform:none;}

.activity-reference-page #content{width:100%;max-width:none;margin:0;}
.activity-reference-page .content-grid{display:block;width:min(100%,1180px);margin:auto;}
.activity-reference-page .left-stack{display:block;}
.activity-reference-page .left-stack>.panel.left{margin:0;padding:64px 18px;border:0;border-radius:0;background:#fff;box-shadow:none;}
.activity-reference-page .service-intro-booking{display:block;}
.activity-reference-page .service-intro-copy{max-width:790px;margin:auto;}
.activity-reference-page .service-intro-copy .kicker{margin-bottom:8px;color:#0b6571;font-size:10px;font-weight:800;letter-spacing:.14em;}
.activity-reference-page .service-intro-copy h2{margin:0 0 14px;color:#263b41;font:600 32px/1.1 var(--brand-font-display);}
.activity-reference-page .service-intro-copy p{margin:0 0 15px;color:#68777a;font-size:15px;line-height:1.7;}
.activity-reference-page .service-intro-copy a,.activity-reference-page .activity-copy a{color:#cf3043;font-weight:700;}
.activity-reference-page .service-inline-booking,.activity-reference-page [data-service-itinerary],.activity-reference-page [data-service-boats],.activity-reference-page [data-service-onboard]{display:none!important;}

.activity-reference-page .activity-copy{width:100%;max-width:none;margin:0;padding:0;border:0;border-radius:0;background:#fff;box-shadow:none;}
.activity-copy-section{width:min(100%,1180px);margin:auto;padding:52px 18px;}
.activity-copy-section:nth-child(1),.activity-copy-section:nth-child(n+3){background:#f6f2e8;box-shadow:0 0 0 100vmax #f6f2e8;clip-path:inset(0 -100vmax);}
.activity-copy-section:nth-child(n+3){min-height:0;}
.activity-copy-section:nth-child(n+4){padding-top:0;}
.activity-reference-page .activity-copy-section>h2{max-width:800px;margin:0 0 13px;color:#263b41;font:600 32px/1.08 var(--brand-font-display);}
.activity-copy-section>p{max-width:920px;margin:0 0 15px;color:#68777a;font-size:15px;line-height:1.7;}
.activity-copy-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:25px;}
.activity-copy-card{padding:0;}
.activity-copy-section:first-child .activity-copy-card{padding:22px;border:1px solid #e0e5e3;border-radius:8px;background:#fff;}
.activity-copy-card h3{margin:0 0 10px;color:#263b41;font:600 22px/1.15 var(--brand-font-display);}
.activity-copy-card p{margin:0 0 13px;color:#68777a;font-size:14px;line-height:1.65;}
.activity-copy-card p:last-child{margin-bottom:0;}
.activity-copy-card__checklist span{display:block;}
.activity-copy-card__cta{display:inline-flex;margin-top:4px;align-items:center;color:#c33040;font-weight:700;text-decoration:none;}
.activity-copy-card__cta::after{content:"\2192";margin-left:7px;transition:transform .16s ease;}
.activity-copy-card__cta:hover,.activity-copy-card__cta:focus-visible{color:#9f2634;text-decoration:underline;text-underline-offset:3px;}
.activity-copy-card__cta:hover::after,.activity-copy-card__cta:focus-visible::after{transform:translateX(3px);}
.activity-addons-promo-card{min-height:280px;overflow:hidden;border-radius:9px;background:#173d46;box-shadow:0 10px 26px rgba(26,57,64,.12);}
.activity-addons-promo-card__link{position:relative;display:block;width:100%;height:100%;min-height:280px;overflow:hidden;border-radius:inherit;color:#fff;text-decoration:none;isolation:isolate;}
.activity-addons-promo-card__link img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .35s ease;}
.activity-addons-promo-card__overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(7,42,50,.08) 22%,rgba(7,42,50,.88) 100%);}
.activity-addons-promo-card__content{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;flex-direction:column;padding:24px;color:#fff;}
.activity-addons-promo-card__kicker{margin-bottom:6px;font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;}
.activity-addons-promo-card__content strong{font:600 29px/1.05 var(--brand-font-display);text-transform:uppercase;}
.activity-addons-promo-card__content>span:last-child{max-width:470px;margin-top:7px;font-size:14px;line-height:1.45;}
.activity-addons-promo-card__link:hover img,.activity-addons-promo-card__link:focus-visible img{transform:scale(1.04);}
.activity-addons-promo-card__link:focus-visible{outline:3px solid #cf3043;outline-offset:-3px;}
.notable-resident-grid{display:grid;max-width:920px;margin:20px 0 8px;padding:0;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px;list-style:none;}
.notable-resident-grid li{position:relative;display:flex;min-height:54px;margin:0;align-items:center;padding:12px 14px 12px 44px;border:1px solid #e0e5e3;border-radius:7px;background:#fff;color:#3b5055;font-size:14px;font-weight:600;line-height:1.35;}
.notable-resident-grid li::before{content:"";position:absolute;left:16px;width:16px;height:16px;border:2px solid #0b6571;border-radius:50%;background:#0b6571;box-shadow:inset 0 0 0 4px #fff;}
.activity-copy-card:has(> h3[data-card-layout="split"]){display:grid;grid-column:1/-1;grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);gap:18px 42px;align-items:start;}
.activity-copy-card:has(> h3[data-card-layout="split"])>h3{grid-column:1/-1;margin-bottom:0;}
.activity-copy-card:has(> h3[data-card-layout="split"])>.sandbar-packing-copy{grid-column:1;}
.activity-copy-card:has(> h3[data-card-layout="split"])>.sandbar-packing-list{grid-column:2;grid-row:2;margin:0;}
.sandbar-packing-copy p{font-size:15px;line-height:1.7;}
.sandbar-packing-media{margin:24px 0 0;overflow:hidden;border:1px solid #d9e2e1;border-radius:10px;background:#f7f4ed;box-shadow:0 10px 26px rgba(26,57,64,.08);}
.sandbar-packing-media img{display:block;width:100%;aspect-ratio:16/7;object-fit:cover;object-position:center 58%;}
.sandbar-packing-media figcaption{margin:0;padding:14px 16px;color:#53686d;font-size:13px;line-height:1.5;}
.sandbar-packing-media figcaption strong{color:#263b41;}
.destination-map{display:flex;flex-direction:column;gap:13px;min-width:0;}
.destination-map__canvas{width:100%;min-height:430px;overflow:hidden;border:1px solid #cfdcde;border-radius:9px;background:#dfeaec;box-shadow:0 9px 24px rgba(26,57,64,.08);}
.destination-map__canvas:focus-visible{outline:3px solid rgba(195,48,64,.35);outline-offset:3px;}
.destination-map.is-map-unavailable .destination-map__canvas{display:none;}
.destination-map .leaflet-popup-content{margin:12px 15px;color:#53686d;font-family:var(--brand-font-body);font-size:13px;line-height:1.45;}
.destination-map .leaflet-popup-content strong{display:block;margin-bottom:2px;color:#263b41;font-family:var(--brand-font-display);font-size:15px;}
.destination-map .leaflet-control-attribution{font-family:var(--brand-font-body);font-size:10px;}
.destination-map--full{width:100%;margin:32px 0 12px;padding:28px;border:1px solid #d7e1e1;border-radius:12px;background:#f7f4ed;box-shadow:0 12px 30px rgba(26,57,64,.06);}
.destination-map__head{max-width:780px;margin-bottom:4px;}
.destination-map__head .destination-map__kicker{margin:0 0 8px!important;color:#0b6571!important;font-size:10px!important;font-weight:800;letter-spacing:.16em;line-height:1.2!important;text-transform:uppercase;}
.destination-map__head h3{margin:0 0 9px;color:#263b41;font:600 31px/1.05 var(--brand-font-display);text-transform:uppercase;}
.destination-map__head>p:last-child{margin:0!important;color:#68777a!important;font-size:14px!important;line-height:1.55!important;}
.destination-map--full .destination-map__canvas{min-height:520px;}
@media (min-width:761px){
  .activity-copy-grid>.activity-copy-card:has(>.destination-map:not(.destination-map--full)){display:flex;flex-direction:column;}
  .activity-copy-grid>.activity-copy-card:has(>.destination-map:not(.destination-map--full))>.destination-map{margin-block:auto;}
  .activity-copy-grid>.activity-copy-card:has(>.destination-map.destination-map--side-by-side:not(.destination-map--full)){
    display:grid;
    grid-column:1/-1;
    grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
    column-gap:32px;
    align-items:center;
  }
  .activity-copy-grid>.activity-copy-card:has(>.destination-map.destination-map--side-by-side:not(.destination-map--full))>.activity-copy-card__side-copy{grid-column:1;min-width:0;}
  .activity-copy-grid>.activity-copy-card:has(>.destination-map.destination-map--side-by-side:not(.destination-map--full))>.destination-map--side-by-side{
    grid-column:2;
    align-self:center;
    margin:0;
  }
}
.activity-copy[data-sunset-layout] .activity-copy-section{padding-top:60px;padding-bottom:64px;}
.activity-copy[data-sunset-layout] .activity-copy-section:nth-child(2){background:#fff;box-shadow:0 0 0 100vmax #fff;clip-path:inset(0 -100vmax);}
.activity-copy[data-sunset-layout] .activity-copy-section>h2[data-section-kicker]::before{content:attr(data-section-kicker);display:block;margin-bottom:9px;color:#0b6571;font:800 10px/1.2 var(--brand-font-body);letter-spacing:.16em;text-transform:uppercase;}
.activity-copy[data-sunset-layout] .activity-copy-section>h2{max-width:900px;font-size:38px;}
.activity-copy[data-sunset-layout] .activity-copy-section>p{max-width:930px;}
.activity-copy[data-sunset-layout] .activity-copy-grid{align-items:stretch;gap:20px;}
.activity-copy[data-sunset-layout] .activity-copy-section:nth-child(2) .activity-copy-grid,
.activity-copy[data-sunset-layout] .activity-copy-section:nth-child(3) .activity-copy-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.activity-copy[data-sunset-layout] .activity-copy-section .activity-copy-grid.activity-addons-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.activity-copy[data-sunset-layout] .activity-copy-card,
.activity-copy[data-sunset-layout] .activity-copy-section:first-child .activity-copy-card{display:flex;min-width:0;flex-direction:column;padding:0;border:1px solid #dfe5e4;border-radius:9px;background:#fff;box-shadow:0 8px 24px rgba(26,57,64,.06);overflow:hidden;}
.activity-copy[data-sunset-layout] .activity-copy-card:not(:has(.sunset-copy-card__media)){padding:22px;}
.activity-copy[data-sunset-layout] .activity-copy-card:has(.sunset-copy-card__media)>:not(.sunset-copy-card__media){margin-left:19px;margin-right:19px;}
.activity-copy[data-sunset-layout] .activity-copy-card:has(.sunset-copy-card__media)>h3{margin-top:18px;}
.activity-copy[data-sunset-layout] .sunset-copy-card__media{order:-1;width:100%;margin:0;overflow:hidden;background:#dfe9e9;}
.activity-copy[data-sunset-layout] .sunset-copy-card__media img{display:block;width:100%;aspect-ratio:16/8.8;object-fit:cover;transition:transform .3s ease;}
.activity-copy[data-sunset-layout] .activity-copy-card:hover .sunset-copy-card__media img{transform:scale(1.025);}
.activity-copy[data-sunset-layout] .activity-copy-card h3{font-size:24px;}
.activity-copy[data-sunset-layout] .activity-copy-card p{font-size:14px;line-height:1.65;}
.activity-copy[data-sunset-layout] .activity-copy-card p:last-child{margin-bottom:19px;}
.activity-copy[data-sunset-layout] .activity-copy-card:not(:has(.sunset-copy-card__media)) p:last-child{margin-bottom:0;}
.activity-reference-page .service-media-slider{display:none;}

@media (max-width:980px){
  .activity-reference-hero{grid-template-columns:minmax(0,1fr) 370px;gap:30px;}
  .activity-copy[data-sunset-layout] .activity-copy-section:nth-child(2) .activity-copy-grid,
  .activity-copy[data-sunset-layout] .activity-copy-section:nth-child(3) .activity-copy-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:900px){
  .activity-reference-page .hero{background:#fff;}
  .activity-reference-hero{grid-template-columns:1fr;min-height:0;padding:0 18px 34px;gap:0;}
  .activity-reference-page .hero-shell{min-height:500px;margin:0 -18px;align-items:end;padding:50px 26px 52px;background:linear-gradient(90deg,rgba(3,47,57,.78),rgba(3,47,57,.42)),var(--activity-hero-image) center/cover no-repeat;}
  .activity-reference-page .activity-reference-hero>.contact-card{position:relative;z-index:2;width:min(100%,580px);margin:-24px auto 0;}
}
@media (max-width:760px){
  .activity-reference-page .hero{background:#fff;}
  .activity-reference-hero{grid-template-columns:1fr;min-height:0;padding:0 10px 26px;gap:0;}
  .activity-reference-page .hero-shell{min-height:420px;margin:0 -10px;align-items:end;padding:42px 14px 32px;background:linear-gradient(90deg,rgba(3,47,57,.78),rgba(3,47,57,.42)),var(--activity-hero-image) center/cover no-repeat;}
  .activity-reference-page .hero-title h1{font-size:38px;}
  .activity-reference-page .hero-title>p{font-size:14px;}
  .activity-reference-page .activity-hero-actions{margin-top:17px;}
  .activity-reference-page .activity-reference-hero>.contact-card{padding:17px;}
  .activity-reference-page .left-stack>.panel.left{padding:42px 14px;}
  .activity-reference-page .service-intro-copy h2{font-size:27px;}
  .activity-reference-page .service-intro-copy p{font-size:14px;line-height:1.65;}
  .activity-copy-section{padding:43px 14px;}
  .activity-copy-section h2{font-size:27px;}
  .activity-copy-section>p{font-size:14px;line-height:1.65;}
  .activity-copy-grid{grid-template-columns:1fr;gap:13px;margin-top:20px;}
  .activity-copy-section:first-child .activity-copy-card{padding:17px;}
  .activity-copy-card h3{font-size:21px;}
  .activity-copy-card p{font-size:13.5px;}
  .activity-addons-promo-card,.activity-addons-promo-card__link{min-height:240px;}
  .activity-addons-promo-card__content{padding:19px;}
  .activity-addons-promo-card__content strong{font-size:25px;}
  .activity-addons-promo-card__content>span:last-child{font-size:13px;}
  .notable-resident-grid{grid-template-columns:1fr;gap:8px;}
  .notable-resident-grid li{min-height:48px;padding:10px 12px 10px 40px;font-size:13.5px;}
  .activity-copy-card:has(> h3[data-card-layout="split"]){grid-template-columns:1fr;gap:14px;}
  .activity-copy-card:has(> h3[data-card-layout="split"])>.sandbar-packing-copy,
  .activity-copy-card:has(> h3[data-card-layout="split"])>.sandbar-packing-list{grid-column:1;grid-row:auto;}
  .sandbar-packing-copy p{font-size:14px;}
  .sandbar-packing-media{margin-top:18px;}
  .sandbar-packing-media img{aspect-ratio:16/9;}
  .destination-map__canvas{min-height:360px;}
  .destination-map--full{margin:25px 0 8px;padding:16px;}
  .destination-map__head h3{font-size:25px;}
  .destination-map__head>p:last-child{font-size:13.5px!important;}
  .destination-map--full .destination-map__canvas{min-height:400px;}
  .activity-copy[data-sunset-layout] .activity-copy-section{padding-top:44px;padding-bottom:48px;}
  .activity-copy[data-sunset-layout] .activity-copy-section>h2{font-size:29px;}
  .activity-copy[data-sunset-layout] .activity-copy-section:nth-child(2) .activity-copy-grid,
  .activity-copy[data-sunset-layout] .activity-copy-section:nth-child(3) .activity-copy-grid{grid-template-columns:1fr;}
  .activity-copy[data-sunset-layout] .activity-copy-section .activity-copy-grid.activity-addons-grid{grid-template-columns:1fr;}
  .activity-copy[data-sunset-layout] .activity-copy-card:not(:has(.sunset-copy-card__media)){padding:18px;}
  .activity-copy[data-sunset-layout] .activity-copy-card:has(.sunset-copy-card__media)>:not(.sunset-copy-card__media){margin-left:15px;margin-right:15px;}
  .activity-copy[data-sunset-layout] .activity-copy-card h3{font-size:22px;}
}

/* Two distinct long-form sections can share a row without splitting the copy
   inside either section. */
.activity-reference-page .activity-copy-pair{
  display:grid;
  width:100%;
  padding:64px max(18px,calc((100% - 1180px)/2));
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(44px,5vw,84px);
  align-items:start;
  background:#f6f2e8;
}
.activity-reference-page .activity-copy-pair>.activity-copy-section{
  width:100%;
  margin:0;
  padding:0;
  background:transparent;
  box-shadow:none;
  clip-path:none;
}
.activity-reference-page .activity-copy-pair>.activity-copy-section>h2,
.activity-reference-page .activity-copy-pair>.activity-copy-section>p{max-width:none;}
@media (max-width:900px){
  .activity-reference-page .activity-copy-pair{
    padding:44px 14px;
    grid-template-columns:1fr;
    gap:38px;
  }
}

/* Bimini vessel-rate comparison */
.bimini-rate-comparison{
  margin-top:26px;
  border:1px solid #d8e1df;
  border-radius:16px;
  background:linear-gradient(180deg,#f7f4ec 0,#fff 42%);
  box-shadow:0 14px 34px rgba(18,45,52,.08);
  overflow:hidden;
}
.bimini-rate-comparison__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px 15px;
  border-bottom:1px solid #dfe6e4;
}
.bimini-rate-comparison__head .kicker{
  margin-bottom:5px;
  color:#0b6571;
  font-weight:800;
}
.bimini-rate-comparison__head h3{
  margin:0;
  color:#223941;
  font:700 25px/1.08 var(--brand-font-display);
  text-transform:uppercase;
}
.bimini-rate-comparison__minimum{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  background:#0d5661;
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.bimini-rate-comparison__table-wrap{
  padding:7px 14px 5px;
}
.bimini-rate-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 7px;
}
.bimini-rate-table caption{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  border:0;
}
.bimini-rate-table thead th{
  padding:2px 13px 5px;
  color:#718084;
  font-size:11px;
  font-weight:800;
  letter-spacing:.09em;
  text-align:left;
  text-transform:uppercase;
}
.bimini-rate-table thead th:not(:first-child){
  text-align:right;
}
.bimini-rate-table tbody th,
.bimini-rate-table tbody td{
  padding:11px 13px;
  border-top:1px solid #e0e6e5;
  border-bottom:1px solid #e0e6e5;
  background:#fff;
  vertical-align:middle;
}
.bimini-rate-table tbody th{
  width:40%;
  border-left:1px solid #e0e6e5;
  border-radius:11px 0 0 11px;
  text-align:left;
}
.bimini-rate-table tbody td{
  width:20%;
  text-align:right;
}
.bimini-rate-table tbody td:last-child{
  border-right:1px solid #e0e6e5;
  border-radius:0 11px 11px 0;
}
.bimini-rate-table tbody tr:hover th,
.bimini-rate-table tbody tr:hover td{
  border-color:#bfd2cf;
  background:#f8fbfa;
}
.bimini-rate-table th a,
.bimini-rate-table__vessel{
  display:inline-grid;
  gap:1px;
  color:#203941;
  font-size:16px;
  font-weight:800;
  line-height:1.15;
  text-decoration:none;
}
.bimini-rate-table th a:hover,
.bimini-rate-table th a:focus-visible{
  color:#c92f42;
}
.bimini-rate-table th a span,
.bimini-rate-table__vessel span,
.bimini-rate-table td span{
  color:#728084;
  font-size:11px;
  font-weight:600;
}
.bimini-rate-table th small{
  display:inline-flex;
  margin-left:8px;
  padding:4px 7px;
  border-radius:999px;
  background:#f8e8e9;
  color:#bd3040;
  font-size:9px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  vertical-align:middle;
}
.bimini-rate-table td strong{
  display:block;
  color:#203941;
  font-size:16px;
  line-height:1.1;
}
.bimini-rate-comparison__note{
  margin:0;
  padding:9px 22px 18px;
  color:#718084;
  font-size:12px;
  line-height:1.5;
}

@media (max-width:640px){
  .bimini-rate-comparison{
    margin-top:22px;
    border-radius:12px;
  }
  .bimini-rate-comparison__head{
    display:grid;
    padding:17px 15px 13px;
  }
  .bimini-rate-comparison__head h3{
    font-size:22px;
  }
  .bimini-rate-comparison__minimum{
    justify-self:start;
  }
  .bimini-rate-comparison__table-wrap{
    padding:5px 10px 3px;
  }
  .bimini-rate-table thead{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
  }
  .bimini-rate-table tbody,
  .bimini-rate-table tr,
  .bimini-rate-table th,
  .bimini-rate-table td{
    display:block;
    width:100%;
  }
  .bimini-rate-table tbody tr{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    margin-bottom:9px;
    border:1px solid #dfe6e4;
    border-radius:11px;
    background:#fff;
    overflow:hidden;
  }
  .bimini-rate-table tbody th,
  .bimini-rate-table tbody td,
  .bimini-rate-table tbody td:last-child{
    width:auto;
    border:0;
    border-radius:0;
    background:transparent;
  }
  .bimini-rate-table tbody th{
    grid-column:1 / -1;
    padding:12px 12px 10px;
    border-bottom:1px solid #e6ebea;
  }
  .bimini-rate-table tbody td{
    position:relative;
    padding:23px 12px 12px;
    text-align:left;
  }
  .bimini-rate-table tbody td+td{
    border-left:1px solid #e6ebea;
  }
  .bimini-rate-table tbody td::before{
    content:attr(data-label);
    position:absolute;
    top:7px;
    left:12px;
    color:#7a878a;
    font-size:9px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
  }
  .bimini-rate-table th small{
    float:right;
  }
  .bimini-rate-comparison__note{
    padding:8px 15px 16px;
  }
}

/* Pixel-reference activity layout */
.activity-reference-page .hero{background-position:center 64%;}
.activity-reference-hero{min-height:var(--site-hero-fold-height);grid-template-columns:minmax(0,1fr) 460px;gap:50px;}
.activity-reference-page .hero-shell{min-height:0;}
.activity-reference-page .hero-title h1{
  max-width:560px;
  font-family:var(--brand-font-display);
  font-size:60px;
  font-weight:600;
  line-height:.94;
  text-transform:uppercase;
}
.activity-reference-page .activity-reference-hero>.contact-card .kicker,
.activity-reference-page .service-intro-copy h2,
.activity-reference-page .activity-copy-section h2,
.activity-reference-page .activity-copy-card h3,
.activity-reference-page .activity-gallery-section h2{
  font-family:var(--brand-font-display);
  font-weight:600;
  text-transform:uppercase;
}
.activity-reference-page .activity-reference-hero>.contact-card .kicker{font-size:22px;}
.activity-reference-page .service-intro-booking--with-booking{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(420px,.9fr);gap:44px;align-items:stretch;}
.activity-reference-page .service-intro-copy{max-width:none;margin:0;}
.activity-reference-page .service-intro-copy h2,.activity-reference-page .activity-copy-section h2{font-size:32px;line-height:1.02;}
.activity-reference-page .service-inline-booking{display:block!important;min-height:560px;border:1px solid #dfe5e4;border-radius:9px;background:#fff;overflow:hidden;}
.activity-reference-page .service-booking-intro{padding:20px 18px 16px;border:0;border-bottom:1px solid #e6eae9;border-radius:0;background:#f8f9fa;}
.activity-reference-page .service-booking-intro h2{color:#263b41;font-size:24px;line-height:1.05;}
.activity-reference-page .service-booking-intro p{color:#68777a;font-size:13px;line-height:1.45;}
.activity-reference-page .service-inline-booking .cal{display:block!important;min-height:475px;margin:0;border:0;border-radius:0;background:#fff;}
.activity-reference-page .service-inline-booking .cal-body{min-height:475px;padding:0;}
.activity-reference-page .service-inline-booking .fh-embed{min-height:475px;}
.activity-reference-page .service-inline-booking .fh-embed>script{display:none!important;}
.activity-reference-page .service-inline-booking .fh-embed iframe{display:block!important;width:100%!important;min-height:475px!important;border:0!important;}
.activity-reference-page .service-inline-booking .service-booking-fallback{display:inline-flex;margin:18px;color:#c33040;font-size:13px;font-weight:700;}
.activity-reference-page .service-inline-booking .fh-embed:has(iframe) .service-booking-fallback{display:none;}
.activity-reference-page .activity-copy-card__media{margin:0 0 14px;overflow:hidden;border-radius:8px 8px 0 0;}
.activity-reference-page .activity-copy-card__media img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;}
.activity-reference-page .activity-copy-card--media{padding:0 0 18px;border:1px solid #dfe5e4;border-radius:8px;background:#fff;overflow:hidden;box-shadow:0 8px 24px rgba(26,57,64,.06);}
.activity-reference-page .activity-copy-card--media>:not(.activity-copy-card__media){margin-left:18px;margin-right:18px;}
.activity-reference-page .activity-copy-section:first-child .activity-copy-card h3::before{content:none;}
.activity-copy-card h3:has(> .activity-card-icon){display:flex;align-items:center;gap:9px;}
.activity-card-icon{width:28px;height:28px;display:inline-flex;flex:0 0 28px;align-items:center;justify-content:center;margin:0;border:1px solid rgba(47,90,105,.18);border-radius:8px;background:#edf5f4;color:#2f5a69;vertical-align:middle;}
.activity-card-icon svg{display:block;width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.activity-reference-page .activity-gallery-section{width:min(100%,1180px);margin:auto;padding:52px 18px 64px;}
.activity-reference-page .activity-gallery-section__head{max-width:760px;margin-bottom:22px;}
.activity-reference-page .activity-gallery-section__head>p{margin:0 0 7px;color:#0b6571;font-size:9px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;}
.activity-reference-page .activity-gallery-section__head h2{margin:0;color:#263b41;font-size:30px;line-height:1.02;}
.activity-reference-page .activity-gallery-section__head>span{display:block;margin-top:8px;color:#68777a;font-size:12px;}
.activity-reference-page .service-media-slider{display:block;margin:0;padding:0;border:0;background:transparent;}
.activity-reference-page .service-media-slider__button{display:none;}
.activity-reference-page .service-media-slider__track{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));grid-auto-rows:170px;gap:9px;overflow:visible;}
.activity-reference-page .service-media-slider__slide{width:auto;height:100%;min-height:0;margin:0;overflow:hidden;border-radius:8px;aspect-ratio:auto;}
.activity-reference-page .service-media-slider__slide:first-child{grid-column:span 2;grid-row:span 2;}
.activity-reference-page .service-media-slider__slide:nth-child(6){grid-column:span 2;}
.activity-reference-page .service-media-slider__slide:last-child{grid-column:span 2;}
.activity-reference-page .service-media-slider__slide img{display:block;width:100%;height:100%;object-fit:cover;}
body.activity-reference-page .cta-section h2{font-family:var(--brand-font-display);font-weight:600;text-transform:uppercase;}
body.activity-reference-page .cta-section{padding-top:72px;padding-bottom:62px;}
body.activity-reference-page .main-footer{padding-top:68px;padding-bottom:30px;}

/* No-captain page: canonical fleet cards interrupt the long-form guide with a clear next step. */
.no-captain-fleet{
  margin:34px 0 8px;
  padding:28px;
  border:1px solid #dfe5e4;
  border-radius:12px;
  background:#f7f4ed;
}
.no-captain-fleet__head{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(320px,1.15fr);
  gap:34px;
  align-items:end;
  margin-bottom:22px;
}
.no-captain-fleet__head>div>p.no-captain-fleet__kicker{
  margin:0 0 7px;
  color:#0b6571;
  font-size:10px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.no-captain-fleet__head h3{
  margin:0;
  color:#263b41;
  font:600 28px/1.04 var(--brand-font-display);
  text-transform:uppercase;
}
.no-captain-fleet__head>p{
  margin:0;
  color:#68777a;
  font-size:14px;
  line-height:1.55;
}
.no-captain-fleet__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.no-captain-fleet .yacht-card{
  height:auto;
  min-height:342px;
  background:#fff;
}
.no-captain-fleet .yacht-ribbon{
  background:#cf3043;
}

/* Reusable conversion slider for activity pages that need the full fleet in a compact space. */
.yacht-card-slider{
  margin:38px 0 8px;
  padding:28px;
  overflow:hidden;
  border:1px solid #dfe5e4;
  border-radius:12px;
  background:#f7f4ed;
}
.yacht-card-slider__head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:end;
  margin-bottom:22px;
}
.yacht-card-slider__copy{max-width:720px;}
.yacht-card-slider__copy>p.yacht-card-slider__kicker{
  margin:0 0 7px;
  color:#0b6571;
  font-size:10px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.yacht-card-slider__copy h3{
  margin:0;
  color:#263b41;
  font:600 30px/1.04 var(--brand-font-display);
  text-transform:uppercase;
}
.yacht-card-slider__copy>p:last-child{
  max-width:660px;
  margin:9px 0 0;
  color:#68777a;
  font-size:14px;
  line-height:1.55;
}
.yacht-card-slider__controls{display:flex;align-items:center;gap:9px;}
.yacht-card-slider__button{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid #cbd6d6;
  border-radius:50%;
  background:#fff;
  color:#0b6571;
  cursor:pointer;
  transition:border-color .2s ease,background .2s ease,color .2s ease,transform .2s ease;
}
.yacht-card-slider__button:hover:not(:disabled),
.yacht-card-slider__button:focus-visible{border-color:#0b6571;background:#0b6571;color:#fff;transform:translateY(-1px);}
.yacht-card-slider__button:disabled{opacity:.38;cursor:not-allowed;}
.yacht-card-slider__button svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.yacht-card-slider__status{min-width:72px;color:#526568;font-size:12px;font-weight:700;text-align:center;}
.yacht-card-slider__track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 28px) / 3);
  gap:14px;
  padding:2px 1px 18px;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scroll-behavior:smooth;
  scroll-snap-type:inline mandatory;
  scrollbar-width:none;
}
.yacht-card-slider__track::-webkit-scrollbar{display:none;}
.yacht-card-slider__track .yacht-card{
  width:100%;
  height:auto;
  min-height:404px;
  scroll-snap-align:start;
  background:#fff;
}
.yacht-card-slider__track .yacht-ribbon{text-transform:capitalize;}
.yacht-card-slider__foot{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-top:5px;
  color:#68777a;
  font-size:13px;
}
.yacht-card-slider__foot a{color:#c33040;font-weight:700;text-decoration:none;}
.yacht-card-slider__foot a:hover,.yacht-card-slider__foot a:focus-visible{text-decoration:underline;}

.activity-reference-page .seo-intent-section{
  width:min(100%,1180px);
  margin:0 auto;
  padding:64px 18px 70px;
  background:#fbfaf7;
  box-shadow:0 0 0 100vmax #fbfaf7;
  clip-path:inset(0 -100vmax);
}
.activity-reference-page .seo-intent-section>.kicker{margin:0 0 8px;color:#0b6571;font-size:10px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;}
.activity-reference-page .seo-intent-section>h2,
.activity-reference-page .seo-intent-section .seo-faq>h2{margin:0 0 14px;color:#263b41;font:600 31px/1.05 var(--brand-font-display);text-transform:uppercase;}
.activity-reference-page .seo-intent-section>h3{margin:28px 0 10px;color:#263b41;font:600 22px/1.1 var(--brand-font-display);text-transform:uppercase;}
.activity-reference-page .seo-intent-section .seo-answer,
.activity-reference-page .seo-intent-section .seo-topic-note{max-width:920px;color:#68777a;font-size:15px;line-height:1.7;}
.activity-reference-page .seo-intent-section .seo-planning-grid{margin:24px 0;}
.activity-reference-page .seo-intent-section .seo-planning-grid>div{border-color:#dfe5e4;border-radius:9px;background:#fff;}
.activity-reference-page .seo-intent-section .seo-planning-grid h3{margin:0 0 7px;color:#263b41;font:600 19px/1.1 var(--brand-font-display);text-transform:uppercase;}
.activity-reference-page .seo-intent-section .seo-related-grid{margin-bottom:34px;}
.activity-reference-page .seo-intent-section .seo-faq details{background:#fff;}

@media (max-width:900px){
  .activity-reference-hero{min-height:0;grid-template-columns:1fr;gap:0;}
  .activity-reference-page .hero-shell{min-height:620px;background-position:center 64%;}
  .activity-reference-page .service-intro-booking--with-booking{grid-template-columns:1fr;gap:24px;}
  .no-captain-fleet__head{grid-template-columns:1fr;gap:10px;align-items:start;}
  .yacht-card-slider__track{grid-auto-columns:calc((100% - 14px) / 2);}
}
@media (max-width:760px){
  .activity-reference-page .hero-shell{min-height:520px;padding-bottom:34px;background-position:center 64%;}
  .activity-reference-page .hero-title h1{max-width:330px;font-size:40px;}
  .activity-reference-page .service-intro-copy h2,.activity-reference-page .activity-copy-section h2{font-size:28px;}
  .activity-reference-page .service-inline-booking{min-height:560px;}
  .activity-reference-page .activity-reference-hero>.service-inline-booking{position:relative;z-index:3;width:100%;margin:-24px auto 0;}
  .activity-reference-page .activity-reference-hero>.service-inline-booking+.contact-card{margin:14px auto 0;}
  .activity-reference-page .activity-copy-card--media>:not(.activity-copy-card__media){margin-left:14px;margin-right:14px;}
  .activity-reference-page .activity-gallery-section{padding:42px 10px 50px;}
  .activity-reference-page .activity-gallery-section__head h2{font-size:27px;}
  .activity-reference-page .service-media-slider__track{grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:120px;gap:7px;}
  .activity-reference-page .service-media-slider__slide:first-child{grid-column:span 2;grid-row:span 2;}
  .activity-reference-page .service-media-slider__slide:nth-child(6){grid-column:span 1;}
  .activity-reference-page .service-media-slider__slide:last-child{grid-column:span 1;}
  .activity-reference-page .hero{min-height:0;}
  .activity-reference-page .activity-reference-hero{min-height:0;}
  .activity-reference-page .activity-reference-hero>.contact-card .contact-form{gap:13px;}
  .activity-reference-page .activity-reference-hero>.contact-card .contact-input{min-height:50px;padding:12px;}
  .activity-reference-page .activity-reference-hero>.contact-card .contact-textarea{min-height:112px;}
  .activity-reference-page .left-stack>.panel.left{min-height:0;}
  .activity-copy-section:nth-child(1),
  .activity-copy-section:nth-child(2),
  .activity-copy-section:nth-child(3),
  .activity-copy-section:nth-child(4){min-height:0;}
  .activity-reference-page .activity-copy-grid{gap:22px;}
  .activity-reference-page .activity-copy-section:first-child .activity-copy-card{padding:22px;}
  .activity-reference-page .activity-copy-card__media img{aspect-ratio:3/2;}
  .activity-reference-page .activity-gallery-section{min-height:0;}
  body.activity-reference-page .cta-section{padding-top:48px;padding-bottom:42px;}
  body.activity-reference-page .main-footer{padding-top:42px;}
  .activity-reference-page .seo-intent-section{padding:44px 14px 50px;}
  .activity-reference-page .seo-intent-section>h2,
  .activity-reference-page .seo-intent-section .seo-faq>h2{font-size:27px;}
  .activity-reference-page .seo-intent-section .seo-answer,
  .activity-reference-page .seo-intent-section .seo-topic-note{font-size:14px;line-height:1.65;}
  .no-captain-fleet{margin:28px 0 4px;padding:18px 14px;border-radius:10px;}
  .no-captain-fleet__head{margin-bottom:17px;}
  .no-captain-fleet__head h3{font-size:25px;}
  .no-captain-fleet__head>p{font-size:13px;}
  .no-captain-fleet__grid{grid-template-columns:1fr;gap:12px;}
  .no-captain-fleet .yacht-card{min-height:0;}
  .yacht-card-slider{margin:30px 0 4px;padding:20px 14px 16px;border-radius:10px;}
  .yacht-card-slider__head{grid-template-columns:1fr;gap:17px;margin-bottom:17px;}
  .yacht-card-slider__copy h3{font-size:26px;}
  .yacht-card-slider__copy>p:last-child{font-size:13px;}
  .yacht-card-slider__controls{justify-content:space-between;}
  .yacht-card-slider__status{flex:1;}
  .yacht-card-slider__track{grid-auto-columns:86%;gap:10px;padding-bottom:14px;}
  .yacht-card-slider__track .yacht-card{min-height:0;}
  .yacht-card-slider__foot{display:block;font-size:12px;}
  .yacht-card-slider__foot a{display:inline-flex;margin-top:5px;}
}

/* Local-guide pages reuse the activity-page structure with balanced guide sections. */
.activity-copy[data-things-guide-layout] .activity-copy-section:nth-child(odd){
  background:#f6f2e8;
  box-shadow:0 0 0 100vmax #f6f2e8;
  clip-path:inset(0 -100vmax);
}
.activity-copy[data-things-guide-layout] .activity-copy-section:nth-child(even){
  background:#fff;
  box-shadow:0 0 0 100vmax #fff;
  clip-path:inset(0 -100vmax);
}
.activity-copy[data-things-guide-layout] .activity-copy-section:nth-child(2) .activity-copy-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.activity-copy[data-things-guide-layout] .activity-copy-section:nth-child(2) .activity-copy-card{
  min-width:0;
}
.activity-copy[data-things-guide-layout] .destination-map--full{
  margin-top:28px;
  margin-bottom:0;
}
.activity-copy[data-things-guide-layout] .things-guide-faq{
  max-width:920px;
  margin-top:24px;
  border:1px solid #dfe5e4;
  border-radius:10px;
  background:#fff;
  overflow:hidden;
}
.activity-copy[data-things-guide-layout] .things-guide-faq details{
  padding:0;
  border:0;
  border-bottom:1px solid #e5e9e8;
}
.activity-copy[data-things-guide-layout] .things-guide-faq details:last-child{
  border-bottom:0;
}
.activity-copy[data-things-guide-layout] .things-guide-faq summary{
  position:relative;
  padding:17px 50px 17px 18px;
  color:#263b41;
  font-weight:800;
  line-height:1.35;
  list-style:none;
}
.activity-copy[data-things-guide-layout] .things-guide-faq summary::-webkit-details-marker{
  display:none;
}
.activity-copy[data-things-guide-layout] .things-guide-faq summary::after{
  content:"+";
  position:absolute;
  top:50%;
  right:18px;
  color:#c33040;
  font-size:21px;
  line-height:1;
  transform:translateY(-50%);
}
.activity-copy[data-things-guide-layout] .things-guide-faq details[open] summary::after{
  content:"\2212";
}
.activity-copy[data-things-guide-layout] .things-guide-faq details p{
  max-width:820px;
  margin:0;
  padding:0 18px 18px;
}

@media (max-width:980px){
  .activity-copy[data-things-guide-layout] .activity-copy-section:nth-child(2) .activity-copy-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:760px){
  .activity-copy[data-things-guide-layout] .activity-copy-section:nth-child(2) .activity-copy-grid{
    grid-template-columns:1fr;
  }
  .activity-copy[data-things-guide-layout] .destination-map--full{
    padding:18px 14px;
  }
  .activity-copy[data-things-guide-layout] .things-guide-faq summary{
    padding:15px 44px 15px 14px;
    font-size:14px;
  }
  .activity-copy[data-things-guide-layout] .things-guide-faq details p{
    padding:0 14px 16px;
    font-size:14px;
  }
}

/* Typography legibility pass. */
body.activity-reference-page{font-size:16px;line-height:1.65;}
.activity-reference-page .hero-title::before,
.activity-reference-page .service-intro-copy .kicker,
.activity-reference-page .activity-gallery-section__head>p,
.activity-reference-page .seo-intent-section>.kicker,
.activity-reference-page .activity-addons-promo-card__kicker{font-size:12px;line-height:1.4;}
.activity-reference-page .activity-hero-button{font-size:15px;}
.activity-reference-page .service-intro-copy p,
.activity-reference-page .activity-copy-section>p,
.activity-reference-page .sandbar-packing-copy p{font-size:16px;line-height:1.7;}
.activity-reference-page .activity-copy-card p{font-size:15px;line-height:1.65;}
.activity-reference-page .activity-addons-promo-card__content>span:last-child{font-size:15px;line-height:1.55;}
.activity-reference-page .notable-resident-grid li{font-size:15px;line-height:1.45;}
.activity-reference-page .sandbar-packing-media figcaption,
.activity-reference-page .destination-map .leaflet-popup-content{font-size:14px;line-height:1.55;}
.activity-reference-page .service-booking-intro p,
.activity-reference-page .activity-gallery-section__head>span,
.activity-reference-page .service-inline-booking .service-booking-fallback{font-size:14px;line-height:1.5;}
.activity-reference-page .yacht-card-slider__kicker,
.yacht-card-slider__kicker,
.yacht-card-slider__copy>p.yacht-card-slider__kicker{font-size:12px;line-height:1.4;}
.activity-reference-page .yacht-card-slider__status,
.activity-reference-page .yacht-card-slider__foot{font-size:14px;line-height:1.45;}
.activity-reference-page .yacht-card-slider__copy>p:last-child{font-size:15px;line-height:1.6;}
.activity-reference-page .yacht-subtitle{font-size:14px;line-height:1.4;}
  .activity-reference-page .yacht-chip,
  .activity-reference-page .yacht-meta::after,
  .yacht-card-slider .yacht-chip,
  .yacht-card-slider .yacht-meta::after{font-size:14px;line-height:1.4;}

@media (max-width:760px){
  .activity-reference-page .hero-title>p,
  .activity-reference-page .service-intro-copy p,
  .activity-reference-page .activity-copy-section>p{font-size:16px;line-height:1.65;}
  .activity-reference-page .activity-copy-card p,
  .activity-reference-page .notable-resident-grid li{font-size:15px;}
  .activity-copy[data-things-guide-layout] .things-guide-faq details p{font-size:15px;line-height:1.65;}
}

/* Keep long-form activity copy at a legible reading size. */
.activity-reference-page main p:not(.kicker):not(.yacht-card-slider__kicker),
.activity-reference-page .activity-copy-card p,
.activity-reference-page .activity-copy[data-things-guide-layout] .things-guide-faq details p{font-size:16px;line-height:1.7;}
.activity-reference-page .bimini-rate-comparison__note{font-size:14px;line-height:1.5;}
.activity-reference-page input:not([type="checkbox"]):not([type="radio"]),
.activity-reference-page textarea,
.activity-reference-page select{font-size:16px!important;}
.activity-reference-page .destination-map__head>p:last-child{font-size:16px!important;line-height:1.65!important;}
