/* Homepage */
:root{
  --home-bg: #f7f5f0;
  --home-panel: #fff;
  --home-ink: rgba(14,18,22,.92);
  --home-muted: rgba(14,18,22,.68);
  --home-soft: rgba(14,18,22,.10);
  --home-blue: #125294;
  --home-blue-deep: #0f3655;
  --home-blue-2: #2f6882;
  --home-red: #c33040;
  --home-gold: #c89d55;
  --home-shadow: 0 22px 54px rgba(14,18,22,.10);
  --home-shadow-soft: 0 12px 30px rgba(14,18,22,.08);
  --home-max: 1560px;
  --tier-luxury: #4a2e3f;
  --tier-premium: #1f3c4d;
  --tier-standard: #3e5f5a;
  --tier-sandbar: #c97a4a;
  --yacht-bg: #fff;
  --yacht-ink: rgba(14,18,22,.92);
  --yacht-muted: rgba(14,18,22,.58);
}

*, *::before, *::after{ box-sizing: border-box; }

html, body{ margin: 0; overflow-x: hidden; }

body{
  color: var(--home-ink);
  background:
    radial-gradient(900px 540px at 9% 0%, rgba(200,157,85,.14), transparent 64%),
    radial-gradient(900px 560px at 96% 5%, rgba(47,104,130,.14), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--home-bg) 38%, #fff 100%);
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img{ display: block; max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.home-page{
  width: 100%;
  padding: 18px clamp(12px, 2vw, 32px) 0;
}

.home-fleet,
.home-quick-links,
.home-copy-panel,
.home-tier-banner,
.home-contact-banner,
.cta-section{
  width: min(100%, var(--home-max));
  margin-inline: auto;
}

.home-kicker{
  margin: 0 0 9px;
  color: var(--home-blue-2);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-section-head{
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.home-section-head h2,
.home-contact-copy h2,
.home-copy-panel h1,
.home-copy-panel h2{
  margin: 0 0 14px;
  color: #173b4d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
}

.home-section-head--light h2,
.home-contact-copy h2,
.home-section-head--light .home-kicker,
.home-contact-copy .home-kicker{
  color: #fff;
}

.home-fleet{
  padding: 0 0 16px;
}

.home-fleet-carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 330px);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 4px 2px 20px;
  scrollbar-width: none;
}

.home-fleet-carousel::-webkit-scrollbar{ display: none; }

.yacht-card{
  --tier-color: var(--tier-standard);
  display: block;
  color: var(--yacht-ink);
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.25);
  scroll-snap-align: start;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.yacht-card:hover,
.yacht-card:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,.35);
  text-decoration: none;
}

.yacht-card.tier-luxury{ --tier-color: var(--tier-luxury); }
.yacht-card.tier-premium{ --tier-color: var(--tier-premium); }
.yacht-card.tier-standard{ --tier-color: var(--tier-standard); }
.yacht-card.tier-sandbar{ --tier-color: var(--tier-sandbar); }

.yacht-media{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #e9e6e1;
}

.yacht-image{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.yacht-ribbon{
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 12px;
  background: #16579a;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.55);
  pointer-events: none;
}

.yacht-info{
  position: relative;
  background: var(--yacht-bg);
  padding: 14px 16px 12px;
}

.yacht-info::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tier-color);
  box-shadow: 0 2px 6px var(--tier-color), 0 6px 18px rgba(0,0,0,.08);
  pointer-events: none;
}

.yacht-tier{
  display: none;
}

.yacht-title{
  margin: 0 0 4px;
  color: var(--yacht-ink);
  font-family: Georgia, "Playfair Display", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 180ms ease;
}

.yacht-card:hover .yacht-title,
.yacht-card:focus-visible .yacht-title{
  color: var(--home-gold);
}

.yacht-subtitle{
  margin: 0 0 8px;
  color: var(--yacht-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .10em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yacht-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yacht-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--tier-color) 23%, white);
  color: color-mix(in srgb, var(--tier-color) 65%, black);
  font-size: 12.5px;
  font-weight: 600;
}

.home-carousel-progress{
  --home-progress: 0px;
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(18,82,148,.13);
  cursor: pointer;
}

.home-carousel-progress::before{
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: rgba(255,255,255,.72);
}

.home-carousel-thumb{
  position: absolute;
  top: 50%;
  left: var(--home-progress);
  width: 180px;
  height: 12px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-red), var(--home-gold));
  box-shadow: 0 8px 18px rgba(195,48,64,.18);
  cursor: grab;
}

.home-carousel-thumb:active{ cursor: grabbing; }

.home-quick-links{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(14,18,22,.10);
  box-shadow: var(--home-shadow-soft);
}

