:root {
  --ink: #111114;
  --ink-2: #202026;
  --paper: #fffdf9;
  --cream: #f6f0e8;
  --soft: #eee8df;
  --red: #d81232;
  --red-dark: #a80d26;
  --sand: #d8cbbd;
  --sea: #0b6572;
  --sea-dark: #083f49;
  --sky: #dbecef;
  --muted: #65656f;
  --line: rgba(17, 17, 20, 0.13);
  --shadow: 0 24px 70px rgba(14, 14, 18, 0.12);
  --shadow-small: 0 12px 30px rgba(14, 14, 18, 0.09);
  --radius: 26px;
  --radius-small: 16px;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 42px);
  --section: clamp(72px, 9vw, 120px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: #ffd0d8; color: var(--ink); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.03em; }
h1 { font-size: clamp(44px, 7vw, 82px); margin-bottom: 24px; max-width: 12ch; }
h2 { font-size: clamp(34px, 4.7vw, 58px); margin-bottom: 20px; }
h3 { font-size: clamp(21px, 2.1vw, 28px); margin-bottom: 12px; }
p { margin-bottom: 18px; color: #42424a; }

.container { width: min(var(--max), calc(100% - (2 * var(--pad)))); margin-inline: auto; }
.section { padding: var(--section) 0; position: relative; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: rgba(255,255,255,.75); }
.section-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.light h2, .section-heading.light p { color: #fff; }
.centered { text-align: center; }
.lead { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.6; }
.fine { font-size: 13px; color: var(--muted); }
.light-fine { color: rgba(255,255,255,.64) !important; }
.microcopy { font-size: 13px; max-width: 760px; color: rgba(255,255,255,.68); margin-top: 16px; }
.eyebrow, .kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}
.eyebrow.dark { color: var(--red); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-small);
}
.skip-link:focus { transform: translateY(0); }

.operator-bar { background: #070709; color: #fff; font-size: 12px; }
.operator-inner { min-height: 36px; display: flex; align-items: center; gap: 12px; justify-content: space-between; }
.operator-inner span { color: rgba(255,255,255,.68); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,253,249,.94);
  border-bottom: 1px solid rgba(17,17,20,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -.04em;
}
.brand-copy { display: grid; gap: 1px; line-height: 1.1; }
.brand-copy b { font-size: 13px; letter-spacing: .12em; }
.brand-copy small { color: var(--muted); font-size: 11px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav > a:not(.button) { font-weight: 720; font-size: 14px; color: #2c2c31; }
.nav > a:not(.button):hover { color: var(--red); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: none;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-small); }
.button:focus-visible { outline: 3px solid rgba(216,18,50,.32); outline-offset: 3px; }
.button-red { background: var(--red); color: #fff; }
.button-red:hover { background: var(--red-dark); }
.button-dark { background: var(--ink); color: #fff; }
.button-light { background: #fff; color: var(--ink); border-color: rgba(17,17,20,.12); }
.button-outline { background: transparent; border-color: rgba(17,17,20,.25); color: var(--ink); }
.button-small { min-height: 40px; padding: 10px 17px; font-size: 13px; }

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,.23), transparent 20%),
    linear-gradient(135deg, #0b1417 0%, #0b3e48 51%, #0d7180 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,8,10,.64) 0%, rgba(4,8,10,.18) 58%, rgba(4,8,10,.04) 100%),
    repeating-linear-gradient(120deg, transparent 0 58px, rgba(255,255,255,.02) 58px 59px);
}
.hero-grid { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0,1.23fr) minmax(300px,.72fr); gap: clamp(40px, 7vw, 90px); align-items: end; }
.hero-copy { max-width: 780px; }
.hero-copy h1 { color: #fff; }
.hero-lead { color: rgba(255,255,255,.88); font-size: clamp(19px,2.2vw,24px); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.advisor-card {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 38px);
  box-shadow: 0 30px 100px rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.5);
}
.advisor-card h2 { font-size: clamp(27px,3vw,38px); }
.advisor-card p { color: #4d4d54; }
.advisor-card .kicker { color: var(--red); }

.hero-sea { position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.hero-sea .sun { position: absolute; width: clamp(120px,16vw,230px); height: clamp(120px,16vw,230px); border-radius: 50%; right: 8%; top: 12%; background: rgba(255,245,222,.22); box-shadow: 0 0 80px rgba(255,245,222,.13); }
.hero-sea .wave { position: absolute; left: -8%; width: 116%; height: 190px; border-radius: 50%; border-top: 1px solid rgba(255,255,255,.18); }
.wave-one { bottom: 70px; transform: rotate(-2deg); }
.wave-two { bottom: 4px; transform: rotate(3deg); opacity: .72; }
.ship-line {
  position: absolute;
  right: 7%;
  bottom: 140px;
  width: clamp(250px,35vw,470px);
  height: 78px;
  border-bottom: 7px solid rgba(255,255,255,.17);
  transform: skewX(-12deg);
}
.ship-line::before {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 6px;
  width: 52%;
  height: 52px;
  border: 5px solid rgba(255,255,255,.13);
  border-bottom: 0;
  border-radius: 6px 16px 0 0;
}
.ship-line::after {
  content: "";
  position: absolute;
  left: 48%;
  bottom: 58px;
  width: 8px;
  height: 42px;
  background: rgba(255,255,255,.12);
  box-shadow: 28px 8px 0 rgba(255,255,255,.10);
}

.quick-facts { background: #fff; border-bottom: 1px solid var(--line); }
.fact-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.fact-grid > div { padding: 24px 18px; text-align: center; border-right: 1px solid var(--line); }
.fact-grid > div:last-child { border-right: 0; }
.fact-grid strong { display: block; font-size: 22px; line-height: 1.1; }
.fact-grid span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }

.split-intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px,7vw,92px); align-items: start; margin-bottom: 58px; }
.card-grid { display: grid; gap: 18px; }
.four-up { grid-template-columns: repeat(4, 1fr); }
.feature-card, .cabin-card, .ship-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fff;
  padding: 28px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover, .cabin-card:hover, .ship-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-small); }
.feature-index, .ship-number, .cabin-label { font-size: 11px; letter-spacing: .14em; font-weight: 900; color: var(--red); }
.feature-card h3 { margin-top: 38px; }

.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.included-grid article { padding: 30px; background: #16161b; min-height: 170px; }
.included-grid b { display: block; color: #fff; font-size: 19px; margin-bottom: 10px; }
.included-grid p { margin: 0; font-size: 14px; }

.dining-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(42px,8vw,100px); align-items: start; }
.dining-copy { position: sticky; top: 124px; }
.restaurant-stack { display: grid; gap: 14px; }
.restaurant-stack article { border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; background: #fff; }
.restaurant-stack article span { font-size: 11px; letter-spacing: .13em; font-weight: 850; text-transform: uppercase; color: var(--red); }
.restaurant-stack article b { display: block; margin-top: 4px; font-size: 22px; }
.restaurant-stack article p { margin-bottom: 0; font-size: 14px; }

.cta-band { padding: 34px 0; background: var(--cream); border-block: 1px solid var(--line); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { font-size: clamp(26px,3vw,38px); margin: 0 0 6px; }
.cta-band p { margin: 0; }

.cabin-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
.cabin-card { padding: 24px; min-height: 245px; }
.cabin-card h3 { font-size: 22px; margin-top: 44px; }
.cabin-card p { font-size: 14px; }
.cabin-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-10px); }
.cabin-card.featured p { color: rgba(255,255,255,.75); }
.cabin-card.featured:hover { transform: translateY(-14px); }
.advisor-note { margin: 34px auto 0; max-width: 880px; padding: 22px 26px; border-left: 4px solid var(--red); background: var(--cream); }
.advisor-note p { margin: 0; }

.ship-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ship-card { overflow: hidden; padding: 0; }
.ship-card > :not(.ship-graphic) { margin-left: 24px; margin-right: 24px; }
.ship-card p:last-child { margin-bottom: 26px; }
.ship-graphic { height: 160px; position: relative; overflow: hidden; background: linear-gradient(#cfe4e8 0 64%, #0e6e7b 64% 100%); }
.ship-graphic::before {
  content: "";
  position: absolute;
  left: 15%;
  right: 8%;
  bottom: 31px;
  height: 35px;
  background: #f8f7f4;
  clip-path: polygon(4% 0, 100% 0, 92% 100%, 13% 100%, 0 58%);
  box-shadow: 0 8px 0 rgba(0,0,0,.12);
}
.ship-graphic::after {
  content: "";
  position: absolute;
  left: 37%;
  bottom: 66px;
  width: 43%;
  height: 48px;
  background: #f8f7f4;
  border-radius: 7px 10px 0 0;
  box-shadow: -26px 15px 0 -10px #f8f7f4;
}
.ship-graphic span::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 52%;
  bottom: 112px;
  width: 7px;
  height: 26px;
  background: var(--red);
}
.ship-graphic span::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 44%;
  bottom: 82px;
  width: 3px;
  height: 3px;
  background: #3a5158;
  box-shadow: 9px 0 #3a5158,18px 0 #3a5158,27px 0 #3a5158,36px 0 #3a5158,45px 0 #3a5158,54px 0 #3a5158,63px 0 #3a5158;
}
.ship-number { display: block; margin-top: 22px; margin-bottom: 6px; }
.ship-card h3 { margin-bottom: 10px; }

.destination-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px,8vw,100px); }
.destination-list { border-top: 1px solid var(--line); }
.destination-list article { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.destination-list b { font-size: 17px; }
.destination-list span { color: #55555f; }

.bimini-section { background: #0b6673; color: #fff; overflow: hidden; }
.bimini-section p { color: rgba(255,255,255,.8); }
.bimini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px,8vw,100px); align-items: center; }
.bimini-art { min-height: 420px; border-radius: var(--radius); position: relative; overflow: hidden; background: linear-gradient(#bfe4e8 0 53%, #efddc1 53% 68%, #1993a1 68% 100%); box-shadow: var(--shadow); }
.bimini-art::before { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: #f5cc7a; top: 34px; right: 48px; opacity: .92; }
.bimini-art::after { content: ""; position: absolute; left: -8%; width: 118%; height: 90px; border-radius: 50%; border-top: 6px solid rgba(255,255,255,.55); bottom: 12px; transform: rotate(-3deg); }
.palm { position: absolute; bottom: 90px; width: 15px; height: 145px; background: #563e2c; border-radius: 50% 50% 0 0; transform-origin: bottom; }
.palm::before { content: ""; position: absolute; width: 120px; height: 70px; left: -52px; top: -20px; background: #1f704f; clip-path: polygon(50% 42%, 99% 0, 67% 48%, 100% 68%, 59% 61%, 75% 100%, 50% 69%, 25% 100%, 40% 60%, 0 68%, 33% 48%, 0 0); }
.palm-one { left: 26%; transform: rotate(-5deg); }
.palm-two { left: 47%; height: 118px; transform: rotate(6deg) scale(.8); }

.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px,8vw,100px); }
.experience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.experience-cards article { min-height: 180px; border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: #fff; }
.experience-cards b { font-size: 19px; }
.experience-cards p { font-size: 14px; margin-top: 10px; margin-bottom: 0; }

.wellness-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px,8vw,100px); align-items: center; }
.wellness-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); overflow: hidden; }
.wellness-list span { display: grid; place-items: center; min-height: 100px; padding: 20px; background: #17171c; color: #fff; font-weight: 800; text-align: center; }

.advisor-section-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px,8vw,100px); align-items: start; }
.advisor-benefits { display: grid; gap: 0; border-top: 1px solid var(--line); }
.advisor-benefits article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.advisor-benefits article > span { font-size: 11px; color: var(--red); font-weight: 900; letter-spacing: .1em; padding-top: 4px; }
.advisor-benefits b { font-size: 18px; }
.advisor-benefits p { margin: 5px 0 0; font-size: 14px; }

