:root {
  --bg:           #FAF7F2;
  --bg-cream:    #F2EBDD;
  --bg-deep:     #0A1F2F;
  --bg-dark:     #102C42;
  --surface:     #FFFFFF;
  --ink:         #1B1F22;
  --ink-muted:   #5B5A55;
  --ink-faint:   #8E8B85;
  --line:        #E5DECF;
  --line-soft:   #ECE6D8;

  --brand:       #14324A;
  --brand-hover: #0E2538;
  --accent:      #3F7E72;
  --sand:        #D9C8A2;
  --warm:        #C48246;

  --shadow-sm: 0 2px 10px rgba(20, 50, 74, 0.06);
  --shadow:    0 12px 32px rgba(20, 50, 74, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 50, 74, 0.18);

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --container: 1180px;
  --container-narrow: 760px;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open { overflow: hidden; }

img, picture { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--brand-hover); }

::selection { background: var(--brand); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: #fff; padding: 12px 16px;
  border-radius: 0 0 8px 0; z-index: 1000;
}
.skip-link:focus { left: 0; color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 .4em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h2 em { font-style: italic; }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.65rem); font-weight: 600; letter-spacing: 0; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { color: var(--accent); }
.section-head h2 { margin-bottom: 16px; }
.section-head .section-lead {
  color: var(--ink-muted);
  font-size: 1.075rem;
  margin: 0;
  font-family: var(--sans);
}
.section-head-light .eyebrow { color: var(--sand); }
.section-head-light h2 { color: #fff; }
.section-head-light .section-lead { color: rgba(255,255,255,0.72); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block, .btn-full { display: flex; width: 100%; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-dark { background: #0A1F2F; color: #fff; border-color: #0A1F2F; }
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-ghost:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: var(--brand); border-color: #fff; }

.btn-link { color: var(--brand); background: transparent; border: none; padding: 13px 0; }
.btn-link:hover { color: var(--brand-hover); text-decoration: underline; text-underline-offset: 4px; }

.btn-phone svg { color: var(--accent); }

.demo-bar {
  background: linear-gradient(90deg, #1B1F22, #14324A);
  color: rgba(255,255,255,0.92);
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 8px 16px;
  text-align: center;
}
.demo-bar strong { color: #F2D38A; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; }
.demo-bar span { opacity: 0.85; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
@media (min-width: 901px) {
  .site-header {
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
  }
}
.site-header.is-scrolled { border-color: var(--line); background-color: rgba(250, 247, 242, 0.98); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding-top: 14px; padding-bottom: 14px;
}

.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 4px;
  flex: 0 0 auto;
  display: grid; place-items: center;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
.brand-sub  { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; font-weight: 500; }

.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn-phone {
  font-size: 14px; padding: 10px 16px;
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px; height: 44px;
  padding: 12px; gap: 4px;
  flex-direction: column; justify-content: space-between; align-items: stretch;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 16px; }

.hero {
  position: relative;
  min-height: clamp(580px, 90vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-img { position: absolute; inset: 0; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 47, 0) 0%, rgba(10, 31, 47, 0.2) 35%, rgba(10, 31, 47, 0.85) 100%),
    linear-gradient(105deg, rgba(10, 31, 47, 0.6) 0%, rgba(10, 31, 47, 0.15) 55%, rgba(10, 31, 47, 0) 100%);
}
.hero-inner {
  position: relative;
  padding: 120px 24px 80px;
  max-width: 1180px;
}
.hero .eyebrow { color: rgba(255,255,255,0.85); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 em { color: #DDEBE7; }
.hero-lead {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin: 22px 0 36px;
  line-height: 1.55;
  font-weight: 400;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 24px 40px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 28px;
  max-width: 880px;
}
.hero-meta li { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 600;
}
.meta-value {
  font-family: var(--sans); font-weight: 600; font-size: 1.1rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.meta-value a { color: #fff; border-bottom: 1px dashed rgba(255,255,255,0.4); }
.meta-value a:hover { color: #fff; border-bottom-color: #fff; }

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}
.section-light { background: var(--bg); }
.section-cream { background: var(--bg-cream); }
.section-dark  { background: var(--bg-dark); color: rgba(255,255,255,0.88); }
.section-dark h3, .section-dark p { color: inherit; }

.schedule-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 920px; margin: 0 auto;
}
.schedule-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.schedule-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.schedule-head { margin-bottom: 22px; }
.schedule-head h3 { margin: 8px 0 6px; font-family: var(--serif); font-weight: 500; font-size: 1.7rem; }
.port-label, .schedule-note {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin: 0;
}
.port-addr { font-size: 14px; color: var(--ink-muted); margin: 4px 0 0; }
.schedule-note { margin-bottom: 12px; }
.time-chips {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.time-chips button {
  display: inline-block;
  padding: 11px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--brand);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.time-chips button:hover {
  background: var(--brand); color: #fff; border-color: var(--brand);
  transform: translateY(-2px);
}
.schedule-small {
  font-size: 13px; color: var(--ink-muted);
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--bg-cream);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}
.schedule-card .btn { margin-top: auto; }
.schedule-footer {
  margin: 48px auto 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 720px;
}

.split {
  display: grid; gap: 56px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split-text h2 { margin-bottom: 24px; }
.split-text p { color: var(--ink-muted); font-size: 1.05rem; line-height: 1.7; }
.split-text strong { color: var(--ink); font-weight: 600; }
.split-actions {
  margin-top: 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.split-image picture {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img {
  width: 100%; height: auto; aspect-ratio: 4/5;
  object-fit: cover;
}
.image-caption {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 16px; text-align: center;
}

.price-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 32px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-cat {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin: 0 0 14px;
}
.price-amount {
  font-family: var(--sans); font-size: 2.1rem; font-weight: 700;
  color: var(--brand); margin: 0; line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.price-amount span { font-size: 0.85rem; font-weight: 600; color: var(--ink-muted); margin-left: 6px; letter-spacing: 0.02em; }
.price-note { font-size: 14px; color: var(--ink-muted); margin: 14px 0 0; }
.price-card-accent {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.price-card-accent .price-cat { color: rgba(255,255,255,0.7); }
.price-card-accent .price-amount { color: #fff; font-size: 1.7rem; font-family: var(--serif); font-weight: 500; letter-spacing: 0; }
.price-card-accent .price-note { color: rgba(255,255,255,0.8); }

.price-extras {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 48px;
}
.extra-card {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 28px;
}
.extra-card h3 { margin: 0 0 16px; font-family: var(--serif); font-weight: 500; font-size: 1.5rem; }
.extra-list { list-style: none; padding: 0; margin: 0 0 16px; }
.extra-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.extra-list li:last-child { border-bottom: none; }
.extra-list span { color: var(--ink-muted); }
.extra-list strong {
  font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--brand);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.extra-note { font-size: 13px; color: var(--ink-faint); margin: 0; }

.cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  padding-top: 16px;
}

.port-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 920px; margin: 0 auto;
}
.port-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.port-card header { margin-bottom: 16px; }
.port-card h3 { margin: 0 0 8px; font-family: var(--serif); font-weight: 500; font-size: 1.7rem; }
.port-addr-line {
  font-size: 14px; color: var(--ink-muted); margin: 0;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.port-card p { color: var(--ink-muted); margin: 16px 0 20px; }
.port-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.section-route {
  position: relative;
  isolation: isolate;
  overflow: visible;
  content-visibility: visible;
  padding: 0;
}
.section-route-head {
  padding: clamp(72px, 9vw, 120px) 24px 32px;
}
.route-scroll-area {
  position: relative;
  height: 300vh;
}
.route-sticky-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.route-sticky-inner > .container {
  width: 100%;
}
.route-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/map-1600.webp");
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: 1280px auto;
  opacity: 0.22;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.section-head-route { position: relative; z-index: 2; }
.section-route .section-head { position: relative; z-index: 2; }

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}
.route-canvas {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.route-canvas .route-svg {
  max-height: calc(100vh - 40px);
  width: 100%;
  height: auto;
}

.route-stop-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.stop-counter {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--bg-cream);
  border-radius: 999px;
}
.stop-counter strong { color: var(--brand); font-weight: 700; }
.stop-counter #stop-num { font-family: var(--sans); }
.stop-card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #EAF4FB 0%, #DDEBF3 100%);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.stop-card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  font-size: 0;
  color: transparent;
}
.stop-card-media.is-empty img { opacity: 0; }
.stop-card-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.stop-card-desc {
  color: var(--ink-muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 24px;
  min-height: 4em;
}

.route-stop-card.is-changing .stop-card-media,
.route-stop-card.is-changing .stop-card-title,
.route-stop-card.is-changing .stop-card-desc,
.route-stop-card.is-changing .stop-card-next strong,
.route-stop-card.is-changing #stop-num {
  animation: stopCardFade .22s ease-out;
}
@keyframes stopCardFade {
  0%   { opacity: 0.3; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}
.stop-card-next {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.stop-card-next-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.stop-card-next strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brand);
}
.route-canvas .route-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(20, 50, 74, 0.2);
  background: linear-gradient(180deg, #EAF4FB 0%, #DDEBF3 100%);
  border: 1px solid rgba(20, 50, 74, 0.08);
}
.route-wrap { display: none; }
@media (max-width: 1080px) and (min-width: 701px) {
  .route-grid { grid-template-columns: 1fr; }
  .route-stop-card { display: none; }
}
.route-bg { opacity: 0; }
.route-svg .river-flow {
  fill: none;
  pointer-events: none;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.river-flow-1 {
  stroke-dasharray: 60 180;
  animation-name: flowA;
  animation-duration: 5s;
  opacity: 0.6;
}
.river-flow-2 {
  stroke-dasharray: 20 320;
  stroke-dashoffset: -140;
  animation-name: flowB;
  animation-duration: 7.5s;
  opacity: 0.45;
}
.river-flow-3 {
  stroke-dasharray: 6 50;
  animation-name: flowC;
  animation-duration: 6s;
  opacity: 0.35;
}
@keyframes flowA { to { stroke-dashoffset: -240; } }
@keyframes flowB { from { stroke-dashoffset: -140; } to { stroke-dashoffset: -480; } }
@keyframes flowC { to { stroke-dashoffset: -112; } }

@media (max-width: 700px) {
  .route-grid { display: block; }
  .route-canvas { display: none; }
  .route-stop-card { display: none; }
  .route-wrap { display: block; padding-left: 44px; max-width: 360px; margin: 0 auto; }
  .route-bg { opacity: 0.22; }
  .route-trail { display: none; }
  .route-list { gap: 14px; }
  .route-list li { padding: 6px 12px 6px 14px; gap: 12px; }
  .route-list li::before { width: 28px; height: 28px; font-size: 10px; left: -44px; background-size: 18px 18px !important; }
  .route-list li::after { left: -30px; top: calc(100% + 0px); height: 16px; }
  .route-list .route-name { font-size: 0.88rem; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .route-list li.route-port .route-name { font-size: 0.8rem; }
  .section-route-head { padding: 56px 24px 24px; }
  .route-scroll-area { height: 200vh; }
}

#route-svg-boat {
  transform-box: fill-box;
  transform-origin: center center;
  transition: opacity .35s ease;
  opacity: 0;
}
#route-svg-boat.is-visible { opacity: 1; }

.route-svg .stop circle {
  transition: r .3s var(--ease), fill .3s var(--ease), filter .3s var(--ease);
}
.route-svg .stop text {
  transition: fill .3s var(--ease), font-weight .3s var(--ease);
}
.route-svg .stop line {
  transition: stroke .3s var(--ease), stroke-width .3s var(--ease);
}
.route-svg .stop.is-passed circle {
  fill: var(--brand);
  r: 7;
}
.route-svg .stop.is-passed text {
  fill: var(--brand);
  font-weight: 700;
}
.route-svg .stop.is-passed line {
  stroke: var(--brand);
}
.route-svg text {
  font-family: var(--sans);
}

.route-svg .port-pulse {
  transform-box: fill-box;
  transform-origin: center;
}
.route-svg .port.is-current .port-pulse {
  animation: portRing 2.2s cubic-bezier(0.25, 0.6, 0.4, 1) infinite;
}
.route-svg .port.is-current .port-pulse-2 {
  animation-delay: 1.1s;
}
@keyframes portRing {
  0%   { r: 26; opacity: 0.75; stroke-width: 3; }
  60%  { r: 50; opacity: 0.18; stroke-width: 1.5; }
  100% { r: 62; opacity: 0;    stroke-width: 1; }
}
.route-svg .port circle:nth-child(3) {
  transition: stroke .35s var(--ease), stroke-width .35s var(--ease);
}
.route-svg .port.is-current circle:nth-child(3) {
  stroke: #3F7E72;
  stroke-width: 3.5;
}
.route-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 56px;
}
.route-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  counter-reset: route;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.route-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 14px 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(229, 222, 207, 0.6);
  border-radius: 14px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}
.route-list li:hover {
  transform: translateX(4px);
  background: #fff;
  border-color: var(--accent);
}
.route-list li::before {
  content: counter(route);
  counter-increment: route;
  position: absolute;
  left: -56px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  z-index: 2;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.route-list li::before {
  transition: background-color .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease);
}
.route-list li.is-passed::before {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.route-list li .route-name {
  transition: color .45s var(--ease), font-weight .45s var(--ease);
}
.route-list li.is-passed .route-name {
  color: var(--brand);
  font-weight: 600;
}

.route-list li.route-port.is-current::before {
  background-color: var(--brand) !important;
  border-color: var(--accent) !important;
  animation: routePortPulse 1.8s ease-out infinite;
}
.route-list li.route-port.is-current .route-name {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
}
@keyframes routePortPulse {
  0%   { box-shadow: 0 0 0 0 rgba(63, 126, 114, 0.7), 0 0 0 5px rgba(20,50,74,0.1); }
  100% { box-shadow: 0 0 0 22px rgba(63, 126, 114, 0), 0 0 0 5px rgba(20,50,74,0.1); }
}

.route-list li::after {
  content: "";
  position: absolute;
  left: -30px;
  top: calc(100% + 2px);
  width: 0;
  height: 14px;
  border-left: 2px dashed rgba(20, 50, 74, 0.32);
  transition: border-color .5s var(--ease);
  z-index: 0;
}
.route-list li:last-child::after { display: none; }
.route-list li.is-passed::after {
  border-color: var(--brand);
}
.route-list li.route-port::before {
  content: "";
  background: var(--brand);
  border-color: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='5' r='2'/><line x1='12' y1='22' x2='12' y2='8'/><path d='M5 12H2a10 10 0 0 0 20 0h-3'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  box-shadow: 0 0 0 5px rgba(20, 50, 74, 0.08);
}
.route-list li.route-port.is-passed::before {
  box-shadow: 0 0 0 5px rgba(63, 126, 114, 0.22);
}
.route-name {
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.4;
  font-weight: 500;
}
.route-list li.route-port .route-name {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.route-trail {
  position: absolute;
  left: 18px;
  top: 19px;
  bottom: 19px;
  width: 2px;
  pointer-events: none;
  z-index: 1;
}
.route-trail-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(20, 50, 74, 0.22) 50%, transparent 50%);
  background-size: 2px 10px;
  background-repeat: repeat-y;
}
.route-trail-fill {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 0;
  background-image: linear-gradient(to bottom, var(--brand) 50%, transparent 50%);
  background-size: 2px 10px;
  background-repeat: repeat-y;
  will-change: height;
}
.route-trail-boat {
  position: absolute;
  left: calc(50% + 36px);
  top: 0;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 32px;
  color: var(--brand);
  filter: drop-shadow(0 6px 10px rgba(20, 50, 74, 0.35));
  transition: opacity .3s var(--ease);
  will-change: top, opacity;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
.route-trail-boat svg { display: block; width: 100%; height: 100%; }
.route-trail.is-armed .route-trail-boat {
  opacity: 1;
  animation: boatBob 3s ease-in-out infinite;
}
@keyframes boatBob {
  0%, 100% { transform: translate(-50%, -50%) rotate(-1.5deg); }
  50% { transform: translate(-50%, calc(-50% - 3px)) rotate(1.5deg); }
}

.service-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 48px;
}
.service-card {
  background: #14344E;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(217,200,162,0.4); }
.service-img { aspect-ratio: 4/3; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body {
  padding: 26px 24px 28px;
  display: flex; flex-direction: column; flex: 1;
}
.service-body h3 { color: #fff; margin: 0 0 12px; font-family: var(--serif); font-weight: 500; font-size: 1.55rem; }
.service-body p { color: rgba(255,255,255,0.75); flex: 1; font-size: 0.97rem; }
.service-body .btn { margin-top: 16px; }
.service-body .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,0.3);
}
.service-body .btn-ghost:hover { background: #fff; color: var(--brand); border-color: #fff; }

.services-extra {
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 720px; margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.services-extra strong { color: #fff; font-weight: 600; }

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: zoom-in;
  background: var(--line-soft);
}
.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-hint { display: none; }

.contact-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1000px; margin: 0 auto;
}
.contact-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 26px;
  background: #14344E;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: #fff;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
}
.contact-card:hover {
  background: #17436A;
  transform: translateY(-3px);
  border-color: rgba(217,200,162,0.35);
  color: #fff;
}
.contact-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand); font-weight: 600;
}
.contact-value {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500;
  color: #fff; line-height: 1.2;
}
.contact-hint {
  font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px;
}
.contact-card-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.contact-card-primary:hover { background: #356C61; border-color: #356C61; }
.contact-card-primary .contact-label { color: rgba(255,255,255,0.85); }

.site-footer {
  background: var(--bg-cream);
  color: var(--ink-muted);
  padding: 60px 0 24px;
  font-size: 14px;
}
.footer-inner {
  display: grid; gap: 40px;
  grid-template-columns: 1.2fr 2fr;
  align-items: start;
}
.footer-brand { line-height: 1.5; display: flex; align-items: flex-start; gap: 16px; }
.footer-logo { width: 60px; height: 60px; flex: 0 0 auto; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-name {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--ink); margin: 0 0 6px;
}
.footer-sub { margin: 0 0 12px; color: var(--ink-muted); }
.footer-contact { margin: 0; }
.footer-contact a { color: var(--brand); font-weight: 600; }

.footer-nav {
  display: flex; flex-wrap: wrap; gap: 14px 24px;
  justify-content: flex-end;
}
.footer-nav a { color: var(--ink); font-weight: 500; }
.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 60;
  background: #0A1F2F;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(10, 31, 47, 0.4);
  gap: 6px;
  align-items: stretch;
  font-family: var(--sans);
}
.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.005em;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.mobile-cta-call {
  background: transparent;
  color: #fff;
  flex: 0 0 auto;
  padding: 13px 20px;
}
.mobile-cta-call:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-cta-call svg { color: #F2D38A; }
.mobile-cta-book {
  background: #F2D38A;
  color: #1B1F22;
}
.mobile-cta-book:hover { background: #E7BD63; color: #000; }
.mobile-nav-open .mobile-cta-bar,
body.modal-open .mobile-cta-bar { display: none !important; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(7, 22, 35, 0.96);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  animation: fadeIn .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  margin: 0;
  max-width: min(1400px, 100%);
  max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lightbox-figure img {
  max-width: 100%; max-height: calc(100vh - 120px);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.lightbox-figure figcaption {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s var(--ease);
  font-family: var(--sans);
}
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 24px; line-height: 1; }
.lightbox-prev, .lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; font-size: 18px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.modal {
  position: fixed; inset: 0;
  background: rgba(7, 22, 35, 0.78);
  z-index: 110;
  display: grid; place-items: center;
  padding: 16px;
  animation: fadeIn .2s var(--ease);
  overflow-y: auto;
}
@media (min-width: 901px) {
  .modal { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
}
.modal[hidden] { display: none; }

.modal-dialog {
  background: var(--bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  display: flex; flex-direction: column;
  animation: rise .35s var(--ease);
}
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-header {
  background: #0A1F2F;
  color: #fff;
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex: 0 0 auto;
}
.modal-title {
  font-family: var(--serif); font-weight: 500; font-size: 1.6rem;
  margin: 0;
  color: #fff;
}
.modal-title-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand); font-weight: 600; margin-bottom: 4px;
}
.modal-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 999px;
  font-size: 20px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s var(--ease);
  flex: 0 0 auto;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

.modal-demo-strip {
  background: linear-gradient(90deg, #F2D38A 0%, #E7BD63 100%);
  color: #1B1F22;
  padding: 10px 28px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
  flex: 0 0 auto;
}
.modal-demo-strip strong { font-weight: 700; }

.booking-step {
  display: grid; gap: 20px;
}

.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600;
}
.field-input,
.field-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field-input:focus,
.field-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63,126,114,0.15);
}

.datepicker {
  position: relative;
}
.datepicker-input {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.datepicker-input:hover { border-color: var(--accent); }
.datepicker-input:focus,
.datepicker.is-open .datepicker-input {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(20,50,74,0.12);
}
.datepicker-input .dp-value {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.datepicker-input .dp-placeholder {
  color: var(--ink-faint);
  font-weight: 400;
}
.datepicker-input .dp-icon {
  flex: 0 0 auto;
  color: var(--brand);
}
.datepicker-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(20, 50, 74, 0.18);
  z-index: 5;
  padding: 16px;
  animation: rise .18s var(--ease);
}
.datepicker[hidden] { display: none; }
.datepicker-pop[hidden] { display: none; }
.dp-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.dp-month {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: capitalize;
}
.dp-nav {
  display: flex; gap: 4px;
}
.dp-nav button {
  width: 32px; height: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--brand);
  font-family: var(--sans);
  transition: background-color .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.dp-nav button:hover {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.dp-nav button:disabled {
  opacity: 0.35; cursor: not-allowed;
}
.dp-nav button:disabled:hover {
  background: var(--bg); color: var(--brand); border-color: var(--line);
}
.dp-weekdays,
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.dp-weekdays span {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  padding: 6px 0;
}
.dp-grid button {
  aspect-ratio: 1;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.dp-grid button:hover:not(:disabled):not(.is-selected) {
  background: var(--bg-cream);
  border-color: var(--line);
}
.dp-grid button.is-outside {
  color: var(--ink-faint);
  opacity: 0.4;
}
.dp-grid button.is-today:not(.is-selected) {
  color: var(--accent);
  font-weight: 700;
}
.dp-grid button.is-selected {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.dp-grid button:disabled {
  color: var(--ink-faint);
  opacity: 0.35;
  cursor: not-allowed;
}
.dp-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  gap: 8px;
}
.dp-foot .dp-today-btn {
  font-family: var(--sans);
  font-size: 13px;
  background: transparent;
  border: none;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
}
.dp-foot .dp-today-btn:hover { background: var(--bg-cream); }
.dp-foot .dp-close-btn {
  font-family: var(--sans);
  font-size: 13px;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.dp-foot .dp-close-btn:hover { background: var(--brand-hover); }

.port-pick {
  display: grid; gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.port-pick label {
  display: block;
  padding: 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.port-pick label:hover { border-color: var(--accent); }
.port-pick input { position: absolute; opacity: 0; pointer-events: none; }
.port-pick input:checked + .port-pick-inner {
  color: var(--brand);
}
.port-pick label:has(input:checked) {
  border-color: var(--brand);
  background: #F4EFE3;
}
.port-pick-inner strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.port-pick-inner span {
  font-size: 12px;
  color: var(--ink-muted);
}

.time-pick {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
}
.time-pick label {
  text-align: center;
  padding: 12px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.time-pick label:hover { border-color: var(--accent); transform: translateY(-1px); }
.time-pick input { position: absolute; opacity: 0; pointer-events: none; }
.time-pick label:has(input:checked) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.qty-row {
  display: grid; gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.qty {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
}
.qty-label { display: flex; flex-direction: column; }
.qty-label strong { font-size: 14px; color: var(--ink); }
.qty-label small { font-size: 12px; color: var(--ink-faint); }
.qty-controls { display: flex; align-items: center; gap: 4px; }
.qty-btn {
  width: 32px; height: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  font-family: var(--sans);
  color: var(--brand);
}
.qty-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.qty-value { min-width: 28px; text-align: center; font-weight: 700; font-family: var(--sans); font-size: 1rem; font-variant-numeric: tabular-nums; }

.summary {
  background: #F4EFE3;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 6px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-muted);
}
.summary-row strong { color: var(--ink); }
.summary-row.total {
  margin-top: 8px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.summary-row.total strong {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px;
  color: var(--ink-muted);
}
.consent input { margin-top: 3px; accent-color: var(--brand); }
.consent a { color: var(--brand); text-decoration: underline; }

.modal-footer {
  background: #F4EFE3;
  padding: 18px 28px;
  display: flex; gap: 12px; align-items: center; justify-content: flex-end;
  flex: 0 0 auto;
  border-top: 1px solid var(--line);
}
.modal-footer[hidden],
.booking-step[hidden] { display: none; }
.modal-footer .summary-mini {
  margin-right: auto;
  font-size: 13px;
  color: var(--ink-muted);
}
.modal-footer .summary-mini strong {
  font-family: var(--sans); font-size: 1.15rem; font-weight: 700; color: var(--brand);
  display: block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.modal-confirm {
  text-align: center;
  padding: 12px 0;
}
.modal-confirm .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3F7E72 0%, #5BA08E 100%);
  color: #fff;
  margin: 0 auto 20px;
  font-size: 32px;
}
.modal-confirm h3 {
  font-family: var(--serif); font-size: 2rem; font-weight: 500; margin: 0 0 12px;
}
.modal-confirm p {
  color: var(--ink-muted);
  max-width: 460px;
  margin: 0 auto 24px;
}
.modal-confirm .summary {
  text-align: left;
  margin: 0 0 20px;
}

.intro-popup {
  position: fixed; inset: 0;
  background: rgba(7, 22, 35, 0.82);
  z-index: 120;
  display: grid; place-items: center;
  padding: 16px;
  animation: fadeIn .25s var(--ease);
}
@media (min-width: 901px) {
  .intro-popup { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
}
.intro-popup[hidden] { display: none; }
.intro-popup-dialog {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: rise .4s var(--ease);
}
.intro-popup-head {
  background: linear-gradient(135deg, #0A1F2F 0%, #14324A 100%);
  color: #fff;
  padding: 32px 32px 24px;
  text-align: center;
}
.intro-popup-head .logo {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: var(--bg);
  border-radius: 50%;
  padding: 6px;
  display: grid; place-items: center;
}
.intro-popup-head .logo img { width: 100%; height: 100%; object-fit: contain; }
.intro-popup-head .badge-text {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #F2D38A; font-weight: 700;
  background: rgba(242, 211, 138, 0.12);
  border: 1px solid rgba(242, 211, 138, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.intro-popup-head h3 {
  color: #fff; font-family: var(--serif); font-size: 1.9rem; margin: 0 0 8px;
}
.intro-popup-head p { color: rgba(255,255,255,0.78); margin: 0; font-size: 15px; }
.intro-popup-body {
  padding: 24px 32px;
  font-size: 15px;
  color: var(--ink-muted);
}
.intro-popup-body p { margin: 0 0 14px; }
.intro-popup-body strong { color: var(--ink); font-weight: 600; }
.intro-popup-body ul { padding-left: 20px; margin: 0; }
.intro-popup-body li { margin: 4px 0; }
.intro-popup-foot {
  padding: 0 32px 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.intro-popup-foot .btn { flex: 1 1 auto; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); will-change: auto; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .site-nav a { font-size: 14px; }
  .header-cta .btn-phone { display: none; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-cta .btn-primary,
  .header-cta .btn-dark { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.is-open { display: block; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-image img { aspect-ratio: 3/2; }

  .route-wrap { padding-left: 48px; }
  .route-bg { background-size: 700px auto; opacity: 0.22; }
  .route-list li { padding: 12px 14px 12px 18px; gap: 14px; }
  .route-list li::before { left: -48px; width: 34px; height: 34px; }
  .route-trail { left: 16px; }
  .route-trail-boat { width: 40px; height: 30px; left: calc(50% + 22px); }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-nav { justify-content: flex-start; }

  .mobile-cta-bar { display: flex; }
  main { padding-bottom: 96px; }

  .gallery {
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    grid-auto-flow: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    gap: 14px;
    padding: 4px 24px 18px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 78%;
    height: 64vh;
    max-height: 520px;
    min-height: 360px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
  }
  .gallery-item:first-child { margin-left: 0; }
  .gallery-item:last-child { flex-basis: calc(78% + 8px); padding-right: 8px; }
  .gallery-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 38%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.32) 100%);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    pointer-events: none;
  }
  .gallery-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--ink-faint);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .gallery-hint svg { color: var(--accent); }
}

@media (max-width: 600px) {
  .hero-inner { padding: 100px 24px 56px; }
  .hero-actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 18px 24px; }

  .schedule-card, .port-card { padding: 24px; }
  .gallery { grid-auto-rows: 160px; gap: 10px; }

  .section-head { margin-bottom: 40px; }

  .header-inner { min-height: 68px; }
  .brand-sub { display: none; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 22px; }

  .port-pick { grid-template-columns: 1fr; }
  .qty-row { grid-template-columns: 1fr; }

  .modal {
    padding: 12px 10px 70px;
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: max(70px, calc(env(safe-area-inset-bottom) + 56px));
    align-items: start;
  }
  .modal-dialog {
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
    width: 100%;
  }
  .modal-header {
    padding: 12px 16px;
    position: sticky; top: 0;
  }
  .modal-title { font-size: 1.15rem; }
  .modal-title-sub { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 2px; }
  .modal-close { width: 32px; height: 32px; font-size: 18px; }
  .modal-demo-strip { padding: 7px 16px; font-size: 11.5px; }
  .modal-body { padding: 14px 16px; }
  .booking-step { gap: 14px; }
  .field-label { font-size: 11px; }
  .field-input, .datepicker-input { padding: 11px 14px; font-size: 14px; }
  .port-pick label { padding: 12px; }
  .port-pick-inner strong { font-size: 1rem; }
  .port-pick-inner span { font-size: 11px; }
  .time-pick { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .time-pick label { padding: 10px 4px; font-size: 0.92rem; }
  .qty { padding: 6px 10px; }
  .qty-label strong { font-size: 13px; }
  .qty-label small { font-size: 11px; }
  .qty-btn { width: 28px; height: 28px; font-size: 16px; }
  .summary { padding: 14px 16px; }
  .summary-row { font-size: 13px; }
  .summary-row.total strong { font-size: 1.1rem; }
  .modal-footer {
    padding: 12px 16px;
    flex-direction: column-reverse;
    align-items: stretch;
    position: sticky; bottom: 0;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  .modal-footer .btn { width: 100%; padding: 12px 18px; font-size: 15px; }
  .modal-footer .summary-mini { margin: 0 0 4px; text-align: center; font-size: 12px; }
  .modal-footer .summary-mini strong { font-size: 1rem; }

  .intro-popup {
    padding: 12px 12px 70px;
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: max(70px, calc(env(safe-area-inset-bottom) + 50px));
    align-items: start;
  }
  .intro-popup-dialog {
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
  }
  .intro-popup-head { padding: 24px 20px 20px; }
  .intro-popup-body { padding: 20px; }
  .intro-popup-foot { padding: 0 20px 24px; flex-direction: column; }
}

@media (max-width: 400px) {
  .hero-meta { grid-template-columns: 1fr; }
}
