:root {
  --bg: #060d14;
  --bg-2: #0a1822;
  --bg-3: #0e2230;
  --surface: #11212e;
  --text: #f1f6f9;
  --muted: #9bb0bd;
  --line: rgba(255, 255, 255, 0.08);
  --aurora-1: #41f0a9;
  --aurora-2: #4ad1ff;
  --aurora-3: #8a6bff;
  --grad: linear-gradient(120deg, var(--aurora-1), var(--aurora-2) 55%, var(--aurora-3));
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2 { font-family: "Unbounded", "Manrope", sans-serif; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, filter 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
/* Fish-shaped primary button:
   body = capsule, ::before = forked caudal fin (tail), ::after = eye */
.btn-primary {
  position: relative;
  background: var(--grad);
  color: #04130c;
  /* elliptical capsule that reads as a fish body */
  border-radius: 50% / 60%;
  margin-left: 20px;          /* room for the tail */
  padding: 15px 40px 15px 30px;  /* extra right room for the eye/nose */
  filter: drop-shadow(0 8px 22px rgba(65, 240, 169, 0.3));
}
.btn-primary::before {        /* tail fin (caudal), forked, points right into body */
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  width: 26px;
  height: 76%;
  transform: translateY(-50%);
  background: var(--aurora-1);
  clip-path: polygon(100% 50%, 0 0, 42% 50%, 0 100%);
  transition: transform 0.25s ease;
}
.btn-primary::after {         /* eye near the head */
  content: "";
  position: absolute;
  right: 20px;
  top: 32%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(4, 19, 12, 0.78);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 32px rgba(74, 209, 255, 0.5));
}
.btn-primary:hover::before {  /* tail swishes on hover */
  transform: translateY(-50%) rotate(-8deg);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--aurora-2); transform: translateY(-2px); }