.how-section { padding: var(--section) 0; background: linear-gradient(135deg, #101015 0%, #202026 100%); color: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps article { border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 28px; background: rgba(255,255,255,.04); }
.steps article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 900; margin-bottom: 34px; }
.steps h3 { color: #fff; }
.steps p { color: rgba(255,255,255,.7); margin-bottom: 0; }
.cta-space { margin-top: 40px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(42px,8vw,100px); align-items: start; }
.faq-intro { position: sticky; top: 124px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 22px 42px 22px 0; font-weight: 830; font-size: 17px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 3px; top: 18px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); font-size: 20px; }
details[open] summary::after { content: "-"; }
details p { padding: 0 40px 22px 0; margin: 0; }

.help-section { background: var(--cream); }
.help-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(42px,8vw,90px); align-items: start; }
.help-copy { position: sticky; top: 124px; }
.check-list { padding: 0; margin: 26px 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; margin: 11px 0; color: #3e3e45; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 15px; height: 8px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }
.check-list.compact { margin-bottom: 0; }
.check-list.compact li { font-size: 14px; }
.inquiry-form { background: #fff; border-radius: var(--radius); padding: clamp(26px,4vw,42px); box-shadow: var(--shadow); border: 1px solid rgba(17,17,20,.06); }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: block; margin-bottom: 17px; color: #2a2a2f; font-size: 13px; font-weight: 760; }
.inquiry-form label > span { color: var(--red); }
.inquiry-form .consent span { color: inherit; }
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfcfd4;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  margin-top: 7px;
}
.inquiry-form textarea { resize: vertical; min-height: 145px; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(216,18,50,.1); }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px !important; align-items: start; font-weight: 540 !important; }
.consent input { margin-top: 4px; }
.consent span { padding-top: 1px; }
.form-status { min-height: 24px; margin: 13px 0 0; font-size: 14px; font-weight: 700; }
.form-status.success { color: #0b6d45; }
.form-status.error { color: #a80d26; }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.sticky-cta { position: fixed; z-index: 70; bottom: 0; left: 0; right: 0; background: rgba(17,17,20,.95); color: #fff; border-top: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); }
.sticky-inner { min-height: 66px; display: flex; align-items: center; gap: 22px; justify-content: space-between; }
.sticky-inner > span { font-size: 13px; }
.sticky-inner > div { display: flex; gap: 9px; }

.footer { background: #070709; color: #fff; padding: 58px 0 90px; }
.footer-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; }
.footer p { color: rgba(255,255,255,.65); font-size: 13px; margin: 7px 0; }
.footer a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.36); text-underline-offset: 3px; }
.copyright { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); font-size: 12px; color: rgba(255,255,255,.45); }

