/* 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);
  /* 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;
  background: linear-gradient(180deg, transparent 24%, rgba(4,17,27,.08) 48%, rgba(4,17,27,.62) 100%);
}

.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;
}

.hero-conversion-facts{
  color: rgba(255,255,255,.9) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .01em;
}

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

.hero-conversion-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;
}

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

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

.hero-conversion-button--primary:hover,
.hero-conversion-button--primary:focus-visible{
  background: #a92735;
}

.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: 2fr 1fr;
  grid-template-areas: "left right";
  align-items: start;
  margin-top: 18px;
}

.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;
}

.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;
}

.right{
  grid-area: right;
  padding: 14px;
  background: #F7F5F0;
  border: 1px solid var(--line);
  min-width: 0;
  overflow: hidden;
}

.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);
}

.left > h1{
  font-size: 20px;
  margin: 14px 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  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: 0;
}

.addons-collapse.is-collapsed,
.addons-collapse.is-expanded{
  padding-bottom: 48px;
}

.addons-collapse.is-collapsed::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.94) 30%, #fff 62%);
  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: 5px;
  z-index: 2;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 116px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #cf3043;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(3,47,57,.12);
  color: #cf3043;
  font: 700 11px/1 var(--brand-font-body);
  cursor: pointer;
  transform: translateX(-50%);
  transition: box-shadow .18s ease, color .18s ease, border-color .18s ease, background-color .18s ease;
}

.addons-toggle:hover{
  color: #fff;
  border-color: #cf3043;
  background: #cf3043;
  box-shadow: 0 10px 24px rgba(207,48,67,.22);
}

.addons-toggle:focus-visible{
  outline: none;
  color: #cf3043;
  border-color: #cf3043;
  box-shadow: 0 0 0 4px rgba(207,48,67,.15), 0 8px 20px rgba(3,47,57,.12);
}

.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 */
.price-tabs,
.itinerary-tabs{
  display:flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(14,18,22,.10);
}

.price-tabs{
  margin-top: 10px;
  background: rgba(255,255,255,.70);
}

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

.ptab{
  flex: 1;
  padding: 9px 10px;
}

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;
}

.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;
}

#book{
  scroll-margin-top: 18px;
}

.yacht-page-enhanced .cal:not(.is-open){
  display: none;
}

.yacht-mobile-dock{
  display: none;
}

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

.yacht-faq-link {
  margin: 14px 0 0;
  font-weight: 700;
}

.itinerary-block h2,
.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;
}

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

.ptab:hover,
.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;
}

/* Booking Sidebar */
.addon-promo{
  position: relative;
  margin-top: 16px;
  width: 100%;
  min-height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(14,18,22,.10);
  display: block;
  padding: 0;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 18px 40px rgba(14,18,22,.14);
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.addon-promo::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.12) 34%, rgba(255,255,255,0) 68%);
  transform: translateX(-18%);
  opacity: .9;
  pointer-events: none;
  transition: transform .24s ease, opacity .24s ease;
}

.addon-promo:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(14,18,22,.18);
  text-decoration: none;
}

.addon-promo:hover::before,
.addon-promo:focus-visible::before{
  transform: translateX(0);
  opacity: 1;
}

.addon-promo:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(18,82,148,.14), 0 22px 46px rgba(14,18,22,.18);
}

.addon-promo-img{
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  aspect-ratio: 2752 / 1536;
}

.sidebar-packages{
  margin-top: 18px;
}

.sidebar-section-title{
  margin: 0 0 10px;
  font-size: 16px;
}

.sidebar-accordion-group{
  display: grid;
  gap: 10px;
}

.sidebar-accordion-item{
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(255,255,255,.80);
  box-shadow: 0 10px 22px rgba(14,18,22,.06);
}

.sidebar-accordion-trigger{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 0;
  background: transparent;
  color: rgba(14,18,22,.92);
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease;
}

.sidebar-accordion-trigger:hover,
.sidebar-accordion-trigger:focus-visible{
  background: #E7EDF4;
}

.sidebar-accordion-trigger:focus-visible{
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(176,141,87,.20);
}

.sidebar-accordion-title{
  font-weight: 650;
  line-height: 1.3;
}

.sidebar-accordion-icon{
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--navy2);
  transition: transform .18s ease;
}