.btn-lg {
  padding: 18px 46px 18px 36px;
  font-size: 1.05rem;
  border-radius: 48% / 58%;
}
.btn-lg::before { left: -20px; width: 30px; }
/* full-width primary buttons: drop the reserve margin, tail overflows into the gap */
.wiz-next, .booking-form .btn-primary { margin-left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6, 13, 20, 0.82);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-phone {
  color: var(--text); text-decoration: none; font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.02em; opacity: 0.85; transition: opacity 0.2s, color 0.2s;
}
.header-phone:hover { opacity: 1; color: var(--aurora-1); }
.footer-phone {
  color: var(--muted); text-decoration: none; font-weight: 700; font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--text); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(74, 209, 255, 0.6);
}
.logo-text { font-family: "Unbounded"; font-weight: 700; font-size: 1.15rem; }
.logo-accent { color: var(--aurora-2); }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.header-cta { padding: 11px 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(6, 13, 20, 0.2), transparent 50%),
    linear-gradient(180deg, rgba(6, 13, 20, 0.55) 0%, rgba(6, 13, 20, 0.35) 35%, rgba(6, 13, 20, 0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; max-width: 760px; }
.hero-eyebrow { color: var(--aurora-1); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 18px; }
.hero-title { font-size: clamp(2.1rem, 6vw, 4.6rem); font-weight: 800; }
.hero-sub { margin-top: 22px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d7e3ea; max-width: 600px; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-note { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
/* scroll-hint removed */

/* ---------- Trust strip ---------- */
.strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item {
  padding: 34px 20px; text-align: center;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.strip-item:last-child { border-right: none; }
.strip-num {
  font-family: "Unbounded"; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.strip-label { color: var(--muted); font-size: 0.92rem; }

/* ---------- Promos ---------- */
.promos { padding: clamp(40px, 7vw, 80px) 0; }
.promos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.promo-card {
  background: linear-gradient(135deg, rgba(65, 240, 169, 0.1), rgba(138, 107, 255, 0.09));
  border: 1px solid rgba(74, 209, 255, 0.3);
  border-radius: 20px; padding: 28px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(65, 240, 169, 0.12);
}
.promo-badge {
  display: inline-block; width: fit-content;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  background: var(--grad); color: #04130c;
}
.promo-card p { color: #d7e3ea; font-size: 1.05rem; line-height: 1.55; margin: 0; }
.promo-card strong { color: var(--text); }

/* ---------- Packages ---------- */
.packages-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 24px;
}
.package-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 18px 16px; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: grid; gap: 6px;
}
.package-card:hover { border-color: var(--aurora-2); transform: translateY(-2px); }
.package-card.is-selected {
  border-color: var(--aurora-1);
  background: linear-gradient(160deg, rgba(65, 240, 169, 0.1), rgba(138, 107, 255, 0.08));
}
.package-card h3 { font-family: "Manrope"; font-size: 0.95rem; font-weight: 800; line-height: 1.3; }
.package-time { color: var(--muted); font-size: 0.88rem; }
.package-rate { font-weight: 700; color: var(--aurora-2); font-size: 0.92rem; }
.package-sum { color: var(--muted); font-size: 0.85rem; }
.calc-program-label {
  color: #d7e3ea; font-weight: 600; font-size: 0.95rem;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.calc-hint--warn { color: #ffcf9d; }
.calc-promos { display: grid; gap: 6px; }
.calc-promo-line, .calc-promo-mini {
  color: var(--aurora-1); font-size: 0.9rem; font-weight: 600; margin: 0;
}
.calc-promo-mini { font-size: 0.82rem; margin-top: 4px; }
.calendar-wrap--solo { max-width: 520px; margin: 0 auto; }
.booking-recap {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: grid; gap: 8px;
}
.booking-recap-title {
  font-weight: 800; font-size: 0.88rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.booking-recap-link {
  margin-top: 6px; font-size: 0.9rem; font-weight: 700;
  color: var(--aurora-2); background: none; border: none;
  cursor: pointer; padding: 0; font-family: inherit; text-align: left;
}
.booking-recap-link:hover { text-decoration: underline; }
.summary-promo {
  margin-top: 6px; padding-top: 10px; border-top: 1px dashed var(--line);
  color: var(--aurora-1); font-size: 0.88rem; font-weight: 600;
}

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-dark { background: var(--bg-2); }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; background: var(--surface);
}
.g-item.g-tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px; font-weight: 700; font-size: 0.95rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  transform: translateY(8px); opacity: 0; transition: 0.3s ease;
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---------- Wildlife ---------- */
.wild-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.wild-video, .wild-photo, .delic-video, .b-item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.wild-video video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.wild-video figcaption, .wild-photo figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-weight: 700; padding: 6px 14px; border-radius: 999px;
  background: rgba(6, 13, 20, 0.6); backdrop-filter: blur(6px); font-size: 0.85rem;
}
.wild-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.wild-photo { cursor: pointer; }
.wild-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.wild-photo:hover img { transform: scale(1.06); }

/* ---------- Delicacies ---------- */
.delic-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.delic-video video { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.delic-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.delic-text p { color: var(--muted); margin-top: 18px; font-size: 1.08rem; }
.ticks { list-style: none; margin: 24px 0 28px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; font-weight: 600; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Boat ---------- */
.boat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px;
}
.b-item { cursor: pointer; }
.b-item.b-wide { grid-column: span 2; grid-row: span 2; }
.b-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.b-item:hover img { transform: scale(1.06); }
.b-item figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-weight: 700; padding: 5px 13px; border-radius: 999px; font-size: 0.82rem;
  background: rgba(6, 13, 20, 0.6); backdrop-filter: blur(6px);
}
.boat-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; display: flex; flex-direction: column; gap: 4px;
}
.feat span { font-weight: 700; }
.feat small { color: var(--muted); }

/* ---------- Prices / Calculator ---------- */
.calc-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.calc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 24px;
}
.calc-card--compact { gap: 18px; text-align: left; }
.calc-controls { display: grid; gap: 22px; }
.calc-field { display: grid; gap: 10px; }
.calc-label { font-weight: 700; font-size: 0.95rem; }
.calc-hint { color: var(--muted); font-size: 0.88rem; margin-top: -4px; }
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  width: fit-content;
}
.stepper-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06); color: var(--text); font-size: 1.2rem;
  cursor: pointer; transition: 0.2s;
}
.stepper-btn:hover { border-color: var(--aurora-2); color: var(--aurora-2); }
.stepper-val { font-family: "Unbounded"; font-weight: 700; font-size: 1.25rem; min-width: 1.5ch; text-align: center; }
.calc-range {
  width: 100%; accent-color: var(--aurora-2);
  background: transparent;
}
.calc-addons { border: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.addon-check {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03); cursor: pointer; font-size: 0.95rem;
}
.addon-check input { margin-top: 3px; accent-color: var(--aurora-2); }
.addon-check strong { color: var(--aurora-1); font-weight: 700; }
.calc-result {
  background: linear-gradient(160deg, rgba(65, 240, 169, 0.1), rgba(138, 107, 255, 0.08));
  border: 1px solid rgba(74, 209, 255, 0.2);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  gap: 12px;
}
.calc-breakdown { display: grid; gap: 8px; }
.calc-line {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.92rem; color: #d7e3ea;
}
.calc-line--discount { color: var(--aurora-1); }
.calc-total-row, .calc-per-person {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.calc-total-row strong, .calc-per-person strong { font-family: "Unbounded"; font-size: 1.35rem; }
.calc-per-person { color: var(--muted); font-size: 0.95rem; }
.calc-per-person strong { font-size: 1.1rem; color: var(--text); }
.calc-discount { color: var(--aurora-1); font-size: 0.9rem; font-weight: 600; }
.calc-mini-total {
  display: grid; gap: 4px; padding-top: 8px; border-top: 1px solid var(--line);
}
.calc-mini-total strong { font-family: "Unbounded"; font-size: 1.2rem; }
.calc-mini-total small { color: var(--muted); }
/* price-ref-grid — short grid in prices section */
.price-ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.price-ref-item {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px;
}
.price-ref-item span { color: var(--muted); font-size: 0.82rem; }
.price-ref-item strong { font-weight: 700; font-size: 0.95rem; line-height: 1.35; }
.prices-cta { margin-top: 40px; display: flex; justify-content: center; }

/* ---------- Booking wizard — new 3-step ---------- */
.booking-step { display: grid; gap: 24px; }
.booking-step.is-hidden { display: none; }

/* Step navigation bar */
.wiz-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 28px auto 36px; max-width: 520px;
}
.wiz-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0 4px;
  color: var(--muted); font-family: inherit; transition: color 0.2s;
  min-width: 80px;
}
.wiz-step:disabled { cursor: default; }
.wiz-num {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 0.95rem;
  border: 2px solid var(--line); color: var(--muted); background: rgba(255,255,255,0.04);
  transition: all 0.25s;
}
.wiz-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; transition: color 0.2s; }
.wiz-step.is-active .wiz-num {
  background: var(--grad); color: #04130c; border-color: transparent;
  box-shadow: 0 4px 16px rgba(65, 240, 169, 0.35);
}
.wiz-step.is-active .wiz-label { color: var(--aurora-1); }
.wiz-step.is-done .wiz-num {
  background: transparent; border-color: var(--aurora-1); color: var(--aurora-1);
}
.wiz-step.is-done { color: var(--aurora-1); cursor: pointer; }
.wiz-connector {
  flex: 1; height: 2px; background: var(--line);
  min-width: 20px; max-width: 60px;
  position: relative; top: -12px;
}

