:root {
  --navy-950: #031d34;
  --navy-900: #062c4f;
  --navy-800: #0b3e6d;
  --teal-700: #087e91;
  --teal-500: #14a3b5;
  --sunset-500: #f7a62b;
  --sunset-400: #ffbd58;
  --sand-100: #f8f6f0;
  --sand-50: #fdfcf9;
  --ink: #173044;
  --muted: #60717c;
  --white: #fff;
  --border: rgba(6, 44, 79, .14);
  --shadow: 0 24px 60px rgba(3, 29, 52, .15);
  --container: min(1160px, calc(100% - 40px));
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--sand-50); font-family: var(--sans); line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--teal-700); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--navy-900); }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; left: 1rem; top: 1rem; padding: .8rem 1rem; transform: translateY(-200%); background: var(--white); color: var(--navy-950); border-radius: .35rem; }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3 { margin: 0 0 .65em; color: var(--navy-950); font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); max-width: 900px; }
h2 { font-size: clamp(2.3rem, 4.4vw, 4.4rem); }
h3 { font-size: clamp(1.5rem, 2vw, 2rem); }
p { margin: 0 0 1.15rem; }
.eyebrow { margin: 0 0 1.15rem; color: var(--sunset-400); font-size: .77rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-dark { color: var(--teal-700); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: .45rem; padding: .75rem 1.35rem; border: 1px solid transparent; border-radius: .3rem; text-decoration: none; font-weight: 700; line-height: 1.15; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy-900); box-shadow: 0 10px 26px rgba(6, 44, 79, .18); }
.button-primary:hover { color: var(--white); background: var(--teal-700); }
.button-sunset { color: var(--navy-950); background: linear-gradient(135deg, var(--sunset-400), var(--sunset-500)); box-shadow: 0 12px 30px rgba(247, 166, 43, .22); }
.button-sunset:hover { color: var(--navy-950); box-shadow: 0 18px 38px rgba(247, 166, 43, .34); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); backdrop-filter: blur(7px); }
.button-ghost:hover { color: var(--white); border-color: var(--white); background: rgba(255,255,255,.12); }
.text-link { display: inline-flex; gap: .45rem; align-items: center; font-weight: 700; text-decoration: none; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; padding: 14px 0; transition: padding .25s ease, background .25s ease, box-shadow .25s ease; }
.site-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(3,29,52,.72), transparent); pointer-events: none; transition: opacity .25s ease; }
.site-header.is-scrolled { padding: 6px 0; background: rgba(255,255,255,.98); box-shadow: 0 12px 35px rgba(3,29,52,.11); }
.site-header.is-scrolled::before { opacity: 0; }
.header-shell { position: relative; width: min(1280px, calc(100% - 32px)); margin-inline: auto; display: flex; align-items: center; gap: 1.2rem; }
.brand { flex: 0 0 auto; text-decoration: none; }
.brand img { width: 188px; height: 76px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); transition: width .25s ease, height .25s ease, filter .25s ease; }
.site-header.is-scrolled .brand img { width: 164px; height: 68px; filter: none; }
.site-nav { margin-left: auto; }
.site-nav > ul { display: flex; align-items: center; gap: 1.55rem; margin: 0; padding: 0; list-style: none; }
.site-nav li { position: relative; }
.site-nav a { display: block; color: var(--white); font-size: .89rem; font-weight: 700; text-decoration: none; }
.site-nav > ul > li > a { padding: 1.2rem 0; }
.site-nav > ul > li > a::after { content: ""; display: block; width: 0; height: 2px; margin-top: .25rem; background: var(--sunset-400); transition: width .2s ease; }
.site-nav > ul > li:hover > a::after, .site-nav a[aria-current="page"]::after { width: 100%; }
.site-header.is-scrolled .site-nav a { color: var(--navy-900); }
.submenu { position: absolute; top: calc(100% - .35rem); left: -.9rem; width: 230px; margin: 0; padding: .55rem; border: 1px solid var(--border); border-radius: .5rem; background: var(--white); box-shadow: var(--shadow); list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.submenu a, .site-header .submenu a { padding: .72rem .75rem; border-radius: .3rem; color: var(--navy-900); }
.submenu a:hover { background: var(--sand-100); color: var(--teal-700); }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu-toggle { display: none; }
.header-cta { margin-left: .5rem; white-space: nowrap; }
.site-header:not(.is-scrolled) .header-cta { background: var(--sunset-400); color: var(--navy-950); }
.brand { order: 1; }
.site-nav { order: 2; }
.header-phone { order: 3; display: inline-flex; align-items: center; gap: .55rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.3); color: var(--white); text-decoration: none; white-space: nowrap; }
.header-phone svg { flex: 0 0 auto; color: var(--sunset-400); }
.header-phone small, .header-phone strong { display: block; }
.header-phone small { color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 700; letter-spacing: .12em; line-height: 1.1; text-transform: uppercase; }
.header-phone strong { margin-top: .18rem; color: inherit; font-size: .86rem; line-height: 1.1; }
.site-header.is-scrolled .header-phone { border-left-color: var(--border); color: var(--navy-900); }
.site-header.is-scrolled .header-phone small { color: var(--muted); }
.header-cta { order: 4; }
.menu-toggle { order: 5; }
.menu-toggle { display: none; width: 48px; height: 48px; margin-left: auto; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 780px; height: auto; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-950); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,29,52,.93) 0%, rgba(3,29,52,.76) 42%, rgba(3,29,52,.28) 72%, rgba(3,29,52,.12) 100%), linear-gradient(0deg, rgba(3,29,52,.58), transparent 50%); }
.hero-content { position: relative; z-index: 2; padding: 180px 0 90px; color: var(--white); }
.hero h1 { color: var(--white); text-shadow: 0 3px 28px rgba(0,0,0,.18); }
.page-type-article .hero h1 { max-width: 1080px; font-size: clamp(2.8rem, 5.2vw, 5.5rem); }
.hero-intro { max-width: 780px; margin-bottom: 1.8rem; color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 1.6vw, 1.32rem); line-height: 1.65; }
.hero-intro a { color: var(--sunset-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.breadcrumbs { margin-bottom: 1.4rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; margin: 0; padding: 0; list-style: none; font-size: .77rem; font-weight: 700; letter-spacing: .03em; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .45rem; opacity: .5; }
.breadcrumbs-on-dark a, .breadcrumbs-on-dark span { color: rgba(255,255,255,.78); text-decoration: none; }

.featured-tours { padding: 110px 0; background: var(--sand-100); }
.featured-tours h2 { max-width: 850px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 3rem; }
.feature-card { display: flex; overflow: hidden; flex-direction: column; border: 1px solid var(--border); background: var(--white); box-shadow: 0 18px 45px rgba(3,29,52,.08); }
.feature-card > img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; background: var(--sand-100); }
.feature-card-copy { display: flex; flex: 1; flex-direction: column; padding: 2rem; }
.feature-card-copy .text-link { margin-top: auto; }
.card-kicker { margin: 0 0 .7rem; color: var(--teal-700); font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.feature-card h3 a { color: var(--navy-950); text-decoration: none; }

.tour-booking-summary { padding: 92px 0; border-bottom: 1px solid var(--border); background: linear-gradient(145deg, #eef8f8, var(--sand-50)); }
.booking-summary-shell { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.booking-summary-intro { position: sticky; top: 115px; }
.booking-summary-intro > p { color: #38505f; font-size: 1.06rem; }
.booking-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 2rem 0 0; border: 1px solid rgba(8,126,145,.18); background: rgba(8,126,145,.18); }
.booking-facts div { padding: 1rem; background: var(--white); }
.booking-facts dt { color: var(--teal-700); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.booking-facts dd { margin: .25rem 0 0; color: var(--navy-900); font-weight: 700; line-height: 1.35; }
.duration-options { display: grid; gap: 1.5rem; }
.duration-option { padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--border); background: var(--white); box-shadow: 0 18px 45px rgba(3,29,52,.07); }
.duration-option h3 { margin-bottom: 1.25rem; }
.rate-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.rate-card { display: grid; align-content: start; gap: .35rem; min-height: 178px; padding: 1.15rem; border-top: 4px solid var(--teal-500); background: var(--sand-50); }
.rate-card strong { color: var(--navy-950); font-family: var(--serif); font-size: 1.45rem; line-height: 1.15; }
.rate-capacity { color: var(--teal-700); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rate-price { margin-top: auto; color: var(--navy-950); font-size: 2rem; font-weight: 700; line-height: 1; }
.rate-card small { color: var(--muted); font-size: .76rem; line-height: 1.4; }
.pricing-note { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.duration-options > .button { justify-self: start; }

.content-section { padding: 105px 0; }
.content-section[id] { scroll-margin-top: 105px; }
.section-tinted { background: var(--sand-100); }
.content-grid { display: grid; grid-template-columns: 90px minmax(0, 780px); gap: clamp(1rem, 4vw, 4rem); justify-content: center; }
.section-wide .content-grid { grid-template-columns: 90px minmax(0, 1040px); }
.section-number { padding-top: .6rem; color: rgba(8,126,145,.35); font-family: var(--serif); font-size: 2rem; border-top: 1px solid var(--teal-500); }
.section-copy h2 { max-width: 800px; }
.section-copy p { color: #38505f; font-size: 1.08rem; }
.page-layout-editorial .section-position-2 .content-grid { grid-template-columns: minmax(0, 780px) 90px; }
.page-layout-editorial .section-position-2 .section-number { order: 2; text-align: right; }
.page-layout-editorial .content-section.section-wide .content-grid { grid-template-columns: 90px minmax(0, 1040px); }
.page-layout-editorial .content-section.section-wide .section-number { order: 0; text-align: left; }
.page-layout-cards .section-position-2 .section-copy { padding: clamp(1.6rem, 4vw, 3.5rem); border: 1px solid var(--border); background: var(--white); box-shadow: 0 18px 45px rgba(3,29,52,.07); }
.page-layout-cards .section-position-3 .content-grid { grid-template-columns: 64px minmax(0, 880px); }
.page-layout-journal .section-position-2 .section-copy { padding-left: clamp(1.5rem, 4vw, 3.5rem); border-left: 4px solid var(--sunset-400); }
.page-layout-journal .section-position-3 .content-grid { grid-template-columns: 120px minmax(0, 720px); }
.check-list { display: grid; gap: .75rem; margin: 1.7rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.75rem; color: var(--ink); font-weight: 500; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 9px; height: 9px; border: 2px solid var(--teal-500); border-radius: 50%; }

.captain-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 2.2rem; }
.captain-card { overflow: hidden; border: 1px solid var(--border); background: var(--white); box-shadow: 0 18px 45px rgba(3,29,52,.09); }
.captain-photo { position: relative; margin: 0; background: var(--sand-100); }
.captain-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.captain-photo figcaption { position: absolute; right: 0; bottom: 0; left: 0; margin: 0; padding: 1rem 1.25rem .85rem; color: var(--white); background: linear-gradient(0deg, rgba(3,29,52,.88), rgba(3,29,52,0)); font-size: .78rem; line-height: 1.45; }
.captain-card-copy { padding: clamp(1.4rem, 3vw, 2rem); }
.captain-card-copy h3 { margin-bottom: .45rem; }
.captain-card-copy p { font-size: 1rem; }
.captain-card-copy .fact-line { margin: 0 0 .45rem; color: var(--teal-700); font-size: .83rem; font-weight: 700; letter-spacing: .02em; }
.captain-card-copy .fact-line + .fact-line { margin-bottom: 1.25rem; color: var(--navy-900); }

.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 2.2rem; }
.vessel-card { padding: clamp(1.35rem, 2.6vw, 2rem); border: 1px solid var(--border); background: var(--white); box-shadow: 0 16px 38px rgba(3,29,52,.07); }
.vessel-photo { margin: -1.35rem -1.35rem 1.5rem; overflow: hidden; }
.vessel-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.vessel-photo figcaption { padding: .7rem 1rem; color: var(--muted); background: var(--sand-100); font-size: .78rem; line-height: 1.45; }
.vessel-card h3 { margin-bottom: 1.2rem; }
.vessel-card dl { display: grid; gap: .8rem; margin: 0 0 1.25rem; }
.vessel-card dl div { padding-top: .7rem; border-top: 1px solid var(--border); }
.vessel-card dt { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.vessel-card dd { margin: .15rem 0 0; color: var(--navy-900); font-weight: 700; line-height: 1.35; }
.vessel-card > p:last-child { margin-bottom: 0; color: #38505f; font-size: .96rem; }

.related { padding: 110px 0; background: var(--navy-950); color: var(--white); }
.related h2 { color: var(--white); }
.related .eyebrow-dark { color: var(--sunset-400); }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 2.8rem; }
.related-card { overflow: hidden; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.related-card:hover { color: var(--white); background: rgba(255,255,255,.11); transform: translateY(-4px); }
.related-image { display: block; overflow: hidden; aspect-ratio: 14 / 9; }
.related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.related-card:hover img { transform: scale(1.035); }
.related-copy { display: flex; min-height: 120px; flex-direction: column; gap: .4rem; padding: 1.2rem; }
.related-copy strong { font-family: var(--serif); font-size: 1.25rem; line-height: 1.15; }
.related-copy small { color: rgba(255,255,255,.65); }

.faq-section { padding: 115px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.4fr); gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.faq-grid > div:first-child { position: sticky; top: 120px; }
.accordion { border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; color: var(--navy-950); font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--teal-700); font-size: 1.35rem; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details div { padding: 0 2.5rem 1.25rem 0; color: var(--muted); }

.final-cta { padding: 86px 0; color: var(--white); background: linear-gradient(130deg, var(--teal-700), var(--navy-900)); }
.final-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; align-items: center; }
.final-cta h2 { color: var(--white); max-width: 850px; }
.final-cta p { max-width: 760px; color: rgba(255,255,255,.82); }

.form-section { padding: 115px 0; background: var(--white); }
.contact-methods { padding: 95px 0; border-block: 1px solid var(--border); background: #eef8f8; }
.contact-methods h2 { max-width: 760px; }
.contact-method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 2.2rem; }
.contact-method-grid a { display: grid; gap: .35rem; min-height: 190px; padding: 1.6rem; border: 1px solid rgba(8,126,145,.2); color: var(--navy-900); background: var(--white); box-shadow: 0 14px 34px rgba(3,29,52,.06); text-decoration: none; }
.contact-method-grid a:hover { color: var(--teal-700); transform: translateY(-2px); }
.contact-method-grid strong { color: var(--teal-700); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-method-grid span { overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.15; }
.contact-method-grid small { align-self: end; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.form-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.form-intro { position: sticky; top: 120px; }
.inquiry-form { display: grid; gap: 1.15rem; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--border); background: var(--sand-50); box-shadow: 0 22px 55px rgba(3,29,52,.08); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.inquiry-form label { display: grid; gap: .45rem; color: var(--navy-900); font-size: .88rem; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid rgba(6,44,79,.23); border-radius: .25rem; padding: .82rem .9rem; color: var(--ink); background: var(--white); outline: none; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--teal-700); box-shadow: 0 0 0 3px rgba(20,163,181,.14); }
.consent { grid-template-columns: auto 1fr !important; align-items: start; font-weight: 500 !important; color: var(--muted) !important; }
.consent input { width: 18px; height: 18px; margin-top: .25rem; }
.form-note { margin: -.4rem 0 0; color: var(--muted); font-size: .78rem; }
.honeypot { position: absolute; left: -9999px; }
.notice { position: relative; z-index: 3; margin: -30px 0 40px; padding: 1rem 1.2rem; border-radius: .3rem; box-shadow: var(--shadow); }
.notice-success { color: #17472c; background: #dff5e7; }
.notice-error { color: #6a231e; background: #fae3e1; }

.site-footer { padding: 90px 0 22px; color: rgba(255,255,255,.76); background: #021426; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: clamp(2rem, 5vw, 4.5rem); }
.footer-brand img { width: 245px; height: 125px; margin-bottom: 1.2rem; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 380px; }
.footer-brand .footer-contact { margin: 0 0 1.4rem; color: rgba(255,255,255,.6); font-size: .92rem; font-style: normal; line-height: 1.7; }
.footer-brand .footer-contact a { color: var(--white); font-weight: 700; }
.footer-brand .footer-contact .contact-preference { margin-left: .3rem; color: var(--sunset-400); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand .footer-departure { display: inline-block; max-width: 390px; margin-top: .45rem; }
.site-footer h2 { color: var(--white); font-family: var(--sans); font-size: .84rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: rgba(255,255,255,.76); text-decoration: none; }
.site-footer a:hover { color: var(--sunset-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1160px) {
  .site-nav > ul { gap: 1rem; }
  .site-nav a { font-size: .82rem; }
  .header-cta { display: none; }
  .header-phone { padding-left: .8rem; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .site-header { padding: 7px 0; background: rgba(255,255,255,.97); box-shadow: 0 8px 30px rgba(3,29,52,.1); }
  .site-header::before { display: none; }
  .brand img, .site-header.is-scrolled .brand img { width: 160px; height: 68px; filter: none; }
  .header-phone { margin-left: auto; padding: .55rem .8rem; border: 1px solid var(--border); border-radius: 999px; color: var(--navy-900); background: rgba(255,255,255,.86); }
  .header-phone small { color: var(--muted); }
  .menu-toggle { display: block; margin-left: 0; color: var(--navy-900); }
  .site-nav { position: fixed; inset: 82px 0 0; margin: 0; padding: 1.4rem 20px 3rem; overflow-y: auto; background: var(--sand-50); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .2s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > ul { display: grid; gap: 0; }
  .site-nav > ul > li { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--border); }
  .site-nav > ul > li > a { padding: 1rem 0; color: var(--navy-900) !important; font-size: 1.04rem; }
  .site-nav > ul > li > a::after { display: none; }
  .submenu-toggle { display: block; width: 48px; border: 0; color: var(--teal-700); background: transparent; font-size: 1.5rem; cursor: pointer; }
  .submenu { position: static; grid-column: 1 / -1; display: none; width: auto; padding: 0 0 .8rem .8rem; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .submenu-open .submenu { display: block; }
  .site-header .submenu a { padding: .62rem 0; color: var(--navy-900); }
  .hero { min-height: 720px; height: auto; }
  .hero-content { padding-top: 190px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid, .form-shell, .booking-summary-shell { grid-template-columns: 1fr; }
  .fleet-grid, .contact-method-grid { grid-template-columns: 1fr; }
  .contact-method-grid a { min-height: 160px; }
  .faq-grid > div:first-child, .form-intro, .booking-summary-intro { position: static; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1160px); }
  h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.5rem); }
  .hero { min-height: 690px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,29,52,.9), rgba(3,29,52,.52)), linear-gradient(0deg, rgba(3,29,52,.82), transparent 70%); }
  .hero-content { padding: 165px 0 62px; }
  .hero-intro { font-size: 1rem; line-height: 1.55; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .featured-tours, .tour-booking-summary, .content-section, .related, .faq-section, .form-section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .rate-grid, .booking-facts { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .section-wide .content-grid { grid-template-columns: 1fr; }
  .page-layout-editorial .section-position-2 .content-grid,
  .page-layout-cards .section-position-3 .content-grid,
  .page-layout-journal .section-position-3 .content-grid { grid-template-columns: 1fr; }
  .page-layout-editorial .content-section.section-wide .content-grid { grid-template-columns: 1fr; }
  .page-layout-editorial .section-position-2 .section-number { order: 0; text-align: left; }
  .page-layout-journal .section-position-2 .section-copy { padding-left: 1.25rem; }
  .section-number { width: 58px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { display: grid; grid-template-columns: 132px 1fr; }
  .related-image { aspect-ratio: auto; min-height: 132px; }
  .related-copy { min-height: 132px; }
  .field-row { grid-template-columns: 1fr; }
  .captain-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

.section-media {
  margin: 1.5rem 0 1.75rem;
}

.section-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6, 44, 79, 0.16);
}

.section-media figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}


/* Booking and availability */
.home-pricing, .availability-section { padding: 80px 0; }
.home-pricing { background: #eef8f8; }
.reviews-section { padding: 90px 0; background: var(--sand-100); }
.review-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.review-heading-row h2 { max-width: 780px; margin-bottom: 0; }
.review-controls { display: flex; gap: .65rem; flex: 0 0 auto; }
.review-arrow { width: 50px; height: 50px; border: 1px solid rgba(8,126,145,.3); border-radius: 50%; color: var(--navy-900); background: var(--white); font-size: 1.35rem; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.review-arrow:hover, .review-arrow:focus-visible { color: var(--white); background: var(--teal-700); transform: translateY(-2px); }
.review-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; margin-top: 2.5rem; padding: 4px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.review-carousel::-webkit-scrollbar { display: none; }
.review-card { position: relative; display: flex; flex-direction: column; min-height: 440px; padding: 2rem; border: 1px solid rgba(8,126,145,.22); border-radius: 6px; background: var(--white); box-shadow: 0 18px 45px rgba(3,29,52,.08); scroll-snap-align: start; }
.review-card::after { position: absolute; inset: 0 0 0 auto; width: 4px; content: ""; background: var(--teal-500); }
.review-quote { position: absolute; top: 14px; right: 24px; color: #f36f21; font-family: Georgia, serif; font-size: 5.6rem; font-weight: 700; line-height: 1; }
.review-card h3 { position: relative; max-width: calc(100% - 62px); margin-bottom: .75rem; font-family: var(--sans); font-size: 1.18rem; font-weight: 700; letter-spacing: 0; line-height: 1.35; }
.review-stars { margin-bottom: 1.4rem; color: #fabe35; font-size: 1.3rem; letter-spacing: .05em; line-height: 1; }
.review-card > p { color: #263a46; font-size: 1rem; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: .9rem; margin-top: auto; padding-top: 1.5rem; }
.reviewer strong, .reviewer span { display: block; }
.reviewer strong { color: var(--navy-950); font-size: 1.08rem; }
.reviewer span { margin-top: .15rem; color: var(--muted); font-size: .9rem; }
.review-logo { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; flex: 0 0 54px; border: 1px solid #e8edf0; border-radius: 50%; background: var(--white); box-shadow: 0 5px 15px rgba(3,29,52,.08); }
.review-logo img { width: 38px; height: 38px; object-fit: contain; }
.review-scroll-hint { margin: .65rem 0 0; color: var(--muted); font-size: .9rem; text-align: right; }
#pricing, #availability, #form-heading { scroll-margin-top: 150px; }
.pricing-scroll { overflow-x: auto; margin: 2rem 0; border: 1px solid var(--border); border-radius: 12px; background: white; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.pricing-table caption { text-align: left; padding: 1rem 1.25rem; font-weight: 700; }
.pricing-table th, .pricing-table td { padding: 1.2rem; text-align: left; border-top: 1px solid var(--border); vertical-align: top; }
.pricing-table thead { background: var(--navy-900); color: white; }
.pricing-table tbody th { width: 40%; }
.pricing-table td { white-space: nowrap; font-weight: 600; }
.pricing-experiences { list-style: none; padding: 0; margin: 0; font-weight: 400; }
.pricing-experiences li + li { margin-top: .35rem; }
.calendar-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin: 2rem 0 1rem; }
.calendar-nav h3 { margin: 0; text-align: center; }
.calendar-nav a:first-child { justify-self: start; }
.calendar-nav a:last-child { justify-self: end; }
.availability-calendar { width: 100%; table-layout: fixed; border-collapse: collapse; background: white; }
.availability-calendar th { padding: .65rem .2rem; color: white; background: var(--navy-900); font-size: .95rem; }
.availability-calendar td { border: 1px solid var(--border); height: 145px; vertical-align: top; padding: 0; }
.availability-calendar td > a { display: flex; flex-direction: column; gap: .15rem; min-height: 145px; padding: .6rem; text-decoration: none; }
.availability-calendar a:hover, .availability-calendar a:focus-visible { outline: 3px solid var(--teal-700); outline-offset: -3px; background: #dff3f5; }
.calendar-day { display: block; font-size: 1rem; font-weight: 700; }
.calendar-boat { font-size: .9rem; }
.calendar-weekend { background: #edf8f7; }
.calendar-empty, .calendar-past { background: #f4f4f4; color: #767676; }
.calendar-past > span, .calendar-past > small { display: block; padding: .4rem .6rem 0; }
.calendar-nav .button { min-height: 44px; }
.contact-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 1024px) {
  .hero-content { padding-top: 160px; }
  .review-carousel { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .home-pricing, .availability-section { padding: 60px 0; }
  .calendar-nav { gap: .5rem; }
  .calendar-nav .button { padding: .55rem .65rem; font-size: .875rem; }
  .calendar-nav h3 { font-size: 1.5rem; }
  .availability-calendar td, .availability-calendar td > a { min-height: 128px; height: 128px; }
  .availability-calendar td > a { padding: .45rem .15rem; }
  .calendar-boat { font-size: .875rem; letter-spacing: -.035em; }
  .availability-calendar th { font-size: .875rem; }
  .contact-method-grid { grid-template-columns: 1fr; }
  .brand img, .site-header.is-scrolled .brand img { width: 128px; height: 60px; }
  .header-phone { gap: .35rem; padding: .5rem .6rem; }
  .header-phone small { display: none; }
  .header-phone strong { margin: 0; font-size: .78rem; }
  .header-phone svg { width: 17px; height: 17px; }
  .review-heading-row { align-items: center; }
  .review-heading-row h2 { font-size: 2.2rem; }
  .review-carousel { grid-auto-columns: calc(100% - 20px); gap: 14px; }
  .review-card { min-height: 430px; padding: 1.6rem; }
  .review-quote { right: 18px; }
  .review-scroll-hint { text-align: left; }
}
