:root {
  --navy: #07244b;
  --deep: #041a37;
  --blue: #0a4c86;
  --orange: #ff7a18;
  --orange-soft: #ffb16f;
  --ivory: #f7f3ea;
  --paper: #ffffff;
  --line: #d7e1ee;
  --muted: #617089;
  --shadow: 0 18px 45px rgba(4, 26, 55, 0.14);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --float-right: calc(20px + env(safe-area-inset-right));
  --float-wa-bottom: calc(20px + env(safe-area-inset-bottom));
  --float-top-bottom: calc(92px + env(safe-area-inset-bottom));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--deep);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.d-none { display: none !important; }
.notranslate { translate: no; }

.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate,
.skiptranslate iframe,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
body { top: 0 !important; }
#google_translate_element {
  position: absolute;
  left: -9999px;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: -9999px;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 50;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 25;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease;
}
body.has-hero .site-header { background: transparent; box-shadow: none; }
body.no-hero .site-header,
body.has-hero .site-header.scrolled {
  background: rgba(4, 26, 55, 0.96);
  box-shadow: 0 10px 32px rgba(0,0,0,0.16);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand img { width: 148px; }
.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.desktop-nav .df-lang-picker {
  margin-left: 4px;
}
.desktop-nav > a {
  position: relative;
  text-decoration: none;
  font-size: .96rem;
  font-weight: 700;
  padding-bottom: .2rem;
}
.desktop-nav > a[aria-current="page"] { color: var(--orange); }
.desktop-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
}
.btn-primary {
  background: linear-gradient(180deg, #ff8b2d, var(--orange));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.28);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.72);
}
.btn-small {
  min-height: 38px;
  padding: .6rem .9rem;
  font-size: .82rem;
  background: var(--ivory);
  color: var(--navy);
}
.menu-toggle {
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}
.df-menu-btn {
  position: relative;
}
.df-menu-btn span {
  position: absolute;
  left: 13px;
}
.df-menu-btn span:nth-child(1) { top: 16px; }
.df-menu-btn span:nth-child(2) { top: 22px; }
.df-menu-btn span:nth-child(3) { top: 28px; }
.df-menu-btn.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.df-menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(.7); }
.df-menu-btn.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform-origin: center;
  transition: transform .34s ease, opacity .22s ease;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity .32s ease;
}
.mobile-menu.open .menu-backdrop { opacity: 1; }
.menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(88vw, 360px);
  height: 100%;
  padding: 24px 26px 32px;
  background: linear-gradient(180deg, #082a58, #041a37);
  color: #fff;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .42s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.df-mobile-menu.open .df-menu-panel {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu.open .menu-panel {
  transform: translateX(0);
  opacity: 1;
}
.menu-open { overflow: hidden; }
.menu-close {
  position: relative;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
}
.menu-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.menu-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 92px;
}
.menu-logo-wrap img { width: 172px; margin: 0 auto; }
.menu-panel nav {
  display: grid;
  gap: 14px;
}
.menu-panel nav a {
  position: relative;
  padding: .72rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-weight: 700;
}
.menu-panel nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform .24s ease, opacity .24s ease;
}
.menu-panel nav a:hover::after,
.menu-panel nav a:focus-visible::after,
.menu-panel nav a[aria-current="page"]::after,
.menu-panel nav a:active::after {
  transform: scaleX(1);
  opacity: 1;
}
.df-menu-brand-wrap {
  text-align: center;
  margin-bottom: .75rem;
}
.df-menu-brand-logo {
  width: 170px;
  max-width: 100%;
  margin: 0 auto;
}
.df-mobile-nav a {
  display: block;
}