@media (max-width: 1040px) {
  .nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .advisor-card { max-width: 680px; }
  .four-up { grid-template-columns: repeat(2,1fr); }
  .cabin-grid { grid-template-columns: repeat(2,1fr); }
  .cabin-card.featured { transform: none; }
  .cabin-card.featured:hover { transform: translateY(-5px); }
  .ship-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  :root { --section: 72px; }
  html { scroll-padding-top: 88px; }
  .operator-inner { justify-content: center; text-align: center; }
  .operator-inner span { display: none; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 68px; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; }
  .hero-sea .ship-line { opacity: .35; }
  .fact-grid { grid-template-columns: repeat(2,1fr); }
  .fact-grid > div { border-bottom: 1px solid var(--line); }
  .fact-grid > div:nth-child(2n) { border-right: 0; }
  .fact-grid > div:last-child { grid-column: 1 / -1; }
  .split-intro,
  .dining-grid,
  .destination-layout,
  .bimini-grid,
  .experience-grid,
  .wellness-grid,
  .advisor-section-grid,
  .faq-layout,
  .help-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .dining-copy, .faq-intro, .help-copy { position: static; }
  .included-grid { grid-template-columns: repeat(2,1fr); }
  .bimini-art { min-height: 330px; }
  .steps { grid-template-columns: 1fr; }
  .destination-list article { grid-template-columns: 1fr; gap: 7px; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .sticky-inner > span { display: none; }
  .sticky-inner { justify-content: flex-end; }
}

@media (max-width: 580px) {
  h1 { font-size: clamp(42px,13vw,62px); }
  .brand-copy b { font-size: 11px; }
  .nav .button { padding-inline: 14px; }
  .hero { padding-top: 58px; }
  .hero-actions .button { width: 100%; }
  .four-up,
  .included-grid,
  .cabin-grid,
  .ship-grid,
  .experience-cards,
  .wellness-list,
  .form-row.two { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .included-grid { gap: 1px; }
  .sticky-inner > div { width: 100%; }
  .sticky-inner .button { flex: 1; }
  .footer { padding-bottom: 94px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .operator-bar, .site-header, .sticky-cta, .hero-actions, .button { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; background: #fff; color: #000; padding: 30px 0; }
  .hero-copy h1, .hero-lead, .microcopy, .eyebrow { color: #000; }
  .section-dark, .how-section, .bimini-section { background: #fff; color: #000; }
  .section-dark p, .how-section p, .bimini-section p { color: #333; }
  .advisor-card, .feature-card, .cabin-card, .ship-card, .inquiry-form { box-shadow: none; }
}