.sidebar-accordion-trigger[aria-expanded="true"] .sidebar-accordion-icon{
  transform: rotate(45deg);
}

.sidebar-accordion-panel{
  padding: 0 16px 16px;
  color: var(--muted);
}

.sidebar-package-list{
  margin: 10px;
  padding-left: 18px;
}

.sidebar-package-list li{
  break-inside: avoid;
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
}

.sidebar-package-link{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  background: #125294;
  color: #fff;
  font-family: var(--brand-font-display);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}

.sidebar-package-link:hover,
.sidebar-package-link:focus-visible{
  background: #0f4479;
  transform: translateY(-1px);
  text-decoration: none;
}

.sidebar-package-link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(18,82,148,.16);
}

.sidebar-package-link-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.sidebar-package-link-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.mobile-sidebar-extras{
  display: none;
}

/* Gallery */
.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{
  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;
}

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

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

.booking-calendar-loading{
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--brand-ink, #12242e);
  text-align: center;
}

.booking-calendar-loading::before{
  width: 22px;
  height: 22px;
  content: "";
  border: 2px solid var(--brand-border, #e1e5e5);
  border-top-color: var(--brand-accent, #c33040);
  border-radius: 50%;
  animation: calendar-loading-spin .8s linear infinite;
}

.booking-calendar-loading strong{
  font-family: var(--brand-font-display);
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-calendar-loading span{
  color: var(--brand-muted-foreground, #566a72);
  font-size: 12px;
  line-height: 1.4;
}

.booking-calendar-loading a{
  margin-top: 3px;
  color: var(--brand-accent, #c33040);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.fh-embed.calendar-loading:not(.calendar-ready) iframe{
  opacity: 0;
}

.fh-embed.calendar-ready .booking-calendar-loading{
  display: none;
}

.fh-embed.calendar-ready iframe{
  opacity: 1;
}

@keyframes calendar-loading-spin{
  to{ transform: rotate(360deg); }
}

.booking-calendar-fallback{
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #c33040;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.fh-embed:has(iframe) .booking-calendar-fallback{ display: none; }

.availability-calendar{
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid #dfe5e4;
  border-radius: 8px;
  background: #fff;
}

.availability-calendar h3{
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid #e5e9e8;
  color: #263b41;
  font: 600 17px/1.2 var(--brand-font-display);
}

.availability-calendar .fh-embed iframe{
  display: block !important;
  min-height: 520px !important;
}


/* Responsive Adjustments */
@media (max-width: 980px){
  /* Sidebar above content on mobile */
  .content-grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "right"
      "left";
  }

  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .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: wrap;
    gap: 6px;
    margin-top: 0;
    overflow: visible;
  }
  .hero-best-for > span,
  .hero-best-for .pill{
    flex: 0 1 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;
  }
  .mobile-sidebar-extras{
    display: grid;
    gap: 18px;
    padding: 14px;
    background: #F7F5F0;
  }
  .mobile-sidebar-extras[hidden]{
    display: none;
  }
  .mobile-sidebar-extras .sidebar-packages{
    margin-top: 0;
  }
  .mobile-sidebar-extras .addon-promo{
    margin-top: 0;
  }

}

@media (max-width: 560px){
  body.yacht-page-enhanced{
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
  .tile,
  .mosaic .tile.big{
    height: min(520px, 112vw);
  }
  .hero-title{
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 12px;
    gap: 7px;
  }
  .hero-title h1{
    font-size: clamp(22px, 7vw, 30px);
  }
  .hero-conversion-facts{
    font-size: 11.5px !important;
  }
  .hero-conversion-actions{
    gap: 6px;
  }
  .hero-conversion-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;
  }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .yacht-mobile-dock{
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: minmax(88px,.7fr) minmax(180px,1.5fr);
    gap: 8px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(14,18,22,.12);
    background: rgba(247,245,240,.96);
    box-shadow: 0 -10px 30px rgba(14,18,22,.14);
    backdrop-filter: blur(12px);
  }
  .yacht-mobile-dock a{
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--brand-font-display);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .yacht-mobile-dock__call{
    border: 1px solid #16579a;
    color: #16579a;
    background: #fff;
  }
  .yacht-mobile-dock__book{
    color: #fff;
    background: #c33040;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-track{ scroll-behavior: auto !important; }
  .booking-calendar-loading::before{ animation: none; }
}

/* Shared layout for vessels whose pricing and capacity are confirmed by request. */
.availability-panel{padding:20px;position:sticky;top:16px;}
.availability-panel h2{margin-top:2px;}
.availability-panel .btn{width:100%;margin-top:10px;min-height:44px;}
.availability-note{padding:12px;margin-top:14px;border-radius:12px;background:rgba(255,255,255,.72);color:var(--muted);font-size:13px;}
.fleet-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:18px 0;}
.fleet-fact{border:1px solid var(--line);background:rgba(255,255,255,.7);padding:13px;border-radius:12px;}
.fleet-fact strong{display:block;color:var(--text);margin-bottom:3px;}
.faq-list{display:grid;gap:10px;margin-top:12px;}
.faq-list details{border:1px solid var(--line);border-radius:12px;padding:12px 14px;background:rgba(255,255,255,.68);}
.faq-list summary{cursor:pointer;font-weight:700;color:var(--text);}
.faq-list p{margin-top:8px;}
@media (max-width:680px){.fleet-facts{grid-template-columns:1fr;}.availability-panel{position:static;}}

/* Screenshot-reference yacht detail rebuild */
body.yacht-reference-page{background:#fff;color:#263b41;font-family:var(--brand-font-body);font-size:14px;line-height:1.6;}
.yacht-reference-page .wrap{max-width:1180px;padding:0 18px;}
.yacht-reference-page .hero{padding:28px 0 0;}
.yacht-reference-page .hero-shell{border:0;border-radius:9px;background:#fff;box-shadow:none;}
.yacht-reference-page .hero-controls{
  position:absolute;
  inset:0;
  z-index:6;
  display:block;
  pointer-events:none;
}
.yacht-reference-page .hero-controls[hidden]{display:none;}
.yacht-reference-page .hero-controls .iconbtn{
  position:absolute;
  top:50%;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.76);
  background:rgba(3,47,57,.9);
  color:#fff;
  box-shadow:0 8px 22px rgba(3,47,57,.26);
  font-size:32px;
  line-height:1;
  transform:translateY(-50%);
  pointer-events:auto;
}
.yacht-reference-page .hero-controls .iconbtn:hover,
.yacht-reference-page .hero-controls .iconbtn:focus-visible{
  background:#cf3043;
  border-color:#fff;
  outline:3px solid rgba(255,255,255,.74);
  outline-offset:2px;
}
.yacht-reference-page .hero-controls .iconbtn[hidden]{display:none;}
.yacht-reference-page #prevHero{left:18px;}
.yacht-reference-page #nextHero{right:18px;}
.yacht-reference-page .hero-track{scrollbar-width:none;}
.yacht-reference-page .hero-track::-webkit-scrollbar{display:none;}
.yacht-reference-page .hero-slide{height:500px;max-height:none;}
.yacht-reference-page .mosaic{gap:10px;padding:0;}
.yacht-reference-page .tile{border:0;border-radius:9px;background:#f2f4f1;}
.yacht-reference-page .ph-img{transform:none;}
.yacht-reference-page .hero-overlay{display:none;}
.yacht-reference-page .hero-title{left:14px;right:calc(33.333% + 12px);bottom:14px;width:auto;max-width:none;padding:12px 14px;border:1px solid rgba(255,255,255,.34);border-left:4px solid #cf3043;border-radius:8px;background:rgba(4,62,72,.92);box-shadow:0 12px 28px rgba(3,47,57,.2);backdrop-filter:blur(9px);}
.yacht-reference-page .hero-best-for{gap:8px;color:#fff;font:600 10px/1.2 var(--brand-font-body);}
.yacht-reference-page .hero-best-for>span:first-child{color:#fff;font:600 11px/1 var(--brand-font-display);letter-spacing:.09em;text-transform:uppercase;}
.yacht-reference-page .hero-best-for .pill{padding:6px 10px;border:1px solid rgba(255,255,255,.28);border-radius:999px;background:rgba(255,255,255,.1);color:#fff;font:700 9px/1.2 var(--brand-font-body);letter-spacing:.02em;}
.yacht-reference-page main{padding:16px 0 70px;}
.yacht-reference-page .content-grid{grid-template-columns:minmax(0,2.05fr) minmax(300px,.95fr);gap:18px;margin-top:0;}
.yacht-reference-page .left-stack{gap:18px;}
.yacht-reference-page .panel{border:1px solid #dfe5e4;border-radius:9px;background:#fff;box-shadow:none;}
.yacht-reference-page .left{padding:28px 30px;}
.yacht-reference-page .left>h1{margin:0 0 14px;color:#263b41;font:600 29px/1.08 var(--brand-font-display);letter-spacing:0;}
.yacht-reference-page .left>p{margin:0 0 14px;color:#68777a;font-size:14px;line-height:1.7;}
.yacht-reference-page .itinerary-block{margin-top:24px;padding-top:22px;border-top:1px solid #e4e8e7;}
.yacht-reference-page .itinerary-block .kicker,.yacht-reference-page .addons-panel .kicker,.yacht-reference-page .contact-card .kicker,.yacht-reference-page .gallery .kicker{color:#cf3043;font-size:9px;font-weight:800;letter-spacing:.17em;}
.yacht-reference-page .itinerary-block h2,.yacht-reference-page .itinerary-block h3,.yacht-reference-page .addons-title,.yacht-reference-page .contact-card h2,.yacht-reference-page .gallery h2{color:#263b41;font-family:var(--brand-font-display);font-weight:600;}
.yacht-reference-page .itinerary-tabs{justify-content:flex-start;margin:14px 0;border:0;background:transparent;padding:0;}
.yacht-reference-page .itinerary-tab{flex:0 0 auto;padding:8px 14px;border-radius:999px;background:#f0f2f0;color:#66777a;font-size:11px;}
.yacht-reference-page .itinerary-tab[aria-selected="true"]{background:#cf3043;color:#fff;}
.yacht-reference-page .addons-panel{padding:28px 30px;background:#fff;}
.yacht-reference-page .addons-toggle{bottom:0;}
.yacht-reference-page .addons-column+.addons-column{padding-left:0;border-left:0;}
.yacht-reference-page .addons-list li{display:flex;min-height:38px;align-items:center;padding:8px 10px;border:1px solid #e1e5e4;border-radius:5px;background:#fff;color:#263b41;font-size:12px;line-height:1.35;}
.yacht-reference-page .addons-links li{margin:0;padding:0;border:0;border-radius:0;background:transparent;}
.yacht-reference-page .addons-link{width:100%;min-height:38px;padding:8px 34px 8px 10px;border:1px solid #e1e5e4;border-radius:5px;background:#fff;color:#263b41;font-size:12px;line-height:1.35;}
.yacht-reference-page .addons-link:hover,.yacht-reference-page .addons-link:focus-visible{border-color:#cf3043;background:#fff;color:#263b41;transform:none;}
.yacht-reference-page .contact-card{padding:28px 30px;background:#fff;}
.yacht-reference-page .contact-card::before{display:none;}
.yacht-reference-page .contact-form{gap:10px;}
.yacht-reference-page .contact-grid{grid-template-columns:1fr;gap:9px;}
.yacht-reference-page .contact-field label{margin-bottom:4px;color:#3b5055;font:700 10px/1.2 var(--brand-font-body);letter-spacing:0;text-transform:none;}
.yacht-reference-page .contact-input{padding:9px 10px;border-color:#dfe5e4;border-radius:5px;font-size:12px;}
.yacht-reference-page .contact-textarea{min-height:90px;}
.yacht-reference-page .contact-opt-in{font-size:8.5px;line-height:1.3;}
.yacht-reference-page .contact-submit{width:100%;min-height:37px;padding:9px;border-radius:999px;font:800 10px/1 var(--brand-font-body);letter-spacing:0;text-transform:none;}
.yacht-reference-page .right{padding:0;border:0;background:transparent;overflow:visible;}
.yacht-reference-page .right .summary{padding:20px;border:1px solid #dfe5e4;border-radius:9px;background:#fff;}
.yacht-reference-page .right .summary>h3{margin:0 0 5px!important;color:#263b41;font:600 21px/1.12 var(--brand-font-display);}
.yacht-reference-page .booking-deposit-note,.yacht-reference-page .note{font-size:10px;}
.yacht-reference-page .cal{display:none;border-radius:6px;}
.yacht-reference-page .cal.is-open{display:block;}
.yacht-reference-page .price-tabs{padding:3px;border-radius:999px;background:#f4f3ed;}
.yacht-reference-page .ptab{padding:7px 8px;font-size:9px;}
.yacht-reference-page table{border:0;border-radius:0;background:#fff;}
.yacht-reference-page th,.yacht-reference-page td{padding:7px 3px;border-bottom:1px solid #edf0ef;font-size:10px;}
.yacht-reference-page th{background:#fff;color:#68777a;font-size:8px;text-transform:uppercase;}
.yacht-reference-page .addon-promo{min-height:0;margin-top:18px;border-radius:8px;box-shadow:none;}
.yacht-reference-page .addon-promo-img{min-height:0;}
.yacht-reference-page .sidebar-accordion-group{gap:7px;}
.yacht-reference-page .sidebar-accordion-item{border:1px solid #dfe5e4;border-radius:7px;background:#fff;box-shadow:none;}
.yacht-reference-page .sidebar-accordion-trigger{min-height:42px;padding:10px 12px;background:#fff;color:#263b41;font:700 11px/1.25 var(--brand-font-body);}
.yacht-reference-page .sidebar-accordion-trigger:hover,.yacht-reference-page .sidebar-accordion-trigger:focus-visible{background:#f6f2e8;}
.yacht-reference-page .sidebar-accordion-trigger[aria-expanded="true"]{background:#f6f2e8;}
.yacht-reference-page .sidebar-accordion-icon{display:inline-flex;width:22px;height:22px;align-items:center;justify-content:center;border:1px solid #dfe5e4;border-radius:999px;color:#0b6571;font-size:15px;}
.yacht-reference-page .sidebar-accordion-trigger[aria-expanded="true"] .sidebar-accordion-icon{border-color:#cf3043;background:#cf3043;color:#fff;}
.yacht-reference-page .sidebar-accordion-panel{padding:0 12px 12px;border-top:1px solid #e7eae9;color:#68777a;}
.yacht-reference-page .sidebar-package-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 10px;margin:12px 0 13px;padding:0;list-style:none;}
.yacht-reference-page .sidebar-package-list li{position:relative;min-width:0;margin:0;padding-left:14px;color:#596b6f;font-size:10.5px;line-height:1.35;}
.yacht-reference-page .sidebar-package-list li::before{content:"";position:absolute;left:1px;top:.38em;width:7px;height:4px;border-bottom:1.5px solid #0b6571;border-left:1.5px solid #0b6571;transform:rotate(-45deg);}
.yacht-reference-page .sidebar-package-link{min-height:38px;margin-top:0;padding:9px 12px;border-radius:999px;background:#cf3043;font:600 10px/1 var(--brand-font-display);letter-spacing:.08em;}
.yacht-reference-page .sidebar-package-link:hover,.yacht-reference-page .sidebar-package-link:focus-visible{background:#a92735;transform:none;}
.yacht-reference-page .sidebar-package-link-icon{width:14px;height:14px;}
.yacht-reference-page .gallery{margin-top:22px;padding:0;border:0;}
.yacht-reference-page .gallery-grid{grid-template-columns:repeat(3,1fr);gap:10px;}
.yacht-reference-page .gallery-grid .thumb:nth-child(3n + 1):last-child{grid-column:span 3;}
.yacht-reference-page .gallery-grid .thumb:nth-child(3n + 1):nth-last-child(2){grid-column:span 2;}
.yacht-reference-page .thumb{min-height:0;aspect-ratio:16/10;border:0;border-radius:7px;}
.yacht-reference-page .yacht-mobile-dock{display:none!important;}
.yacht-reference-page .right .summary{padding:0;border:0;border-radius:0;background:transparent;}
.yacht-reference-page .sidebar-card,.yacht-reference-page .sidebar-packages{margin-bottom:16px;padding:18px;border:1px solid #dfe5e4;border-radius:9px;background:#fff;}
.yacht-reference-page .sidebar-card>h3,.yacht-reference-page .sidebar-section-title{margin:0 0 11px;color:#263b41;font:600 20px/1.05 var(--brand-font-display);text-transform:uppercase;}
.yacht-reference-page .booking-status{margin:11px 0 0;color:#0b6571;font-size:10px;font-weight:700;}
.yacht-reference-page .booking-actions{display:grid;gap:8px;margin-top:11px;}
.yacht-reference-page .booking-call{display:flex;min-height:38px;align-items:center;justify-content:center;border:1px solid #dfe5e4;border-radius:999px;color:#263b41;font-size:10px;font-weight:700;text-decoration:none;}
.yacht-reference-page .addons-panel{min-height:0;}
.yacht-reference-page .contact-card{min-height:0;}
.yacht-reference-page .contact-card .contact-form{gap:14px;}
.yacht-reference-page .contact-card .contact-grid{gap:12px;}
.yacht-reference-page .contact-card .contact-input{min-height:48px;}
.yacht-reference-page .contact-card .contact-textarea{min-height:125px;}
.yacht-reference-page .cta-section{padding-top:72px;padding-bottom:62px;}
.yacht-reference-page .main-footer{padding-top:68px;padding-bottom:30px;}
@media (max-width:980px){
  .yacht-reference-page .content-grid{grid-template-columns:1fr;grid-template-areas:"left" "right";}
  .yacht-reference-page .right{grid-area:right;}
  .yacht-reference-page .hero-slide{height:auto;}
  .yacht-reference-page .hero-track{display:flex;overflow-x:hidden;}
  .yacht-reference-page .hero-slide{display:block;min-width:100%;}
  .yacht-reference-page .mosaic{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;gap:7px;}
  .yacht-reference-page .tile,.yacht-reference-page .mosaic .tile.big{height:auto;aspect-ratio:16/10;border-radius:7px;}
  .yacht-reference-page .mosaic .tile.big{grid-column:1/-1;grid-row:auto;}
  .yacht-reference-page .hero-title{position:static;width:100%;max-width:none;margin-bottom:8px;background:#043e48;}
  .yacht-reference-page .hero-title{order:-1;}
  .yacht-reference-page .hero-shell{display:flex;flex-direction:column;}
  .yacht-reference-page .hero-controls .iconbtn{width:44px;height:44px;font-size:29px;}
  .yacht-reference-page #prevHero{left:12px;}
  .yacht-reference-page #nextHero{right:12px;}
  .yacht-reference-page .mobile-sidebar-extras .sidebar-packages{margin:0;padding:0;border:0;border-radius:0;background:transparent;}
}
@media (max-width:560px){
  body.yacht-reference-page{padding-bottom:0;}
  .yacht-reference-page .wrap{padding:0 10px;}
  .yacht-reference-page .right .summary,
  .yacht-reference-page .mobile-sidebar-extras{
    width:100%;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
  }
  .yacht-reference-page .sidebar-card,
  .yacht-reference-page .sidebar-packages,
  .yacht-reference-page .addon-promo{
    width:100%;
    margin-right:0;
    margin-left:0;
    box-sizing:border-box;
  }
  .yacht-reference-page .hero{padding-top:14px;}
  .yacht-reference-page .hero-title{padding:8px;}
  .yacht-reference-page .hero-best-for{overflow:visible;flex-wrap:wrap;}
  .yacht-reference-page .hero-slide,.yacht-reference-page .mosaic{height:auto!important;}
  .yacht-reference-page .mosaic{grid-template-rows:auto auto;gap:8px;align-items:start;}
  .yacht-reference-page .tile,.yacht-reference-page .mosaic .tile.big{width:100%;min-width:0;overflow:hidden;}
  .yacht-reference-page .ph-img{transform:none;}
  .yacht-reference-page .mobile-yacht-calendar{display:block!important;width:100%;margin:10px 0 16px;border:0;border-radius:0;background:transparent;overflow:visible;scroll-margin-top:12px;}
  .yacht-reference-page .mobile-yacht-calendar .cal-body{padding:0;}
  .yacht-reference-page .sidebar-card--booking{display:none;}
  .yacht-reference-page main{padding:10px 0 46px;}
  .yacht-reference-page .content-grid{gap:10px;}
  .yacht-reference-page .left,.yacht-reference-page .addons-panel,.yacht-reference-page .contact-card{padding:18px 16px;}
  .yacht-reference-page .addons-toggle{bottom:0;}
  .yacht-reference-page .left>h1{font-size:25px;}
  .yacht-reference-page .left>p{font-size:13px;line-height:1.65;}
  .yacht-reference-page .addons-grid{grid-template-columns:1fr;gap:16px;}
  .yacht-reference-page .addons-column+.addons-column{padding:16px 0 0;border-top:1px solid #e3e7e6;border-left:0;}
  .yacht-reference-page .sidebar-package-list{gap:8px 12px;}
  .yacht-reference-page .sidebar-package-list li{font-size:11px;}
  .yacht-reference-page .right .summary{padding:0;}
  .yacht-reference-page .gallery-grid{grid-template-columns:repeat(3,1fr);gap:7px;}
  .yacht-reference-page .gallery-grid .thumb:nth-child(3n + 1):last-child{grid-column:span 3;}
  .yacht-reference-page .gallery-grid .thumb:nth-child(3n + 1):nth-last-child(2){grid-column:span 2;}
  .yacht-reference-page .addons-panel{min-height:0;}
  .yacht-reference-page .contact-card{min-height:0;}
  .yacht-reference-page .contact-card .contact-input{min-height:46px;}
  .yacht-reference-page .contact-card .contact-textarea{min-height:112px;}
  .yacht-reference-page .cta-section{padding-top:48px;padding-bottom:42px;}
  .yacht-reference-page .main-footer{padding-top:42px;}
  .yacht-reference-page .gallery{min-height:0;}
}

.yacht-breadcrumb{min-height:46px;background:#f6f2e8;color:#66777a;font-size:11px;}
.yacht-breadcrumb .wrap{display:flex;min-height:46px;align-items:center;gap:8px;}
.yacht-breadcrumb a{color:#66777a;text-decoration:none;}
.yacht-breadcrumb strong{color:#263b41;font-weight:700;}
@media (min-width:981px){.yacht-reference-page .hero-slide{height:420px;}}
@media (min-width:561px){.yacht-reference-page .gallery-grid .thumb:nth-child(n+7){display:none;}}
@media (max-width:560px){
  .yacht-breadcrumb,.yacht-breadcrumb .wrap{min-height:38px;}
  .yacht-breadcrumb{font-size:9px;}
}

/* Typography legibility pass. */
body.yacht-reference-page{font-size:16px;line-height:1.65;}
.yacht-reference-page .hero-best-for,
.yacht-reference-page .hero-best-for>span:first-child,
.yacht-reference-page .hero-best-for .pill{font-size:12px;line-height:1.35;}
.yacht-reference-page .left>p,
.yacht-reference-page .yacht-faq-link{font-size:16px;line-height:1.65;}
.yacht-reference-page .itinerary-block .kicker,
.yacht-reference-page .addons-panel .kicker,
.yacht-reference-page .contact-card .kicker,
.yacht-reference-page .gallery .kicker{font-size:12px;line-height:1.4;}
.yacht-reference-page .itinerary-tab{font-size:14px;}
.yacht-reference-page .timeline-item p{font-size:15px;line-height:1.6;}
.yacht-reference-page .addons-list li,
.yacht-reference-page .addons-link{font-size:14px;line-height:1.45;}
.yacht-reference-page .booking-deposit-note,
.yacht-reference-page .booking-status,
.yacht-reference-page .booking-call{font-size:14px;line-height:1.45;}
.yacht-reference-page .price-tabs .ptab{font-size:14px;line-height:1.35;}
.yacht-reference-page th{font-size:13px;line-height:1.4;}
.yacht-reference-page td{font-size:15px;line-height:1.45;}
.yacht-reference-page .note{font-size:14px;line-height:1.5;}
.yacht-reference-page .sidebar-accordion-title,
.yacht-reference-page .sidebar-package-list li{font-size:14px;line-height:1.45;}
.yacht-reference-page .sidebar-accordion-panel{font-size:14px;line-height:1.55;}
.yacht-reference-page .yacht-breadcrumb{font-size:13px;line-height:1.4;}

@media (max-width:560px){
  .yacht-reference-page .left>p,
  .yacht-reference-page .yacht-faq-link{font-size:16px;}
  .yacht-reference-page .timeline-item p{font-size:16px;}
  .yacht-reference-page .yacht-breadcrumb{font-size:12px;}
}

.yacht-reference-page .timeline-item p{font-size:16px;line-height:1.65;}
.yacht-reference-page input:not([type="checkbox"]):not([type="radio"]),
.yacht-reference-page textarea,
.yacht-reference-page select{font-size:16px!important;}
