@font-face {
  font-family: "Prata Local";
  src: url("../fonts/prata-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Local";
  src: url("../fonts/open-sans-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Local";
  src: url("../fonts/open-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Local";
  src: url("../fonts/open-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f3ede1;
  --paper-deep: #e4dac6;
  --paper-light: #fbf7ef;
  --ink: #142931;
  --ink-soft: #43545a;
  --wine: #85293d;
  --wine-dark: #632032;
  --night: #071820;
  --night-soft: #102b36;
  --gold: #deb778;
  --line: rgba(20, 41, 49, 0.2);
  --white-line: rgba(255, 255, 255, 0.24);
  --shadow: 0 1.5rem 4rem rgba(9, 25, 31, 0.14);
  --content: 76rem;
  --page-padding: clamp(1.1rem, 4vw, 2rem);
  --header-height: 4.8rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)),
    var(--paper);
  color: var(--ink);
  font-family: "Open Sans Local", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.gallery-open,
body.detail-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

h1, h2, h3, p, dl, dd, figure { margin-top: 0; }
h1, h2, h3 { font-family: "Prata Local", Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(2.9rem, 13vw, 5.4rem); line-height: .96; letter-spacing: -.045em; }
h2 { font-size: clamp(2.35rem, 10vw, 4.7rem); line-height: 1.02; letter-spacing: -.04em; }
h3 { line-height: 1.18; }

:focus-visible {
  outline: .18rem solid var(--gold);
  outline-offset: .22rem;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 1rem;
  top: -6rem;
  padding: .8rem 1rem;
  background: var(--paper-light);
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus { top: 1rem; }

.eyebrow {
  margin-bottom: .75rem;
  color: var(--wine);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  width: min(100%, calc(var(--content) + 2 * var(--page-padding)));
  margin-inline: auto;
  padding: clamp(5rem, 13vw, 9rem) var(--page-padding);
}

.section__heading {
  max-width: 49rem;
  margin-bottom: clamp(2rem, 8vw, 4.5rem);
}

.section__heading h2 { margin-bottom: 1.25rem; }
.section__heading > p:last-child,
.section__heading--split > p { color: var(--ink-soft); }

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform .25s var(--ease-out), background-color .25s ease, color .25s ease, border-color .25s ease;
}

.button:active { transform: scale(.97); }
.button--primary { background: var(--wine); color: #fff; }
.button--primary:hover { background: var(--wine-dark); transform: translateY(-.12rem); }
.button--ghost { border-color: currentColor; }
.button--ghost:hover { background: var(--ink); color: #fff; }
.button--gold { background: var(--gold); color: var(--night); }
.button--gold:hover { background: #efcd94; transform: translateY(-.12rem); }
.button--night-ghost { border-color: rgba(255,255,255,.5); color: #fff; }

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem var(--page-padding);
  color: #fff;
  transition: min-height .3s ease, background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.site-header--compact {
  min-height: 4rem;
  background: rgba(243, 237, 225, .94);
  box-shadow: 0 .5rem 1.8rem rgba(7, 24, 32, .09);
  color: var(--ink);
}
.menu-open .site-header { background: transparent; box-shadow: none; color: #fff; }

.brand { position: relative; width: clamp(9.5rem, 44vw, 12.5rem); aspect-ratio: 638 / 122; display: inline-block; flex: none; line-height: 1; }
.brand__logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .28s ease; }
.brand__logo--light { opacity: 1; }
.brand__logo--dark { opacity: 0; }
.site-header--compact .brand__logo--light { opacity: 0; }
.site-header--compact .brand__logo--dark { opacity: 1; }
.menu-open .brand__logo--light { opacity: 1; }
.menu-open .brand__logo--dark { opacity: 0; }
.brand__name { font-family: "Prata Local", Georgia, serif; font-size: 1.55rem; letter-spacing: .04em; }
.brand__caption { margin-top: .3rem; font-size: .55rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.desktop-nav, .header-phone { display: none; }
.header-actions { display: flex; align-items: center; gap: .8rem; }

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  width: 1rem;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .3s ease;
}
.menu-toggle__lines { position: relative; }
.menu-toggle__lines::before,
.menu-toggle__lines::after { position: absolute; left: 0; content: ""; }
.menu-toggle__lines::before { top: -.32rem; }
.menu-toggle__lines::after { top: .32rem; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 2rem) var(--page-padding) 2rem;
  background:
    radial-gradient(circle at 90% 15%, rgba(222,183,120,.15), transparent 30%),
    var(--night);
  color: #fff;
  animation: menu-in .5s var(--ease-out) both;
}

.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; gap: .55rem; }
.mobile-menu nav a {
  width: fit-content;
  font-family: "Prata Local", Georgia, serif;
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.14;
}
.mobile-menu nav a::after { content: ""; display: block; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
.mobile-menu nav a:hover::after { width: 100%; }
.mobile-menu__contacts { display: flex; flex-wrap: wrap; gap: .65rem 1.1rem; margin-top: 2.2rem; color: var(--gold); font-size: .85rem; font-weight: 700; }

@keyframes menu-in {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

.hero { position: relative; background: var(--paper); }
.hero__media { position: relative; width: 100%; height: clamp(19rem, 76vw, 34rem); overflow: hidden; background: #91aad1; }
.hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(4,18,26,.24), transparent 42%); pointer-events: none; }
.hero__media-img { width: 100%; height: 100%; object-fit: cover; object-position: left bottom; }
.hero__watermark { position: absolute; z-index: 2; left: var(--page-padding); right: var(--page-padding); top: calc(var(--header-height) + .5rem); display: flex; justify-content: space-between; color: rgba(255,255,255,.88); font-size: .58rem; font-weight: 700; letter-spacing: .18em; }
.hero__content { padding: 2.2rem var(--page-padding) 3.5rem; }
.hero__content h1 { max-width: 8.6ch; margin-bottom: 1.25rem; }
.hero__lead { max-width: 34rem; color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.6rem 0 2rem; }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 0; border-top: 1px solid var(--line); }
.hero__facts div { min-width: 0; padding: 1rem .4rem .2rem 0; border-right: 1px solid var(--line); }
.hero__facts div:not(:first-child) { padding-left: .7rem; }
.hero__facts div:last-child { border-right: 0; }
.hero__facts dt { font-family: "Prata Local", Georgia, serif; font-size: clamp(1.25rem, 5vw, 2rem); line-height: 1.1; }
.hero__facts dd { margin: .25rem 0 0; color: var(--ink-soft); font-size: .62rem; line-height: 1.35; }

.boat { position: relative; overflow: clip; }
.boat::before { position: absolute; z-index: -1; top: 12%; right: -15%; width: 19rem; aspect-ratio: 1; border: 1px solid rgba(132,41,61,.18); border-radius: 50%; content: ""; }
.media-rail-shell { margin-top: 2rem; }
.rail-heading, .gallery__toolbar { display: flex; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.rail-heading p, .gallery__toolbar p { margin: 0; color: var(--ink-soft); font-size: .7rem; }
.rail-controls { display: flex; gap: .45rem; flex: none; }
.rail-controls button { width: 2.75rem; height: 2.75rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; transition: background-color .25s ease, color .25s ease, transform .25s var(--ease-out); }
.rail-controls button:hover { background: var(--ink); color: #fff; transform: translateY(-.1rem); }
.media-rail { display: flex; gap: .75rem; overflow-x: auto; padding-bottom: .8rem; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: var(--wine) transparent; }
.media-rail__item { position: relative; flex: 0 0 min(78vw, 27rem); aspect-ratio: 4 / 3; overflow: hidden; padding: 0; border: 0; border-radius: .3rem 2.2rem .3rem .3rem; background: var(--paper-deep); cursor: zoom-in; scroll-snap-align: start; }
.media-rail__item::after { position: absolute; inset: 48% 0 0; content: ""; background: linear-gradient(transparent, rgba(5,19,25,.76)); }
.media-rail__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease-out); }
.media-rail__item:hover img { transform: scale(1.035); }
.media-rail__item span { position: absolute; z-index: 1; left: 1rem; right: 1rem; bottom: .8rem; color: #fff; text-align: left; font-size: .72rem; font-weight: 700; }
.boat__story { display: grid; grid-template-columns: 1.15fr .85fr; gap: .5rem; align-items: end; }
.boat__photo { margin-bottom: 0; }
.boat__photo img { width: 100%; min-height: 13rem; object-fit: cover; }
.boat__photo--salon img { border-radius: .2rem 2.2rem .2rem .2rem; }
.boat__photo--profile { transform: translateY(2rem); }
.boat__photo--profile img { min-height: 10rem; border-radius: 2rem .2rem .2rem .2rem; }
.boat__photo figcaption { margin-top: .45rem; color: var(--ink-soft); font-size: .65rem; }
.boat__metrics { display: grid; grid-template-columns: 1fr 1fr; margin-top: 4.2rem; border-block: 1px solid var(--line); }
.boat__metrics div { padding: 1rem .5rem 1rem 0; border-bottom: 1px solid var(--line); }
.boat__metrics div:nth-child(odd) { border-right: 1px solid var(--line); }
.boat__metrics div:nth-child(even) { padding-left: 1rem; }
.boat__metrics div:nth-last-child(-n+2) { border-bottom: 0; }
.boat__metrics strong { display: block; font-family: "Prata Local", Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.boat__metrics span { color: var(--ink-soft); font-size: .7rem; }
.feature-groups { display: grid; gap: 0; margin-top: 3rem; border-top: 1px solid var(--line); }
.feature-group { display: grid; grid-template-columns: 2.5rem 1fr; gap: 0 1rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.feature-group__number { grid-row: span 2; color: var(--wine); font-family: "Prata Local", Georgia, serif; }
.feature-group h3 { margin-bottom: .55rem; font-size: 1.35rem; }
.feature-group p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }

.routes { max-width: none; width: 100%; padding-inline: 0; background: var(--paper-deep); }
.routes .section__heading { padding-inline: var(--page-padding); }
.route-scroller,
.sight-scroller {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  padding: 0 var(--page-padding) 1.3rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--wine) transparent;
}
.route-card { flex: 0 0 min(84vw, 23rem); overflow: hidden; scroll-snap-align: center; background: var(--paper-light); border-radius: 1.6rem; box-shadow: 0 1rem 2.8rem rgba(20,41,49,.08); }
.route-card__visual { position: relative; aspect-ratio: 1.25; overflow: hidden; }
.route-card__visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(7,24,32,.46)); }
.route-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.route-card:hover .route-card__visual img { transform: scale(1.04); }
.route-card__visual > span { position: absolute; z-index: 1; right: 1rem; bottom: .7rem; color: #fff; font-family: "Prata Local", Georgia, serif; font-size: 2rem; }
.route-card__body { padding: 1.35rem; }
.route-card__meta { margin-bottom: .5rem; color: var(--wine); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.route-card h3 { margin-bottom: .65rem; font-size: 1.7rem; }
.route-card__body > p:not(.route-card__meta) { min-height: 4.7rem; color: var(--ink-soft); font-size: .86rem; }
.text-button { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; color: var(--wine); font-size: .78rem; font-weight: 700; }
.text-button span { transition: transform .25s var(--ease-out); }
.text-button:hover span { transform: translate(.18rem, -.18rem); }

.sights { max-width: none; width: 100%; padding-inline: 0; }
.sights .section__heading { padding-inline: var(--page-padding); }
.sight-card { position: relative; flex: 0 0 min(73vw, 19rem); min-height: 24rem; overflow: hidden; scroll-snap-align: center; color: #fff; border-radius: 9rem 9rem .35rem .35rem; background: var(--night); }
.sight-card__button { position: relative; width: 100%; height: 100%; min-height: 24rem; overflow: hidden; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; text-align: left; }
.sight-card__button::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 27%, rgba(6,21,28,.94) 93%); }
.sight-card img { width: 100%; height: 100%; min-height: 24rem; object-fit: cover; transition: transform .8s var(--ease-out); }
.sight-card:hover img { transform: scale(1.05); }
.sight-card__body { position: absolute; z-index: 1; left: 1.2rem; right: 1.2rem; bottom: 1.15rem; display: grid; gap: .45rem; }
.sight-card__body > span:first-child { color: var(--gold); font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.sight-card__body strong { font-family: "Prata Local", Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.sight-card__body > span:nth-child(3) { color: rgba(255,255,255,.76); font-size: .76rem; line-height: 1.45; }
.sight-card__body em { margin-top: .2rem; color: #fff; font-size: .67rem; font-style: normal; font-weight: 700; }

.night {
  position: relative;
  isolation: isolate;
  min-height: 45rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(5rem, 15vw, 9rem) var(--page-padding);
  background: var(--night);
  color: #fff;
}
.night::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(180deg, rgba(7,24,32,.05) 12%, rgba(7,24,32,.28) 42%, rgba(7,24,32,.97) 92%); }
.night__media { position: absolute; z-index: -2; inset: 0; }
.night__media img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.night__media img:first-child { inset: 0; opacity: .82; }
.night__media img:last-child { right: 0; bottom: 0; height: 50%; opacity: .72; object-position: center; mix-blend-mode: screen; }
.night__content { width: min(100%, var(--content)); margin-inline: auto; }
.night .eyebrow { color: var(--gold); }
.night h2 { max-width: 11ch; margin-bottom: 1.2rem; }
.night__content > p:not(.eyebrow) { max-width: 37rem; color: rgba(255,255,255,.76); }
.night__actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.7rem; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.service-card { min-width: 0; padding: 1.1rem; border: 1px solid var(--line); border-radius: 1.2rem; background: rgba(255,255,255,.22); transition: transform .3s var(--ease-out), background-color .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-.25rem); background: var(--paper-light); box-shadow: var(--shadow); }
.service-card > span { color: var(--wine); font-family: "Prata Local", Georgia, serif; font-size: .8rem; }
.service-card h3 { margin: 1.2rem 0 .5rem; font-family: "Open Sans Local", sans-serif; font-size: .98rem; font-weight: 700; }
.service-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.45; }

.pricing { padding: clamp(5rem, 14vw, 9rem) var(--page-padding); background: var(--wine-dark); color: #fff; }
.pricing__intro { width: min(100%, var(--content)); margin: 0 auto 2.5rem; }
.pricing .eyebrow { color: var(--gold); }
.pricing__intro h2 { max-width: 10ch; }
.pricing__intro p:last-child { max-width: 35rem; color: rgba(255,255,255,.72); }
.price-grid { width: min(100%, var(--content)); display: grid; margin-inline: auto; border-top: 1px solid var(--white-line); }
.price-grid article { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; align-items: baseline; padding: 1.35rem 0; border-bottom: 1px solid var(--white-line); }
.price-grid article > span { color: rgba(255,255,255,.72); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.price-grid strong { font-family: "Prata Local", Georgia, serif; font-size: clamp(1.55rem, 7vw, 2.4rem); font-weight: 400; }
.price-grid small { grid-column: 2; color: rgba(255,255,255,.55); }
.pricing__note { width: min(100%, var(--content)); margin: .75rem auto 1.7rem; color: rgba(255,255,255,.48); font-size: .68rem; }
.pricing > .button { margin-left: max(0px, calc((100% - var(--content)) / 2)); }

.gallery__rail { display: flex; gap: .65rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: var(--wine) transparent; }
.gallery__item { position: relative; flex: 0 0 min(72vw, 22rem); aspect-ratio: 4 / 5; overflow: hidden; padding: 0; border: 0; border-radius: .35rem; background: var(--paper-deep); cursor: zoom-in; scroll-snap-align: start; }
.gallery__item:nth-child(3n + 1) { border-radius: 2.2rem .35rem .35rem .35rem; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out), filter .4s ease; }
.gallery__item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.gallery__item span { position: absolute; right: .75rem; bottom: .65rem; padding: .25rem .45rem; background: rgba(5,19,25,.7); color: #fff; font-size: .6rem; }

.booking { display: grid; background: var(--ink); color: #fff; }
.booking__visual { position: relative; min-height: 27rem; overflow: hidden; }
.booking__visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent, rgba(7,24,32,.82)); }
.booking__visual img { width: 100%; height: 100%; object-fit: cover; }
.booking__motto { position: absolute; z-index: 1; left: var(--page-padding); right: var(--page-padding); bottom: 1.6rem; max-width: 11ch; margin: 0; font-family: "Prata Local", Georgia, serif; font-size: clamp(1.9rem, 8vw, 3.25rem); line-height: 1.06; }
.booking__content { padding: clamp(3.5rem, 12vw, 7rem) var(--page-padding) 7rem; }
.booking .eyebrow { color: var(--gold); }
.booking__content > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.booking-context { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.5rem 0; }
.booking-context:empty { display: none; }
.booking-context__label { width: 100%; margin-bottom: .2rem; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.booking-chip { display: inline-flex; gap: .65rem; align-items: center; min-height: 2.5rem; padding: .55rem .75rem; border: 1px solid var(--white-line); border-radius: 999px; background: rgba(255,255,255,.06); color: #fff; cursor: pointer; font-size: .72rem; }
.service-choices { margin: 0 0 2rem; padding: 0; border: 0; }
.experience-choice { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--white-line); }
.service-choices legend { margin-bottom: .8rem; color: #fff; font-size: .8rem; font-weight: 700; }
.service-choices legend small { margin-left: .35rem; color: rgba(255,255,255,.48); font-weight: 400; }
.service-choices__grid { display: flex; flex-wrap: wrap; gap: .45rem; }
.service-choices label { position: relative; cursor: pointer; }
.service-choices input { position: absolute; width: 1px; height: 1px; min-height: 0; opacity: 0; }
.service-choices label span { display: grid; place-items: center; min-height: 2.6rem; padding: .55rem .8rem; border: 1px solid var(--white-line); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .68rem; transition: background-color .2s ease, border-color .2s ease, color .2s ease; }
.service-choices input:checked + span { border-color: var(--gold); background: var(--gold); color: var(--night); }
.service-choices input:focus-visible + span { outline: 2px solid #fff; outline-offset: 2px; }
.form-grid { display: grid; gap: 1rem; }
.form-grid label,
.form-message { display: grid; gap: .42rem; }
.form-grid label > span,
.form-message > span { color: rgba(255,255,255,.68); font-size: .68rem; font-weight: 600; letter-spacing: .04em; }
.form-grid small { font-weight: 400; }
input, textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.38); border-radius: 0; background: transparent; color: #fff; }
input { min-height: 3rem; }
textarea { padding: .75rem 0; resize: vertical; }
input:focus, textarea:focus { border-bottom-color: var(--gold); outline: 0; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.36); }
.form-message { margin-top: 1.2rem; }
.honeypot { position: absolute; left: -10000px; }
.form-consent { display: grid; grid-template-columns: 1.2rem 1fr; gap: .65rem; align-items: start; margin: 1.2rem 0; color: rgba(255,255,255,.65); font-size: .7rem; }
.form-consent input { width: 1rem; min-height: 1rem; margin-top: .15rem; accent-color: var(--gold); }
.booking__submit { width: 100%; }
.booking__submit:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 1.5rem; margin: .8rem 0 0; color: rgba(255,255,255,.68); font-size: .74rem; }
.form-status--success { color: #a9dab7; }
.form-status--error { color: #ffc2ba; }
.form-status a { text-decoration: underline; }
.booking__quick { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-top: 2rem; color: var(--gold); font-size: .75rem; font-weight: 700; }
.booking__quick > span { width: 100%; color: rgba(255,255,255,.5); font-weight: 400; }

.pier { display: grid; background: var(--paper-deep); }
.pier__copy { padding: clamp(3.5rem, 9vw, 6rem) var(--page-padding); }
.pier__copy h2 { max-width: 11ch; }
.pier__copy > p:not(.eyebrow) { max-width: 34rem; color: var(--ink-soft); }
.pier iframe { width: 100%; min-height: 24rem; border: 0; filter: grayscale(.25) sepia(.08); }

.footer { display: grid; gap: 2.2rem; padding: 4rem var(--page-padding) 7rem; background: #051319; color: #fff; }
.footer__logo { width: min(100%, 14rem); height: auto; padding: .55rem; border-radius: .3rem; background: var(--paper-light); }
.footer__brand p { max-width: 19rem; margin: 1rem 0 0; color: rgba(255,255,255,.55); font-size: .82rem; }
.footer__brand .footer__legal { margin-top: 1.5rem; color: rgba(255,255,255,.36); font-size: .66rem; }
.footer h2 { margin-bottom: .65rem; color: var(--gold); font-family: "Open Sans Local", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer > div:not(.footer__brand) { display: grid; align-content: start; gap: .35rem; }
.footer p, .footer a { margin: 0; color: rgba(255,255,255,.72); font-size: .78rem; }
.footer__links a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.35); }

.mobile-dock { position: fixed; z-index: 70; left: .7rem; right: .7rem; bottom: .7rem; display: grid; grid-template-columns: 1fr 1.35fr 1fr; align-items: center; padding: .38rem; border: 1px solid rgba(255,255,255,.82); border-radius: 1.25rem; background: rgba(251,247,239,.93); box-shadow: 0 .9rem 2.7rem rgba(6,22,29,.24); color: var(--ink); backdrop-filter: blur(1rem); transform: translateY(calc(100% + 2rem)); opacity: 0; pointer-events: none; transition: transform .45s var(--ease-out), opacity .3s ease; }
.mobile-dock.dock-visible { transform: none; opacity: 1; pointer-events: auto; }
.mobile-dock a, .mobile-dock button { min-height: 2.8rem; display: grid; place-items: center; padding: .4rem; border: 0; background: transparent; font-size: .65rem; font-weight: 700; }
.mobile-dock .mobile-dock__primary { border-radius: .9rem; background: var(--wine); color: #fff; }

.gallery-dialog { width: min(92vw, 65rem); max-height: 90vh; padding: 0; border: 0; border-radius: 1rem; background: var(--night); color: #fff; box-shadow: 0 2rem 7rem rgba(0,0,0,.5); }
.gallery-dialog::backdrop { background: rgba(2,11,15,.88); backdrop-filter: blur(.4rem); }
.gallery-dialog[open] { animation: dialog-in .35s var(--ease-out) both; }
.gallery-dialog img { width: 100%; max-height: 78vh; object-fit: contain; }
.gallery-dialog p { margin: 0; color: rgba(255,255,255,.72); font-size: .75rem; }
.gallery-dialog__close { position: absolute; z-index: 1; top: .7rem; right: .7rem; width: 2.8rem; height: 2.8rem; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(7,24,32,.62); color: #fff; cursor: pointer; font-size: 1.4rem; }
.gallery-dialog__nav { position: absolute; z-index: 1; top: 50%; width: 3rem; height: 3rem; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(7,24,32,.66); color: #fff; cursor: pointer; transform: translateY(-50%); }
.gallery-dialog__nav--prev { left: .65rem; }
.gallery-dialog__nav--next { right: .65rem; }
.gallery-dialog__meta { display: flex; gap: 1rem; justify-content: space-between; padding: .8rem 1rem; }
.gallery-dialog__meta span { flex: none; color: var(--gold); font-size: .72rem; }

.detail-dialog { width: min(94vw, 70rem); max-height: 92vh; overflow: auto; padding: 0; border: 0; border-radius: 1rem; background: var(--paper-light); color: var(--ink); box-shadow: 0 2rem 7rem rgba(0,0,0,.45); }
.detail-dialog::backdrop { background: rgba(2,11,15,.82); backdrop-filter: blur(.35rem); }
.detail-dialog[open] { animation: dialog-in .35s var(--ease-out) both; }
.detail-dialog__close { position: sticky; z-index: 3; top: .7rem; float: right; width: 2.8rem; height: 2.8rem; margin: .7rem .7rem -3.5rem 0; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(7,24,32,.7); color: #fff; cursor: pointer; font-size: 1.35rem; }
.detail-dialog__content { padding: clamp(1.5rem, 5vw, 3.5rem); }
.detail-dialog__content h2 { max-width: 15ch; margin-bottom: 1.5rem; font-size: clamp(2rem, 7vw, 4.8rem); }
.detail-dialog__content h3 { margin: 1.35rem 0 .35rem; font-family: "Open Sans Local", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.detail-dialog__content > p:not(.eyebrow) { max-width: 48rem; color: var(--ink-soft); }
.route-dialog__map { background: #d7d0c3; }
.route-dialog__map img { width: 100%; max-height: 34rem; object-fit: contain; }
.route-dialog__itinerary { color: var(--wine) !important; font-weight: 600; }
.detail-dialog__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.detail-dialog__status { min-height: 1.5rem; margin-top: .8rem; color: #396c47 !important; font-size: .74rem; }
.sight-dialog__image { width: 100%; max-height: 30rem; object-fit: cover; }
.sight-dialog__routes { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.sight-dialog__routes span { color: var(--wine); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sight-dialog__routes p { margin: .4rem 0 0; color: var(--ink-soft); font-size: .78rem; }
@keyframes dialog-in { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .65s ease, transform .65s var(--ease-out);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.feature-groups [data-reveal]:nth-child(2),
.service-grid [data-reveal]:nth-child(2n) { transition-delay: .08s; }

@media (min-width: 48rem) {
  :root { --page-padding: clamp(2rem, 5vw, 4rem); }
  .section__heading--split { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; }
  .boat__story { grid-template-columns: 1.45fr .55fr; gap: 1rem; }
  .boat__photo--profile { transform: translate(-1.5rem, 3rem); }
  .boat__metrics { grid-template-columns: repeat(4, 1fr); }
  .boat__metrics div, .boat__metrics div:nth-child(even), .boat__metrics div:nth-last-child(-n+2) { padding: 1.25rem; border-right: 1px solid var(--line); border-bottom: 0; }
  .boat__metrics div:first-child { padding-left: 0; }
  .boat__metrics div:last-child { border-right: 0; }
  .feature-groups { grid-template-columns: 1fr 1fr; }
  .feature-group:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--line); }
  .feature-group:nth-child(even) { padding-left: 2rem; }
  .route-card { flex-basis: min(44vw, 26rem); }
  .sight-card { flex-basis: min(36vw, 21rem); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { padding: 1.45rem; }
  .price-grid { grid-template-columns: 1fr 1fr; border-left: 1px solid var(--white-line); }
  .price-grid article { min-height: 10rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border-right: 1px solid var(--white-line); }
  .price-grid strong { margin-top: 1rem; }
  .price-grid small { grid-column: auto; }
  .media-rail__item { flex-basis: min(44vw, 28rem); }
  .gallery__item { flex-basis: min(36vw, 22rem); }
  .booking { grid-template-columns: .85fr 1.15fr; }
  .booking__visual { min-height: 100%; }
  .booking__motto { left: clamp(1.75rem, 4vw, 3.25rem); right: auto; top: 50%; bottom: auto; max-width: none; font-size: clamp(1rem, 1.8vw, 1.35rem); line-height: 1; letter-spacing: .09em; text-transform: uppercase; writing-mode: vertical-rl; text-orientation: sideways; transform: translateY(-50%) rotate(180deg); white-space: nowrap; }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; }
  .booking__submit { width: auto; }
  .pier { grid-template-columns: .8fr 1.2fr; align-items: stretch; }
  .pier iframe { min-height: 30rem; }
  .route-dialog[open] { display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, .9fr); }
  .route-dialog__map { display: grid; place-items: center; min-height: 100%; }
  .route-dialog__map img { max-height: 88vh; }
  .sight-dialog[open] { display: grid; grid-template-columns: .9fr 1.1fr; }
  .sight-dialog__image { height: 100%; max-height: none; }
  .footer { grid-template-columns: 1.4fr 1fr 1fr .7fr; padding-bottom: 4rem; }
}

@media (min-width: 64rem) {
  :root { --header-height: 5.5rem; }
  .site-header { padding-inline: clamp(2rem, 4vw, 4.5rem); }
  .desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); font-size: .7rem; font-weight: 700; }
  .menu-toggle { display: none; }
  .desktop-nav a { position: relative; }
  .desktop-nav a::after { position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 1px; background: currentColor; content: ""; transition: right .25s ease; }
  .desktop-nav a:hover::after { right: 0; }
  .header-phone { display: block; font-size: .72rem; font-weight: 700; }
  .hero { min-height: 100svh; background: var(--night); }
  .hero__media { height: 100svh; aspect-ratio: auto; }
  .hero__media-img { object-fit: cover; object-position: left bottom; }
  .hero__media::after { background: linear-gradient(90deg, rgba(4,18,26,.05) 35%, rgba(4,18,26,.82) 100%); }
  .hero__watermark { right: auto; }
  .hero__content { position: absolute; z-index: 2; right: clamp(2rem, 6vw, 7rem); bottom: 0; width: min(43rem, 48vw); padding: clamp(2rem, 5vw, 4.5rem); background: rgba(243,237,225,.96); box-shadow: var(--shadow); }
  .hero__facts dd { font-size: .72rem; }
  .boat__story { width: 84%; margin-left: auto; }
  .route-scroller, .sight-scroller { padding-left: max(var(--page-padding), calc((100vw - var(--content)) / 2)); padding-right: max(var(--page-padding), calc((100vw - var(--content)) / 2)); }
  .route-card { flex-basis: min(31vw, 27rem); }
  .sight-card { flex-basis: min(24vw, 21rem); }
  .night { min-height: 56rem; }
  .night__media img:last-child { width: 55%; height: 62%; left: auto; opacity: .76; }
  .night__content { padding-right: 44%; }
  .service-grid { grid-template-columns: repeat(9, minmax(14rem, 1fr)); overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
  .service-card { scroll-snap-align: start; }
  .mobile-dock { display: none; }
}

@media (min-width: 80rem) {
  .feature-groups { margin-left: 20%; }
  .service-grid { grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .service-card { min-height: 16rem; }
}

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