/* ==========================================================================
   GOBBI 27 CHARTER — dark cinematic landing page
   --------------------------------------------------------------------------
   ACCENT SWAP: change --accent below.
     Neon lime (TikTok reference): #C8F94B
     Warm gold/teak (nautical):    #C9A227
   ========================================================================== */

:root {
  --accent: #C8F94B;
  --accent-ink: #0A0E14;        /* text color used ON the accent button */
  --bg: #0A0E14;                /* near-black deep navy */
  --bg-2: #0E141D;              /* slightly lifted dark panel */
  --ink: #F4F6F8;               /* off-white text on dark */
  --ink-dim: #9AA5B1;           /* muted text on dark */
  --light: #F7F7F4;             /* white section background */
  --light-ink: #101418;         /* text on white sections */
  --light-dim: #5B6570;         /* muted text on white sections */
  --radius: 18px;
  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: min(1160px, 92vw); margin: 0 auto; }
.container--narrow { width: min(760px, 92vw); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.72em 1.6em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 rgba(200, 249, 75, 0);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px -8px color-mix(in srgb, var(--accent) 65%, transparent);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 0.95em 2.2em; font-size: 1.05rem; }
.btn--block { display: block; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav__inner {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}
.nav__logo span { color: var(--accent); }
.nav__menu { display: flex; gap: 2rem; }
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu .nav__boatlink { color: var(--accent); font-weight: 600; }
.nav__menu .nav__boatlink:hover { text-decoration: underline; }
.footer__boatlink { color: var(--accent); }
.footer__boatlink:hover { text-decoration: underline; }
.nav__actions { display: flex; align-items: center; gap: 0.7rem; }
.lang-toggle {
  background: transparent;
  color: var(--ink-dim);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.5em 0.9em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.nav__phone {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav__phone:hover { border-color: var(--accent); color: var(--accent); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,14,20,0.55) 0%, rgba(10,14,20,0.25) 40%, rgba(10,14,20,0.92) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(10,14,20,0.55), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 7rem 0 5rem;
}
.hero__kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero__ghost {
  position: absolute;
  top: -0.62em; left: -0.03em;
  font-size: 1.55em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--accent); }
.hero__sub {
  max-width: 34rem;
  margin-top: 1.4rem;
  font-size: 1.08rem;
  color: rgba(244, 246, 248, 0.85);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero__trust {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0);   opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}

/* ---------- Sections ---------- */
.section { position: relative; padding: 6.5rem 0; }
.section--light { background: var(--light); color: var(--light-ink); }
.section--dark { background: var(--bg); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin-bottom: 0.8rem;
}
.eyebrow--accent { color: var(--accent); }

.section-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 2.6rem;
  z-index: 1;
}
.section-title em { font-style: normal; color: var(--accent); }
.section--light .section-title em {
  color: var(--light-ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 5px;
  text-underline-offset: 7px;
}
/* Ghost duplicate behind headline */
.section-title::before {
  content: attr(data-ghost);
  position: absolute;
  top: 50%; left: -0.05em;
  transform: translateY(-58%);
  font-size: 2.1em;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.section-title--onDark::before { -webkit-text-stroke-color: rgba(255, 255, 255, 0.06); }

/* ---------- Experience cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.card {
  background: #FFFFFF;
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -18px rgba(16, 20, 24, 0.22);
}
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 28%, #ffffff);
  color: var(--light-ink);
  margin-bottom: 1.2rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card p { font-size: 0.92rem; color: var(--light-dim); }

/* ---------- Animated map section ---------- */
.section--map {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(200, 249, 75, 0.05), transparent 55%),
    var(--bg);
  overflow: hidden;
}
#coastCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map__content { position: relative; z-index: 2; max-width: 640px; }
.map__text { color: var(--ink-dim); max-width: 32rem; margin-bottom: 2.4rem; }
.map__stats { display: flex; gap: 2.8rem; flex-wrap: wrap; }
.map__stats div { display: flex; flex-direction: column; }
.map__stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.map__stats span { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.9rem;
}
.gallery__item {
  border: none;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(4) { grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(6, 9, 13, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.5rem;
  line-height: 1;
  display: grid; place-items: center;
  transition: background 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav--prev { left: 1.2rem; }
.lightbox__nav--next { right: 1.2rem; }

/* ---------- Specs ---------- */
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.specs__list { list-style: none; }
.specs__list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}
.specs__list span { color: var(--ink-dim); }
.specs__list strong { font-weight: 600; text-align: right; }
.included { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; }
.included li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
}
.included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.specs__note {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--ink-dim);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.specs__highlights {
  margin-top: 4.5rem;
  padding-top: 3.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.specs__highlights-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.2rem;
}
.highlights li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  color: rgba(244, 246, 248, 0.9);
}
.highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Pricing ---------- */
.section--pricing { background: var(--bg-2); }
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  max-width: 1060px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background:
    radial-gradient(ellipse at top, color-mix(in srgb, var(--accent) 9%, transparent), transparent 60%),
    rgba(255, 255, 255, 0.05);
}
.price-card__badge {
  position: absolute;
  top: -0.85rem; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}
.price-card__time { color: var(--ink-dim); font-size: 0.88rem; margin-bottom: 1.2rem; }
.price-card__price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.price-card ul { list-style: none; margin-bottom: 1.8rem; }
.price-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.93rem;
  color: rgba(244, 246, 248, 0.85);
}
.price-card li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--ink-dim);
}