.home-quick-link{
  min-height: 124px;
  display: grid;
  gap: 7px;
  place-items: center;
  padding: 18px;
  background: rgba(255,255,255,.92);
  color: #142c39;
  text-align: center;
  text-decoration: none;
}

.home-quick-icon{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e7edf4;
  color: var(--home-blue);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.home-quick-link strong{
  color: #142c39;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-quick-link em{
  max-width: 18ch;
  color: var(--home-muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.25;
}

.home-tier-banner,
.home-contact-banner{
  margin-top: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--home-blue-deep), var(--home-blue));
  color: #fff;
  box-shadow: var(--home-shadow);
}

.home-tier-banner__inner{
  padding: 34px;
}

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

.home-tier-card{
  position: relative;
  min-height: 310px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #0f2230;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.home-tier-card img{
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 240ms ease;
}

.home-tier-card:hover img,
.home-tier-card:focus-visible img{
  transform: scale(1.035);
}

.home-tier-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.58), transparent 36%),
    linear-gradient(0deg, rgba(0,0,0,.70), transparent 46%);
  z-index: 1;
}

.home-tier-price,
.home-tier-name{
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-tier-price{
  top: 16px;
  font-size: 15px;
}

.home-tier-name{
  bottom: 16px;
  font-size: 27px;
}

.home-copy-panel{
  margin-top: 28px;
  padding: 38px;
  border-radius: 24px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(255,255,255,.90);
  box-shadow: var(--home-shadow-soft);
}

.home-copy-panel h3{
  margin: 0 0 10px;
  color: #173b4d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.15;
}

.home-copy-panel h4{
  margin: 0 0 10px;
  color: var(--home-blue);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-copy-panel p{
  margin: 0 0 16px;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.78;
}

.home-copy-panel p:last-child{ margin-bottom: 0; }

.home-copy-panel a{
  color: var(--home-blue);
  font-weight: 700;
}

.home-intro-feature{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 26px;
  align-items: center;
}

.home-intro-text{
  min-width: 0;
}

.home-general-gallery{
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #0f2230;
}

.home-general-gallery__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px;
  scrollbar-width: none;
}

.home-general-gallery__track::-webkit-scrollbar{ display: none; }

.home-general-gallery__track img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  scroll-snap-align: center;
}

.home-contact-inner{
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, .65fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
}

.contact-form{
  display: grid;
  gap: 16px;
}

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

.contact-field{
  display: grid;
  gap: 7px;
}

.contact-field label{
  color: rgba(255,255,255,.86);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-input{
  width: 100%;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: var(--home-ink);
  font: inherit;
  padding: 12px 13px;
}

.contact-textarea{
  min-height: 130px;
  resize: vertical;
}

.contact-opt-in{
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.45;
}

.contact-opt-in a{
  color: #fff;
  font-weight: 700;
}

.contact-submit{
  justify-self: start;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--home-red);
  color: #fff;
  cursor: pointer;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .15em;
  padding: 13px 24px;
  text-transform: uppercase;
}

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

.home-charter-grid article{
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(18,82,148,.12);
  background: #f7f5f0;
}

.home-charter-grid article p{
  font-size: 16px;
  line-height: 1.7;
}

