@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #082438;
  --navy: #061d2e;
  --navy-2: #0b3047;
  --sea: #087e9d;
  --aqua: #18a7c7;
  --foam: #edf8fa;
  --sun: #f28c36;
  --white: #fff;
  --paper: #f7faf9;
  --muted: #597080;
  --line: #cad9dc;
  --ok: #11805f;
  --warn: #d27b1f;
  --danger: #c2453d;
  --max: 1240px;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(5, 34, 52, .12);
  --sticky-offset: 124px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: var(--sticky-offset); }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: "Noto Sans JP", sans-serif; line-height: 1.8; letter-spacing: .015em; }
body.menu-open { overflow-x: clip; }
main section[id], main div[id] { scroll-margin-top: var(--sticky-offset); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 999; left: 12px; top: -80px; padding: 12px 18px; background: var(--white); color: var(--navy); }
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 880px); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-foam { background: var(--foam); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; color: var(--sea); font: 700 15px/1 "Barlow Condensed", sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.section-dark .eyebrow { color: #71d4e6; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section-title { margin: 0; font-size: clamp(30px, 4vw, 55px); line-height: 1.25; letter-spacing: -.035em; }
.section-lead { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: 16px; }
.section-dark .section-lead { color: #bfd0d8; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: var(--sea); font-weight: 700; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 12px 24px; border: 1px solid transparent; border-radius: 2px; font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--sun); }
.btn-primary:hover { background: #d66d18; }
.btn-secondary { color: #fff; background: var(--sea); }
.btn-secondary:hover { background: #05677f; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.65); background: rgba(6,29,46,.2); backdrop-filter: blur(6px); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }

/* Header */
[data-site-header] { --sticky-ui-height: 108px; position: sticky; z-index: 200; top: 0; isolation: isolate; }
.demo-bar { min-height: 30px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 5px 20px; color: #c7d7df; background: #041521; text-align: center; font-size: 11px; letter-spacing: .12em; transition: min-height .2s ease, padding .2s ease, font-size .2s ease; }
.demo-bar-label { display: none; color: #fff; font: 700 10px/1 "Barlow Condensed", sans-serif; letter-spacing: .18em; }
.site-header { position: relative; z-index: 1; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(8,36,56,.1); backdrop-filter: blur(12px); transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; transition: min-height .2s ease; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img { width: 50px; height: 38px; transition: width .2s ease, height .2s ease; }
.brand-main { display: block; color: var(--navy); font: 800 19px/1 "Barlow Condensed", sans-serif; letter-spacing: .07em; }
.brand-sub { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.global-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.global-nav a { display: flex; min-height: 44px; align-items: center; color: #294556; font-size: 13px; font-weight: 700; white-space: nowrap; }
.global-nav a:hover, .global-nav a[aria-current="page"] { color: var(--sea); }
.header-cta { min-height: 46px; padding-inline: 20px; }
.cta-short { display: none; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; content: ""; width: 24px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }
[data-site-header].is-scrolled { --sticky-ui-height: 92px; }
[data-site-header].is-scrolled .demo-bar { min-height: 24px; padding-block: 2px; font-size: 9px; }
[data-site-header].is-scrolled .site-header { background: rgba(255,255,255,.94); border-bottom-color: rgba(8,36,56,.16); box-shadow: 0 8px 24px rgba(5,34,52,.09); }
[data-site-header].is-scrolled .header-inner { min-height: 68px; }
[data-site-header].is-scrolled .brand img { width: 44px; height: 34px; }
[data-site-header].is-scrolled .header-cta { min-height: 44px; }

/* Hero */
.hero { position: relative; min-height: min(830px, calc(100svh - 108px)); display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(2,18,30,.86) 0%, rgba(2,18,30,.6) 40%, rgba(2,18,30,.08) 75%), linear-gradient(0deg, rgba(2,18,30,.65), transparent 45%); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s ease-out both; }
.hero-content { position: relative; z-index: 2; padding: 110px 0 140px; }
.hero-kicker { margin: 0 0 18px; font: 600 15px/1.3 "Barlow Condensed", sans-serif; letter-spacing: .24em; color: #9ee5ef; }
.hero h1 { max-width: 980px; margin: 0; font-size: clamp(48px, 6vw, 92px); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; text-shadow: 0 4px 25px rgba(0,0,0,.2); }
.hero h1 span { display: block; margin-top: 20px; color: #fff; font: 700 clamp(18px, 2vw, 25px)/1.5 "Noto Sans JP", sans-serif; letter-spacing: .02em; }
.hero-copy { max-width: 620px; margin: 28px 0 34px; color: #deedf2; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-log { position: absolute; z-index: 2; right: max(24px, calc((100% - 1240px)/2)); bottom: 38px; display: grid; grid-template-columns: repeat(3, auto); gap: 0; border-top: 1px solid rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.28); }
.hero-log div { min-width: 130px; padding: 14px 20px; border-right: 1px solid rgba(255,255,255,.2); }
.hero-log small { display: block; color: #9eb5c0; font: 600 10px/1 "Barlow Condensed", sans-serif; letter-spacing: .15em; }
.hero-log strong { display: block; margin-top: 8px; font: 700 20px/1 "Barlow Condensed", sans-serif; letter-spacing: .04em; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }

.route-strip { position: relative; z-index: 3; margin-top: -46px; }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; box-shadow: var(--shadow); }
.route-step { position: relative; min-height: 92px; padding: 22px 20px 18px 68px; border-right: 1px solid var(--line); }
.route-step:last-child { border: 0; background: var(--sun); color: #fff; }
.route-step b { position: absolute; left: 22px; top: 25px; color: var(--aqua); font: 700 22px/1 "Barlow Condensed", sans-serif; }
.route-step:last-child b { color: #fff; }
.route-step small { display: block; color: var(--muted); font-size: 11px; }
.route-step:last-child small { color: #fff; }
.route-step strong { display: block; font-size: 14px; }

/* Cards and imagery */
.catch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.catch-card { background: #fff; border-bottom: 3px solid transparent; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.catch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--aqua); }
.image-wrap { overflow: hidden; background: #d9e5e8; }
.image-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.catch-card:hover img, .feature-image:hover img { transform: scale(1.035); }
.catch-body { padding: 22px 22px 24px; }
.catch-date { color: var(--sea); font: 700 13px/1 "Barlow Condensed", sans-serif; letter-spacing: .08em; }
.catch-name { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 12px 0 10px; }
.catch-name h3 { margin: 0; font-size: 22px; }
.catch-name strong { color: var(--sun); font: 700 21px/1 "Barlow Condensed", sans-serif; }
.catch-body p { margin: 0; color: var(--muted); font-size: 14px; }
.tag { display: inline-flex; align-items: center; min-height: 28px; margin-top: 15px; padding: 4px 10px; background: var(--foam); color: var(--sea); font-size: 11px; font-weight: 700; }
.feature-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); align-items: stretch; }
.feature-image { min-height: 520px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 84px); background: var(--navy); color: #fff; }
.feature-copy .big-label { color: #66d0e1; font: 700 clamp(45px, 7vw, 82px)/.85 "Barlow Condensed", sans-serif; letter-spacing: -.02em; }
.feature-copy h2 { margin: 26px 0 18px; font-size: clamp(28px, 3vw, 42px); line-height: 1.35; }
.feature-copy p { color: #bcd0da; }
.feature-spec { display: grid; grid-template-columns: repeat(2, 1fr); margin: 26px 0 32px; border-top: 1px solid #456175; }
.feature-spec div { padding: 16px 12px 0 0; }
.feature-spec small { display: block; color: #8ba5b3; font-size: 11px; }
.feature-spec strong { font-size: 15px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card { position: relative; display: flex; min-height: 420px; flex-direction: column; padding: 34px; background: #fff; border: 1px solid var(--line); }
.plan-card.featured { color: #fff; background: var(--sea); border-color: var(--sea); transform: translateY(-14px); }
.plan-card .plan-num { color: var(--line); font: 700 68px/.8 "Barlow Condensed", sans-serif; }
.plan-card.featured .plan-num { color: rgba(255,255,255,.24); }
.plan-card h3 { margin: 26px 0 4px; font-size: 24px; }
.plan-card .price { margin: 0 0 24px; color: var(--sea); font: 700 32px/1.2 "Barlow Condensed", sans-serif; }
.plan-card.featured .price { color: #fff; }
.plan-card ul { padding: 20px 0 0; margin: 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: 14px; }
.plan-card.featured ul { color: #d7f0f5; border-color: rgba(255,255,255,.28); }
.plan-card li { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; }
.plan-card .text-link { margin-top: auto; align-self: flex-start; }
.plan-card.featured .text-link { color: #fff; }

.flow-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 50px; background: var(--line); }
.flow-item { min-height: 200px; padding: 25px 20px; background: var(--white); }
.flow-item b { display: block; color: var(--aqua); font: 700 35px/1 "Barlow Condensed", sans-serif; }
.flow-item h3 { margin: 34px 0 10px; font-size: 16px; }
.flow-item p { margin: 0; color: var(--muted); font-size: 12px; }
.beginner-band { display: grid; grid-template-columns: 1fr 1fr; margin-top: 40px; background: var(--navy); color: #fff; }
.beginner-band img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.beginner-band-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.beginner-band-copy h3 { margin: 0 0 18px; font-size: clamp(26px, 3vw, 40px); }
.beginner-band-copy p { color: #bfd0d8; }
.assurance-list { display: grid; gap: 12px; padding: 0; margin: 28px 0; list-style: none; }
.assurance-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.assurance-list li::before { content: ""; width: 19px; height: 10px; border-left: 3px solid #62d3e4; border-bottom: 3px solid #62d3e4; transform: rotate(-45deg) translateY(-2px); }

.gallery { display: grid; grid-template-columns: 1.4fr .8fr .8fr; grid-template-rows: 280px 280px; gap: 12px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; background: #d9e5e8; }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery figure:nth-child(2) { grid-column: 2 / 4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { position: absolute; left: 15px; bottom: 12px; padding: 5px 9px; background: rgba(6,29,46,.78); color: #fff; font-size: 11px; }
.facility-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 22px; background: var(--line); }
.facility-list span { min-height: 64px; display: flex; align-items: center; padding: 15px; background: #fff; font-size: 13px; font-weight: 700; }
.facility-list span::before { content: "+"; margin-right: 10px; color: var(--aqua); font: 700 20px/1 "Barlow Condensed", sans-serif; }

.captain-split { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(38px, 8vw, 100px); }
.captain-photo { position: relative; }
.captain-photo::after { content: "20 YEARS ON THE SEA"; position: absolute; right: -18px; bottom: 35px; padding: 11px 16px; color: #fff; background: var(--sun); font: 700 13px/1 "Barlow Condensed", sans-serif; letter-spacing: .12em; }
.captain-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.captain-copy h2 { margin: 0 0 8px; font-size: clamp(34px, 4vw, 56px); }
.captain-copy .name-en { color: var(--sea); font: 600 14px/1 "Barlow Condensed", sans-serif; letter-spacing: .14em; }
.captain-copy blockquote { margin: 34px 0; padding: 0 0 0 25px; border-left: 3px solid var(--aqua); font-size: 20px; font-weight: 600; line-height: 1.8; }

.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #315167; border-bottom: 1px solid #315167; }
.season { min-height: 270px; padding: 30px; border-right: 1px solid #315167; }
.season:last-child { border: 0; }
.season .months { color: #65cfe0; font: 700 13px/1 "Barlow Condensed", sans-serif; letter-spacing: .1em; }
.season h3 { margin: 18px 0 28px; font-size: 28px; }
.fish-pill { display: inline-block; margin: 0 5px 8px 0; padding: 6px 10px; border: 1px solid #46687c; color: #d7e8ee; font-size: 12px; }

/* Calendar */
.calendar-card { padding: clamp(22px, 4vw, 44px); background: #fff; box-shadow: var(--shadow); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.calendar-title { margin: 0; font-size: 23px; }
.calendar-nav { display: flex; gap: 8px; }
.icon-btn { width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 20px; color: var(--muted); font-size: 12px; }
.status-dot { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; margin-right: 4px; border-radius: 50%; color: #fff; font-size: 11px; font-weight: 800; }
.status-ok { background: var(--ok); }
.status-few { background: var(--warn); }
.status-full { background: var(--danger); }
.status-off { background: #778692; }
.calendar { width: 100%; table-layout: fixed; border-collapse: collapse; }
.calendar th { height: 38px; color: var(--muted); font-size: 11px; }
.calendar td { height: 78px; padding: 7px; border: 1px solid #e3ebed; vertical-align: top; font-size: 12px; }
.calendar td.muted-day { color: #aab5ba; background: #f7f9f9; }
.calendar .status-dot { display: flex; margin: 7px auto 0; }

.access-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.access-info { padding: clamp(42px, 7vw, 90px); background: var(--navy); color: #fff; }
.access-info h2 { margin: 0 0 28px; font-size: clamp(30px, 4vw, 50px); }
.access-info dl { display: grid; grid-template-columns: 90px 1fr; gap: 14px; }
.access-info dt { color: #70d3e4; font-size: 12px; font-weight: 700; }
.access-info dd { margin: 0; color: #d8e6eb; }
.map-placeholder { position: relative; min-height: 520px; overflow: hidden; background: #d9e9e9; }
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); }
.map-grid { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 45px 45px; }
.map-pin { position: absolute; left: 54%; top: 47%; width: 25px; height: 25px; border: 7px solid #fff; border-radius: 50% 50% 50% 0; background: var(--sun); box-shadow: 0 4px 14px rgba(0,0,0,.25); transform: rotate(-45deg); }
.map-label { position: absolute; left: calc(54% - 65px); top: calc(47% + 34px); padding: 8px 12px; background: #fff; box-shadow: var(--shadow); font-size: 12px; font-weight: 700; }

.final-cta { position: relative; overflow: hidden; min-height: 520px; display: grid; place-items: center; text-align: center; color: #fff; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: rgba(2,21,34,.62); }
.final-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta-content { position: relative; z-index: 1; padding: 70px 24px; }
.final-cta h2 { margin: 0 0 18px; font-size: clamp(35px, 5vw, 65px); }
.final-cta p { margin: 0 0 32px; color: #d6e6eb; }
.final-cta .hero-actions { justify-content: center; }

/* Internal pages */
.page-hero { position: relative; min-height: 420px; display: grid; align-items: end; overflow: hidden; color: #fff; background: var(--navy); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,18,30,.85), rgba(2,18,30,.12)); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; padding: 75px 0 58px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 18px; color: #c1d6de; font-size: 11px; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 75px); line-height: 1; letter-spacing: -.04em; }
.page-hero .en { display: block; margin-bottom: 8px; color: #84dce9; font: 700 15px/1 "Barlow Condensed", sans-serif; letter-spacing: .2em; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter-btn { min-height: 44px; padding: 8px 18px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 700; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { color: #fff; background: var(--sea); border-color: var(--sea); }
.detail-plan { display: grid; grid-template-columns: .85fr 1.15fr; margin-bottom: 40px; background: #fff; border: 1px solid var(--line); }
.detail-plan img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.detail-plan-copy { padding: clamp(30px, 5vw, 60px); }
.detail-plan-copy h2 { margin: 0 0 8px; font-size: 32px; }
.price-lg { color: var(--sea); font: 700 40px/1.1 "Barlow Condensed", sans-serif; }
.spec-table { width: 100%; margin: 28px 0; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.spec-table th { width: 28%; color: var(--muted); font-size: 12px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { padding: 28px; background: #fff; border-top: 3px solid var(--aqua); }
.info-card h3 { margin: 0 0 12px; font-size: 19px; }
.info-card p, .info-card li { color: var(--muted); font-size: 14px; }
.info-card ul { padding-left: 20px; margin: 0; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.check-card { padding: 24px; background: #fff; border: 1px solid var(--line); }
.check-card h3 { margin: 0 0 10px; font-size: 18px; }
.check-card p { margin: 0; color: var(--muted); font-size: 14px; }
.notice { padding: 24px; border-left: 4px solid var(--sun); background: #fff7ef; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 4px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 700; cursor: pointer; }
.faq-q::after { content: "+"; color: var(--sea); font: 700 26px/1 "Barlow Condensed", sans-serif; }
.faq-q[aria-expanded="true"]::after { content: "−"; }
.faq-a { display: none; padding: 0 44px 24px; color: var(--muted); font-size: 14px; }
.faq-a.open { display: block; }
.boat-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.boat-spec div { display: flex; justify-content: space-between; padding: 20px; background: #fff; }
.boat-spec dt { color: var(--muted); font-size: 13px; }
.boat-spec dd { margin: 0; font-weight: 700; }

/* Form */
.form-layout { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: 32px; }
.reservation-form { padding: clamp(25px, 5vw, 50px); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.required { margin-left: 6px; color: var(--danger); font-size: 10px; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #b8c8ce; border-radius: 0; background: #fbfdfd; color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sea); outline: 2px solid rgba(24,167,199,.2); }
.form-note { margin: 24px 0; color: var(--muted); font-size: 12px; }
.side-panel { padding: 30px; color: #fff; background: var(--navy); }
.side-panel h3 { margin-top: 0; }
.side-panel ol { padding-left: 22px; color: #c8d9df; font-size: 14px; }
.side-panel li { margin-bottom: 14px; }
.form-success { display: none; padding: 30px; margin-bottom: 25px; color: #fff; background: var(--ok); }
.form-success.show { display: block; }

/* Footer / mobile CTA */
.site-footer { padding: 70px 0 30px; color: #c5d7df; background: #041521; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; }
.footer-brand { color: #fff; font: 800 28px/1 "Barlow Condensed", sans-serif; letter-spacing: .08em; }
.footer-demo { max-width: 430px; margin: 18px 0; color: #8ea6b2; font-size: 12px; }
.footer-title { margin: 0 0 16px; color: #fff; font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px 20px; }
.footer-nav a { font-size: 12px; }
.footer-nav a:hover { color: #fff; }
.footer-contact { font-size: 13px; }
.footer-phone { display: block; margin: 7px 0; color: #fff; font: 700 28px/1 "Barlow Condensed", sans-serif; }
.copyright { margin-top: 55px; padding-top: 22px; border-top: 1px solid #173345; color: #6f8996; font-size: 10px; }
.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .global-nav { gap: 14px; }
  .global-nav a { font-size: 11px; }
  .brand { min-width: 190px; }
  .header-cta { min-width: 58px; padding-inline: 13px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .flow-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  :root { --sticky-offset: 100px; }
  body { padding-bottom: 70px; }
  .container, .narrow { width: min(calc(100% - 34px), var(--max)); }
  .section { padding: 80px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 34px; }
  [data-site-header] { --sticky-ui-height: 80px; }
  .demo-bar { min-height: 20px; gap: 0; padding: 2px 10px; font-size: 8px; }
  .demo-bar-label { display: inline; }
  .demo-bar-note { display: none; }
  .site-header { backdrop-filter: none; }
  .header-inner { min-height: 60px; gap: 10px; }
  .brand { min-width: 0; }
  .brand img { width: 40px; height: 31px; }
  .brand-main { font-size: 15px; }
  .brand-sub { display: none; }
  .header-cta { order: 1; min-width: 56px; min-height: 42px; margin-left: auto; padding: 7px 12px; font-size: 12px; }
  .menu-toggle { order: 2; display: block; margin-left: 0; }
  .global-nav { position: fixed; inset: var(--sticky-ui-height) 0 70px; z-index: 110; display: grid; align-content: start; gap: 0; padding: 20px 24px 24px; background: rgba(4,21,33,.98); transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; overscroll-behavior: contain; }
  .menu-open .global-nav { transform: translateX(0); }
  .global-nav a { min-height: 58px; color: #fff; border-bottom: 1px solid #203c4d; font-size: 15px; }
  [data-site-header].is-scrolled { --sticky-ui-height: 76px; }
  [data-site-header].is-scrolled .demo-bar { min-height: 18px; padding-block: 1px; font-size: 8px; }
  [data-site-header].is-scrolled .header-inner { min-height: 58px; }
  [data-site-header].is-scrolled .brand img { width: 37px; height: 29px; }
  .hero { min-height: 720px; }
  .hero::before { background: linear-gradient(0deg, rgba(2,18,30,.9) 5%, rgba(2,18,30,.35) 80%); }
  .hero-bg { object-position: 62% center; }
  .hero-content { align-self: end; padding: 80px 0 150px; }
  .hero h1 { font-size: clamp(45px, 14vw, 68px); }
  .hero-copy { font-size: 14px; }
  .hero-log { left: 17px; right: 17px; bottom: 25px; grid-template-columns: repeat(3, 1fr); }
  .hero-log div { min-width: 0; padding: 12px 10px; }
  .hero-log strong { font-size: 16px; }
  .route-strip { margin-top: 0; }
  .route-grid { grid-template-columns: repeat(2, 1fr); box-shadow: none; }
  .route-step { min-height: 82px; padding: 18px 12px 15px 53px; border-bottom: 1px solid var(--line); }
  .route-step b { left: 16px; top: 22px; }
  .catch-grid, .plans-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-split, .beginner-band, .captain-split, .access-split, .detail-plan, .form-layout { grid-template-columns: 1fr; }
  .feature-image { min-height: 380px; }
  .feature-copy { padding: 45px 30px; }
  .plans-grid .plan-card:last-child { grid-column: 1 / -1; }
  .plan-card.featured { transform: none; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 230px; }
  .gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery figure:nth-child(2) { grid-column: auto; }
  .gallery figure:last-child { display: none; }
  .facility-list { grid-template-columns: repeat(2, 1fr); }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .season:nth-child(2) { border-right: 0; }
  .season:nth-child(-n+2) { border-bottom: 1px solid #315167; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .mobile-cta { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 70px; padding-bottom: env(safe-area-inset-bottom); background: #fff; box-shadow: 0 -8px 25px rgba(0,0,0,.12); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--line); color: var(--navy); font-size: 12px; font-weight: 800; }
  .mobile-cta a:last-child { color: #fff; background: var(--sun); border: 0; }
}

@media (max-width: 560px) {
  .section { padding: 66px 0; }
  .section-title { font-size: 31px; }
  .hero::before { background: linear-gradient(180deg, rgba(2,18,30,.6) 0%, rgba(2,18,30,.28) 46%, rgba(2,18,30,.86) 100%), linear-gradient(90deg, rgba(2,18,30,.3), transparent 78%); }
  .hero-bg { object-position: 64% center; }
  .hero-content { align-self: start; padding: 48px 0 170px; }
  .hero-kicker { margin-bottom: 14px; font-size: 13px; letter-spacing: .2em; }
  .hero h1 { font-size: clamp(28px, 8.8vw, 40px); line-height: 1.04; white-space: nowrap; }
  .hero h1 span { margin-top: 16px; font-size: 16px; line-height: 1.55; white-space: normal; }
  .hero .hero-actions { display: none; }
  .btn { padding-inline: 15px; }
  .catch-grid, .plans-grid, .info-grid, .check-grid { grid-template-columns: 1fr; }
  .plans-grid .plan-card:last-child { grid-column: auto; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-item { min-height: 170px; }
  .beginner-band-copy { padding: 38px 24px; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 250px); }
  .gallery figure:first-child { grid-column: auto; }
  .gallery figure:last-child { display: block; }
  .gallery figure:nth-child(2) { grid-column: auto; }
  .facility-list { grid-template-columns: 1fr 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .season, .season:nth-child(2) { border-right: 0; border-bottom: 1px solid #315167; }
  .season:last-child { border-bottom: 0; }
  .calendar-card { margin-inline: -9px; }
  .calendar td { height: 63px; padding: 5px 2px; text-align: center; }
  .calendar td .status-dot { width: 20px; height: 20px; }
  .access-info { padding: 42px 25px; }
  .map-placeholder { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > :first-child { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .boat-spec { grid-template-columns: 1fr; }
  .page-hero { min-height: 340px; }
}

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