/* Two-column wiz layout */
.wiz-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.wiz-main { min-width: 0; }
.wiz-aside {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 14px;
}

/* Step 1: compact packages inside wizard */
.packages-row--wiz {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 24px;
}
.packages-row--wiz .package-card { padding: 14px 12px; }
.packages-row--wiz .package-card h3 { font-size: 0.88rem; margin-bottom: 6px; }
.packages-row--wiz .package-card .package-time { font-size: 1.0rem; }
.packages-row--wiz .package-card .package-rate { font-size: 0.78rem; }

/* Controls inside step 1 */
.wiz-controls {
  display: grid; gap: 18px;
}

/* Aside result card — reuse .calc-result, just let it fill the aside */
.wiz-aside .calc-result { flex: 1; }
.wiz-next, .wiz-back { width: 100%; }
.wiz-back {
  background: none; border: 1px solid var(--line);
  margin-top: 4px;
}
.calendar-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 28px;
}
.calendar { display: grid; gap: 16px; }
.cal-header {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 4px;
}
.cal-month { font-weight: 700; font-size: 1.1rem; text-transform: capitalize; }
.cal-nav {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,0.06); color: var(--text); cursor: pointer;
  font-size: 1.4rem; line-height: 1; transition: border-color 0.2s;
}
.cal-nav:hover { border-color: var(--aurora-2); color: var(--aurora-2); }
.cal-weekdays, .cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px;
}
.cal-weekdays span {
  text-align: center; font-size: 0.8rem; color: var(--muted); font-weight: 700;
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: 12px;
  background: rgba(255,255,255,0.04); color: var(--text); cursor: pointer;
  font-weight: 600; font-size: 1rem;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.cal-day:hover:not(:disabled) { border-color: var(--aurora-2); transform: scale(1.08); }
.cal-day.is-today {
  border-color: rgba(74, 209, 255, 0.55);
  color: var(--aurora-2);
  font-weight: 800;
}
.cal-day.is-selected {
  background: var(--grad); color: #04130c;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(65, 240, 169, 0.35);
  transform: scale(1.1);
}
.cal-day.is-past { opacity: 0.28; cursor: not-allowed; }
.cal-selected {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 1rem; color: #d7e3ea; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.cal-selected strong { color: var(--aurora-1); font-size: 1.05rem; }
.booking-summary {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  display: grid; gap: 10px;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 12px; font-size: 0.95rem;
}
.summary-row span { color: var(--muted); }
.summary-row--total strong { font-family: "Unbounded"; font-size: 1.15rem; }
.booking-form-actions {
  grid-column: 1 / -1;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.booking-form-actions .btn-primary { flex: 1; min-width: 180px; }

/* ---------- Prices (legacy rows removed) ---------- */

/* ---------- Booking ---------- */
.booking { position: relative; padding: clamp(80px, 12vw, 150px) 0; overflow: hidden; }
.booking-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.booking-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 13, 20, 0.78), rgba(6, 13, 20, 0.92)); }
.booking-content { position: relative; z-index: 2; text-align: center; }
.booking-content h2 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
.booking-content > p { color: #d7e3ea; margin-top: 18px; font-size: 1.1rem; }
.booking-form {
  margin: 36px auto 22px; display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr; max-width: 620px;
}
.booking-form--col {
  margin: 0; grid-template-columns: 1fr;
}
.summary-title {
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.form-title {
  font-family: "Unbounded", sans-serif; font-size: 1.05rem; font-weight: 700;
  text-align: left; margin-bottom: 2px;
}
.field { display: grid; gap: 6px; text-align: left; }
.field-label {
  font-size: 0.8rem; font-weight: 700; color: var(--aurora-1);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.booking-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px; padding: 17px 18px; color: var(--text); font-size: 1.05rem;
  font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.booking-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.booking-form input:hover { border-color: rgba(255, 255, 255, 0.35); }
.booking-form input:focus {
  outline: none; border-color: var(--aurora-1);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(65, 240, 169, 0.18);
}
.booking-form input[name="info"], .booking-form .btn,
.booking-form .booking-form-actions, .booking-form .form-status { grid-column: 1 / -1; }
.booking-form .btn:disabled { opacity: 0.6; cursor: progress; transform: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { grid-column: 1 / -1; min-height: 1.3em; font-weight: 600; font-size: 0.95rem; margin: 2px 0 0; }
.form-status.ok { color: var(--aurora-1); }
.form-status.err { color: #ff9d8c; }

/* Success screen */
.booking-success { display: block; }
.booking-success.is-hidden { display: none; }
.success-card {
  max-width: 520px; margin: 10px auto 0;
  background: linear-gradient(160deg, rgba(65, 240, 169, 0.12), rgba(74, 209, 255, 0.08));
  border: 1px solid rgba(65, 240, 169, 0.3);
  border-radius: 22px; padding: 40px 32px; text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.success-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--grad); color: #04130c;
  box-shadow: 0 10px 30px rgba(65, 240, 169, 0.4);
  animation: successPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
.success-card h3 { font-family: "Unbounded", sans-serif; font-size: 1.5rem; margin-bottom: 12px; }
.success-text { color: #d7e3ea; font-size: 1.05rem; margin-bottom: 22px; }
.success-recap {
  background: rgba(0, 0, 0, 0.2); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px; display: grid; gap: 9px;
  text-align: left; margin-bottom: 20px;
}
.success-note { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.booking-contacts {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.booking-contacts-label {
  color: var(--muted); font-size: 0.95rem; margin: 0;
}
.booking-contacts-links {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.contact-link {
  display: flex; align-items: center; gap: 9px;
  color: var(--text); text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 11px 22px; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.contact-link:hover { transform: translateY(-2px); }
.contact-link svg { flex-shrink: 0; }

.contact-link--wa { color: #25d366; border-color: rgba(37,211,102,0.25); }
.contact-link--wa:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.55); color: #25d366; }

.contact-link--tg { color: #2aabee; border-color: rgba(42,171,238,0.25); }
.contact-link--tg:hover { background: rgba(42,171,238,0.12); border-color: rgba(42,171,238,0.55); color: #2aabee; }

.contact-link--max { color: #b060ff; border-color: rgba(176,96,255,0.25); }
.contact-link--max:hover { background: rgba(176,96,255,0.12); border-color: rgba(176,96,255,0.55); color: #b060ff; }

.contact-link--tel { color: var(--muted); border-color: var(--line); }
.contact-link--tel:hover { background: rgba(255,255,255,0.07); border-color: var(--text); color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 0.92rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(3, 8, 12, 0.94); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 30px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow); }
.lb-close {
  position: absolute; top: 22px; right: 30px; background: none; border: none;
  color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: 0.8;
}
.lb-close:hover { opacity: 1; }

/* ---------- Floating fish CTA ---------- */
.float-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: flex; align-items: center;
  opacity: 0; transform: translateY(24px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.float-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.float-cta-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 22px 10px 14px;
  background: rgba(10, 24, 34, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(65, 240, 169, 0.35);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(65, 240, 169, 0.06);
  text-decoration: none; color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.float-cta-link:hover {
  transform: translateY(-3px);
  border-color: rgba(65, 240, 169, 0.7);
  box-shadow: 0 18px 48px rgba(65, 240, 169, 0.3), 0 0 0 6px rgba(65, 240, 169, 0.1);
}
.float-cta-fish {
  display: block;
  animation: ctaBob 3s ease-in-out infinite;
}
.float-cta-fish svg { display: block; overflow: visible; }
.cta-tail {
  transform-box: fill-box; transform-origin: right center;
  animation: ctaTail 0.6s ease-in-out infinite;
}
.cta-fin {
  transform-box: fill-box; transform-origin: bottom center;
  animation: ctaFin 1.4s ease-in-out infinite;
}
.cta-bubbles { animation: ctaBubbles 2.4s ease-in-out infinite; }
.float-cta-text {
  font-size: 0.86rem; font-weight: 700; line-height: 1.15; color: var(--muted);
  white-space: nowrap;
}
.float-cta-text b { color: var(--text); font-size: 0.98rem; }
.float-cta-close {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--muted); font-size: 1.1rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: color 0.2s, border-color 0.2s;
}
.float-cta-close:hover { color: var(--text); border-color: var(--aurora-2); }

@keyframes ctaBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
}
@keyframes ctaTail {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(12deg); }
}
@keyframes ctaFin {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.7); }
}
@keyframes ctaBubbles {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(-10px); opacity: 0; }
}

@media (max-width: 560px) {
  .float-cta { right: 14px; bottom: 14px; }
  .float-cta-link { padding: 8px 18px 8px 10px; gap: 8px; }
  .float-cta-fish svg { width: 46px; height: 28px; }
  .float-cta-text { font-size: 0.78rem; }
  .float-cta-text b { font-size: 0.88rem; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .wiz-layout { grid-template-columns: 1fr; }
  .wiz-aside { position: static; }
  .packages-row--wiz { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .boat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .wild-grid { grid-template-columns: 1fr; }
  .delic-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-grid { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .packages-row { grid-template-columns: repeat(2, 1fr); }
  .price-ref-grid { grid-template-columns: repeat(2, 1fr); }
  .promos-grid { grid-template-columns: 1fr; }
  .booking-step-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .boat-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .header-cta, .header-phone { display: none; }
  /* Photos: show full, natural aspect ratio — no forced cropping/squish */
  .gallery, .boat-grid {
    display: flex; flex-direction: column; gap: 14px;
    grid-template-columns: none; grid-auto-rows: auto;
  }
  .g-item, .b-item { grid-row: auto; grid-column: auto; width: 100%; }
  .g-item img, .b-item img { height: auto; }
  /* captions always visible (no hover on touch) */
  .g-item figcaption, .b-item figcaption { transform: none; opacity: 1; }
  .booking-form { grid-template-columns: 1fr; }
  .hero-actions { gap: 14px; }
  .strip-item { border-right: none; }
  .hero-title { font-size: clamp(1.6rem, 7.2vw, 2.3rem); }
  .hero-title br { display: none; }
  .hero-eyebrow { font-size: 0.82rem; }
  .hero-content { padding-top: 104px; }
  .section-head h2, .delic-text h2, .booking-content h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .packages-row { grid-template-columns: 1fr; }
  .packages-row--wiz { grid-template-columns: repeat(2, 1fr); }
  .price-ref-grid { grid-template-columns: repeat(2, 1fr); }
  .success-card { padding: 30px 22px; }
  .wiz-nav { gap: 0; }
  .wiz-label { font-size: 0.72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-cta-fish, .cta-tail, .cta-fin, .cta-bubbles { animation: none; }
  html { scroll-behavior: auto; }
}
