:root {
  --ink: #071416;
  --ink-2: #0c2326;
  --paper: #f4f6f2;
  --white: #fff;
  --mist: #dfe8e6;
  --aqua: #31c7bd;
  --aqua-dark: #0e827c;
  --gold: #eaa548;
  --muted: #617170;
  --line: rgba(7, 20, 22, 0.13);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 60px rgba(7, 20, 22, 0.14);
  --shell: min(1200px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  clip: auto;
  background: var(--aqua);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - 1200px) / 2));
  color: var(--white);
  pointer-events: none;
  transition: background 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(7, 20, 22, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
.main-nav { display: flex; align-items: center; gap: 28px; pointer-events: auto; }
.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}
.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--aqua);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--aqua);
  color: var(--ink) !important;
}
.mobile-brand, .menu-toggle { display: none; }
.brand-logo { display: flex; align-items: center; pointer-events: auto; }
.brand-logo img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 22px rgba(7, 20, 22, 0.4);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-video, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; object-position: center 48%; filter: saturate(1.08) contrast(1.03); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 22, 0.82) 0%, rgba(7, 20, 22, 0.55) 38%, rgba(7, 20, 22, 0.05) 74%),
    linear-gradient(0deg, rgba(7, 20, 22, 0.9) 0%, transparent 42%),
    linear-gradient(180deg, rgba(7, 20, 22, 0.35), transparent 30%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding: 160px 0 80px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-kicker span { width: 36px; height: 2px; background: var(--aqua); }
h1, h2, h3, p, figure { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 10vw, 9.2rem);
  font-weight: 400;
  line-height: 0.72;
}
h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
}
h3 { font-size: 1.45rem; line-height: 1.16; }
.hero-copy {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--aqua); color: var(--ink); }
.button-primary:hover { background: #55d9d0; }
.button-glass {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.hero-proof {
  display: flex;
  width: fit-content;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.hero-proof div { min-width: 148px; padding: 18px 28px 0 0; }
.hero-proof div + div { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, 0.24); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 1.1rem; }
.hero-proof span { color: rgba(255, 255, 255, 0.58); font-size: 0.78rem; }
.hero-audio-toggle {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 78px;
  z-index: 3;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(7, 20, 22, 0.58);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.hero-audio-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-audio-toggle .icon-audio-on { display: none; }
.hero-audio-toggle.is-audio-on { background: var(--aqua); color: var(--ink); }
.hero-audio-toggle.is-audio-on .icon-audio-on { display: block; }
.hero-audio-toggle.is-audio-on .icon-audio-off { display: none; }
.hero-audio-toggle span { font-size: 0.78rem; font-weight: 800; }
.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 190px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(90deg);
}
.hero-scroll i { width: 48px; height: 1px; background: currentColor; }
.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 74px;
  background: var(--aqua);
  color: var(--ink);
}
.experience-strip span {
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(7, 20, 22, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section { position: relative; padding: 118px 0; scroll-margin-top: 72px; }
.section-shell { width: var(--shell); margin: 0 auto; }
.section-intro { background: var(--paper); }
.eyebrow {
  margin-bottom: 18px;
  color: var(--aqua-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 430px; margin-bottom: 8px; color: var(--muted); font-size: 1.04rem; }
.experience-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 420px;
  gap: 18px;
}
.experience-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
}
.experience-card-large { grid-row: auto; }
.experience-card img, .experience-card-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.experience-card img { object-fit: cover; transition: transform 500ms ease; }
.experience-card:hover img { transform: scale(1.035); }
.experience-card-shade { background: linear-gradient(0deg, rgba(7, 20, 22, 0.92), rgba(7, 20, 22, 0.04) 66%); }
.experience-card-content { position: absolute; inset: auto 0 0; z-index: 2; padding: 30px; }
.experience-card-content > span { color: var(--aqua); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.experience-card-content h3 {
  margin: 9px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  font-weight: 400;
}
.experience-card:not(.experience-card-large) .experience-card-content h3 { font-size: 2rem; }
.experience-card-content p { max-width: 470px; margin-bottom: 16px; color: rgba(255, 255, 255, 0.72); }
.experience-card-content a { display: inline-flex; align-items: center; gap: 14px; font-size: 0.84rem; font-weight: 800; }
.experience-card-content b { color: var(--aqua); font-size: 1.2rem; }

.section-boat { overflow: hidden; background: var(--ink); color: var(--white); }
.boat-backdrop {
  position: absolute;
  top: 48px;
  left: 50%;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20vw;
  line-height: 0.8;
  transform: translateX(-50%);
  white-space: nowrap;
}
.boat-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 82px;
  align-items: center;
}
.boat-visual { position: relative; }
.boat-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 62%; border-radius: 5px; }
.boat-badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  min-width: 210px;
  padding: 22px;
  background: var(--aqua);
  color: var(--ink);
}
.boat-badge span, .boat-badge strong { display: block; }
.boat-badge span { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.boat-badge strong { margin-top: 3px; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 400; }
.boat-copy .eyebrow { color: var(--aqua); }
.boat-copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255, 255, 255, 0.68); font-size: 1.04rem; }
.boat-specs { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 36px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.boat-specs div { min-height: 130px; padding: 22px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.boat-specs span, .boat-specs strong, .boat-specs small { display: block; }
.boat-specs span { color: var(--aqua); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.boat-specs strong { margin-top: 8px; font-size: 1.2rem; }
.boat-specs small { color: rgba(255, 255, 255, 0.5); }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 28px 0 0; list-style: none; }
.feature-pills li { padding: 8px 12px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 999px; color: rgba(255, 255, 255, 0.72); font-size: 0.78rem; }

.section-pricing { background: var(--white); }
.section-heading { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading-left { max-width: 820px; margin-left: 0; text-align: left; }
.section-heading p:not(.eyebrow) { color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card-featured { background: var(--ink-2); color: var(--white); }
.price-label {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 12px;
  background: var(--aqua);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 54px; }
.price-top span { color: var(--aqua-dark); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.price-card-featured .price-top span { color: var(--aqua); }
.price-top > strong { font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; font-weight: 400; }
.price-card h3 { margin-bottom: 10px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
.price-card > p { color: var(--muted); }
.price-card-featured > p { color: rgba(255, 255, 255, 0.6); }
.price-time { margin-bottom: 6px; color: var(--ink) !important; font-weight: 800; }
.price-card-featured .price-time { color: var(--white) !important; }
.price-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 26px; border-top: 1px solid var(--line); }
.price-card-featured .price-bottom { border-color: var(--line-light); }
.price-bottom > strong { font-size: 1.55rem; }
.promo-price span, .promo-price strong, .promo-price s { display: block; }
.promo-price span { color: var(--aqua-dark); font-size: 0.66rem; font-weight: 900; text-transform: uppercase; }
.promo-price strong { margin-top: 2px; font-size: 1.55rem; }
.promo-price s { margin-top: 2px; color: var(--muted); font-size: 0.78rem; font-weight: 800; text-decoration-thickness: 2px; }
.price-card-featured .promo-price span, .price-card-featured .promo-price strong { color: var(--aqua); }
.price-card-featured .promo-price s { color: rgba(255, 255, 255, 0.54); }
.price-bottom a { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 1.25rem; }
.price-card-featured .price-bottom a { background: var(--aqua); color: var(--ink); }
.extras-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}
.extras-row > * { min-height: 94px; padding: 20px; border-right: 1px solid var(--line); }
.extras-row span, .extras-row strong { display: block; }
.extras-row span { color: var(--muted); font-size: 0.74rem; }
.extras-row strong { margin-top: 5px; font-size: 0.9rem; }
.extras-title span { color: var(--aqua-dark); font-weight: 900; text-transform: uppercase; }
.extras-title strong { font-size: 1rem; }
.extras-toggle { min-width: 154px; border: 0; border-radius: 0 5px 5px 0; background: var(--ink); color: var(--white); cursor: pointer; font-size: 0.78rem; font-weight: 800; }
.extras-toggle span { display: inline; margin-left: 8px; color: var(--aqua); font-size: 1.2rem; }
.extra-details { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-top: 0; }
.extra-details[hidden] { display: none; }
.extra-details span { display: flex; min-height: 62px; align-items: center; justify-content: space-between; padding: 14px 20px; border-right: 1px solid var(--line); color: var(--muted); font-size: 0.82rem; }
.extra-details strong { color: var(--ink); }

.section-routes { background: #e8eeeb; }
.split-heading-routes { margin-bottom: 34px; }
.route-tabs { display: flex; gap: 8px; margin-bottom: 28px; }
.route-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}
.route-tabs button.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.routes { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.75fr); gap: 14px; }
.route-feature {
  position: relative;
  min-height: 632px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
}
.route-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 147.5px; gap: 14px; }
.route-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  outline: 0;
  transition: box-shadow 250ms ease, opacity 250ms ease;
}
.route-card.is-active { box-shadow: inset 0 0 0 3px var(--aqua); }
.route-card:focus-visible { box-shadow: inset 0 0 0 3px var(--aqua), 0 0 0 3px rgba(45, 205, 196, 0.25); }
.route-card.is-hidden { display: none; }
.route-card img, .route-feature img, .route-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.route-card img { object-fit: cover; object-position: center 48%; transition: transform 450ms ease; }
.route-feature img { object-fit: cover; object-position: center; transition: transform 650ms ease; }
.route-card:hover img, .route-card.is-active img, .route-feature:hover img { transform: scale(1.035); }
.route-overlay { background: linear-gradient(0deg, rgba(7, 20, 22, 0.88), transparent 68%); }
.route-number {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}
.route-content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 18px; }
.route-content > span { color: var(--aqua); font-size: 0.66rem; font-weight: 900; text-transform: uppercase; }
.route-content h3 { margin: 4px 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 400; }
.route-card .route-content p { display: none; }
.route-feature .route-content { padding: clamp(26px, 4vw, 52px); }
.route-feature .route-content h3 { margin: 7px 0 12px; font-size: clamp(3rem, 5vw, 5rem); }
.route-feature .route-content p {
  max-width: 560px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}