.df-lang-picker { position: relative; }
.df-lang-toggle {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  min-height: 40px;
  min-width: 76px;
  padding: .55rem .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.df-lang-current-flag,
.df-lang-option svg {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  flex: 0 0 auto;
}
.df-lang-current {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.df-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 190px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(4, 26, 55, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.df-lang-picker.open .df-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.df-lang-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: .6rem .65rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: .65rem;
  text-align: left;
  cursor: pointer;
}
.df-lang-option:hover,
.df-lang-option:focus-visible {
  background: rgba(255,255,255,0.1);
}
.df-lang-picker-mobile {
  width: fit-content;
  max-width: 200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.df-lang-picker-mobile .df-lang-toggle {
  width: auto;
  justify-content: center;
  min-width: 0;
  min-height: 38px;
  padding: .48rem .78rem;
  gap: .48rem;
}
.df-lang-picker-mobile .df-lang-menu {
  width: 190px;
  left: 50%;
  right: auto;
  top: auto;
  bottom: calc(100% + 12px);
  transform: translate(-50%, 8px);
  border-radius: 18px;
  padding: 10px;
  background: rgba(3, 21, 47, 0.98);
  border: 1px solid rgba(255,255,255,0.08);
}
.df-lang-picker-mobile.open .df-lang-menu {
  transform: translate(-50%, 0);
}
.df-lang-picker-mobile .df-lang-option {
  padding: .72rem .8rem;
  border-radius: 12px;
}

.hero {
  min-height: 690px;
  position: relative;
  color: #fff;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero > picture,
.hero > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,26,55,.92), rgba(4,26,55,.55) 42%, rgba(4,26,55,.14));
}
.hero-content {
  position: relative;
  padding-top: 86px;
}
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
}
.eyebrow.light { color: var(--orange-soft); }
h1, h2, h3 {
  margin: .2em 0;
  font-family: var(--serif);
  line-height: 1.03;
  color: inherit;
}
h1 { font-size: clamp(3rem, 9vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.45rem; }
.hero em { color: var(--orange); font-style: normal; }
.hero p { max-width: 560px; font-size: 1.08rem; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.section { padding: 72px 0; }
.section-alt { background: #f8fafc; }
.home .section {
  padding: 56px 0;
}
.home .section-head {
  margin-bottom: 18px;
}
.home-fleet-section {
  position: relative;
  padding-top: 54px;
  padding-bottom: 50px;
}
.home-fleet-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 26, 55, .16) 18%, rgba(4, 26, 55, .16) 82%, transparent);
  transform: translateX(-50%);
}
.home-fleet-section::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px #f8fafc;
  transform: translateX(-50%);
}
.home-tour-section {
  position: relative;
  padding-top: 54px;
  background: #fff;
}
.home-tour-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 26, 55, .16) 18%, rgba(4, 26, 55, .16) 82%, transparent);
  transform: translateX(-50%);
}
.home-tour-section::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px #fff;
  transform: translateX(-50%);
}
.intro-grid,
.detail-grid,
.editorial-grid { display: grid; gap: 32px; }
.intro-grid { align-items: start; }
.intro-main {
  display: grid;
  gap: 32px;
}
.intro-image-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefits { display: grid; gap: 22px; }
.benefits article { display: flex; gap: 16px; }
.benefits span {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: var(--orange);
  font-size: 1.4rem;
}
.benefits span i {
  line-height: 1;
  transform: translateY(1px);
}
.intro-image,
.editorial-image,
.detail-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.intro-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.cards-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 34%);
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(4, 26, 55, .18) transparent;
}
.cards-carousel-wrap {
  position: relative;
  padding: 0;
}
.cards-scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(4, 26, 55, .1);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(4, 26, 55, .1);
  backdrop-filter: blur(12px);
  transform: translateY(-58%);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease, opacity .22s ease;
  cursor: pointer;
}
.cards-scroll-btn:hover,
.cards-scroll-btn:focus-visible {
  background: #fff;
  transform: translateY(-58%) scale(1.04);
  box-shadow: 0 22px 48px rgba(4, 26, 55, .18);
}
.cards-scroll-btn i {
  font-size: 1.25rem;
  line-height: 1;
}
.cards-scroll-btn--prev { left: -68px; }
.cards-scroll-btn--next { right: -68px; }
.cards-scroll-btn.is-hidden { opacity: 0; pointer-events: none; }
.cards-scroll::-webkit-scrollbar { height: 10px; }
.cards-scroll::-webkit-scrollbar-thumb {
  background: rgba(4, 26, 55, .28);
  border-radius: 999px;
}
.cards-scroll::-webkit-scrollbar-track { background: transparent; }
.cards-scroll .card-image {
  height: 210px;
}
.cards-scroll .card-body,
.card-grid .boat-card .card-body {
  min-height: 230px;
  padding: 20px 22px 18px;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  gap: 9px;
}
.cards-scroll .card-actions,
.card-grid .boat-card .card-actions {
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
}
.cards-scroll .card h3,
.card-grid .boat-card h3 {
  margin: 0;
  min-height: 1.96em;
  font-size: clamp(1.35rem, 1.6vw, 1.65rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.card-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  padding: 0;
  color: var(--navy);
  font-size: .83rem;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  box-shadow: none;
}
.card-detail-link:hover,
.card-detail-link:focus-visible {
  background: transparent;
  color: var(--orange);
}
.boat-card h3 {
  color: var(--navy);
}
.cards-scroll .eyebrow,
.card-grid .boat-card .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--orange);
  font-size: .64rem;
  letter-spacing: .16em;
}
.cards-scroll .btn-small {
  min-height: 38px;
  width: auto;
  justify-content: center;
  padding: .65rem .9rem;
  font-size: .72rem;
  border: 1px solid rgba(9, 35, 71, .1);
  box-shadow: none;
}
.card-grid { display: grid; gap: 24px; }
.card-grid.home-tour-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-grid.tour-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  background: #fff;
  border: 1px solid rgba(4, 26, 55, .08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(4,26,55,.07);
  scroll-snap-align: start;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.cards-scroll .card:hover,
.cards-scroll .card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(4,26,55,.12);
  border-color: rgba(255, 122, 24, .22);
}
.boat-card {
  position: relative;
  background: #fff;
}
.boat-card::after {
  content: "";
  position: absolute;
  inset: 210px 22px auto;
  height: 1px;
  background: rgba(4, 26, 55, .07);
}
.boat-card .card-image {
  position: relative;
}
.boat-card .card-body {
  position: relative;
}
.boat-card .eyebrow {
  position: relative;
  z-index: 1;
}
.boat-card h3 {
  max-width: 14ch;
}
.card-grid .boat-card {
  height: 100%;
}
.card-grid .boat-card .card-image {
  height: 210px;
}
.boat-card__features {
  align-self: end;
  display: grid;
  gap: 13px;
  margin-top: 10px;
  padding: 15px 0 14px;
  border-top: 1px solid rgba(4, 26, 55, .08);
  border-bottom: 1px solid rgba(4, 26, 55, .08);
}
.boat-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.boat-card__facts span {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  min-width: 0;
  padding-right: 12px;
  color: var(--navy);
}
.boat-card__facts span + span {
  padding-left: 14px;
  padding-right: 0;
  border-left: 1px solid rgba(4, 26, 55, .1);
}
.boat-card__facts i,
.boat-card__equipment i {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}
.boat-card__facts i {
  grid-row: 1 / 3;
}
.boat-card__facts small {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.15;
  text-transform: uppercase;
}
.boat-card__facts strong {
  margin-top: 3px;
  font-size: .75rem;
  line-height: 1.1;
}
.boat-card__equipment {
  display: block;
}
.boat-card__equipment span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  min-width: 0;
  color: var(--navy);
}
.boat-card__equipment i {
  grid-row: 1 / 3;
}
.boat-card__equipment small {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.15;
  text-transform: uppercase;
}
.boat-card__equipment strong {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  margin-top: 3px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.boat-card .card-actions {
  position: relative;
}
.boat-card .card-detail-link {
  margin-left: auto;
}
.boat-card .card-detail-link span {
  font-size: 1rem;
  transition: transform .22s ease;
}
.boat-card .card-detail-link:hover span,
.boat-card .card-detail-link:focus-visible span {
  transform: translateX(3px);
}
.boat-card .btn-small {
  margin-left: auto;
  background: #f4f0e8;
  color: var(--navy);
  border-radius: 999px;
  font-weight: 800;
}
.boat-card .btn-small:hover,
.boat-card .btn-small:focus-visible {
  background: linear-gradient(180deg, #fbf6ee, #f1eadf);
}
.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 18px; }
.specs {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: .92rem;
}
.specs li {
  background: #f2f6fb;
  border-radius: 999px;
  padding: .3rem .55rem;
}
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.service-grid,
.contact-cards { display: grid; gap: 20px; }
.service-grid article,
.contact-cards article {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-cards {
  border-top: 1px solid rgba(4, 26, 55, .14);
  border-bottom: 1px solid rgba(4, 26, 55, .14);
}
.contact-cards article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 26px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 122, 24, .38);
  color: var(--orange);
  font-size: 1.1rem;
}
.contact-card__label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-cards a,
.contact-cards address {
  display: block;
  width: fit-content;
  margin: 4px 0;
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-map {
  margin-top: 54px;
}
.contact-map__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 22px;
}
.contact-map__head h2 {
  margin-bottom: 0;
}
.contact-map__head > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}
.contact-map__embed {
  height: clamp(360px, 42vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(4, 26, 55, .09);
  box-shadow: 0 18px 42px rgba(4, 26, 55, .08);
}
.contact-map__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.destination-band {
  display: grid;
  background: var(--deep);
  color: #fff;
}
.destination-content {
  padding: 54px 24px;
}
.destination-content h2 {
  max-width: 12ch;
  margin-bottom: 22px;
}
.destination-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.76);
  font-size: 1.03rem;
}
.destination-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-image--main {
  position: absolute;
  inset: 0;
}
.destination-highlights {
  max-width: 650px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.16);
}
.destination-highlights li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.destination-highlights li > span {
  color: var(--orange-soft);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.destination-highlights strong,
.destination-highlights small {
  display: block;
}
.destination-highlights strong {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.destination-highlights small {
  color: rgba(255,255,255,.66);
  line-height: 1.4;
}
.destination-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.destination-link span {
  color: var(--orange);
  font-size: 1.15rem;
  transition: transform .22s ease;
}
.destination-link:hover span,
.destination-link:focus-visible span {
  transform: translateX(4px);
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.home .faq details {
  padding: 18px 0;
}
.faq summary {
  font-weight: 900;
  cursor: pointer;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.45fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 120px;
}
.faq-intro h2 {
  margin-bottom: 18px;
}
.faq-intro > p:last-of-type {
  max-width: 440px;
  margin-bottom: 24px;
  color: var(--muted);
}
.faq-list {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top-color: rgba(4, 26, 55, .24);
}
.faq-list summary {
  position: relative;
  padding-right: 42px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.25;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after {
  content: "\2212";
}
.faq-list details p {
  max-width: 720px;
  margin: 14px 42px 0 0;
  color: var(--muted);
}
.narrow { max-width: 820px; }
.page-hero {
  background-image:
    linear-gradient(90deg, rgba(4,26,55,.82) 0%, rgba(4,26,55,.58) 44%, rgba(4,26,55,.24) 74%, rgba(4,26,55,.1) 100%),
    url('../img/hero/capo-palinuro-hero-1440.jpg');
  background-position: center;
  background-size: cover;
  color: #fff;
  margin-top: -52px;
  padding: 202px 0 72px;
}
.page-hero--noleggio {
  background-image:
    linear-gradient(90deg, rgba(4,26,55,.82) 0%, rgba(4,26,55,.57) 44%, rgba(4,26,55,.22) 76%, rgba(4,26,55,.08) 100%),
    url('../img/hero/noleggio-hero.jpg');
  background-position: center 58%;
}
.page-hero--tour {
  background-image:
    linear-gradient(90deg, rgba(4,26,55,.8) 0%, rgba(4,26,55,.54) 44%, rgba(4,26,55,.2) 76%, rgba(4,26,55,.07) 100%),
    url('../img/hero/tour.png');
  background-position: center 52%;
}
.page-hero--costa {
  background-image:
    linear-gradient(90deg, rgba(4,26,55,.78) 0%, rgba(4,26,55,.52) 44%, rgba(4,26,55,.19) 76%, rgba(4,26,55,.06) 100%),
    url('../img/hero/destinazione.webp');
  background-position: center;
}
.page-hero.compact { padding-bottom: 52px; }
.breadcrumb {
  position: relative;
  z-index: 3;
  margin-bottom: -52px;
  padding-top: 106px;
  color: #fff;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .9rem;
}
.breadcrumb a,
.breadcrumb span {
  color: #fff;
  text-decoration: none;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255,255,255,.72);
}
.detail-specs {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.detail-specs div {
  border-left: 3px solid var(--orange);
  padding-left: 12px;
}
.detail-specs dt { font-weight: 900; }
.detail-specs dd { margin: 0; color: var(--muted); }
.check-list { list-style: none; padding-left: 0; }
.check-list li { margin: .45rem 0; }
.check-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
  margin-right: 8px;
}
.boat-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.boat-gallery__item {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  background: #fff;
  aspect-ratio: 4 / 3;
  display: block;
  position: relative;
}
.boat-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.16));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.boat-gallery__item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.boat-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}
.boat-gallery__item:hover img,
.boat-gallery__item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.boat-gallery__item:hover::after,
.boat-gallery__item:focus-visible::after {
  opacity: 1;
}
.boat-gallery__item:focus-visible {
  outline: 2px solid #818284;
  outline-offset: 3px;
}
.boat-detail {
  padding-top: 84px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.boat-detail__header {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(4, 26, 55, .14);
}
.boat-detail__header h1 {
  max-width: 100%;
  margin: 4px 0 0;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.055em;
}
.boat-detail__information {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .85fr) auto;
  gap: 38px;
  align-items: center;
  padding: 32px 0 38px;
}
.boat-detail__label {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.boat-detail .detail-specs {
  grid-template-columns: .72fr 1fr 1.45fr;
  gap: 0;
  margin: 0;
}
.boat-detail .detail-specs div {
  min-width: 0;
  padding: 2px 22px;
  border-left: 1px solid rgba(4, 26, 55, .14);
}
.boat-detail .detail-specs div:first-child { padding-left: 0; border-left: 0; }
.boat-detail .detail-specs dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.boat-detail .detail-specs dd {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}
.boat-detail .detail-specs__license dd {
  max-width: 18ch;
}
.boat-detail .check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 0;
  margin: 0;
}
.boat-detail .check-list li { margin: 0; color: #263955; font-size: .88rem; }
.boat-detail .check-list li::before { content: "\2713"; margin-right: 6px; }
.boat-detail__cta { white-space: nowrap; }
.boat-detail .boat-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.boat-detail .boat-gallery__item {
  border: 0;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(4, 26, 55, .08);
}
.editorial-grid { align-items: center; }
.coast-intro {
  background: #fff;
}
.coast-intro__grid {
  display: grid;
  gap: 26px;
}
.coast-intro__grid h2,
.coast-heading h2,
.coast-feature__content h2 {
  margin-top: 6px;
}
.coast-intro__copy {
  max-width: 720px;
  color: #263955;
  font-size: 1.05rem;
}
.coast-map-section {
  padding-top: 28px;
  background: #fff;
}
.coast-map-heading {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.coast-map-heading h2 {
  margin: 6px 0 0;
}
.coast-map-heading > p {
  max-width: 700px;
  margin: 0;
  color: #42546d;
}
.coast-map {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #092c61;
  box-shadow: 0 24px 60px rgba(4, 31, 69, .18);
}
.coast-map img {
  display: block;
  width: 100%;
  height: auto;
}
.coast-map figcaption {
  padding: 14px 18px;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  line-height: 1.45;
}
.coast-heading {
  max-width: none;
  margin-bottom: 38px;
}
.coast-heading > p:last-child {
  max-width: 100%;
  color: #42546d;
}
.coast-editorial h3 {
  margin: 4px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--navy);
}
.coast-editorial > div:has(.editorial-image) {
  aspect-ratio: 4 / 3;
}
.coast-editorial > div:has(.editorial-image) picture,
.coast-editorial > div:has(.editorial-image) img {
  width: 100%;
  height: 100%;
}
.coast-editorial > div:has(.editorial-image) img {
  object-fit: cover;
}
.coast-editorial p:last-child {
  color: #42546d;
}
.coast-infreschi {
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 143, 38, .16), transparent 30%),
    linear-gradient(125deg, #001b3c, #063b70);
}
.coast-feature {
  display: grid;
  gap: 34px;
  align-items: center;
}
.coast-feature__image .editorial-image {
  aspect-ratio: 3 / 4;
  min-height: 390px;
  object-fit: cover;
}
.coast-feature__content > p:not(.eyebrow):not(.coast-note) {
  color: rgba(255,255,255,.82);
}
.coast-feature__content h2 {
  color: #fff;
}
.coast-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}
.coast-facts div {
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.coast-facts strong,
.coast-facts span {
  display: block;
}
.coast-facts strong {
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.45rem;
}
.coast-facts span {
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  line-height: 1.35;
}
.coast-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.12);
}
.coast-cards {
  display: grid;
  gap: 18px;
}
.coast-cards article {
  padding: 26px;
  border: 1px solid #dfe7f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(5, 31, 65, .07);
}
.coast-cards article > span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .1em;
}
.coast-cards h3 {
  margin: 12px 0 8px;
  color: var(--navy);
}
.coast-cards p {
  margin-bottom: 0;
  color: #52627a;
}
.coast-route-groups {
  display: grid;
  gap: 20px;
}
.coast-route-group {
  overflow: hidden;
  border: 1px solid #dfe7f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(5, 31, 65, .07);
}
.coast-route-group > header {
  padding: 22px 24px;
  border-bottom: 1px solid #e4ebf2;
  background: #f3f7fb;
}
.coast-route-group > header span {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.coast-route-group > header h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.55rem;
}
.coast-route-list {
  margin: 0;
  padding: 8px 24px;
  list-style: none;
}
.coast-route-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #e8edf3;
}
.coast-route-list li:last-child {
  border-bottom: 0;
}
.coast-route-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: .74rem;
  font-weight: 900;
}
.coast-route-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}
.coast-route-list p {
  margin: 0;
  color: #586980;
  font-size: .9rem;
  line-height: 1.5;
}
.coast-route-disclaimer {
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  color: #596980;
  font-size: .88rem;
}
.coast-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px;
  border-radius: 18px;
  background: #edf4fa;
}
.coast-cta h2 {
  margin: 4px 0 0;
}
.prose p,
.prose li { color: #263955; }
.prose blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  background: var(--ivory);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.form-section {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.08), transparent 34%),
    linear-gradient(180deg, #fbf7ee, #f6efe2);
}
.form-layout {
  display: grid;
  gap: 50px;
  align-items: start;
}
.form-intro {
  max-width: 560px;
  padding-top: 26px;
}
.home .form-intro {
  padding-top: 14px;
}
.form-intro p:last-child {
  max-width: 500px;
  color: #263955;
  font-size: 1.06rem;
}
.form-contact-options {
  max-width: 430px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(7, 36, 75, .14);
}
.form-contact-options__label {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.form-contact-actions {
  display: grid;
  gap: 10px;
}
.form-contact-actions a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(7, 36, 75, .1);
  background: rgba(255,255,255,.52);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(4, 26, 55, .045);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.form-contact-actions a:hover,
.form-contact-actions a:focus-visible {
  transform: translateX(4px);
  border-color: rgba(255, 122, 24, .32);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(4, 26, 55, .08);
}
.form-contact-actions .form-contact-actions__whatsapp {
  border-color: #248b62;
  background: #248b62;
  color: #fff;
  box-shadow: 0 16px 34px rgba(36, 139, 98, .2);
}
.form-contact-actions .form-contact-actions__whatsapp:hover,
.form-contact-actions .form-contact-actions__whatsapp:focus-visible {
  border-color: #1f7b57;
  background: #1f7b57;
}
.form-contact-actions__whatsapp .form-contact-actions__icon {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.12);
  color: #fff;
}
.form-contact-actions__whatsapp small,
.form-contact-actions__whatsapp .form-contact-actions__arrow {
  color: #fff !important;
}
.form-contact-actions__whatsapp strong {
  color: #fff;
}
.form-contact-actions__phone {
  background: rgba(255,255,255,.72) !important;
}
.form-contact-actions__phone small {
  color: var(--muted);
}
.form-contact-actions__phone strong {
  color: var(--navy);
}
.form-contact-actions__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 122, 24, .32);
  background: rgba(255, 122, 24, .07);
  color: var(--orange);
  text-align: center;
}
.form-contact-actions small,
.form-contact-actions strong {
  display: block;
}
.form-contact-actions small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.form-contact-actions strong {
  color: inherit;
  font-size: .94rem;
  line-height: 1.2;
}
.form-contact-actions__arrow {
  color: var(--orange);
  font-size: .85rem;
  transition: transform .22s ease;
}
.form-contact-actions a:hover .form-contact-actions__arrow,
.form-contact-actions a:focus-visible .form-contact-actions__arrow {
  transform: translate(2px, -2px);
}
.form-contact-options__note {
  margin: 20px 0 0;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 122, 24, .55);
  color: var(--muted);
  font-size: .9rem;
}
.contact-form {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(7, 36, 75, 0.08);
  border-radius: 10px;
  padding: 26px 28px;
  box-shadow: 0 28px 70px rgba(4, 26, 55, 0.14);
  backdrop-filter: blur(8px);
}
.contact-form__intro {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(7, 36, 75, .1);
}
.contact-form__intro p,
.contact-form__intro span {
  margin: 0;
}
.contact-form__intro p {
  color: var(--navy);
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 800;
}
.btn.btn-whatsapp,
.boat-detail__cta.btn-whatsapp,
.btn[href*="wa.me"] {
  background: #248b62 !important;
  background-image: none !important;
  border-color: #248b62 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(36, 139, 98, .24);
}
.btn.btn-whatsapp:hover,
.btn.btn-whatsapp:focus-visible,
.boat-detail__cta.btn-whatsapp:hover,
.boat-detail__cta.btn-whatsapp:focus-visible,
.btn[href*="wa.me"]:hover,
.btn[href*="wa.me"]:focus-visible {
  background: #1f7b57 !important;
  background-image: none !important;
  border-color: #1f7b57 !important;
  color: #fff !important;
}
.btn-whatsapp i,
.btn-primary .bi-whatsapp {
  margin-right: 7px;
}
.footer-info-item--whatsapp {
  color: #fff !important;
  font-weight: 400;
}
.form-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(7, 36, 75, 0.1);
}
.form-card-kicker,
.form-card-note {
  margin: 0;
}
.form-card-kicker {
  font-weight: 900;
  color: var(--navy);
}
.form-card-note {
  color: var(--muted);
  font-size: .95rem;
  text-align: right;
}
.form-grid { display: grid; gap: 18px; }
.form-field-full { margin-top: 18px; }
.contact-form label,
.form-field {
  display: grid;
  gap: 8px;
}
.form-label {
  font-weight: 800;
  color: var(--navy);
  font-size: .97rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid #cfdae8;
  background: #fff;
  color: var(--deep);
  font: inherit;
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8796ac;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.12);
}
.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  padding-top: 6px;
  font-weight: 500 !important;
  color: #263955;
}
.privacy-check span {
  display: inline;
  line-height: 1.5;
}
.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: .18rem;
  accent-color: var(--orange);
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hp-field { position: absolute; left: -9999px; }
.form-status {
  margin: 0;
  font-weight: 800;
  min-height: 1.4em;
}
.form-status.success { color: #116b37; }
.form-status.error { color: #a61919; }

.site-footer {
  background: linear-gradient(120deg, #001836, #052b5d);
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 28px;
  padding: 46px 0;
}
.footer-grid h2 {
  font-family: var(--sans);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-grid a,
.footer-grid span {
  display: block;
  margin: .35rem 0;
  color: #e5edf7;
  text-decoration: none;
}
.footer-nav-item {
  position: relative;
  width: fit-content;
  padding-left: 0;
  transition: color .2s ease, transform .2s ease, padding-left .2s ease;
}
.footer-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .2s ease;
}
.footer-nav-item:hover,
.footer-nav-item:focus-visible {
  color: #fff;
  transform: translateX(4px);
}
.footer-nav-item:hover::before,
.footer-nav-item:focus-visible::before {
  width: 100%;
}
.footer-grid .footer-info-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  margin: .28rem 0;
  color: #e5edf7;
  text-decoration: none;
  line-height: 1.35;
}
.footer-info-item i {
  width: 20px;
  height: 18px;
  color: var(--orange);
  font-size: .95rem;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 167, 59, .18);
}
.footer-info-item span,
.footer-info-item address {
  margin: 0;
  color: inherit;
  line-height: 1.35;
}
.footer-info-item span {
  display: inline;
}
.footer-info-item:hover,
.footer-info-item:focus-visible {
  color: #fff;
}
.footer-info-item:hover i,
.footer-info-item:focus-visible i {
  color: #ffd08c;
}
.footer-logo { width: 160px; }
.footer-brand-description {
  color: rgba(229, 237, 247, .68);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-grid .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-grid .footer-socials a:hover,
.footer-grid .footer-socials a:focus-visible {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}
.footer-socials i {
  font-size: 1.1rem;
  line-height: 1;
}
.footer-legal-note {
  margin: 14px 0 0;
  color: rgba(229, 237, 247, .58);
  font-size: .82rem;
  line-height: 1.4;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #d7e2ef;
}
.footer-grid .footer-recaptcha-note {
  display: block;
  max-width: none;
  margin-top: 8px;
  color: rgba(215, 226, 239, .68);
  font-size: .72rem;
  line-height: 1.5;
}
.footer-grid .footer-recaptcha-note a {
  display: inline;
  margin: 0;
  color: inherit;
  text-decoration: underline;
}
.grecaptcha-badge {
  visibility: hidden !important;
}
.recaptcha-widget-host {
  position: fixed;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-credit a {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.footer-credit img {
  width: 110px;
  height: auto;
  opacity: .96;
  filter: brightness(0) invert(1);
}

.whatsapp-widget {
  position: fixed;
  right: var(--float-right);
  bottom: var(--float-wa-bottom);
  z-index: 1045;
}
.whatsapp-fab {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(22, 163, 74, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .74rem;
  font-weight: 700;
}
.whatsapp-fab .bi-whatsapp {
  font-size: 2rem;
  line-height: 1;
}
.whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(320px, 88vw);
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #efe9e3;
  box-shadow: 0 16px 30px rgba(15, 23, 42, .24);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.whatsapp-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.whatsapp-head {
  background: #2f8a7b;
  color: #fff;
  padding: .75rem .9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
.whatsapp-head p {
  margin: 0;
  font-size: .95rem;
}
.whatsapp-close {
  border: 0;
  background: transparent;
  color: #fff;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 1rem;
}
.whatsapp-body {
  padding: .9rem;
}
.whatsapp-msg-card {
  background: #fff;
  border-radius: 12px;
  padding: .9rem .95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .05);
  font-size: .95rem;
}
.whatsapp-msg-card__hello,
.whatsapp-msg-card__text,
.whatsapp-msg-card__brand {
  margin: 0;
}
.whatsapp-msg-card__hello {
  color: #4b4b4b;
  font-weight: 500;
  margin-bottom: .55rem;
}
.whatsapp-msg-card__text {
  color: #4b4b4b;
  line-height: 1.45;
  margin-bottom: .65rem;
}
.whatsapp-msg-card__brand {
  color: #3f3f3f;
}
.whatsapp-compose {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: .9rem;
}
.whatsapp-input {
  flex: 1;
  min-width: 0;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding: 0 .95rem;
  font-size: .95rem;
  color: var(--deep);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
.whatsapp-input::placeholder {
  color: #8a8a8a;
}
.whatsapp-input:focus {
  outline: none;
  box-shadow: 0 0 0 .18rem rgba(47, 138, 123, .14), 0 2px 8px rgba(0, 0, 0, .06);
}
.whatsapp-send {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  background: #2f8a7b;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(47, 138, 123, .28);
}
.whatsapp-send:hover,
.whatsapp-send:focus-visible {
  color: #fff;
  background: #2a7b6d;
}
.whatsapp-send .bi-send-fill {
  font-size: 1rem;
  transform: translateX(1px);
}

.scroll-top {
  position: fixed;
  right: calc(var(--float-right) + 7px);
  bottom: var(--float-top-bottom);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.35rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 24;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 130px 0 70px;
  background: var(--deep);
  color: #fff;
}

:focus-visible {
  outline: 3px solid #ffb06a;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (min-width: 760px) {
  .card-grid,
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .contact-cards article {
    padding-inline: 28px;
    border-left: 1px solid rgba(4, 26, 55, .12);
  }
  .contact-cards article:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .contact-cards article:last-child {
    padding-right: 0;
  }
  .detail-grid,
  .form-layout { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .coast-intro__grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .coast-map-heading { grid-template-columns: .85fr 1.15fr; }
  .coast-feature { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .coast-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .coast-route-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .destination-band { grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr); }
  .destination-content { padding: 64px clamp(44px, 6vw, 90px); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

@media (max-width: 759px) {
  .coast-facts { grid-template-columns: 1fr; }
  .coast-feature__image .editorial-image { min-height: 280px; }
  .coast-cta { align-items: flex-start; flex-direction: column; }
}

@media (min-width: 1040px) {
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .intro-main {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    grid-template-areas: "copy image";
    gap: 52px;
    align-items: stretch;
  }
  .intro-copy {
    grid-area: copy;
    align-self: center;
  }
  .intro-copy h2 {
    max-width: 12ch;
  }
  .intro-image-wrap {
    grid-area: image;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 390px;
    aspect-ratio: auto;
  }
  .intro-image {
    height: 100%;
    min-height: 0;
    object-position: center 48%;
  }
  .intro-grid .benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(4, 26, 55, .12);
  }
  .intro-grid .benefits article {
    padding: 0 30px;
    border-left: 1px solid rgba(255, 122, 24, .38);
  }
  .intro-grid .benefits article:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .intro-grid .benefits article:last-child {
    padding-right: 0;
  }
  .cards-scroll { grid-auto-columns: calc((100% - 40px) / 3); }
}

@media (max-width: 640px) {
  :root {
    --float-right: calc(14px + env(safe-area-inset-right));
    --float-wa-bottom: calc(14px + env(safe-area-inset-bottom));
    --float-top-bottom: calc(78px + env(safe-area-inset-bottom));
  }
  .whatsapp-fab { width: 54px; height: 54px; }
  .scroll-top {
    right: calc(var(--float-right) + 5px);
    bottom: var(--float-top-bottom);
  }
  .df-lang-picker { width: 100%; }
  .df-lang-picker-mobile {
    width: fit-content;
    max-width: 148px;
    align-self: center;
  }
  .df-lang-picker-mobile .df-lang-menu { width: 190px; }
  .form-card-head,
  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  .form-card-note {
    text-align: left;
  }
  .contact-form {
    padding: 22px 18px;
    border-radius: 8px;
  }
  .form-contact-options {
    display: block;
    margin-top: 24px;
    padding-top: 0;
    border-top: 0;
  }
  .form-contact-actions__phone {
    display: none !important;
  }
  .contact-form__intro {
    display: block;
  }
  .contact-form__intro span {
    display: block;
    margin-top: 5px;
    text-align: left;
  }
  .cards-carousel-wrap {
    padding: 0;
  }
  .cards-scroll-btn {
    display: none;
  }
  .card-grid.home-tour-grid {
    grid-template-columns: 1fr;
  }
  .card-grid.tour-list-grid {
    grid-template-columns: 1fr;
  }
  .footer-credit img {
    width: 100px;
  }
  .intro-image-wrap {
    height: min(112vw, 520px);
  }
  .destination-visual {
    min-height: 410px;
  }
  .destination-content {
    padding: 44px 24px 48px;
  }
  .destination-content h2 {
    max-width: 14ch;
  }
  .contact-map {
    margin-top: 38px;
  }
  .contact-map__head {
    display: block;
  }
  .contact-map__head > p {
    margin-top: 12px;
  }
  .contact-map__embed {
    height: 360px;
  }
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-intro {
    position: static;
  }
  .boat-detail__information {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .boat-detail__cta {
    width: fit-content;
  }
  .boat-detail .boat-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero { min-height: 640px; }
  .hero .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero .button-row .btn {
    width: 100%;
    min-width: 0;
    padding-inline: .75rem;
    font-size: .88rem;
    white-space: nowrap;
  }
  .section { padding: 54px 0; }
  .home .section { padding: 44px 0; }
  .home-fleet-section { padding-bottom: 40px; }
  .home-tour-section { padding-top: 46px; }
  .boat-detail {
    padding-top: 64px;
  }
  .boat-detail__header {
    padding-bottom: 22px;
  }
  .boat-detail__header h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }
  .boat-detail__information {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px 0 30px;
  }
  .boat-detail .detail-specs {
    grid-template-columns: 1fr;
  }
  .boat-detail .detail-specs div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 11px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(4, 26, 55, .1);
  }
  .boat-detail .detail-specs dt {
    margin: 0;
  }
  .boat-detail__cta {
    width: 100%;
    justify-content: center;
  }
  .boat-gallery,
  .boat-detail .boat-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .breadcrumb {
    padding-top: 96px;
    margin-bottom: -42px;
  }
  .page-hero {
    margin-top: -42px;
    padding-top: 184px;
  }
}