/* ---------- Quote ---------- */
.section--quote { overflow: hidden; padding: 9rem 0; }
.quote__bg { position: absolute; inset: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.quote__scrim { position: absolute; inset: 0; background: rgba(8, 11, 16, 0.78); }
.quote__content { position: relative; z-index: 2; max-width: 780px; }
.quote__content blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.4rem;
}
.quote__content cite { font-style: normal; color: var(--ink-dim); font-size: 0.9rem; }

/* ---------- Booking form ---------- */
.section--book {
  background:
    radial-gradient(ellipse at 20% 15%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 50%),
    var(--bg);
}
.book__lead { color: var(--ink-dim); margin-bottom: 2.6rem; max-width: 30rem; }
.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.field label span { color: var(--ink-dim); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.75em 1em;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}
.field select option { background: var(--bg-2); color: var(--ink); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(154, 165, 177, 0.6); }
/* Make the native date-picker icon visible on dark background */
.field input[type="date"] { color-scheme: dark; }
.field__error {
  display: none;
  font-size: 0.8rem;
  color: #FF7A7A;
}
.field.is-invalid input,
.field.is-invalid select { border-color: #FF7A7A; }
.field.is-invalid .field__error { display: block; }
.book-form__actions { margin-top: 0.4rem; }
.book-form__hint {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.83rem;
  color: var(--ink-dim);
}

.book-success {
  text-align: center;
  padding: 3.5rem 1rem;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}
.book-success__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 2rem;
  font-weight: 800;
}
.book-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.book-success p { color: rgba(244, 246, 248, 0.85); max-width: 34rem; margin: 0 auto; }
.book-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.6rem 0 0.4rem;
}
.book-success__small { margin-top: 1rem; color: var(--ink-dim); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid rgba(16, 20, 24, 0.12);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.2rem 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--light-dim);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  padding: 0 0 1.3rem;
  color: var(--light-dim);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* ---------- Footer ---------- */
.footer {
  background: #070A0F;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__logo { font-size: 1.3rem; }
.footer__tag { color: var(--ink-dim); font-size: 0.9rem; margin-top: 0.5rem; }
.footer__contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__contact a {
  color: var(--ink-dim);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  width: fit-content;
}
.footer__contact a:hover { color: var(--accent); }
.footer__map-frame {
  width: 100%;
  height: 190px;
  border: 0;
  border-radius: 14px;
  filter: grayscale(0.25) contrast(1.05);
}
.footer__map-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.footer__map-link:hover { color: var(--accent); }
.footer__cta { text-align: center; margin: 3rem 0 2.5rem; }
.footer__legal {
  text-align: center;
  color: rgba(154, 165, 177, 0.55);
  font-size: 0.8rem;
}

/* ---------- Home page (SeaTrips) ---------- */
.home-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  background:
    radial-gradient(ellipse at 80% 10%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(30, 60, 110, 0.25), transparent 60%),
    var(--bg);
}
.home-hero__title { margin-bottom: 1.2rem; }
.home-hero__sub {
  color: var(--ink-dim);
  max-width: 36rem;
  margin-bottom: 3rem;
}
.choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.boat-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.boat-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.7);
}
.boat-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.boat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  transition: transform 0.5s ease;
}
.boat-card:hover .boat-card__img img { transform: scale(1.05); }
.boat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1.6rem 1.8rem;
}
.boat-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.boat-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.boat-card__sum {
  color: var(--ink-dim);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.boat-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.3em 0.95em;
  font-size: 0.8rem;
  color: rgba(244, 246, 248, 0.85);
  white-space: nowrap;
}
.chip--accent {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  color: var(--accent);
  font-weight: 600;
}
.boat-card__btn { margin-top: auto; align-self: flex-start; }
.home-hero__note {
  margin-top: 2.6rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

@media (max-width: 860px) {
  .choose { grid-template-columns: 1fr; }
  .home-hero { padding-top: 6.5rem; }
}

/* ---------- Floating mobile Book Now ---------- */
.fab-book {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translate(-50%, 140%);
  z-index: 90;
  padding: 0.9em 2.6em;
  box-shadow: 0 12px 34px -8px color-mix(in srgb, var(--accent) 70%, transparent);
  transition: transform 0.35s ease;
}
.fab-book.is-visible { transform: translate(-50%, 0); }
@media (min-width: 861px) {
  .fab-book { display: none; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .specs { grid-template-columns: 1fr; gap: 3rem; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__map { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 80vw);
    background: rgba(10, 14, 20, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 110;
  }
  .nav.nav--open .nav__menu { transform: translateX(0); }
  .nav__burger { display: flex; z-index: 120; }
  .nav.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__call { display: none; }
  .nav__actions .btn--accent { display: none; }

  .section { padding: 4.5rem 0; }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .gallery__item:nth-child(1) { grid-column: span 2; }
  .pricing { grid-template-columns: 1fr; }
  .book-form { grid-template-columns: 1fr; }
  .included { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .map__stats { gap: 1.8rem; }
  .hero__content { padding-top: 8rem; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg img { animation: none; }
  .hero__scroll span { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .card, .price-card, .gallery__item img, .btn { transition: none; }
}