.route-content small { color: rgba(255, 255, 255, 0.7); font-weight: 800; }

.section-gallery { background: var(--ink); color: var(--white); }
.section-heading-light h2 { max-width: 830px; margin-inline: auto; }
.section-heading-light .eyebrow { color: var(--aqua); }
.gallery-grid { display: grid; grid-template-columns: 1.25fr 0.75fr 0.75fr; grid-template-rows: 280px 280px; gap: 14px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 5px; }
.gallery-main { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(7, 20, 22, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.section-booking { overflow: hidden; background: #f1f4ef; }
.booking-ribbon {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 720px;
  height: 480px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 15%, rgba(49, 199, 189, 0.36) 16%, rgba(49, 199, 189, 0.36) 32%, transparent 33%),
    linear-gradient(160deg, transparent 32%, rgba(234, 165, 72, 0.28) 33%, rgba(234, 165, 72, 0.28) 48%, transparent 49%);
  transform: rotate(-12deg);
}
.booking-layout { position: relative; display: grid; grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr); gap: 76px; align-items: start; }
.booking-copy { position: sticky; top: 110px; }
.booking-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); }
.booking-steps { display: grid; gap: 0; padding: 0; margin: 38px 0; list-style: none; }
.booking-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-top: 1px solid var(--line); }
.booking-steps li:last-child { border-bottom: 1px solid var(--line); }
.booking-steps li > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 0.76rem; font-weight: 900; }
.booking-steps strong, .booking-steps small { display: block; }
.booking-steps small { margin-top: 2px; color: var(--muted); }
.direct-contact span, .direct-contact a { display: block; }
.direct-contact span { color: var(--muted); font-size: 0.78rem; }
.direct-contact a { margin-top: 4px; font-size: 1.25rem; font-weight: 900; }
.booking-panel { border-radius: 7px; background: var(--white); box-shadow: var(--shadow); }
.booking-panel-head { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.booking-panel-head span, .booking-panel-head strong { display: block; }
.booking-panel-head > div span { color: var(--muted); font-size: 0.72rem; }
.booking-panel-head > div strong { margin-top: 3px; }
.availability-dot { display: flex !important; align-items: center; gap: 7px; color: var(--aqua-dark); font-size: 0.72rem; font-weight: 900; }
.availability-dot::before { width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 4px rgba(49, 199, 189, 0.14); content: ""; }
.booking-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 24px; }
.fake-calendar { display: grid; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.calendar-head strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 400; text-transform: capitalize; }
.calendar-arrow { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--ink); cursor: pointer; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.calendar-weekdays span { color: var(--muted); font-size: 0.66rem; font-weight: 900; text-align: center; text-transform: uppercase; }
.calendar-day { min-height: 46px; border: 0; border-radius: 4px; background: transparent; color: var(--ink); cursor: pointer; font-size: 0.82rem; font-weight: 800; }
.calendar-day.is-empty { visibility: hidden; }
.calendar-day.is-disabled { color: #b6bfbd; cursor: not-allowed; }
.calendar-day.is-available { background: var(--paper); }
.calendar-day.is-available:hover { background: var(--mist); }
.calendar-day.is-selected { background: var(--ink); color: var(--white); box-shadow: inset 0 -3px var(--aqua); }
.slot-panel { display: grid; gap: 12px; margin-top: 2px; padding: 16px; border-radius: 5px; background: var(--paper); }
.slot-panel > strong { font-size: 0.9rem; text-transform: capitalize; }
.slot-list { display: grid; gap: 8px; }
.slot-list > span { color: var(--muted); font-size: 0.82rem; }
.slot-option { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; width: 100%; min-height: 58px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: var(--ink); text-align: left; cursor: pointer; }
.slot-option:hover { border-color: var(--aqua-dark); }
.slot-option strong, .slot-option small { display: block; }
.slot-option strong { font-size: 0.82rem; }
.slot-option small { color: var(--muted); font-size: 0.7rem; }
.slot-option em { color: var(--aqua-dark); font-size: 0.76rem; font-style: normal; font-weight: 900; }
.slot-price-promo { display: grid; gap: 1px; justify-items: end; }
.slot-price-promo s { color: var(--muted); font-size: 0.68rem; text-decoration-thickness: 2px; }
.slot-price-promo strong { color: var(--aqua-dark); font-size: 0.82rem; }
.slot-price-promo small { color: var(--muted); font-size: 0.58rem; font-weight: 800; text-transform: uppercase; }
.slot-option.is-selected { border-color: var(--ink); background: var(--ink); color: var(--white); }
.slot-option.is-selected small { color: rgba(255, 255, 255, 0.56); }
.slot-option.is-selected em { color: var(--aqua); }
.slot-option.is-selected .slot-price-promo s, .slot-option.is-selected .slot-price-promo small { color: rgba(255, 255, 255, 0.56); }
.slot-option.is-selected .slot-price-promo strong { color: var(--aqua); }
.booking-extras { display: grid; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.booking-extras-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.booking-extras-head > div:first-child { max-width: 560px; }
.booking-extras-head span { color: var(--aqua-dark); font-size: 0.66rem; font-weight: 900; text-transform: uppercase; }
.booking-extras-head h3 { margin: 3px 0 4px; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 400; }
.booking-extras-head p { margin: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.extras-live-total { flex: 0 0 auto; min-width: 116px; padding: 11px 13px; border-radius: 4px; background: var(--ink); color: var(--white); text-align: right; }
.extras-live-total span, .extras-live-total strong { display: block; }
.extras-live-total span { color: rgba(255, 255, 255, 0.54); font-size: 0.6rem; }
.extras-live-total strong { margin-top: 2px; color: var(--aqua); font-size: 0.95rem; }
.booking-extra-list { display: grid; gap: 8px; }
.booking-extra {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}
.booking-extra-bottle { grid-template-columns: minmax(0, 1fr) minmax(150px, 0.55fr) auto; }
.booking-extra-copy h4 { margin: 2px 0 3px; font-size: 0.93rem; }
.booking-extra-copy p { max-width: 440px; margin: 0 0 6px; color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.booking-extra-copy strong { color: var(--aqua-dark); font-size: 0.7rem; }
.booking-extra-type { color: var(--muted); font-size: 0.58rem; font-weight: 900; text-transform: uppercase; }
.booking-extra.is-selected { border-color: var(--aqua-dark); background: rgba(49, 199, 189, 0.07); box-shadow: inset 3px 0 var(--aqua); }
.quantity-stepper { display: grid; grid-template-columns: 34px 42px 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: var(--white); }
.quantity-stepper button, .quantity-stepper input { width: 100%; min-height: 38px; border: 0; border-radius: 0; background: var(--white); text-align: center; }
.quantity-stepper button { color: var(--ink); cursor: pointer; font-size: 1rem; font-weight: 900; }
.quantity-stepper button:hover { background: var(--mist); }
.quantity-stepper input { padding: 0; border-inline: 1px solid var(--line); appearance: textfield; font-weight: 900; }
.quantity-stepper input::-webkit-inner-spin-button, .quantity-stepper input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.brand-choice { min-width: 0; }
.brand-choice > span { color: var(--muted); font-size: 0.62rem; font-weight: 800; }
.brand-choice select { width: 100%; min-height: 40px; padding: 8px 30px 8px 10px; border: 1px solid var(--line); border-radius: 4px; outline: 0; background: var(--white); color: var(--ink); font-size: 0.7rem; }
.brand-choice select:focus { border-color: var(--aqua-dark); box-shadow: 0 0 0 3px rgba(49, 199, 189, 0.13); }
.booking-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.booking-form label { display: grid; gap: 6px; }
.booking-form label > span { color: var(--muted); font-size: 0.7rem; font-weight: 800; }
.booking-form input, .booking-form textarea { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 4px; outline: 0; background: var(--paper); color: var(--ink); }
.booking-form input:focus, .booking-form textarea:focus { border-color: var(--aqua-dark); box-shadow: 0 0 0 3px rgba(49, 199, 189, 0.13); }
.booking-form textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.button-whatsapp { width: 100%; background: #1bc164; color: #052b16; }
.button-checkout { width: 100%; background: var(--ink); color: var(--white); }
.button-checkout:hover { background: var(--ink-2); }
.form-note { margin: -2px 0 0; color: var(--muted); font-size: 0.7rem; text-align: center; }

.section-contact {
  padding-block: 86px;
  background: var(--aqua);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.section-contact .eyebrow { color: rgba(7, 20, 22, 0.58); }
.section-contact h2 { margin-bottom: 0; font-size: clamp(2.6rem, 4.5vw, 4.8rem); }
.contact-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-action {
  position: relative;
  display: flex;
  min-height: 185px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(7, 20, 22, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.38);
  transition: transform 160ms ease, background 160ms ease;
}
.contact-action:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.62); }
.contact-action span, .contact-action strong, .contact-action small { display: block; }
.contact-action span { margin-bottom: auto; color: rgba(7, 20, 22, 0.58); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.contact-action strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; font-weight: 400; }
.contact-action small { color: rgba(7, 20, 22, 0.64); }
.contact-action b { position: absolute; top: 20px; right: 22px; font-size: 1.4rem; }
.contact-whatsapp { background: var(--ink); color: var(--white); }
.contact-whatsapp:hover { background: var(--ink-2); }
.contact-whatsapp span, .contact-whatsapp small { color: rgba(255, 255, 255, 0.58); }

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}
.checkout-modal[hidden] { display: none; }
.checkout-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 20, 22, 0.76);
  backdrop-filter: blur(8px);
}
.checkout-sheet {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}
.checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.checkout-head span { color: var(--aqua-dark); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.checkout-head h2 { margin: 3px 0 0; font-size: 2.8rem; }
.checkout-head button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}
.checkout-body { padding: 24px; }
.checkout-experience { padding: 20px; border-radius: 5px; background: var(--paper); }
.checkout-experience span { color: var(--aqua-dark); font-size: 0.7rem; font-weight: 900; text-transform: capitalize; }
.checkout-experience h3 { margin: 7px 0 2px; font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; font-weight: 400; }
.checkout-experience p { margin: 0; color: var(--muted); }
.checkout-details { margin: 18px 0; }
.checkout-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-details dt { color: var(--muted); font-size: 0.8rem; }
.checkout-details dd { margin: 0; font-weight: 900; text-align: right; }
.checkout-totals { margin-top: 0; }
.checkout-totals > div:first-child dt, .checkout-totals > div:first-child dd { color: var(--ink); font-weight: 900; }
.checkout-extras { margin: -4px 0 18px; padding: 15px; border: 1px solid var(--line); border-radius: 5px; }
.checkout-extras-title { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 10px; }
.checkout-extras-title span { color: var(--muted); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.checkout-extras-title strong { color: var(--aqua-dark); font-size: 0.8rem; }
.checkout-extras ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.checkout-extras li { display: grid; grid-template-columns: 1fr auto; gap: 12px; font-size: 0.76rem; }
.checkout-extras li span { color: var(--muted); }
.checkout-extras li strong { text-align: right; }
.checkout-details .deposit-row { padding: 16px 14px; border: 0; border-radius: 4px; background: rgba(49, 199, 189, 0.14); }
.deposit-row dt, .deposit-row dd { color: var(--aqua-dark); font-weight: 900; }
.deposit-row dd { font-size: 1.25rem; }
.checkout-contact { margin-bottom: 18px; padding: 16px; border-radius: 5px; background: var(--paper); }
.checkout-contact > strong { display: block; font-size: 0.84rem; }
.checkout-contact > p { margin: 5px 0 12px; color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.checkout-contact > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.checkout-contact a { display: grid; min-height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 4px; background: var(--white); font-size: 0.72rem; font-weight: 900; }
.checkout-contact .checkout-contact-whatsapp { border-color: #1bc164; background: #1bc164; color: #052b16; }
.checkout-quote-warning { margin: 0 0 18px; padding: 13px; border-left: 3px solid var(--sun); background: #fff5df; color: #6e480a; font-size: 0.74rem; line-height: 1.45; }
.checkout-security {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--aqua);
}
.checkout-security strong { font-size: 0.82rem; }
.checkout-security span { color: var(--muted); font-size: 0.72rem; }
.checkout-error { padding: 12px; border-radius: 4px; background: #ffe5e0; color: #8a2617; font-size: 0.78rem; }
.checkout-edit { display: block; margin: 14px auto 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 0.76rem; text-decoration: underline; }
.booking-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 250;
  max-width: 420px;
  padding: 18px 20px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.84rem;
}
.booking-toast[hidden] { display: none; }

.section-faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 84px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading > p:not(.eyebrow) { color: var(--muted); }
.text-link { display: inline-flex; margin-top: 12px; color: var(--aqua-dark); font-weight: 900; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 1.04rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--aqua-dark); font-size: 1.5rem; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 670px; margin: -10px 0 28px; color: var(--muted); }

.site-footer { padding: 68px max(24px, calc((100vw - 1200px) / 2)) 24px; background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.35fr 0.7fr 0.9fr 0.55fr; gap: 42px; align-items: start; }
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-brand img { width: 82px; height: 82px; border-radius: 10px; object-fit: contain; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; font-weight: 400; }
.footer-brand span { color: rgba(255, 255, 255, 0.52); font-size: 0.78rem; }
.site-footer nav, .footer-contact { display: grid; gap: 9px; }
.site-footer nav a, .footer-contact a { color: rgba(255, 255, 255, 0.68); font-size: 0.82rem; }
.site-footer nav a:hover, .footer-contact a:hover { color: var(--aqua); }
.footer-instagram { display: grid; grid-template-columns: 70px 1fr; gap: 10px; align-items: center; }
.footer-instagram img { width: 70px; height: 70px; border-radius: 4px; object-fit: cover; }
.footer-instagram span { font-size: 0.74rem; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 54px; padding-top: 20px; border-top: 1px solid var(--line-light); color: rgba(255, 255, 255, 0.36); font-size: 0.7rem; }
.mobile-cta { display: none; }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 36px, 900px); }
  .section { padding: 92px 0; }
  .boat-layout, .booking-layout, .faq-layout { gap: 46px; }
  .boat-layout { grid-template-columns: 0.9fr 1.1fr; }
  .booking-layout { grid-template-columns: 0.72fr 1.28fr; }
  .pricing-grid { gap: 10px; }
  .price-card { padding: 24px; }
  .extras-row { grid-template-columns: repeat(2, 1fr); }
  .extras-row > * { border-bottom: 1px solid var(--line); }
  .extras-toggle { border-radius: 0; }
  .routes { grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr); }
  .route-list { grid-template-columns: 1fr; grid-auto-rows: 147.5px; }
  .route-list .route-card:nth-child(n + 5) { display: none; }
  .footer-main { grid-template-columns: 1.3fr 0.7fr 1fr; }
  .footer-instagram { display: none; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 32px); }
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 76px; }
  .site-header, .site-header.is-scrolled {
    min-height: 64px;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(7, 20, 22, 0.96);
    /* backdrop-filter qui creerebbe un containing block e confinerebbe
       il menu fullscreen (position: fixed) dentro l'header */
    backdrop-filter: none;
  }
  .brand-logo { display: none; }
  .mobile-brand { display: flex; align-items: center; gap: 9px; pointer-events: auto; font-family: Georgia, "Times New Roman", serif; font-size: 1.03rem; }
  .mobile-brand img { width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 7px; object-fit: contain; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; border: 0; background: transparent; pointer-events: auto; }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--white); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 4px;
    padding: 88px 24px 110px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line-light); font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { min-height: 56px; justify-content: center; margin-top: 18px; border: 0; font-family: Inter, sans-serif; font-size: 0.9rem; font-weight: 900; }
  .hero { min-height: 92svh; }
  .hero-video { object-position: 58% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 20, 22, 0.94) 0%, rgba(7, 20, 22, 0.28) 64%, rgba(7, 20, 22, 0.42)),
      linear-gradient(90deg, rgba(7, 20, 22, 0.4), transparent);
  }
  .hero-inner { width: var(--shell); padding: 132px 0; }
  h1 { font-size: clamp(4.3rem, 24vw, 6.4rem); line-height: 0.74; }
  h2 { font-size: clamp(2.55rem, 13vw, 3.75rem); }
  .hero-copy { max-width: 94%; font-size: 1.02rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { width: 100%; margin-top: 38px; }
  .hero-proof div { min-width: 0; flex: 1; padding: 15px 10px 0 0; }
  .hero-proof div + div { padding-left: 10px; }
  .hero-proof strong { font-size: 0.9rem; }
  .hero-proof span { font-size: 0.64rem; }
  .hero-audio-toggle { right: 16px; bottom: 84px; width: 46px; min-height: 46px; justify-content: center; padding: 0; border-radius: 50%; }
  .hero-audio-toggle span { display: none; }
  .hero-scroll { display: none; }
  .experience-strip { grid-template-columns: repeat(2, 1fr); }
  .experience-strip span { min-height: 58px; border-bottom: 1px solid rgba(7, 20, 22, 0.18); font-size: 0.66rem; }
  .section { padding: 76px 0; }
  .split-heading, .boat-layout, .booking-layout, .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .split-heading { margin-bottom: 34px; }
  .experience-grid, .pricing-grid, .route-list {
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .experience-grid::-webkit-scrollbar, .pricing-grid::-webkit-scrollbar, .route-list::-webkit-scrollbar { display: none; }
  .experience-card, .experience-card-large { width: 84vw; min-width: 84vw; height: 480px; grid-row: auto; scroll-snap-align: start; }
  .experience-card-content { padding: 24px; }
  .experience-card-content h3, .experience-card:not(.experience-card-large) .experience-card-content h3 { font-size: 2.35rem; }
  .boat-layout { display: flex; flex-direction: column; }
  .boat-visual { order: 2; }
  .boat-copy { order: 1; }
  .boat-badge { right: 12px; bottom: 12px; min-width: 175px; }
  .boat-specs { grid-template-columns: repeat(2, 1fr); }
  .boat-specs div { min-height: 112px; padding: 16px; }
  .pricing-grid { padding-top: 2px; padding-bottom: 24px; }
  .price-card { width: 82vw; min-width: 82vw; scroll-snap-align: start; }
  .extras-row { grid-template-columns: 1fr 1fr; }
  .extras-row > * { min-height: 84px; padding: 15px; }
  .extras-title { grid-column: 1 / -1; }
  .extras-toggle { min-width: 0; }
  .extra-details { grid-template-columns: repeat(2, 1fr); }
  .routes { display: grid; grid-template-columns: 1fr; }
  .route-feature { min-height: 510px; }
  .route-list { margin-inline: -16px; padding-inline: 16px; gap: 10px; }
  .route-list .route-card:nth-child(n + 5) { display: block; }
  .route-card, .route-card.is-active {
    width: 68vw;
    min-width: 68vw;
    height: 230px;
    scroll-snap-align: start;
  }
  .route-feature .route-content { padding: 26px; }
  .route-feature .route-content h3 { font-size: 2.65rem; }
  .route-feature .route-content p { font-size: 0.9rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 190px 260px; }
  .gallery-main { grid-column: span 2; grid-row: auto; }
  .gallery-wide { grid-column: span 2; }
  .booking-copy, .faq-heading { position: static; }
  .booking-panel { margin-inline: -8px; }
  .booking-panel-head { padding: 17px 16px; }
  .booking-form { grid-template-columns: 1fr; padding: 18px 14px; }
  .booking-extras-head { align-items: stretch; flex-direction: column; }
  .extras-live-total { display: flex; min-width: 0; align-items: center; justify-content: space-between; text-align: left; }
  .booking-extra, .booking-extra-bottle { grid-template-columns: minmax(0, 1fr) auto; }
  .booking-extra-bottle .brand-choice { grid-column: 1 / -1; grid-row: 2; }
  .booking-extra-bottle .quantity-stepper { grid-column: 2; grid-row: 1; }
  .calendar-day { min-height: 42px; }
  .slot-option { grid-template-columns: 1fr; }
  .slot-option em { justify-self: start; }
  .booking-fields { grid-template-columns: 1fr 1fr; }
  .booking-fields label:nth-last-child(-n + 2) { grid-column: 1 / -1; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-action { min-height: 150px; }
  .faq-list summary { min-height: 76px; font-size: 0.95rem; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand img { width: 68px; height: 68px; }
  .site-footer nav { grid-template-columns: repeat(2, 1fr); }
  .footer-instagram { display: grid; grid-template-columns: 76px 1fr; }
  .footer-instagram img { width: 76px; height: 76px; }
  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 8px;
    padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 20, 22, 0.96);
    backdrop-filter: blur(16px);
  }
  .mobile-cta a { display: flex; min-height: 50px; align-items: center; justify-content: space-between; padding: 0 18px; border-radius: 4px; background: var(--aqua); color: var(--ink); font-size: 0.82rem; font-weight: 900; }
  .mobile-cta .mobile-call { justify-content: center; padding: 0; border: 1px solid rgba(255, 255, 255, 0.24); background: transparent; color: var(--white); font-size: 1.25rem; }
  .checkout-modal { align-items: end; padding: 0; }
  .checkout-sheet { width: 100%; max-height: 92svh; border-radius: 8px 8px 0 0; }
  .booking-toast { right: 12px; bottom: 86px; left: 12px; }
}

@media (max-width: 410px) {
  .hero-inner { padding-bottom: 118px; }
  .hero-kicker { font-size: 0.66rem; }
  .experience-card, .experience-card-large { width: 88vw; min-width: 88vw; }
  .route-card, .route-card.is-active { width: 76vw; min-width: 76vw; }
  .boat-specs strong { font-size: 1rem; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-fields label { grid-column: 1 / -1; }
  .calendar-weekdays, .calendar-days { gap: 3px; }
  .calendar-day { min-height: 39px; }
}

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

/* === Avvio senza servizio aperitivo / alcolici (flag APERITIVO_SERVICE=off) ===
   La classe .no-aperitivo viene aggiunta su <html> dal server (e da script.js
   come fallback). Nasconde tutti gli elementi marcati con [data-alcohol] e
   riallinea le griglie che restano con meno elementi. */
.no-aperitivo [data-alcohol] { display: none !important; }
[data-no-alcohol] { display: none; }
.no-aperitivo [data-no-alcohol] { display: inline; }

/* Selettore lingua con bandierina */
.main-nav { margin-left: auto; }
.lang-switch { position: relative; margin-left: 22px; pointer-events: auto; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(7, 20, 22, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 0.68rem;
}
.lang-btn img, .lang-menu img { display: block; border-radius: 3px; }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  display: grid;
  min-width: 176px;
  padding: 6px;
  background: rgba(7, 20, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}
.lang-menu[hidden] { display: none; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.lang-menu button:hover, .lang-menu button.is-active { background: rgba(49, 199, 189, 0.18); color: #fff; }
#google_translate_element { display: none; }
iframe.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }

@media (max-width: 760px) {
  .mobile-brand { order: 1; }
  .lang-switch { order: 2; margin-left: auto; margin-right: 14px; }
  .menu-toggle { order: 3; }
}