.home-rental-split{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.home-rental-split h2,
.home-rental-split p{
  grid-column: 1;
}

.home-rental-circle-links{
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.home-rental-circle-links a{
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  background: var(--home-blue);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(18,82,148,.22);
}

.home-rental-circle-links a:nth-child(2){
  background: var(--home-gold);
  color: #1f1a12;
}

.home-yacht-features{
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.home-yacht-feature{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(14,18,22,.10);
  background: #f7f5f0;
}

.home-yacht-feature.is-reversed{
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.home-yacht-feature.is-reversed .home-yacht-feature__media{
  order: 2;
}

.home-yacht-feature__media img,
.home-yacht-feature > img{
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.home-yacht-feature__copy,
.home-yacht-feature > div:not(.home-yacht-feature__media){
  min-width: 0;
  align-self: center;
  padding: 36px;
}

.home-yacht-feature__copy p,
.home-yacht-feature > div:not(.home-yacht-feature__media) p{
  font-size: 16px;
  line-height: 1.7;
}

.home-yacht-feature p:last-child{
  margin-top: 4px;
}

.home-yacht-feature__copy > p:last-child a,
.home-yacht-feature > div:not(.home-yacht-feature__media) > a{
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-blue);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  padding: 11px 18px;
  text-transform: uppercase;
  text-decoration: none;
}

.home-yacht-feature__copy > p:last-child a,
.home-yacht-feature__copy > p:last-child strong a,
.home-yacht-feature > div:not(.home-yacht-feature__media) > a{
  color: #fff;
}

.home-final-copy h3{
  margin-top: 24px;
}

.cta-section{
  margin-top: 30px;
  padding: 42px 24px;
  border-radius: 24px 24px 0 0;
  background: #125294;
  color: #fff;
  text-align: center;
}

.cta-section .container{
  max-width: 820px;
  margin: 0 auto;
}

.cta-section h2{
  margin: 0 0 10px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
}

.cta-section p{
  margin: 0 0 24px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.cta-section .btn-book,
.cta-section .btn-outline{
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}

.cta-section .btn-book{
  background: var(--home-red);
  color: #fff;
}

.cta-section .btn-outline{
  margin-left: 10px;
  border: 1px solid rgba(255,255,255,.42);
  color: #fff;
}

.main-footer{
  background: #0f2230;
  color: rgba(255,255,255,.78);
  padding: 46px 24px 32px;
  text-align: center;
}

.main-footer .container{
  max-width: var(--home-max);
  margin: 0 auto;
}

.main-footer .brand-name{
  display: block;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.main-footer .brand-sub{
  display: block;
  margin: 2px 0 20px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.main-footer .footer-info{
  margin-bottom: 20px;
  font-size: 14px;
}

.main-footer .footer-info p{ margin: 4px 0; }
.main-footer a{ color: rgba(255,255,255,.78); }

.main-footer .footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin-bottom: 24px;
}

.main-footer .footer-links a{
  color: rgba(255,255,255,.66);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.main-footer .footer-copy{
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
}

.main-footer .footer-copy p{ margin: 0; }

.services-overview-page{
  width: 100%;
  padding: 18px clamp(12px, 2vw, 32px) 0;
}

.services-overview-hero,
.services-overview-band,
.services-overview-section{
  width: min(100%, var(--home-max));
  margin-inline: auto;
}

.services-overview-hero{
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1.18fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(255,255,255,.90);
  box-shadow: var(--home-shadow);
}

.services-overview-copy{
  display: grid;
  align-content: center;
  padding: 42px;
}

.services-overview-copy h1{
  margin: 0;
  color: #173b4d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.04;
}

.services-overview-copy > p:not(.home-kicker){
  margin: 20px 0 0;
  color: var(--home-muted);
  font-size: 20px;
  line-height: 1.65;
}

.services-overview-media{
  min-height: 420px;
}

.services-overview-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-overview-band{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(14,18,22,.10);
  box-shadow: var(--home-shadow-soft);
}

.services-overview-band a{
  min-height: 74px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: #142c39;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

.services-overview-section{
  margin-top: 30px;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(14,18,22,.10);
  background: rgba(255,255,255,.86);
  box-shadow: var(--home-shadow-soft);
}

.services-section-head{
  margin-bottom: 18px;
}

.services-section-head h2{
  margin: 0;
  color: #173b4d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
}

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

.service-overview-card{
  display: grid;
  min-height: 100%;
  grid-template-rows: auto auto auto 1fr;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(14,18,22,.10);
  background: #fff;
  color: var(--home-ink);
  box-shadow: 0 12px 30px rgba(14,18,22,.07);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-overview-card:hover,
.service-overview-card:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(14,18,22,.12);
  text-decoration: none;
}

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

.service-overview-card span{
  margin: 16px 18px 0;
  color: var(--home-blue);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-overview-card h3{
  margin: 6px 18px 0;
  color: #173b4d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.12;
}

.service-overview-card p{
  margin: 10px 18px 20px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.55;
}

.service-card-large{
  grid-column: span 2;
}

.contact-page{
  width: 100%;
  padding: 0 clamp(12px, 2vw, 32px) 42px;
}

.contact-page .container{
  width: min(100%, var(--home-max));
  margin-inline: auto;
}

.contact-page .page-hero{
  padding: 44px 0 8px;
}

.contact-page .page-hero h1{
  margin: 0;
  color: #173b4d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
}

.contact-intro{
  margin: 0;
  color: var(--home-muted);
  font-size: 23px;
  line-height: 1.55;
}

.contact-page-form{
  margin-top: 26px;
}

.contact-page-form .home-contact-inner{
  grid-template-columns: 1fr;
}

.legal-page{
  width: 100%;
  padding: 0 clamp(12px, 2vw, 32px) 52px;
}

.legal-page .container{
  width: min(100%, var(--home-max));
  margin-inline: auto;
}

.legal-page .page-hero{
  padding: 48px 0 12px;
  text-align: center;
}

.legal-page .page-hero h1{
  margin: 0;
  color: #173b4d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
}

.legal-content{
  width: min(100%, 780px);
  max-width: 780px;
  margin-inline: auto;
  padding: 8px 0 8px;
  color: var(--home-ink);
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.legal-content h2{
  margin: 38px auto 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(14,18,22,.12);
  color: #173b4d;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.legal-content h3{
  margin: 26px auto 9px;
  color: #173b4d;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.legal-content p{
  max-width: 68ch;
  margin: 0 auto 16px;
  color: var(--home-muted);
  text-align: center;
}

.legal-content strong{
  color: var(--home-ink);
}

.legal-content ul{
  width: min(100%, 620px);
  margin: 0 auto 22px;
  padding-left: 28px;
  color: var(--home-muted);
  text-align: left;
}

.legal-content li{
  margin: 5px 0;
}

.legal-content hr{
  margin: 42px auto 34px;
  border: 0;
  border-top: 1px solid rgba(14,18,22,.14);
}

.book-now-page{
  width: 100%;
  padding: 18px clamp(10px, 1.6vw, 24px) 48px;
}

.book-now-shell{
  width: min(100%, var(--home-max));
  margin-inline: auto;
}

.book-now-shell{
  padding: clamp(8px, 1.4vw, 18px);
  border: 1px solid rgba(14,18,22,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--home-shadow-soft);
}

.book-now-embed{
  width: 100%;
  min-height: 2600px;
  overflow: visible;
}

.book-now-embed iframe,
.book-now-embed .fareharbor-calendar-wrap iframe{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 2600px;
  border: 0 !important;
  background: transparent;
}

.book-now-embed noscript p{
  margin: 0;
  color: var(--home-muted);
  font-size: 18px;
  text-align: center;
}

.book-now-embed noscript a{
  color: var(--home-blue);
  font-weight: 700;
}

@media (max-width: 1100px){
  .home-intro-feature,
  .home-contact-inner,
  .home-rental-split{
    grid-template-columns: 1fr;
  }

  .services-overview-hero,
  .services-card-grid{
    grid-template-columns: 1fr 1fr;
  }

  .services-overview-media{
    min-height: 340px;
  }

  .home-rental-split h2,
  .home-rental-split p,
  .home-rental-circle-links{
    grid-column: 1;
    grid-row: auto;
  }

  .home-rental-circle-links{
    justify-content: start;
    max-width: 330px;
  }

  .home-yacht-feature,
  .home-yacht-feature.is-reversed{
    grid-template-columns: 1fr;
  }

  .home-yacht-feature.is-reversed .home-yacht-feature__media{
    order: 0;
  }

  .home-yacht-feature__media img,
  .home-yacht-feature > img{
    min-height: 280px;
  }
}

@media (max-width: 760px){
  .home-page{
    padding-inline: 10px;
  }

  .home-section-head h2,
  .home-contact-copy h2,
  .home-copy-panel h1,
  .home-copy-panel h2{
    font-size: 32px;
  }

  .home-copy-panel h3{
    font-size: 27px;
  }

  .home-fleet-carousel{
    grid-auto-columns: minmax(270px, 84vw);
    gap: 14px;
  }

  .home-carousel-thumb{
    width: 96px;
  }

  .home-quick-links,
  .services-overview-band,
  .home-tier-grid,
  .home-charter-grid,
  .contact-grid,
  .services-overview-hero,
  .services-card-grid{
    grid-template-columns: 1fr;
  }

  .services-overview-copy,
  .services-overview-section{
    padding: 22px;
  }

  .services-overview-copy h1,
  .services-section-head h2{
    font-size: 33px;
  }

  .services-overview-copy > p:not(.home-kicker){
    font-size: 18px;
  }

  .service-card-large{
    grid-column: auto;
  }

  .home-quick-link{
    min-height: 74px;
  }

  .home-tier-banner__inner,
  .home-contact-inner,
  .home-copy-panel{
    padding: 22px;
  }

  .home-tier-card,
  .home-tier-card img{
    min-height: 220px;
  }

  .home-general-gallery__track{
    grid-auto-columns: 88%;
  }

  .home-general-gallery__track img{
    height: 280px;
  }

  .home-rental-circle-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .home-rental-circle-links a{
    width: 128px;
    height: 128px;
  }

  .home-yacht-feature__copy,
  .home-yacht-feature > div:not(.home-yacht-feature__media){
    padding: 24px;
  }

  .cta-section .btn-outline{
    margin: 12px 0 0;
  }

  .book-now-page{
    padding: 10px 8px 36px;
  }

  .book-now-shell{
    padding: 6px;
  }

  .book-now-embed,
  .book-now-embed iframe,
  .book-now-embed .fareharbor-calendar-wrap iframe{
    min-height: 4600px;
  }
}
