/*
Theme Name: Better Boat Club v32.3
Theme URI: https://betterboatclub.com
Author: Better Boat Club
Description: Miami yacht and fishing charter storefront with guided booking, package pricing, customer dashboards, operations controls, deposits, live taxes, and integrated fleet management.
Version: 32.3.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: better-boat-club-v30
*/

:root {
  --navy: #03192a;
  --navy-2: #07263d;
  --navy-3: #0b3552;
  --cyan: #12bdec;
  --cyan-2: #128fd8;
  --ink: #071729;
  --muted: #60738b;
  --soft: #f4f8fb;
  --warm: #f8f5ed;
  --white: #fff;
  --line: rgba(7, 23, 41, .10);
  --shadow: 0 22px 55px rgba(5, 28, 48, .14);
  --shadow-small: 0 12px 30px rgba(5, 28, 48, .10);
  --radius: 22px;
  --radius-small: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Inter, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1220px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 86px 0; }
.soft-section { background: var(--soft); }
.warm-section { background: var(--warm); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h1 { font-size: clamp(52px, 7vw, 92px); line-height: .97; }
h2 { font-size: clamp(36px, 4.4vw, 58px); line-height: 1.02; }
h3 { font-size: 23px; line-height: 1.12; }
p { line-height: 1.65; }

.button, .btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .btn:hover { transform: translateY(-2px); }
.button-primary, .btn:not(.dark):not(.outline) { background: linear-gradient(135deg, var(--cyan), var(--cyan-2)); color: var(--navy); box-shadow: 0 12px 28px rgba(18, 189, 236, .28); }
.button-dark, .btn.dark { background: var(--navy); color: #fff; box-shadow: 0 10px 22px rgba(3, 25, 42, .18); }
.button-outline-light { color: #fff; border: 1px solid rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .06); backdrop-filter: blur(8px); }
.button-full { width: 100%; }
.text-link { color: #087fbd; font-weight: 850; }

.eyebrow, .section-label, .kicker, .badge {
  display: inline-block;
  color: #0788ca;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.eyebrow-light, .section-label-light { color: #fff; }
.eyebrow-light { border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.09); padding: 10px 15px; border-radius: 999px; }
.section-heading { margin-bottom: 42px; }
.section-heading h2 { margin: 10px 0 15px; }
.section-heading p { color: var(--muted); font-size: 18px; max-width: 760px; }
.center-heading { text-align: center; }
.center-heading p { margin-left: auto; margin-right: auto; }
.narrow-heading { max-width: 820px; margin-left: auto; margin-right: auto; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: linear-gradient(180deg, #061e32, #031726); border-bottom: 1px solid rgba(255,255,255,.06); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.admin-bar .site-header { top: 32px; }
.nav-shell { height: 90px; display: flex; align-items: center; gap: 30px; }
.site-logo { flex: 0 0 auto; }
.site-logo img { width: 270px; height: auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.28)); }
.site-navigation { margin-left: auto; }
.primary-menu { list-style: none; display: flex; align-items: stretch; gap: 25px; padding: 0; margin: 0; }
.primary-menu > li { position: relative; display: flex; align-items: stretch; }
.primary-menu > li > a { color: #fff; font-size: 14px; font-weight: 800; white-space: nowrap; display: flex; align-items: center; min-height: 90px; }
.primary-menu a:hover, .primary-menu .current-menu-item > a { color: var(--cyan); }
.menu-caret { display: inline-block; margin-left: 6px; font-size: 15px; transform: translateY(-1px); }
.primary-menu .sub-menu {
  visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(8px);
  position: absolute; top: 100%; left: -18px; width: 255px; padding: 12px; margin: 0;
  list-style: none; background: #fff; border: 1px solid rgba(7,23,41,.08); border-radius: 14px;
  box-shadow: var(--shadow); transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.primary-menu .sub-menu::before { content: ''; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.primary-menu .sub-menu a { color: var(--ink); display: block; padding: 11px 12px; border-radius: 8px; font-size: 14px; font-weight: 750; }
.primary-menu .sub-menu a:hover, .primary-menu .sub-menu .current-menu-item > a { background: #eff8fd; color: #087fbd; }

.header-book { flex: 0 0 auto; }
.menu-toggle { display: none; width: 46px; height: 42px; border: 0; border-radius: 10px; background: rgba(255,255,255,.09); padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; }

/* Home hero */
.home-hero, .rentals-hero, .service-hero, .partner-hero {
  position: relative;
  min-height: 600px;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.home-hero { background-image: url('assets/hero-placeholder.webp'); background-position: center 58%; }
.home-hero-overlay, .rentals-hero-overlay, .service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(1,17,30,.90) 0%, rgba(1,17,30,.66) 48%, rgba(1,17,30,.22) 100%), linear-gradient(180deg, rgba(1,17,30,.08), rgba(1,17,30,.38));
}
.home-hero-content, .rentals-hero-copy, .service-hero-copy { position: relative; z-index: 1; padding: 115px 0 140px; max-width: 880px; }
.home-hero h1, .rentals-hero h1, .service-hero h1 { margin: 24px 0 18px; color: #fff; text-shadow: 0 5px 25px rgba(0,0,0,.28); }
.home-hero p, .rentals-hero p, .service-hero p { max-width: 730px; font-size: 21px; color: rgba(255,255,255,.94); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Premium floating search — based on the original BBC search bar */
.home-search-wrap { position: relative; z-index: 8; margin-top: -70px; }
.home-search-card, .rental-search {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(7,23,41,.08);
  border-radius: 20px;
  box-shadow: 0 24px 55px rgba(5,28,48,.18);
  overflow: hidden;
  padding: 16px 16px 0;
}
.search-main-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 14px; align-items: stretch; }
.search-field {
  min-width: 0; min-height: 64px; display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(7,23,41,.10); border-radius: 14px; background: #fff; padding: 10px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.search-field:focus-within { border-color: rgba(18,143,216,.55); box-shadow: 0 0 0 4px rgba(18,143,216,.08); }
.search-field-icon { width: 27px; height: 27px; flex: 0 0 27px; color: #173b5a; display: inline-flex; align-items: center; justify-content: center; }
.search-field-icon svg, .search-submit svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.search-field-control { min-width: 0; flex: 1; display: block; }
.search-field-control small { display: block; color: #263a50; font-size: 10px; line-height: 1; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; margin-bottom: 6px; }
.search-field input, .search-field select {
  width: 100%; height: 24px; min-height: 24px; border: 0; border-radius: 0; background: transparent; padding: 0 24px 0 0;
  color: var(--ink); font-size: 15px; line-height: 24px; font-weight: 700; outline: 0; box-shadow: none;
}
.search-field input[type="date"] { padding-right: 0; }
.search-submit { min-height: 64px; height: 64px; padding: 0 26px; white-space: nowrap; font-size: 15px; }
.search-submit svg { width: 19px; height: 19px; }
.search-trust { display: grid; grid-template-columns: repeat(3,1fr); margin: 16px -16px 0; border-top: 1px solid var(--line); background: linear-gradient(180deg,#fff,#fbfdff); }
.search-trust span { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 14px; font-size: 13px; font-weight: 800; color: #244057; border-right: 1px solid var(--line); }
.search-trust span:last-child { border-right: 0; }
.search-trust b { color: #0c8fcf; font-size: 17px; line-height: 1; }

/* Package cards */
.package-section { padding-top: 108px; }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.package-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-small); display: flex; flex-direction: column; }
.package-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); transition: .2s ease; }
.package-popular { border: 2px solid rgba(18,189,236,.6); }
.package-image { position: relative; height: 205px; overflow: hidden; }
.package-image img { width: 100%; height: 100%; object-fit: cover; }
.package-label { position: absolute; left: 14px; top: 14px; padding: 8px 11px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.package-popular .package-label { background: linear-gradient(135deg, var(--cyan), var(--cyan-2)); color: var(--navy); }
.package-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.package-body h3 { margin-bottom: 12px; }
.package-body p { color: var(--muted); font-size: 14px; flex: 1; }
.package-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 18px; }
.package-facts span { background: #eef7fc; color: #176487; border-radius: 999px; padding: 8px 10px; font-size: 11px; font-weight: 800; }
.package-price { font-size: 18px; font-weight: 900; margin-bottom: 16px; }
.package-body .button { width: 100%; }
.representative-note { margin: 30px auto 0; max-width: 950px; padding: 17px 20px; border: 1px solid rgba(18,143,216,.20); background: #f3faff; border-radius: 14px; color: #496278; font-size: 14px; }

/* How it works */
.dark-band { background: linear-gradient(135deg, #03192a, #082d49); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { padding: 10px 30px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-grid article:last-child { border-right: 0; }
.trust-grid article > span { display: block; color: var(--cyan); font-weight: 900; margin-bottom: 18px; }
.trust-grid h3 { margin-bottom: 10px; color: #fff; }
.trust-grid p { color: rgba(255,255,255,.72); font-size: 14px; margin-bottom: 0; }
.light-steps { background: var(--navy); color: #fff; padding: 35px 15px; border-radius: var(--radius); }

/* Experience tiles */
.experience-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.experience-tile { position: relative; min-height: 230px; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; justify-content: end; padding: 22px; color: #fff; background: linear-gradient(180deg, transparent 30%, rgba(2,18,31,.90)), var(--tile); background-size: cover; background-position: center; box-shadow: var(--shadow-small); }
.experience-tile span { font-size: 21px; font-weight: 900; }
.experience-tile small { margin-top: 6px; color: rgba(255,255,255,.82); }
.experience-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.experience-card-grid a { min-height: 300px; border-radius: 20px; padding: 25px; display: flex; flex-direction: column; justify-content: end; color: #fff; background: linear-gradient(180deg, transparent 32%, rgba(2,18,31,.92)), var(--card-image); background-size: cover; background-position: center; box-shadow: var(--shadow-small); }
.experience-card-grid span { font-size: 25px; font-weight: 900; }
.experience-card-grid small { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.83); }

/* Concierge and partner */
.concierge-section { padding-top: 20px; }
.concierge-card, .final-cta { border-radius: var(--radius); background: linear-gradient(135deg, #03192a, #0a3b5d); color: #fff; padding: 50px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: var(--shadow); }
.concierge-card h2, .final-cta h2 { color: #fff; margin: 10px 0; }
.concierge-card p, .final-cta p { color: rgba(255,255,255,.76); max-width: 700px; margin-bottom: 0; }
.partner-strip { background: var(--warm); }
.partner-grid, .partner-benefits { display: grid; grid-template-columns: 1.5fr .7fr; gap: 70px; align-items: center; }
.partner-grid h2, .partner-benefits h2 { margin: 10px 0 15px; }
.partner-grid p, .partner-benefits p { color: var(--muted); font-size: 18px; }

/* Rentals page */
.rentals-hero { background-image: var(--rentals-hero); background-position: center; }
.rental-search-strip { position: relative; z-index: 5; margin-top: -48px; }
.rental-search { padding: 16px 16px 0; }
.rental-search .button { height: 64px; }
.rental-package-list { display: grid; gap: 34px; }
.rental-package-row { display: grid; grid-template-columns: 1.05fr .95fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-small); }
.rental-package-row.row-reverse .rental-package-image { order: 2; }
.rental-package-image { min-height: 430px; position: relative; overflow: hidden; }
.rental-package-image img { width: 100%; height: 100%; object-fit: cover; }
.rental-package-image span { position: absolute; left: 20px; top: 20px; background: var(--navy); color: #fff; padding: 9px 13px; border-radius: 999px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.rental-package-copy { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.rental-package-copy h2 { margin: 10px 0 15px; }
.rental-package-copy > p { color: var(--muted); font-size: 17px; }
.check-list { padding: 0; margin: 22px 0; list-style: none; }
.check-list li { position: relative; padding: 8px 0 8px 28px; line-height: 1.4; }
.check-list li:before { content: '✓'; position: absolute; left: 0; color: #0b99d8; font-weight: 900; }
.check-list.compact li { font-size: 14px; }
.rental-package-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.rental-package-footer strong { font-size: 19px; }
.standards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.standards-grid article { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-small); }
.standards-grid article > span { display: inline-flex; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; background: #eaf7fe; color: #078dce; font-weight: 900; margin-bottom: 20px; }
.standards-grid h3 { margin-bottom: 10px; }
.standards-grid p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.final-cta-section { padding-top: 20px; }
.final-cta { position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(2,20,34,.98), rgba(2,20,34,.73), rgba(2,20,34,.22)), var(--cta-image); background-size: cover; background-position: center; }

/* Service pages */
.service-hero, .partner-hero { background-image: var(--service-image, var(--partner-image)); background-position: center; }
.simple-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.simple-package-grid article { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-small); display: flex; flex-direction: column; }
.simple-package-grid article.featured { border: 2px solid rgba(18,189,236,.55); transform: translateY(-8px); }
.simple-package-grid article > span { color: #078dce; font-weight: 900; font-size: 14px; }
.simple-package-grid h3 { font-size: 28px; margin: 14px 0; }
.simple-package-grid p { color: var(--muted); flex: 1; }
.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.detail-split figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.detail-split figure img { width: 100%; min-height: 480px; object-fit: cover; }

/* Booking */
.booking-hero { background: linear-gradient(135deg, #03192a, #0a3b5d); color: #fff; }
.booking-hero-inner { padding: 90px 0 110px; text-align: center; max-width: 850px; }
.booking-hero h1 { margin: 18px 0; color: #fff; }
.booking-hero p { max-width: 720px; margin: 0 auto; font-size: 19px; color: rgba(255,255,255,.77); }
.booking-section { background: var(--soft); }
.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
.booking-form-card, .sidebar-card, .booking-success { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.booking-form-card { padding: 38px; }
.booking-form-head { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.booking-form-head h2 { margin: 9px 0 10px; font-size: 40px; }
.booking-form-head p { color: var(--muted); margin-bottom: 0; }
.booking-form fieldset { border: 0; padding: 28px 0; margin: 0; border-bottom: 1px solid var(--line); }
.booking-form legend { font-size: 18px; font-weight: 900; margin-bottom: 18px; }
.choice-grid { display: grid; gap: 12px; }
.choice-grid-three { grid-template-columns: repeat(3, 1fr); }
.choice-grid-two { grid-template-columns: repeat(2, 1fr); }
.radio-card { position: relative; display: block; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card span { min-height: 88px; display: flex; flex-direction: column; justify-content: center; padding: 16px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.radio-card strong { margin-bottom: 6px; }
.radio-card small { color: var(--muted); line-height: 1.35; }
.radio-card input:checked + span { border: 2px solid var(--cyan-2); background: #effaff; box-shadow: 0 8px 20px rgba(18,143,216,.12); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid label, .booking-form label { font-size: 13px; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea, .booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; margin-top: 7px; border: 1px solid rgba(7,23,41,.16); border-radius: 11px; background: #fff; padding: 13px 14px; color: var(--ink); outline: none;
}
.form-grid input, .form-grid select { height: 50px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--cyan-2); box-shadow: 0 0 0 3px rgba(18,143,216,.10); }
.form-wide { grid-column: 1/-1; }
.honeypot { position: absolute !important; left: -10000px !important; }
.booking-submit-row { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.booking-submit-row div { display: flex; flex-direction: column; gap: 4px; }
.booking-submit-row span { color: var(--muted); font-size: 13px; }
.booking-sidebar { display: grid; gap: 18px; position: sticky; top: 120px; }
.sidebar-card { padding: 25px; }
.sidebar-card h3 { margin: 8px 0 12px; }
.sidebar-card p { color: var(--muted); font-size: 14px; }
.sidebar-note { background: var(--navy); color: #fff; }
.sidebar-note p { color: rgba(255,255,255,.72); }
.sidebar-steps { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 16px; }
.sidebar-steps li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; font-size: 14px; line-height: 1.4; }
.sidebar-steps span { width: 28px; height: 28px; border-radius: 50%; background: #eaf7fe; color: #078dce; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.booking-success { padding: 55px; text-align: center; }
.success-icon { display: flex; width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; align-items: center; justify-content: center; background: #e9fbf1; color: #0f9c57; font-size: 35px; font-weight: 900; }
.booking-success p { color: var(--muted); font-size: 17px; max-width: 650px; margin: 0 auto 25px; }
.form-alert { padding: 15px 18px; margin-bottom: 18px; border-radius: 12px; background: #fff1f1; color: #a62929; border: 1px solid #f3caca; }

/* Generic page */
.page-hero { background: linear-gradient(135deg, #03192a, #0a3b5d); color: #fff; padding: 95px 0; }
.page-hero h1 { margin: 15px 0 0; color: #fff; }
.content-page { max-width: 900px; }
.content-page p, .content-page li { color: #4e6478; font-size: 17px; }

/* About page */
.about-page { background: #fff; }
.about-hero { position: relative; min-height: 575px; color: #fff; background-image: var(--about-hero-image); background-size: cover; background-position: center; overflow: hidden; }
.about-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,20,34,.88), rgba(2,20,34,.55), rgba(2,20,34,.18)); }
.about-hero-inner { position: relative; z-index: 1; padding: 95px 0; }
.about-hero-copy { max-width: 700px; }
.about-hero-copy h1 { margin: 20px 0; }
.about-hero-copy p { font-size: 20px; max-width: 650px; }
.about-eyebrow { display: inline-block; font-size: 12px; text-transform: uppercase; font-weight: 900; letter-spacing: .1em; }
.about-eyebrow-light { color: #fff; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); padding: 10px 14px; border-radius: 999px; }
.about-hero-actions, .about-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.about-primary-btn { background: linear-gradient(135deg,var(--cyan),var(--cyan-2)); color: var(--navy); }
.about-outline-btn { border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.about-story-section { padding: 85px 0 30px; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-section-label { color: #078dce; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.about-story-copy h2, .about-reasons-intro h2 { margin: 12px 0 20px; }
.about-story-copy > p, .about-reasons-intro p { color: var(--muted); }
.about-story-image { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-story-image img { width: 100%; min-height: 500px; object-fit: cover; }
.about-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 30px; }
.about-trust-item { text-align: center; }
.about-trust-item strong, .about-trust-item small { display: block; }
.about-trust-item small { color: var(--muted); font-size: 11px; margin-top: 4px; }
.about-icon { width: 42px; height: 42px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; color: #078dce; }
.about-icon svg, .about-reason-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.about-stats-section { padding: 25px 0 0; }
.about-stats-grid { background: var(--navy); color: #fff; border-radius: var(--radius); display: grid; grid-template-columns: repeat(4,1fr); padding: 34px 20px; box-shadow: var(--shadow); }
.about-stat { text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.about-stat:last-child { border-right: 0; }
.about-stat-icon { display: block; color: var(--cyan); margin-bottom: 8px; }
.about-stat strong { display: block; font-size: 28px; }
.about-stat small { color: rgba(255,255,255,.72); }
.about-why-section { padding: 50px 0 90px; }
.about-reasons-panel { display: grid; grid-template-columns: 1.2fr repeat(4,1fr); gap: 14px; background: var(--soft); border-radius: var(--radius); padding: 30px; }
.about-reason-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 18px; text-align: center; }
.about-reason-icon { display: flex; width: 45px; height: 45px; margin: 0 auto 17px; color: #078dce; }
.about-reason-card h3 { font-size: 16px; }
.about-reason-card p { font-size: 12px; color: var(--muted); }
.about-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 30px 0 14px; }
.about-gallery figure { margin: 0; height: 220px; border-radius: 16px; overflow: hidden; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; }
.about-bottom-cta { position: relative; min-height: 310px; border-radius: var(--radius); overflow: hidden; padding: 50px; color: #fff; display: flex; align-items: center; background: linear-gradient(90deg,rgba(2,20,34,.97),rgba(2,20,34,.70),rgba(2,20,34,.20)), var(--about-cta-image); background-size: cover; background-position: center; }
.about-bottom-cta h2 { margin: 10px 0; color: #fff; }

/* Footer */
.site-footer { background: #021523; color: #fff; padding: 65px 0 25px; }
.footer-grid { display: grid; grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(130px, .75fr)); gap: 42px; }
.footer-logo-mark { display: block !important; width: min(300px, 100%); height: 78px; margin: 0 0 18px !important; background-repeat: no-repeat; background-position: left center; background-size: contain; }
.footer-brand img { width: auto; height: auto; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.64); }
.site-footer h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.site-footer a { display: block; color: rgba(255,255,255,.70); margin: 10px 0; font-size: 14px; }
.site-footer a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; color: rgba(255,255,255,.52); font-size: 12px; }

/* Older template compatibility */
.section.alt { background: var(--soft); }
.section-head { margin-bottom: 35px; }
.section-head h2 { margin-bottom: 10px; }
.lead, .meta { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card, .mini-card, .cta, .form-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-small); box-shadow: var(--shadow-small); }
.card { overflow: hidden; }
.card-img { min-height: 190px; background: #eaf7fe; display: flex; align-items: center; justify-content: center; color: #176487; font-weight: 800; }
.card-body { padding: 24px; }
.card-body .button, .card-body .btn { margin-top: 15px; }
.price { font-weight: 900; font-size: 19px; }
.features { display: flex; flex-wrap: wrap; gap: 8px; margin: 15px 0; }
.pill { padding: 7px 10px; border-radius: 999px; background: #eaf7fe; color: #176487; font-size: 11px; font-weight: 800; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.mini-card { padding: 24px; }
.experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cta { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.form-box { padding: 25px; }
.form-box input, .form-box select, .form-box textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 8px; }

@media (max-width: 1120px) {
  .container { width: min(100% - 36px, 1100px); }
  .site-logo img { width: 225px; }
  .primary-menu { gap: 15px; }
  .primary-menu a { font-size: 13px; }
  .package-grid { grid-template-columns: repeat(2,1fr); }
  .experience-tiles { grid-template-columns: repeat(2,1fr); }
  .search-main-row { grid-template-columns: repeat(2,1fr); }
  .search-main-row .search-submit { grid-column: 1/-1; }
  .booking-layout { grid-template-columns: minmax(0,1fr) 300px; }
  .about-reasons-panel { grid-template-columns: repeat(2,1fr); }
  .about-reasons-intro { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  .admin-bar .site-header { top: 46px; }
  .nav-shell { height: 76px; }
  .site-logo img { width: 205px; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-navigation { display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0; padding: 28px 24px; background: #03192a; overflow: auto; }
  .admin-bar .site-navigation { top: 122px; }
  .site-navigation.is-open { display: block; }
  .primary-menu { display: block; }
  .primary-menu > li { margin: 0; display: block; border-bottom: 1px solid rgba(255,255,255,.10); }
  .primary-menu > li > a { min-height: 0; display: flex; padding: 15px 0; font-size: 16px; }
  .primary-menu .sub-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: none; display: block; position: static; width: auto; background: transparent; border: 0; box-shadow: none; padding: 0 0 12px 18px; }
  .primary-menu .sub-menu::before { display: none; }
  .primary-menu .sub-menu a { color: rgba(255,255,255,.72); padding: 8px 0; }
  .header-book { display: none; }
  .home-hero, .rentals-hero, .service-hero, .partner-hero { min-height: 550px; }
  .home-hero-content, .rentals-hero-copy, .service-hero-copy { padding: 90px 0 120px; }
  .home-search-wrap { margin-top: -55px; }
  .search-trust { grid-template-columns: 1fr; }
  .search-trust span { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid, .standards-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .trust-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); padding: 25px; }
  .search-main-row { grid-template-columns: repeat(2,1fr); }
  .search-main-row .button { grid-column: 1/-1; }
  .rental-package-row { grid-template-columns: 1fr; }
  .rental-package-row.row-reverse .rental-package-image { order: 0; }
  .rental-package-image { min-height: 330px; }
  .simple-package-grid { grid-template-columns: 1fr; }
  .simple-package-grid article.featured { transform: none; }
  .experience-card-grid { grid-template-columns: repeat(2,1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .choice-grid-three { grid-template-columns: 1fr; }
  .detail-split, .about-story-grid, .partner-grid, .partner-benefits, .footer-grid { grid-template-columns: 1fr; }
  .about-trust-grid { grid-template-columns: repeat(2,1fr); gap: 22px; }
  .about-stats-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .about-stat { border-right: 0; }
  .about-gallery { grid-template-columns: repeat(2,1fr); }
  .footer-grid { gap: 25px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1220px); }
  .section { padding: 62px 0; }
  h1 { font-size: 49px; }
  h2 { font-size: 36px; }
  .site-logo img { width: 175px; }
  .home-hero, .rentals-hero, .service-hero, .partner-hero { min-height: 520px; }
  .home-hero-content, .rentals-hero-copy, .service-hero-copy { padding: 75px 0 100px; }
  .home-hero p, .rentals-hero p, .service-hero p { font-size: 17px; }
  .home-search-card, .rental-search { padding: 12px 12px 0; }
  .search-main-row { grid-template-columns: 1fr; gap: 10px; }
  .search-main-row .search-submit, .search-main-row .button { grid-column: auto; }
  .search-trust { grid-template-columns: 1fr; margin: 12px -12px 0; }
  .search-trust span { min-height: 50px; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-trust span:last-child { border-bottom: 0; }
  .package-grid, .experience-tiles, .experience-card-grid, .trust-grid, .standards-grid, .choice-grid-two, .form-grid, .about-stats-grid, .about-gallery, .grid, .experience-grid, .two-col, .cta { grid-template-columns: 1fr; }
  .split-heading, .concierge-card, .partner-grid, .rental-package-footer, .booking-submit-row, .footer-bottom { align-items: flex-start; flex-direction: column; display: flex; }
  .concierge-card, .final-cta { padding: 32px 24px; align-items: flex-start; flex-direction: column; }
  .rental-package-copy { padding: 32px 24px; }
  .rental-package-image { min-height: 260px; }
  .booking-form-card { padding: 24px 18px; }
  .booking-form-head h2 { font-size: 32px; }
  .about-reasons-panel { grid-template-columns: 1fr; padding: 18px; }
  .about-gallery figure { height: 230px; }
  .about-bottom-cta { padding: 32px 24px; }
}


/* Better Boat Club v15 — experience-led yacht and fishing system */
[hidden] { display: none !important; }
.home-hero-v15 .home-hero-content { max-width: 960px; margin: 0 auto; text-align: center; }
.home-hero-v15 h1 { max-width: 920px; margin-left: auto; margin-right: auto; }
.home-hero-v15 p { margin-left: auto; margin-right: auto; }
.home-hero-v15 .hero-actions, .home-hero-v15 .hero-proof-row { justify-content: center; }
.hero-proof-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-proof-row span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.24); background: rgba(2,20,34,.30); backdrop-filter: blur(8px); border-radius: 999px; color: rgba(255,255,255,.88); font-size: 12px; font-weight: 750; }
.experience-search-row { grid-template-columns: 1.45fr .9fr .9fr auto; }
.search-field-icon { font-weight: 900; font-size: 22px; }
.search-trust-four { grid-template-columns: repeat(4,1fr); }

.day-paths-section { padding-top: 116px; }
.day-path-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.day-path-card { min-height: 420px; padding: 28px; border-radius: var(--radius); overflow: hidden; color: #fff; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(180deg,rgba(2,20,34,.10),rgba(2,20,34,.92)), var(--path-image); background-size: cover; background-position: center; box-shadow: var(--shadow-small); transition: transform .2s ease, box-shadow .2s ease; }
.day-path-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.path-number { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.34); font-weight: 900; }
.day-path-card small { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.day-path-card h3 { margin: 10px 0 18px; font-size: 29px; max-width: 330px; }
.day-path-card strong { font-size: 14px; }

.signature-card-grid { display: grid; gap: 18px; }
.signature-card-grid-five { grid-template-columns: repeat(5,1fr); }
.signature-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-small); display: flex; flex-direction: column; }
.signature-featured { border: 2px solid rgba(18,189,236,.62); }
.signature-card-image { height: 170px; position: relative; overflow: hidden; }
.signature-card-image img { width: 100%; height: 100%; object-fit: cover; }
.signature-card-image span { position: absolute; left: 12px; top: 12px; max-width: calc(100% - 24px); background: rgba(3,25,42,.90); color: #fff; padding: 7px 9px; border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.signature-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.signature-card-body > small { color: #0788ca; font-weight: 850; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.signature-card-body h3 { font-size: 22px; margin: 9px 0; }
.signature-card-body p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.signature-card-body ul { list-style: none; padding: 0; margin: 0 0 20px; font-size: 12px; color: #32485f; flex: 1; }
.signature-card-body li { position: relative; padding: 6px 0 6px 17px; border-bottom: 1px solid var(--line); }
.signature-card-body li::before { content: '✓'; position: absolute; left: 0; color: #0a91cf; font-weight: 900; }
.signature-card .button { min-height: 44px; padding: 0 14px; font-size: 12px; }

.fishing-experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fishing-experience-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-small); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.fishing-experience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fishing-experience-card.fishing-featured { background: linear-gradient(135deg,#03192a,#0a3b5d); color: #fff; border-color: transparent; }
.fishing-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: #eaf7fe; color: #078dce; font-size: 23px; font-weight: 900; margin-bottom: 20px; }
.fishing-featured .fishing-icon { background: rgba(255,255,255,.12); color: var(--cyan); }
.fishing-experience-card small { color: #0788ca; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.fishing-featured small { color: var(--cyan); }
.fishing-experience-card h3 { margin: 8px 0 12px; font-size: 26px; }
.fishing-experience-card p { color: var(--muted); font-size: 14px; flex: 1; }
.fishing-featured p { color: rgba(255,255,255,.72); }
.fishing-experience-card strong { font-size: 13px; color: #087fbd; }
.fishing-featured strong { color: #fff; }

.better-difference-section .section-heading p, .fishing-included-section .section-heading p { color: rgba(255,255,255,.72); }
.difference-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.difference-grid article { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.055); border-radius: 18px; padding: 28px; }
.difference-grid article > span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.difference-grid h3 { color: #fff; margin: 18px 0 10px; }
.difference-grid p { color: rgba(255,255,255,.68); font-size: 14px; margin-bottom: 0; }

.standard-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.standard-copy h2 { margin: 12px 0 18px; }
.standard-copy p { color: var(--muted); font-size: 17px; }
.standard-check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.standard-check-grid span { min-height: 78px; display: flex; align-items: center; padding: 18px 18px 18px 52px; position: relative; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-small); font-weight: 750; font-size: 13px; }
.standard-check-grid span::before { content: '✓'; position: absolute; left: 18px; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #eaf7fe; color: #078dce; font-weight: 900; }

.club-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 45px; padding: 52px; border-radius: var(--radius); background: linear-gradient(135deg,#fff,#eef8fd); border: 1px solid rgba(7,23,41,.08); box-shadow: var(--shadow); }
.club-copy h2 { margin: 10px 0 16px; }
.club-copy p { color: var(--muted); font-size: 17px; }
.club-benefit-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; align-content: center; }
.club-benefit-list span { display: flex; align-items: center; gap: 12px; min-height: 64px; padding: 14px; border-radius: 13px; background: #fff; border: 1px solid var(--line); font-weight: 800; font-size: 13px; }
.club-benefit-list b { color: #078dce; }

.match-factor-grid, .experience-layer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.match-factor-grid article, .experience-layer-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-small); }
.match-factor-grid span, .experience-layer-grid span { color: #078dce; font-size: 12px; font-weight: 900; }
.match-factor-grid h3, .experience-layer-grid h3 { margin: 16px 0 9px; }
.match-factor-grid p, .experience-layer-grid p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.yacht-experience-layer-section { background: linear-gradient(180deg,#fff,#f4f8fb); }

.fishing-package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fishing-package-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-small); display: flex; flex-direction: column; }
.fishing-package-card.featured { border: 2px solid rgba(18,189,236,.65); box-shadow: var(--shadow); }
.fishing-package-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fishing-package-icon { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 13px; background: #eaf7fe; color: #078dce; font-size: 21px; font-weight: 900; }
.fishing-package-top small { color: #0788ca; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.fishing-package-card h3 { margin: 19px 0 10px; font-size: 29px; }
.fishing-package-card > p { color: var(--muted); }
.fishing-package-card .check-list { flex: 1; }
.fishing-package-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 20px; border-top: 1px solid var(--line); }
.fishing-package-footer strong { color: #0788ca; }
.catch-cruise-showcase { background: var(--warm); }
.catch-cruise-layout figure { order: 0; }

.experience-type-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.experience-type-tabs a { padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 13px; font-weight: 850; }
.experience-type-tabs a:hover { background: #eaf7fe; color: #078dce; }
.experience-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.experience-detail-card { min-height: 350px; display: grid; grid-template-columns: .85fr 1.15fr; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; box-shadow: var(--shadow-small); }
.experience-detail-card > img { width: 100%; height: 100%; object-fit: cover; }
.experience-detail-card > div { padding: 28px; }
.experience-detail-card small { color: #0788ca; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.experience-detail-card h3 { margin: 8px 0 12px; font-size: 28px; }
.experience-detail-card p { color: var(--muted); font-size: 14px; }
.custom-experience-card { background: linear-gradient(135deg,#03192a,#0a3b5d); color: #fff; grid-template-columns: 1fr; }
.custom-experience-card p, .custom-experience-card .check-list { color: rgba(255,255,255,.72); }
.custom-experience-card small, .custom-experience-card .text-link { color: var(--cyan); }

.certification-grid, .club-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.certification-grid article, .club-benefits-grid article { padding: 30px; border-radius: 18px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-small); }
.certification-grid span, .club-benefits-grid b { color: #078dce; font-size: 12px; font-weight: 900; }
.certification-grid h3, .club-benefits-grid h3 { margin: 18px 0 10px; }
.certification-grid p, .club-benefits-grid p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.fine-print { font-size: 12px !important; border-left: 3px solid var(--cyan-2); padding-left: 14px; }

.booking-page-v15 .booking-hero-inner { max-width: 980px; }
.service-choice-grid .radio-card span { min-height: 150px; align-items: flex-start; }
.choice-icon { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 11px; margin-bottom: 12px; background: #eaf7fe; color: #078dce; font-size: 18px; }
.fieldset-help { color: var(--muted); font-size: 13px; margin: -8px 0 16px; }
.experience-choice-grid .radio-card span { min-height: 100px; }
.addon-check-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.addon-check-grid label { position: relative; }
.addon-check-grid input { position: absolute; opacity: 0; pointer-events: none; }
.addon-check-grid span { min-height: 52px; padding: 12px 12px 12px 38px; display: flex; align-items: center; position: relative; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; color: #2a4056; font-size: 12px; }
.addon-check-grid span::before { content: ''; position: absolute; left: 13px; width: 14px; height: 14px; border: 1px solid rgba(7,23,41,.25); border-radius: 4px; }
.addon-check-grid input:checked + span { border-color: var(--cyan-2); background: #effaff; color: var(--ink); }
.addon-check-grid input:checked + span::before { content: '✓'; display: flex; align-items: center; justify-content: center; background: var(--cyan-2); color: #fff; border-color: var(--cyan-2); font-size: 10px; font-weight: 900; }
.promise-sidebar { background: linear-gradient(135deg,#03192a,#0a3b5d); color: #fff; }
.promise-sidebar p { color: rgba(255,255,255,.72); }
.promise-sidebar .section-label { color: var(--cyan); }
.footer-cta-link { color: var(--cyan) !important; font-weight: 850; }

@media (max-width: 1180px) {
  .signature-card-grid-five { grid-template-columns: repeat(3,1fr); }
  .experience-search-row { grid-template-columns: repeat(2,1fr); }
  .experience-search-row .search-submit { grid-column: 1/-1; }
  .search-trust-four { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .day-path-grid, .fishing-experience-grid, .fishing-package-grid, .certification-grid, .club-benefits-grid { grid-template-columns: repeat(2,1fr); }
  .difference-grid, .match-factor-grid, .experience-layer-grid { grid-template-columns: repeat(2,1fr); }
  .standard-layout, .club-card, .experience-detail-grid { grid-template-columns: 1fr; }
  .signature-card-grid-five { grid-template-columns: repeat(2,1fr); }
  .experience-detail-card { grid-template-columns: .8fr 1.2fr; }
  .addon-check-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  .hero-proof-row { gap: 7px; }
  .hero-proof-row span { font-size: 10px; padding: 7px 10px; }
  .day-path-grid, .signature-card-grid-five, .fishing-experience-grid, .difference-grid, .standard-check-grid, .club-benefit-list, .match-factor-grid, .experience-layer-grid, .fishing-package-grid, .experience-detail-grid, .certification-grid, .club-benefits-grid, .addon-check-grid, .search-trust-four { grid-template-columns: 1fr; }
  .day-path-card { min-height: 350px; }
  .signature-card-image { height: 210px; }
  .standard-layout { gap: 35px; }
  .club-card { padding: 30px 22px; }
  .experience-detail-card { grid-template-columns: 1fr; }
  .experience-detail-card > img { height: 230px; }
  .fishing-package-footer { align-items: flex-start; flex-direction: column; }
  .experience-search-row { grid-template-columns: 1fr; }
  .experience-search-row .search-submit { grid-column: auto; }
}

/* FAQ and policy content */
.policy-page-v15 .page-hero { background: linear-gradient(135deg,#03192a,#0a3b5d); color:#fff; padding: 86px 0; }
.policy-page-v15 .page-hero h1 { color:#fff; margin: 12px 0 16px; }
.policy-page-v15 .page-hero p { max-width: 760px; color: rgba(255,255,255,.76); font-size:18px; }
.policy-page-v15 .content-page { max-width: 900px; }
.policy-copy h2 { margin-bottom: 20px; }
.policy-copy h3 { margin: 34px 0 10px; font-size: 22px; }
.policy-copy p { color: var(--muted); }
.faq-list { display:grid; gap: 12px; }
.faq-list details { border:1px solid var(--line); border-radius:15px; background:#fff; box-shadow:var(--shadow-small); overflow:hidden; }
.faq-list summary { cursor:pointer; list-style:none; padding:20px 52px 20px 22px; position:relative; font-weight:850; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; position:absolute; right:22px; top:17px; font-size:24px; color:#078dce; }
.faq-list details[open] summary::after { content:'−'; }
.faq-list details p { padding:0 22px 22px; margin:0; color:var(--muted); }

/* Better Boat Club v15 checkout, inclusions, and contact upgrades */
@media (min-width: 901px) {
  .nav-shell {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr) 270px;
    align-items: center;
    gap: 28px;
  }
  .site-logo { justify-self: start; }
  .site-navigation { margin-left: 0; justify-self: center; height: 90px; display: flex; align-items: center; }
  .primary-menu { height: 90px; align-items: center; justify-content: center; gap: 24px; }
  .primary-menu > li { height: 90px; align-items: center; }
  .primary-menu > li > a { height: 90px; min-height: 90px; padding: 0; }
  .header-book { justify-self: end; }
}

.signature-inclusions-section { background: linear-gradient(180deg, #fff, #f4f9fc); }
.inclusion-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.inclusion-column { border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); box-shadow: var(--shadow-small); display: flex; flex-direction: column; }
.inclusion-column-yacht { background: #fff; }
.inclusion-column-fishing { background: linear-gradient(145deg, #03192a, #0a3b5d); color: #fff; }
.inclusion-column-head > span { color: #0788ca; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.inclusion-column-fishing .inclusion-column-head > span { color: var(--cyan); }
.inclusion-column-head h3 { margin: 10px 0 24px; font-size: 30px; }
.inclusion-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 26px; flex: 1; }
.inclusion-grid span, .included-panel span { position: relative; display: flex; align-items: flex-start; min-height: 58px; padding: 13px 13px 13px 39px; border-radius: 12px; font-size: 12px; line-height: 1.45; font-weight: 750; }
.inclusion-column-yacht .inclusion-grid span { background: var(--soft); color: #2a4056; }
.inclusion-column-fishing .inclusion-grid span { background: rgba(255,255,255,.08); color: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.08); }
.inclusion-grid span::before, .included-panel span::before { content: '✓'; position: absolute; left: 13px; top: 13px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #e2f6ff; color: #0788ca; font-size: 10px; font-weight: 900; }

.booking-layout-v15 { grid-template-columns: minmax(0, 1fr) 370px; gap: 34px; }
.booking-page-v15 .booking-form-card { overflow: hidden; }
.included-fieldset { background: linear-gradient(180deg, rgba(234,247,254,.55), rgba(255,255,255,0)); }
.included-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.included-panel span { background: #fff; border: 1px solid var(--line); color: #294057; }

.addon-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.addon-price-grid label { display: block; }
.addon-price-grid span {
  min-height: 138px;
  padding: 17px 16px 16px 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.addon-price-grid span::before { top: 18px; }
.addon-price-grid strong { font-size: 14px; line-height: 1.3; color: var(--ink); }
.addon-price-grid small { color: #0788ca; font-size: 13px; font-weight: 900; }
.addon-price-grid em { color: var(--muted); font-size: 11px; line-height: 1.45; font-style: normal; font-weight: 600; }
.booking-terms { padding: 24px 0 0; }
.booking-terms label { display: flex; align-items: flex-start; gap: 11px; font-size: 12px; line-height: 1.55; color: #43586e; }
.booking-terms input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; }
.booking-terms a { color: #087fbd; text-decoration: underline; }
.booking-submit-row-v15 { margin-top: 20px; padding: 24px; border-radius: 15px; background: var(--soft); }
.booking-submit-row-v15 button:disabled { opacity: .72; cursor: wait; }

.booking-sidebar-v15 { top: 112px; }
.live-price-card { padding: 28px; border: 2px solid rgba(18,143,216,.24); box-shadow: 0 20px 48px rgba(5,28,48,.14); }
.live-price-card h3 { margin: 9px 0 18px; font-size: 28px; }
.price-summary-lines { display: grid; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price-summary-lines > div, .price-summary-total, .price-summary-deposit, .price-summary-balance { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
.price-summary-lines span { color: var(--muted); font-size: 12px; line-height: 1.35; }
.price-summary-lines strong { font-size: 12px; white-space: nowrap; }
.price-summary-total { padding: 18px 0 7px; font-weight: 900; }
.price-summary-total strong { font-size: 24px; }
.price-summary-deposit { margin: 8px -10px; padding: 14px 10px; border-radius: 11px; background: #e8f8ff; color: #075d8b; font-weight: 900; }
.price-summary-deposit strong { font-size: 21px; }
.price-summary-balance { padding-top: 7px; color: var(--muted); font-size: 12px; }
.live-price-card > small { display: block; margin-top: 16px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.contact-sidebar a { display: block; color: #087fbd; font-weight: 850; margin-top: 9px; }

.preference-shell { max-width: 980px; }
.preference-form-card { padding: 44px; }
.compact-choice-grid .radio-card span { min-height: 80px; justify-content: center; }
.preference-invalid a { color: #087fbd; font-weight: 850; }

.contact-hero-actions .button { min-width: 220px; }
.contact-layout-v15 { grid-template-columns: minmax(0, 1fr) 340px; }
.form-success { margin: 22px 0 0; padding: 15px 17px; border-radius: 12px; background: #eaf9f1; color: #17613a; font-weight: 750; }
.direct-contact-card { background: linear-gradient(145deg, #fff, #eff9fe); }
.direct-contact-link { display: block; margin-top: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.direct-contact-link small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; margin-bottom: 4px; }
.direct-contact-link strong { color: #087fbd; font-size: 16px; overflow-wrap: anywhere; }
.footer-contact-links { margin: 14px 0; }
.footer-contact-links a { color: #fff; font-weight: 800; margin: 6px 0; }

.bbc15-thankyou { margin: 20px 0; padding: 24px; border-radius: 16px; background: #effaff; border: 1px solid rgba(18,143,216,.22); }
.bbc15-thankyou h2 { font-size: 28px; margin-bottom: 8px; }
.bbc15-thankyou p { margin-bottom: 8px; }
.bbc15-thankyou a { color: #087fbd; font-weight: 800; }

@media (max-width: 1180px) and (min-width: 901px) {
  .nav-shell { grid-template-columns: 220px minmax(0, 1fr) 220px; gap: 18px; }
  .site-logo img { width: 220px; }
  .primary-menu { gap: 15px; }
  .primary-menu > li > a { font-size: 12.5px; }
  .header-book { padding-inline: 19px; font-size: 13px; }
  .booking-layout-v15 { grid-template-columns: minmax(0, 1fr) 320px; }
}

@media (max-width: 900px) {
  .nav-shell { display: flex; }
  .inclusion-columns { grid-template-columns: 1fr; }
  .included-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-layout-v15, .contact-layout-v15 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .inclusion-column { padding: 26px 20px; }
  .inclusion-grid, .included-panel, .addon-price-grid { grid-template-columns: 1fr; }
  .inclusion-column-head h3 { font-size: 26px; }
  .addon-price-grid span { min-height: 116px; }
  .preference-form-card { padding: 25px 18px; }
  .booking-submit-row-v15 { padding: 20px; }
  .live-price-card { padding: 22px; }
}

.yacht-page-included-panel, .fishing-page-included-panel { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.included-page-cta { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.included-page-cta p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 700; }
@media (max-width: 900px) {
  .yacht-page-included-panel, .fishing-page-included-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .yacht-page-included-panel, .fishing-page-included-panel { grid-template-columns: 1fr; }
  .included-page-cta { justify-content: flex-start; }
}


/* Better Boat Club v18: BetterBoat Operations integration */
.fishing-price-band { padding-top: 34px; padding-bottom: 34px; background: linear-gradient(135deg, #eaf8ff, #f8fcff); border-top: 1px solid rgba(18,189,236,.16); border-bottom: 1px solid rgba(18,189,236,.16); }
.fishing-price-band .container { display:grid; grid-template-columns: 1.25fr repeat(3,minmax(0,1fr)); gap:16px; align-items:stretch; }
.fishing-price-intro { padding:22px 8px 22px 0; }
.fishing-price-intro h2 { margin:8px 0 8px; font-size:clamp(30px,3vw,46px); line-height:1; }
.fishing-price-intro p { margin:0; color:var(--muted); max-width:520px; }
.fishing-price-tier { border:1px solid var(--line); background:#fff; border-radius:18px; padding:22px; box-shadow:var(--shadow-small); display:flex; flex-direction:column; justify-content:space-between; }
.fishing-price-tier small { color:#0788ca; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.fishing-price-tier strong { display:block; margin:8px 0 4px; font-size:32px; color:var(--ink); }
.fishing-price-tier span { color:var(--muted); font-size:13px; line-height:1.5; }
.fishing-package-price { display:flex; flex-direction:column; gap:2px; }
.fishing-package-price small { color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.fishing-package-price strong { font-size:20px; color:#0788ca; }
.owned-fleet-note { margin-top:18px; padding:16px 18px; border-radius:14px; background:#eaf8ff; color:#07547b; font-weight:750; }
@media(max-width:980px){.fishing-price-band .container{grid-template-columns:repeat(2,minmax(0,1fr))}.fishing-price-intro{grid-column:1/-1}}
@media(max-width:640px){.fishing-price-band .container{grid-template-columns:1fr}.fishing-price-intro{grid-column:auto}.fishing-price-tier strong{font-size:28px}}

.footer-owner-link{display:inline-flex;margin-top:8px;color:rgba(255,255,255,.72);font-size:13px;font-weight:700}.footer-owner-link:hover{color:var(--cyan)}


/* Better Boat Club v22 — polished checkout pricing and persistent mobile total */
.live-price-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(18,143,216,.24);
  background: linear-gradient(180deg,#ffffff 0%,#f7fbfd 100%);
  box-shadow: 0 24px 58px rgba(3,25,42,.14);
}
.live-price-head {
  padding: 24px 25px 19px;
  background: linear-gradient(135deg,#03192a 0%,#08466a 100%);
  color: #fff;
}
.live-price-head .section-label { color: #45d5ff; }
.live-price-head h3 { margin: 7px 0 0; color: #fff; font-size: 27px; line-height: 1.06; }
.live-price-body { padding: 20px 24px 22px; }
.price-summary-lines { gap: 0; padding: 0 0 10px; }
.price-summary-lines > div {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px dashed #dbe5eb;
}
.price-summary-lines > div:last-child { border-bottom: 0; }
.price-summary-lines span { font-size: 12px; line-height: 1.45; color: #52697e; }
.price-summary-lines strong { font-size: 13px; line-height: 1.45; color: #0a263b; }
.price-summary-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 15px 0;
  border-top: 1px solid #dfe8ee;
  border-bottom: 1px solid #dfe8ee;
}
.price-summary-meta > div { display: contents; }
.price-summary-meta span { color: #65798b; font-size: 12px; }
.price-summary-meta strong { color: #18354b; font-size: 13px; text-align: right; }
.price-summary-total {
  padding: 18px 0 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.price-summary-total span { font-size: 13px; font-weight: 850; color: #18354b; }
.price-summary-total strong { font-size: 30px; line-height: 1; color: #03192a; letter-spacing: -.035em; }
.price-summary-deposit {
  margin: 4px 0 10px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg,#dff6ff,#ecfbff);
  border: 1px solid #b8e9fb;
  color: #075d8b;
}
.price-summary-deposit span { font-size: 13px; font-weight: 900; }
.price-summary-deposit strong { font-size: 23px; }
.price-summary-balance {
  padding: 6px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #60758a;
  font-size: 12px;
}
.live-price-card .price-note { display:block; margin-top:15px; color:#708294; font-size:10px; line-height:1.55; }
.mobile-price-dock { display:none; }

@media (max-width: 900px) {
  .booking-page-v15 { padding-bottom: 98px; }
  .mobile-price-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 1200;
    display: block;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(3,25,42,.97);
    color: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
  }
  .mobile-price-dock-main {
    width: 100%;
    min-height: 68px;
    padding: 10px 12px 10px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
  }
  .mobile-price-dock-main span { display:block; color:rgba(255,255,255,.62); font-size:9px; text-transform:uppercase; letter-spacing:.08em; font-weight:850; }
  .mobile-price-dock-main strong { display:block; margin-top:2px; color:#fff; font-size:17px; line-height:1.1; }
  .mobile-price-dock-main .mobile-due strong { color:#45d5ff; }
  .mobile-price-chevron { width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.1); font-size:18px; transition:transform .2s ease; }
  .mobile-price-dock.is-open .mobile-price-chevron { transform:rotate(180deg); }
  .mobile-price-drawer { display:none; padding: 0 16px 15px; border-top:1px solid rgba(255,255,255,.1); }
  .mobile-price-dock.is-open .mobile-price-drawer { display:block; }
  .mobile-price-drawer > div { display:flex; justify-content:space-between; gap:20px; padding-top:11px; font-size:12px; color:rgba(255,255,255,.7); }
  .mobile-price-drawer strong { color:#fff; }
  .mobile-price-drawer a { display:flex; align-items:center; justify-content:center; min-height:44px; margin-top:14px; border-radius:999px; background:linear-gradient(135deg,#20c8f4,#128fd8); color:#03192a; font-weight:900; }
}


/* v23: legal pages, secure owner applications, and streamlined checkout */
.policy-copy .policy-callout{margin:28px 0;padding:22px;border-left:4px solid var(--cyan);border-radius:0 14px 14px 0;background:#eef9fd;color:var(--ink)}
.policy-copy ul,.policy-copy ol{color:var(--muted);line-height:1.75;padding-left:22px}
.policy-copy li+li{margin-top:7px}
.policy-copy .legal-meta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 30px;color:var(--muted);font-size:14px}
.policy-copy .legal-meta span{padding:7px 11px;border:1px solid var(--line);border-radius:999px;background:#fff}
.partner-form-alert{padding:16px 18px;border-radius:14px;margin-bottom:18px;font-weight:700}
.partner-form-alert.success{background:#eaf8f0;color:#16643b;border:1px solid #b9e4ca}
.partner-form-alert.error{background:#fff1f0;color:#8a2721;border:1px solid #f2c3bf}
.consent-box{display:flex!important;gap:11px;align-items:flex-start;font-weight:600!important}
.consent-box input{width:auto!important;margin-top:3px}
.owner-app-status{display:inline-flex;padding:5px 9px;border-radius:999px;background:#eaf7fc;color:#0879ad;font-weight:800;font-size:12px}
@media(max-width:700px){.policy-copy .legal-meta{gap:7px}}


/* V25 reservation summary, status tracker and guest manifest */
.booking-detail-summary{display:grid;gap:0;margin:0 0 18px;border:1px solid var(--line);border-radius:13px;overflow:hidden;background:#f8fbfd}.booking-detail-summary>div{display:flex;justify-content:space-between;gap:16px;padding:10px 13px;border-bottom:1px solid var(--line);font-size:13px}.booking-detail-summary>div:last-child{border-bottom:0}.booking-detail-summary span{color:var(--muted)}.booking-detail-summary strong{text-align:right;color:var(--ink)}.bbc25-confirmation-timeline,.reservation-progress{list-style:none;margin:24px 0;padding:0;display:grid;gap:13px}.bbc25-confirmation-timeline li,.reservation-progress li{display:grid;grid-template-columns:36px 1fr;gap:13px;align-items:start;padding:15px;border:1px solid var(--line);border-radius:13px;background:#fff}.bbc25-confirmation-timeline li:before,.reservation-progress li>span{content:'•';display:flex;width:36px;height:36px;border-radius:50%;align-items:center;justify-content:center;background:#edf3f7;color:#60758a;font-weight:900}.bbc25-confirmation-timeline li.done:before,.reservation-progress li.done>span{content:'✓';background:#e8f8ef;color:#17633a}.bbc25-confirmation-timeline li.active:before,.reservation-progress li.active>span{background:#eaf8fe;color:#087fb8}.bbc25-confirmation-timeline strong,.reservation-progress strong{display:block}.bbc25-confirmation-timeline span,.reservation-progress small{display:block;color:var(--muted);margin-top:3px}.bbc25-thankyou-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}.status-page-grid{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.75fr);gap:28px;align-items:start}.status-side-stack{display:grid;gap:18px}.reservation-progress li{grid-template-columns:42px 1fr}.reservation-progress li>span{width:42px;height:42px}.status-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}.in-person-document-note{margin:22px 0 0;padding:17px 19px;border:1px solid #cfe4ef;border-radius:13px;background:#f4fbff}.in-person-document-note p{margin:5px 0 0;color:var(--muted)}.status-summary-list{display:grid;grid-template-columns:100px 1fr;gap:10px;margin:18px 0 0}.status-summary-list dt{color:var(--muted)}.status-summary-list dd{margin:0;font-weight:750;text-align:right}.status-payment-row{display:flex;justify-content:space-between;gap:16px;padding:12px 0;border-bottom:1px solid var(--line)}.status-payment-row.balance{border-bottom:0;font-size:17px}.manifest-guest-list{display:grid;gap:12px}.manifest-guest-row{display:grid;grid-template-columns:38px minmax(190px,1.6fr) minmax(130px,.7fr) minmax(170px,1fr);gap:12px;align-items:end;padding:14px;border:1px solid var(--line);border-radius:13px;background:#fbfdff}.manifest-guest-row>span{display:flex;width:34px;height:34px;border-radius:50%;align-items:center;justify-content:center;background:#eaf8fe;color:#087fb8;font-weight:900;margin-bottom:7px}.manifest-guest-row label{margin:0}.manifest-guest-row input,.manifest-guest-row select{width:100%}.mobile-price-drawer>div:nth-last-child(-n+4){display:none}
@media(max-width:900px){.status-page-grid{grid-template-columns:1fr}.manifest-guest-row{grid-template-columns:34px 1fr 1fr}.manifest-guest-row label:last-child{grid-column:2/-1}}
@media(max-width:700px){.manifest-guest-row{grid-template-columns:34px 1fr}.manifest-guest-row label{grid-column:2}.status-actions{display:grid}.status-actions .button{width:100%}.mobile-price-drawer>div:nth-last-child(-n+4){display:flex}}

/* Better Boat Club v29 booking flow */
.booking-hero-v29{padding-bottom:70px}.booking-trust-row{display:flex;flex-wrap:wrap;gap:10px 20px;margin-top:24px;color:#d9eff9;font-size:13px;font-weight:700}.booking-layout-v29{align-items:start}.booking-wizard{background:#fff;border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow-small);overflow:hidden}.wizard-progress{display:grid;grid-template-columns:repeat(4,1fr);background:#f1f6f9;border-bottom:1px solid var(--line)}.wizard-progress button{appearance:none;border:0;background:transparent;padding:18px 8px;color:#6c7e8d;font-size:12px;font-weight:800;display:flex;justify-content:center;align-items:center;gap:8px}.wizard-progress button span{display:grid;place-items:center;width:25px;height:25px;border-radius:50%;background:#dce7ec}.wizard-progress button.is-active{color:var(--navy);background:#fff}.wizard-progress button.is-active span,.wizard-progress button.is-complete span{background:var(--cyan);color:var(--navy)}.wizard-panel{display:none;padding:38px}.wizard-panel.is-active{display:block;animation:bbcFadeUp .25s ease}.wizard-panel h2{font-size:clamp(29px,4vw,44px);line-height:1.06;margin:7px 0 12px}.wizard-panel h3{margin:28px 0 14px}.wizard-kicker{color:#078fca;text-transform:uppercase;letter-spacing:.12em;font-size:11px;font-weight:900}.wizard-intro{font-size:16px;color:var(--muted);max-width:700px;margin-bottom:24px}.wizard-actions{display:flex;align-items:center;justify-content:space-between;gap:15px;border-top:1px solid var(--line);margin-top:30px;padding-top:24px}.radio-card-large span{min-height:180px}.radio-card input:checked+span,.experience-package-card input:checked+.package-card-top{border-color:var(--cyan)}.yacht-class-grid .radio-card span em{display:inline-block;color:#078fca;font-style:normal;font-size:10px;text-transform:uppercase;letter-spacing:.1em}.schedule-policy{padding:15px 17px;border-radius:14px;background:#edf7fb;color:#345266;line-height:1.55;margin-top:18px}.schedule-feedback{min-height:22px;margin-top:10px;font-weight:750;font-size:13px}.schedule-feedback.is-error{color:#a52f2f}.schedule-feedback.is-valid{color:#187047}.experience-package-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}.experience-package-card{position:relative;cursor:pointer;border:1px solid #dce6eb;border-radius:18px;padding:18px;transition:.2s;background:#fff}.experience-package-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-small)}.experience-package-card>input{position:absolute;opacity:0;pointer-events:none}.package-card-top{display:grid;grid-template-columns:1fr auto;gap:5px 10px;padding:0 0 12px;border-bottom:3px solid transparent}.package-card-top em{grid-column:1/-1;color:#078fca;font-style:normal;text-transform:uppercase;letter-spacing:.1em;font-size:10px;font-weight:900}.package-card-top strong{font-size:19px}.package-card-top b{color:#078fca}.experience-package-card>small{display:block;color:var(--muted);line-height:1.5;margin:12px 0}.experience-package-card ul{list-style:none;margin:0;padding:0;display:grid;gap:7px;color:#344e60;font-size:12px}.experience-package-card li:before{content:'✓';color:#139263;font-weight:900;margin-right:7px}.experience-package-card:has(input:checked){border-color:var(--cyan);box-shadow:0 0 0 3px rgba(18,189,236,.13)}.selected-package-details{margin-top:18px;background:var(--navy);color:#fff;border-radius:18px;padding:22px}.selected-package-details>span{color:#74dfff;text-transform:uppercase;font-size:10px;font-weight:900;letter-spacing:.12em}.selected-package-details h3{margin:7px 0 13px}.selected-package-details [data-selected-package-inclusions]{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.selected-package-details [data-selected-package-inclusions] span:before{content:'✓';color:var(--cyan);margin-right:8px}.price-lock-banner{display:grid;gap:6px;background:#eaf8f1;border:1px solid #bce8d1;border-radius:15px;padding:17px;margin-top:20px;color:#285843}.price-lock-banner strong{color:#126b42}.booking-sidebar-v29{position:sticky;top:100px}.booking-error{padding:16px 18px;border-radius:14px;background:#fff0f0;border:1px solid #efc4c4;color:#8c2424;margin-bottom:18px}.booking-page-v29 .booking-terms{display:grid;gap:12px}.booking-page-v29 .booking-terms label{align-items:flex-start}.booking-page-v29 .addon-check-grid label[hidden]{display:none}.booking-page-v29 .conditional-group[hidden]{display:none!important}@keyframes bbcFadeUp{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}@media(max-width:900px){.experience-package-grid{grid-template-columns:1fr}.wizard-panel{padding:26px}.booking-sidebar-v29{position:static}.selected-package-details [data-selected-package-inclusions]{grid-template-columns:1fr}}@media(max-width:640px){.wizard-progress button{font-size:0;padding:12px 4px}.wizard-progress button span{font-size:12px}.wizard-panel{padding:22px 16px}.wizard-actions{position:sticky;bottom:72px;background:#fff;padding:14px 0 5px;z-index:4}.wizard-actions .button{padding-left:17px;padding-right:17px}.booking-trust-row{display:grid;grid-template-columns:1fr 1fr}.radio-card-large span{min-height:140px}}

/* SEO landing pages */
.seo-landing-hero{position:relative;min-height:560px;display:flex;align-items:end;background-size:cover;background-position:center;color:#fff}.seo-landing-hero:before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,25,42,.94),rgba(3,25,42,.45),rgba(3,25,42,.18))}.seo-landing-hero .container{position:relative;padding-top:150px;padding-bottom:80px}.seo-landing-hero h1{font-size:clamp(44px,7vw,78px);line-height:.98;max-width:900px;margin:12px 0 20px}.seo-landing-hero p{font-size:18px;line-height:1.65;max-width:680px;color:#d9eaf3}.seo-proof-grid,.seo-detail-grid,.seo-faq-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.seo-proof-grid article,.seo-detail-grid article,.seo-faq-grid details{border:1px solid var(--line);border-radius:18px;padding:22px;background:#fff}.seo-proof-grid strong{display:block;font-size:23px;color:var(--navy)}.seo-proof-grid span{color:var(--muted)}.seo-content-wrap{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);gap:45px}.seo-content-wrap h2{font-size:clamp(32px,5vw,54px);line-height:1.05}.seo-content-wrap p,.seo-content-wrap li{color:#526a7c;line-height:1.75}.seo-sticky-card{position:sticky;top:110px;background:var(--navy);color:#fff;border-radius:22px;padding:28px}.seo-sticky-card p{color:#c9dce7}.seo-faq-grid details summary{font-weight:850;cursor:pointer}.seo-faq-grid details p{color:var(--muted);line-height:1.65}@media(max-width:850px){.seo-proof-grid,.seo-detail-grid,.seo-faq-grid{grid-template-columns:1fr}.seo-content-wrap{grid-template-columns:1fr}.seo-sticky-card{position:static}}

.hero-brand-line { margin-top:14px; font-size:clamp(1.05rem,2vw,1.35rem); font-weight:700; color:#fff; }


/* Better Boat Club v30 refinements */
.home-hero.home-hero-v15{min-height:500px}
.home-hero-v15 .home-hero-content{padding:74px 0 106px;max-width:900px}
.home-hero-v15 h1{font-size:clamp(46px,5.7vw,74px);line-height:.98;max-width:850px;margin-top:18px}
.home-hero-v15 .hero-brand-line{font-size:19px;margin-bottom:14px}
.home-hero-v15 .home-hero-content>p:not(.hero-brand-line){font-size:18px;max-width:700px}
.booking-hero-v30{padding-bottom:42px}
.booking-hero-v30 .booking-hero-inner{padding:56px 0 64px}
.booking-hero-v30 h1{font-size:clamp(40px,6vw,68px)}
.booking-layout-v30{align-items:start}
.booking-sidebar-v30{position:sticky;top:100px}
.wizard-progress button{min-width:0}
.wizard-step-number{flex:0 0 25px}
.wizard-step-label{display:inline-block;line-height:1.15}
.selected-package-details-compact{margin-top:0;margin-bottom:22px}
.package-review-panel h3{margin-top:6px}
@media(max-width:900px){.booking-sidebar-v30{position:static}.home-hero.home-hero-v15{min-height:460px}.home-hero-v15 .home-hero-content{padding:66px 0 96px}}
@media(max-width:640px){
  .home-hero.home-hero-v15{min-height:0}
  .home-hero-v15 .home-hero-content{padding:54px 0 82px}
  .home-hero-v15 h1{font-size:clamp(37px,12vw,51px);line-height:1.01;margin:14px 0}
  .home-hero-v15 .home-hero-content>p:not(.hero-brand-line){font-size:16px;line-height:1.55}
  .home-hero-v15 .hero-proof-row{display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .booking-hero-v30 .booking-hero-inner{padding:38px 0 45px}
  .booking-hero-v30 h1{font-size:39px}
  .booking-hero-v30 p{font-size:16px}
  .wizard-progress{grid-template-columns:repeat(4,minmax(0,1fr));position:sticky;top:68px;z-index:8}
  .wizard-progress button{font-size:9px!important;padding:10px 2px 9px;gap:4px;flex-direction:column;line-height:1.08;min-height:61px;text-align:center}
  .wizard-progress button .wizard-step-number{font-size:10px;width:22px;height:22px;flex-basis:22px}
  .wizard-progress button .wizard-step-label{display:block;font-size:9px;white-space:normal}
  .wizard-panel{padding:22px 14px 24px}
  .wizard-panel h2{font-size:31px}
  .wizard-panel h3{font-size:20px}
  .experience-package-card{padding:15px}
  .package-card-top strong{font-size:17px}
  .selected-package-details{padding:18px}
  .booking-trust-row{grid-template-columns:1fr;gap:7px}
  .radio-card-large span{min-height:122px}
  .wizard-actions{bottom:66px;margin-left:-2px;margin-right:-2px}
  .wizard-actions .button{font-size:13px;min-height:44px;padding-left:14px;padding-right:14px}
  .mobile-price-dock{left:10px;right:10px;bottom:8px}
  .mobile-price-dock-main{min-height:58px}
}
@media(max-width:360px){
  .wizard-progress button{font-size:8px!important}
  .wizard-progress button .wizard-step-label{font-size:8px}
  .wizard-panel h2{font-size:28px}
  .mobile-price-dock-main{padding:9px 11px}
  .mobile-total strong,.mobile-due strong{font-size:16px}
}

/* v30.1 compact hero and labeled mobile checkout navigation */
.home-hero.home-hero-v15{min-height:430px}
.home-hero-v15 .home-hero-content{padding:54px 0 76px;max-width:860px}
.home-hero-v15 h1{font-size:clamp(42px,4.7vw,64px);line-height:1;max-width:790px}
.home-hero-v15 .hero-brand-line{font-size:18px}
.wizard-progress button .wizard-step-number{display:grid;width:25px;height:25px;border-radius:50%;background:#dce7ec;place-items:center;flex:0 0 25px}
.wizard-progress button .wizard-step-label{display:inline-block;width:auto;height:auto;border-radius:0;background:transparent!important;color:inherit;line-height:1.15}
.wizard-progress button.is-active .wizard-step-label,.wizard-progress button.is-complete .wizard-step-label{background:transparent!important;color:inherit}
@media(max-width:900px){
  .home-hero.home-hero-v15{min-height:410px}
  .home-hero-v15 .home-hero-content{padding:52px 0 72px}
}
@media(max-width:640px){
  .home-hero.home-hero-v15{min-height:0}
  .home-hero-v15 .home-hero-content{padding:42px 0 64px}
  .home-hero-v15 h1{font-size:clamp(34px,10.8vw,46px)}
  .wizard-progress button .wizard-step-number{width:22px;height:22px;flex-basis:22px}
  .wizard-progress button .wizard-step-label{width:auto;height:auto;border-radius:0;background:transparent!important;font-size:9px;line-height:1.05}
}


/* v30.3 mobile checkout polish and fishing package cards */
.fishing-trip-grid{align-items:stretch}
.fishing-trip-card{display:flex;flex-direction:column;min-height:100%}
.fishing-trip-card>small{flex:1}
.fishing-trip-card .package-card-top b{white-space:nowrap}
.fishing-trip-duration{display:inline-flex;align-self:flex-start;margin-top:14px;padding:6px 10px;border-radius:999px;background:#edf8fc;color:#087cac;font-size:11px;font-weight:850}
@media(max-width:900px){
  .booking-page-v30{padding-bottom:180px}
  .booking-page-v30 .booking-section{padding-bottom:110px}
  .booking-page-v30 .booking-sidebar-v30 .live-price-card{display:none!important}
  .booking-page-v30 .wizard-panel{padding-bottom:100px;scroll-margin-top:135px}
  .booking-page-v30 .wizard-actions{bottom:76px}
  .mobile-price-dock{isolation:isolate}
  .mobile-price-dock-main{position:relative;z-index:2;cursor:pointer;touch-action:manipulation;-webkit-tap-highlight-color:transparent}
  .mobile-price-dock-main>*{pointer-events:none}
  .mobile-price-dock-main:focus-visible{outline:3px solid #66dcff;outline-offset:3px}
  .mobile-price-drawer{position:relative;z-index:3;max-height:min(250px,42vh);overflow:auto;overscroll-behavior:contain}
  .mobile-price-dock.is-open .mobile-price-drawer{display:block}
}
@media(max-width:640px){
  .booking-page-v30{padding-bottom:205px}
  .booking-page-v30 .booking-section{padding-bottom:125px}
  .booking-page-v30 .wizard-panel{padding-bottom:112px}
  .fishing-trip-grid{grid-template-columns:1fr}
  .fishing-trip-card{padding:16px}
  .fishing-trip-card .package-card-top{grid-template-columns:minmax(0,1fr) auto}
  .fishing-trip-card .package-card-top strong{font-size:17px}
  .fishing-trip-card .package-card-top b{font-size:13px}
}

/* Yacht-class expansion base, extended in v31.0 with quote flow, speed, SEO and conversion improvements */
.confidence-strip-section{padding:0 0 18px;background:#fff}.confidence-strip{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-small);overflow:hidden}.confidence-strip span{min-height:72px;display:flex;align-items:center;justify-content:center;gap:8px;padding:14px 12px;text-align:center;border-right:1px solid var(--line);color:#29465b;font-size:12px;font-weight:800}.confidence-strip span:last-child{border-right:0}.confidence-strip b{display:grid;place-items:center;width:24px;height:24px;border-radius:50%;background:#e9f8fe;color:#0788ca;flex:0 0 auto}
.quote-only-package{border-color:rgba(18,189,236,.38);box-shadow:0 22px 60px rgba(5,68,96,.16)}.quote-only-package .rental-package-image span{background:linear-gradient(135deg,#0b5273,#12aeda)}.quote-only-package .rental-package-footer strong{color:#0788ca}.final-cta-actions{display:flex;gap:12px;flex-wrap:wrap}
.fleet-examples{margin-top:28px;padding-top:24px;border-top:1px solid var(--line)}.fleet-examples-head{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:14px}.fleet-examples-head strong{font-size:16px}.fleet-examples-head span{color:var(--muted);font-size:11px;text-align:right}.fleet-example-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px}.fleet-example-card{border:1px solid var(--line);border-radius:14px;overflow:hidden;background:#f9fbfc}.fleet-example-photo{aspect-ratio:1.5/1;overflow:hidden;background:#eaf0f4}.fleet-example-photo img{width:100%;height:100%;object-fit:cover}.fleet-example-copy{padding:12px}.fleet-example-copy strong,.fleet-example-copy small,.fleet-example-copy em{display:block}.fleet-example-copy strong{font-size:13px;line-height:1.3}.fleet-example-copy small{margin-top:5px;color:#597083;font-size:10px}.fleet-example-copy p{margin:7px 0 0;color:#3d5669;font-size:10px;line-height:1.45}.fleet-example-copy em{margin-top:7px;color:#0788ca;font-size:10px;font-style:normal;font-weight:750}.fleet-examples-empty{margin:0;padding:14px 16px;border-radius:12px;background:#f4f8fa;color:var(--muted);font-size:12px;line-height:1.55}
.booking-journey-section{background:linear-gradient(180deg,#03192a,#062c45);color:#fff}.booking-journey-section .section-heading p{color:#c4d7e1}.booking-journey{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.booking-journey li{position:relative;padding:24px 18px;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.055)}.booking-journey li>span{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:var(--cyan);color:var(--navy);font-weight:950;margin-bottom:18px}.booking-journey strong{display:block;font-size:16px;line-height:1.3}.booking-journey p{margin:8px 0 0;color:#c7d9e3;font-size:12px;line-height:1.55}
.booking-contact-details{margin:0 0 24px;padding:24px;border:1px solid #cfe8f2;border-radius:18px;background:linear-gradient(145deg,#f3fbfe,#fff)}.booking-contact-details h3{margin:6px 0 7px}.booking-contact-details>div:first-child>p{max-width:720px;color:var(--muted);font-size:14px}
.mobile-action-bar{display:none}
@media(max-width:1000px){.confidence-strip{grid-template-columns:repeat(3,1fr)}.confidence-strip span:nth-child(3){border-right:0}.confidence-strip span:nth-child(-n+3){border-bottom:1px solid var(--line)}.fleet-example-grid{grid-template-columns:1fr}.booking-journey{grid-template-columns:repeat(2,minmax(0,1fr))}.booking-journey li:last-child{grid-column:1/-1}}
@media(max-width:760px){body{padding-bottom:74px}.page-template-page-booking body,body.page-template-page-booking{padding-bottom:0}.mobile-action-bar{position:fixed;display:grid;grid-template-columns:1fr 1fr 1.2fr;left:10px;right:10px;bottom:10px;z-index:1500;padding:6px;border:1px solid rgba(255,255,255,.16);border-radius:18px;background:rgba(3,25,42,.97);box-shadow:0 18px 45px rgba(0,0,0,.34);backdrop-filter:blur(15px)}.mobile-action-bar a{min-height:54px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:2px;border-radius:13px;color:#fff;font-size:10px}.mobile-action-bar a span{color:#6fddff;font-size:16px}.mobile-action-bar a strong{font-size:10px}.mobile-action-bar .mobile-action-primary{background:linear-gradient(135deg,var(--cyan),var(--cyan-2));color:var(--navy)}.mobile-action-bar .mobile-action-primary span{color:var(--navy)}.confidence-strip{grid-template-columns:1fr 1fr}.confidence-strip span{border-right:1px solid var(--line)!important;border-bottom:1px solid var(--line)}.confidence-strip span:nth-child(even){border-right:0!important}.confidence-strip span:nth-last-child(-n+2){border-bottom:0}.fleet-examples-head{align-items:flex-start;flex-direction:column}.fleet-examples-head span{text-align:left}.booking-journey{grid-template-columns:1fr}.booking-journey li:last-child{grid-column:auto}.final-cta-actions{width:100%}.final-cta-actions .button{width:100%}}

/* v31 yacht-class presentation, concierge quote flow and FAQs */
.rental-package-image{aspect-ratio:4/3;min-height:0;background:#dbeaf2}
.rental-package-image img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.superyacht-quote-section{background:linear-gradient(145deg,#03192a,#0a3a57);color:#fff;overflow:hidden}
.superyacht-quote-shell{display:grid;grid-template-columns:minmax(0,.9fr) minmax(480px,1.1fr);gap:56px;align-items:center}
.superyacht-quote-copy h2{margin:12px 0 18px}.superyacht-quote-copy p{color:rgba(255,255,255,.78);font-size:17px}.superyacht-quote-copy .text-link{color:#75ddff}
.quote-trust-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:28px 0}.quote-trust-grid span{padding:14px 16px;border:1px solid rgba(255,255,255,.13);border-radius:14px;background:rgba(255,255,255,.06);font-weight:750}
.superyacht-quote-card{background:#fff;color:var(--ink);border-radius:26px;padding:30px;box-shadow:0 28px 80px rgba(0,0,0,.28)}
.quote-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:18px}.quote-form-grid label{display:grid;gap:7px;font-size:13px;font-weight:850;color:#263b50}.quote-form-grid input,.quote-form-grid select,.quote-form-grid textarea{width:100%;border:1px solid rgba(7,23,41,.16);border-radius:12px;padding:13px 14px;background:#fff;color:var(--ink)}.quote-form-grid input:focus,.quote-form-grid select:focus,.quote-form-grid textarea:focus{outline:3px solid rgba(18,189,236,.18);border-color:var(--cyan)}.quote-span-2{grid-column:1/-1}.quote-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.superyacht-quote-card small{display:block;color:var(--muted);margin-top:12px;line-height:1.5}.quote-success{border:1px solid rgba(25,135,84,.24);background:#eefbf4;border-radius:14px;padding:16px;margin-bottom:18px;color:#146c43}.quote-success p{margin:5px 0 0}
.yacht-faq-section{background:#fff}.yacht-faq-shell{display:grid;grid-template-columns:minmax(300px,.75fr) minmax(0,1.25fr);gap:60px;align-items:start}.yacht-faq-list{display:grid;gap:12px}.yacht-faq-list details{border:1px solid var(--line);border-radius:16px;background:var(--soft);padding:0 20px}.yacht-faq-list summary{cursor:pointer;list-style:none;padding:20px 34px 20px 0;font-weight:900;position:relative}.yacht-faq-list summary::-webkit-details-marker{display:none}.yacht-faq-list summary:after{content:'+';position:absolute;right:0;top:17px;font-size:24px;color:#0788ca}.yacht-faq-list details[open] summary:after{content:'–'}.yacht-faq-list details p{color:var(--muted);padding:0 0 20px;margin:0}.faq-more-link{margin-top:20px}
@media(max-width:980px){.superyacht-quote-shell,.yacht-faq-shell{grid-template-columns:1fr}.superyacht-quote-shell{gap:34px}.rental-package-image{aspect-ratio:16/10}}
@media(max-width:620px){.quote-form-grid,.quote-trust-grid{grid-template-columns:1fr}.quote-span-2{grid-column:auto}.superyacht-quote-card{padding:22px}.rental-package-image{aspect-ratio:4/3}}


/* v31.2 FINAL: mobile checkout, package-included add-ons and safe small-screen layout */
.addon-check-grid label.is-package-included{
  border-color:#b8e5ce!important;
  background:#eefaf4!important;
  color:#245b43!important;
  cursor:default!important;
  opacity:1!important;
}
.addon-check-grid label.is-package-included input{opacity:.55;cursor:not-allowed}
.addon-check-grid label.is-package-included [data-addon-price]{color:#13744a;font-weight:850}
.booking-wizard,.wizard-panel,.booking-grid,.form-grid,.addon-check-grid,.experience-package-grid{min-width:0}
.booking-wizard input,.booking-wizard select,.booking-wizard textarea,.booking-wizard button{max-width:100%}
@media(max-width:900px){
  .booking-page-v30{padding-bottom:92px}
  .booking-page-v30 .booking-section{padding-bottom:32px}
  .booking-page-v30 .wizard-panel{padding-bottom:28px;scroll-margin-top:86px}
  .booking-page-v30 .wizard-progress{position:static!important;top:auto!important}
  .booking-page-v30 .wizard-actions{position:static!important;bottom:auto!important;background:transparent;padding:22px 0 0;z-index:auto}
  .booking-page-v30 .booking-wizard{overflow:hidden}
  .booking-page-v30 .booking-layout-v29,.booking-page-v30 .booking-layout-v30{min-width:0;overflow:visible}
}
@media(max-width:640px){
  .booking-page-v30{padding-bottom:88px;overflow-x:hidden}
  .booking-page-v30 .booking-section{padding:22px 0 28px}
  .booking-page-v30 .booking-wizard{border-radius:18px}
  .booking-page-v30 .wizard-panel{padding:22px 15px 24px}
  .booking-page-v30 .wizard-progress{grid-template-columns:repeat(4,minmax(0,1fr))}
  .booking-page-v30 .wizard-progress button{min-width:0;padding:11px 2px;gap:3px;flex-direction:column}
  .booking-page-v30 .wizard-progress button .wizard-step-label{font-size:8px;white-space:normal;text-align:center}
  .booking-page-v30 .wizard-actions{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:10px;margin-top:24px}
  .booking-page-v30 .wizard-actions .button{width:100%;min-width:0;padding-left:13px;padding-right:13px;white-space:normal;text-align:center}
  .booking-page-v30 .wizard-actions .button:first-child:last-child{grid-column:1/-1}
  .booking-page-v30 .radio-grid,.booking-page-v30 .yacht-class-grid,.booking-page-v30 .form-grid,.booking-page-v30 .addon-check-grid,.booking-page-v30 .experience-package-grid{grid-template-columns:minmax(0,1fr)!important}
  .booking-page-v30 .radio-card,.booking-page-v30 .experience-package-card,.booking-page-v30 label{min-width:0}
  .booking-page-v30 input,.booking-page-v30 select,.booking-page-v30 textarea{width:100%;min-width:0}
  .mobile-price-dock{left:8px;right:8px;bottom:max(8px,env(safe-area-inset-bottom));width:auto}
  .mobile-price-dock-main{grid-template-columns:minmax(0,1fr) minmax(0,1fr) auto;gap:7px;min-height:62px}
  .mobile-price-dock-main strong{font-size:15px}
}

/* v31.5 enterprise reliability, privacy and certification refinements */
.skip-link{position:fixed;left:16px;top:-100px;z-index:100000;background:#fff;color:#03192a;padding:12px 18px;border-radius:8px;box-shadow:0 8px 24px rgba(3,25,42,.22);font-weight:800}
.skip-link:focus{top:16px}
:where(a,button,input,select,textarea,[tabindex]):focus-visible{outline:3px solid #18bff0;outline-offset:3px}
.wizard-panel[hidden]{display:none!important}
.cf-turnstile{margin:18px 0;min-height:65px}
.bbc-ops-unavailable .booking-submit-row button[type="submit"]{cursor:not-allowed}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}

/* v32.3 — seamless Better Boat Club presentation around stock WooCommerce checkout.
 * Payment markup, gateway scripts, nonces and order processing remain untouched. */
.bbc323-checkout-page{background:linear-gradient(180deg,#f3f7fa 0%,#edf4f8 100%);min-height:70vh}
.bbc323-checkout-section{padding:34px 0 86px}
.bbc323-progress{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));max-width:860px;margin:0 0 18px;border:1px solid rgba(7,23,41,.09);border-radius:18px 18px 0 0;background:#edf3f6;overflow:hidden;box-shadow:0 12px 34px rgba(5,28,48,.07)}
.bbc323-progress>div{min-height:64px;display:flex;align-items:center;justify-content:center;gap:9px;padding:12px;color:#718391;font-size:12px;font-weight:850;border-right:1px solid rgba(7,23,41,.07)}
.bbc323-progress>div:last-child{border-right:0}.bbc323-progress span{display:grid;place-items:center;width:25px;height:25px;border-radius:50%;background:#d9e5ea;color:#6d8190;font-weight:900}.bbc323-progress .is-complete span,.bbc323-progress .is-active span{background:var(--cyan);color:var(--navy)}.bbc323-progress .is-complete{color:#345166}.bbc323-progress .is-active{background:#fff;color:var(--navy)}
.bbc323-checkout-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:start}
.bbc323-checkout-card,.bbc323-summary-card,.bbc323-assurance-card,.bbc323-support-card{background:#fff;border:1px solid rgba(7,23,41,.09);box-shadow:0 18px 48px rgba(5,28,48,.10)}
.bbc323-checkout-card{border-radius:0 24px 24px 24px;overflow:hidden;min-width:0}
.bbc323-checkout-intro{display:flex;justify-content:space-between;gap:26px;padding:34px 36px 28px;border-bottom:1px solid var(--line)}
.bbc323-checkout-intro h1{font-size:clamp(36px,4.3vw,58px);line-height:1;letter-spacing:-.055em;margin:8px 0 12px}.bbc323-checkout-intro p{max-width:690px;margin:0;color:var(--muted);font-size:16px;line-height:1.6}.bbc323-confirmation{display:inline-flex;margin-top:15px;padding:7px 11px;border-radius:999px;background:#eef8fc;color:#176787;font-size:11px;font-weight:850;letter-spacing:.03em}
.bbc323-security-mark{display:flex;align-items:center;gap:9px;flex:0 0 auto;align-self:flex-start;padding:9px 12px;border-radius:999px;background:#f2f8fb;color:#354f61}.bbc323-security-mark>span{color:#2eb96b;font-size:10px}.bbc323-security-mark div{display:grid}.bbc323-security-mark strong{font-size:11px}.bbc323-security-mark small{color:#738590;font-size:9px}
.bbc323-checkout-content{padding:30px 36px 38px}.bbc323-checkout-content>.woocommerce{max-width:none}.bbc323-checkout-content .woocommerce-notices-wrapper:empty{display:none}
.bbc323-checkout-content .woocommerce-error,.bbc323-checkout-content .woocommerce-info,.bbc323-checkout-content .woocommerce-message{margin:0 0 20px!important;padding:15px 18px 15px 48px!important;border:1px solid!important;border-radius:14px!important;box-shadow:none!important;line-height:1.5}.bbc323-checkout-content .woocommerce-info{background:#eef8fc!important;border-color:#cce9f5!important;color:#22546d!important}.bbc323-checkout-content .woocommerce-error{background:#fff4f2!important;border-color:#f0c4be!important;color:#8a2b22!important}.bbc323-checkout-content .woocommerce-message{background:#eefaf4!important;border-color:#c7e8d4!important;color:#236342!important}
.bbc323-checkout-content .woocommerce-form-login-toggle,.bbc323-checkout-content .woocommerce-form-coupon-toggle{margin-bottom:14px}.bbc323-checkout-content form.login,.bbc323-checkout-content form.checkout_coupon{margin:0 0 22px!important;padding:20px!important;border:1px solid var(--line)!important;border-radius:16px!important;background:#f8fbfc}
.bbc323-checkout-content form.checkout{display:block!important}.bbc323-checkout-content .col2-set{display:block;width:100%;margin:0}.bbc323-checkout-content .col2-set .col-1,.bbc323-checkout-content .col2-set .col-2{float:none!important;width:100%!important;max-width:none!important}.bbc323-checkout-content .col2-set .col-2{margin-top:24px}
.bbc323-checkout-content h3{font-size:24px;margin:0 0 18px;letter-spacing:-.035em}.bbc323-checkout-content #order_review_heading{margin-top:30px;padding-top:28px;border-top:1px solid var(--line)}
.bbc323-checkout-content .woocommerce-billing-fields__field-wrapper,.bbc323-checkout-content .woocommerce-shipping-fields__field-wrapper,.bbc323-checkout-content .woocommerce-additional-fields__field-wrapper{display:flex;flex-wrap:wrap;gap:0 14px}.bbc323-checkout-content .form-row{float:none!important;width:100%!important;margin:0 0 16px!important;padding:0!important}.bbc323-checkout-content .form-row-first,.bbc323-checkout-content .form-row-last{width:calc(50% - 7px)!important}.bbc323-checkout-content label{display:block;margin:0 0 7px;color:#2f4657;font-size:12px;font-weight:850}.bbc323-checkout-content .required{color:#d15346}
.bbc323-checkout-content input.input-text,.bbc323-checkout-content textarea,.bbc323-checkout-content select,.bbc323-checkout-content .select2-container .select2-selection--single{width:100%;min-height:50px;border:1px solid #cedbe2!important;border-radius:12px!important;background:#fff!important;color:var(--ink)!important;box-shadow:none!important}.bbc323-checkout-content input.input-text,.bbc323-checkout-content textarea,.bbc323-checkout-content select{padding:12px 14px!important}.bbc323-checkout-content textarea{min-height:104px;resize:vertical}.bbc323-checkout-content .select2-container .select2-selection--single{display:flex;align-items:center;padding:0 12px}.bbc323-checkout-content .select2-selection__rendered{padding:0!important;color:var(--ink)!important}.bbc323-checkout-content .select2-selection__arrow{height:48px!important}.bbc323-checkout-content input:focus,.bbc323-checkout-content textarea:focus,.bbc323-checkout-content select:focus,.bbc323-checkout-content .select2-container--focus .select2-selection{outline:3px solid rgba(18,189,236,.16)!important;border-color:#25aeda!important}
.bbc323-checkout-content .woocommerce-checkout-review-order-table{width:100%;margin:0 0 22px!important;border:1px solid var(--line)!important;border-collapse:separate!important;border-spacing:0;border-radius:16px;overflow:hidden;background:#f9fbfc}.bbc323-checkout-content .woocommerce-checkout-review-order-table th,.bbc323-checkout-content .woocommerce-checkout-review-order-table td{padding:15px 16px!important;border:0!important;border-bottom:1px solid var(--line)!important;background:transparent!important}.bbc323-checkout-content .woocommerce-checkout-review-order-table tr:last-child th,.bbc323-checkout-content .woocommerce-checkout-review-order-table tr:last-child td{border-bottom:0!important}.bbc323-checkout-content .woocommerce-checkout-review-order-table th{color:#5b7080;font-size:12px;text-transform:none}.bbc323-checkout-content .woocommerce-checkout-review-order-table td{text-align:right;font-weight:800}.bbc323-checkout-content .order-total th,.bbc323-checkout-content .order-total td{font-size:17px;color:var(--navy)!important;background:#eef8fc!important}
.bbc323-checkout-content #payment{margin:0!important;padding:0!important;border:1px solid var(--line);border-radius:18px;background:#fff!important;overflow:hidden}.bbc323-checkout-content #payment ul.payment_methods{margin:0!important;padding:8px 18px!important;border-bottom:1px solid var(--line)!important;background:#f8fbfc}.bbc323-checkout-content #payment ul.payment_methods>li{margin:0!important;padding:15px 0!important;border-bottom:1px solid rgba(7,23,41,.07)}.bbc323-checkout-content #payment ul.payment_methods>li:last-child{border-bottom:0}.bbc323-checkout-content #payment ul.payment_methods label{display:inline;font-size:14px;color:var(--ink)}.bbc323-checkout-content #payment div.payment_box{margin:13px 0 0!important;padding:16px!important;border-radius:13px!important;background:#fff!important;border:1px solid #dce7ec!important;color:#455d6e!important}.bbc323-checkout-content #payment div.payment_box:before{display:none!important}.bbc323-checkout-content #payment .place-order{margin:0!important;padding:22px!important;background:#fff}.bbc323-checkout-content #payment .woocommerce-privacy-policy-text{color:#6b7e8c;font-size:11px;line-height:1.55}.bbc323-checkout-content #payment #place_order{float:none!important;width:100%!important;min-height:56px!important;margin:15px 0 0!important;border:0!important;border-radius:13px!important;background:linear-gradient(135deg,#12bdec,#128fd8)!important;color:#041b2c!important;font-size:15px!important;font-weight:900!important;box-shadow:0 13px 28px rgba(18,143,216,.25)!important}.bbc323-checkout-content #payment #place_order:hover{filter:brightness(.98);transform:translateY(-1px)}
.bbc323-checkout-content .wc-stripe-elements-field,.bbc323-checkout-content .wc-stripe-iban-element-field{padding:14px!important;border:1px solid #cedbe2!important;border-radius:12px!important;background:#fff!important}.bbc323-checkout-content iframe{max-width:100%}
.bbc323-checkout-sidebar{position:sticky;top:112px;display:grid;gap:18px}.bbc323-summary-card,.bbc323-assurance-card,.bbc323-support-card{border-radius:22px;overflow:hidden}.bbc323-summary-card header{padding:23px 22px 20px;background:linear-gradient(145deg,#062139,#0b4a68);color:#fff}.bbc323-summary-card header .section-label{color:#53d9ff}.bbc323-summary-card h2{font-size:25px;margin:6px 0 0;color:#fff}.bbc323-summary-details{padding:16px 20px 8px}.bbc323-summary-details>div,.bbc323-summary-lines>div,.bbc323-summary-totals>div{display:flex;justify-content:space-between;gap:18px;padding:10px 0;border-bottom:1px solid rgba(7,23,41,.08)}.bbc323-summary-details span,.bbc323-summary-lines span,.bbc323-summary-totals span{color:#617587;font-size:11px}.bbc323-summary-details strong,.bbc323-summary-lines strong,.bbc323-summary-totals strong{text-align:right;font-size:12px}.bbc323-summary-lines{padding:6px 20px}.bbc323-summary-totals{padding:7px 20px 13px}.bbc323-summary-totals .is-total{align-items:center;padding-top:15px}.bbc323-summary-totals .is-total strong{font-size:22px;color:var(--navy)}.bbc323-summary-totals .is-due{align-items:center;margin:10px 0 4px;padding:14px;border:1px solid #aee4f6;border-radius:14px;background:#e8f8fe}.bbc323-summary-totals .is-due span{color:#185f7d;font-weight:850}.bbc323-summary-totals .is-due strong{font-size:20px;color:#075e89}.bbc323-summary-card>small{display:block;padding:0 20px 20px;color:#778994;font-size:10px;line-height:1.5}
.bbc323-assurance-card{padding:7px 19px}.bbc323-assurance-card>div{display:flex;gap:12px;padding:16px 0;border-bottom:1px solid var(--line)}.bbc323-assurance-card>div:last-child{border-bottom:0}.bbc323-assurance-card>div>span{display:grid;place-items:center;width:24px;height:24px;flex:0 0 24px;border-radius:50%;background:#e8f8ee;color:#1a9956;font-weight:900}.bbc323-assurance-card p{display:grid;gap:4px;margin:0}.bbc323-assurance-card strong{font-size:12px}.bbc323-assurance-card small{color:#748691;font-size:10px;line-height:1.45}.bbc323-support-card{padding:22px}.bbc323-support-card h2{font-size:25px;margin:6px 0 16px}.bbc323-support-card .button{margin-bottom:12px}.bbc323-support-card .text-link{display:block;text-align:center;font-size:12px}
.woocommerce-checkout .site-footer{margin-top:0}.woocommerce-checkout .mobile-action-bar{display:none!important}
@media(max-width:1080px){.bbc323-checkout-layout{grid-template-columns:minmax(0,1fr) 310px}.bbc323-checkout-intro{padding:30px}.bbc323-checkout-content{padding:27px 30px 34px}}
@media(max-width:900px){.bbc323-checkout-section{padding-top:22px}.bbc323-checkout-layout{grid-template-columns:1fr}.bbc323-checkout-card{border-radius:0 20px 20px 20px}.bbc323-checkout-sidebar{position:static;grid-template-columns:1fr 1fr}.bbc323-summary-card{grid-row:span 2}.bbc323-progress{max-width:none}}
@media(max-width:640px){.bbc323-checkout-section{padding:12px 0 58px}.bbc323-progress{border-radius:14px 14px 0 0;margin-bottom:10px}.bbc323-progress>div{min-width:0;min-height:57px;flex-direction:column;gap:4px;padding:8px 2px;text-align:center}.bbc323-progress strong{font-size:8px;line-height:1.05}.bbc323-progress span{width:22px;height:22px;font-size:10px}.bbc323-checkout-card{border-radius:0 16px 16px 16px}.bbc323-checkout-intro{display:grid;padding:23px 17px 20px}.bbc323-checkout-intro h1{font-size:35px}.bbc323-checkout-intro p{font-size:14px}.bbc323-security-mark{justify-self:start}.bbc323-checkout-content{padding:20px 14px 26px}.bbc323-checkout-content .form-row-first,.bbc323-checkout-content .form-row-last{width:100%!important}.bbc323-checkout-content h3{font-size:21px}.bbc323-checkout-content #payment ul.payment_methods{padding-left:13px!important;padding-right:13px!important}.bbc323-checkout-content #payment .place-order{padding:16px!important}.bbc323-checkout-content .woocommerce-checkout-review-order-table th,.bbc323-checkout-content .woocommerce-checkout-review-order-table td{padding:12px 10px!important}.bbc323-checkout-sidebar{grid-template-columns:1fr}.bbc323-summary-card{grid-row:auto}.bbc323-support-card{padding:19px}}
