:root {
  --navy: #061c3e;
  --navy-soft: #0d3159;
  --pink: #f51f68;
  --pink-dark: #cf1254;
  --pink-accessible: #b80f48;
  --aqua: #08a9c4;
  --action: #b80f48;
  --action-hover: #cf1254;
  --cream: #fffaf2;
  --white: #ffffff;
  --ink: #10223a;
  --muted: #5f6d7b;
  --line: #dfe7ec;
  --shadow: 0 22px 70px rgba(6, 28, 62, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--pink-accessible);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(6, 28, 62, 0.08);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  display: block;
  width: 270px;
  min-width: 270px;
  height: 64px;
  background: url("../images/logo-horizontal-web.png") left center / contain no-repeat;
}

.brand-mark,
.brand-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--pink-accessible);
}

.lang-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-toggle button {
  border: 0;
  padding: 7px 9px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
}

.lang-toggle button.active {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.lang-toggle button:focus-visible,
.main-nav a:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--action);
  box-shadow: 0 10px 25px rgba(184, 15, 72, 0.28);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--action-hover);
  box-shadow: 0 13px 30px rgba(184, 15, 72, 0.36);
}

.main-nav .header-book,
.main-nav .header-book:hover,
.main-nav .header-book[aria-current="page"] {
  color: var(--white);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(4, 19, 43, 0.62);
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.btn-navy {
  color: var(--white);
  background: var(--navy);
}

.btn-navy:hover {
  color: var(--white);
  background: var(--navy-soft);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.awards-section .eyebrow {
  color: #ff9aba;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 19, 43, 0.86) 0%, rgba(4, 19, 43, 0.48) 48%, rgba(4, 19, 43, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 19, 43, 0.58) 0%, transparent 52%);
  content: "";
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding-block: 70px;
}

.hero-content {
  min-width: 0;
  width: min(100%, 680px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  padding: clamp(28px, 3.4vw, 46px);
  background: rgba(4, 19, 43, 0.56);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(7px);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 4.8vw, 4.65rem);
}

.hero h1 span {
  color: #ff7da8;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.83);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-catch-card {
  position: relative;
  align-self: end;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  backdrop-filter: blur(10px);
  animation: hero-float 5s ease-in-out infinite;
}

.hero-catch-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-catch-copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border-radius: 16px;
  padding: 15px 17px;
  color: var(--white);
  background: rgba(4, 19, 43, 0.84);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}

.hero-catch-copy strong {
  display: block;
  color: #ff7da8;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-catch-copy span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(245, 31, 104, 0.18);
  animation: live-pulse 1.8s ease-out infinite;
}

.species-marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: var(--navy);
}

.species-track {
  display: flex;
  width: max-content;
  animation: species-scroll 26s linear infinite;
}

.species-track span {
  display: flex;
  align-items: center;
  padding: 15px 26px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.species-track span::after {
  margin-left: 52px;
  color: var(--pink);
  content: "◆";
  font-size: 0.65rem;
}

@keyframes hero-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-12px); }
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 31, 104, 0.45); }
  100% { box-shadow: 0 0 0 12px rgba(245, 31, 104, 0); }
}

@keyframes species-scroll {
  to { transform: translateX(-50%); }
}

.trust-strip {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--pink-accessible);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 23px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
}

.trust-item:last-child {
  border: 0;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
}

.trust-item span {
  font-size: 0.82rem;
  opacity: 0.85;
}

.section {
  padding-block: 104px;
}

.section-sm {
  padding-block: 72px;
}

.section-white {
  background: var(--white);
}

.section-navy {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
}

.photo-frame {
  position: relative;
}

.photo-frame::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 72%;
  height: 72%;
  border-radius: var(--radius);
  background: var(--pink);
  content: "";
}

.photo-frame img {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.proof-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--aqua);
  font-weight: 900;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.trip-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trip-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.trip-card-content {
  padding: 30px;
}

.tag {
  display: inline-flex;
  margin-bottom: 13px;
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--pink-dark);
  background: #fff0f5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.details span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 235px;
  gap: 14px;
  margin-top: 42px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: var(--navy-soft);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) {
  grid-column: span 7;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(5) {
  grid-column: span 5;
}

.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(4) {
  grid-column: span 6;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px 18px 15px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(4, 19, 43, 0.82));
  font-size: 0.85rem;
  font-weight: 700;
}

.home-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: start;
}

.home-gallery-grid figure:nth-child(n) {
  grid-column: auto;
}

.home-gallery-grid img {
  height: auto;
  object-fit: contain;
}

.award-feature {
  align-self: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.award-feature::after {
  display: none;
}

.award-feature img {
  width: min(100%, 430px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.award-feature p {
  margin: 14px 0 0;
  color: #ff7da8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.page-hero.gallery-hero {
  background:
    linear-gradient(90deg, rgba(4, 19, 43, 0.9), rgba(4, 19, 43, 0.55)),
    url("../images/gallery-hero-tuna.jpg") center 42% / cover;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: 50px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.archive-gallery {
  columns: 4 240px;
  column-gap: 16px;
  margin-top: 46px;
}

.gallery-photo {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 18px;
  background: var(--navy-soft);
  box-shadow: 0 12px 35px rgba(6, 28, 62, 0.12);
}

.gallery-photo button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.38s ease, filter 0.38s ease;
}

.gallery-photo span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 16px 14px;
  background: linear-gradient(transparent, rgba(4, 19, 43, 0.84));
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-photo button:hover img,
.gallery-photo button:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.gallery-photo button:hover span,
.gallery-photo button:focus-visible span {
  opacity: 1;
  transform: none;
}

.gallery-photo button:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: -4px;
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background: rgba(2, 10, 24, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox figure {
  display: grid;
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 56px);
  justify-items: center;
  margin: 0;
}

.gallery-lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 125px);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox figcaption {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.gallery-lightbox figcaption small {
  flex: 0 0 auto;
  color: #ff7da8;
  font-weight: 800;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: var(--pink-accessible);
  transform: scale(1.06);
}

.gallery-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  font-size: 2rem;
}

.gallery-lightbox-nav {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.awards-section {
  color: var(--white);
  background: var(--navy);
}

.awards-section h2 {
  color: var(--white);
}

.awards-section .gallery-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.awards-grid figure {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.awards-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.awards-grid figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 4px 2px;
}

.awards-grid strong {
  color: #ff7da8;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.awards-grid span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.quote {
  margin: 0;
  border-left: 4px solid var(--pink);
  padding-left: 28px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.35;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  border-radius: 30px;
  padding: 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-accessible), var(--navy-soft));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.page-hero {
  padding-block: 94px 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 19, 43, 0.96), rgba(4, 19, 43, 0.55)),
    url("../images/hero-catch.jpg") center 44% / cover;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: var(--white);
}

.info-card p:last-child {
  margin-bottom: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
}

.booking-aside {
  position: sticky;
  top: 100px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-radius: var(--radius);
  padding: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-hero {
  padding-block: 70px 62px;
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.price-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  background: var(--white);
}

.price-list strong {
  color: var(--navy);
}

.price-list span {
  color: var(--pink-accessible);
  font-weight: 900;
}

.price-list small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.balance-note {
  margin-top: 22px;
  border-radius: 16px;
  padding: 18px;
  color: var(--navy);
  background: #fff4cc;
}

.balance-note p {
  margin: 7px 0 0;
  font-size: 0.9rem;
}

.price-footnote {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cad6de;
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfe;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(8, 169, 196, 0.18);
  border-color: var(--aqua);
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

.field-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.help-details[hidden] {
  display: none;
}

.consent {
  color: var(--muted);
  font-size: 0.78rem;
}

.help-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.help-options legend {
  padding: 0 7px;
  color: var(--navy);
  font-weight: 900;
}

.help-options > p {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.help-options label,
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.help-options input,
.terms-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--pink-accessible);
}

.booking-terms {
  border-left: 4px solid var(--action);
  border-radius: 0 14px 14px 0;
  padding: 16px 18px;
  background: #f5f8fa;
}

.booking-terms > strong {
  color: var(--navy);
}

.booking-terms > p {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-submit {
  width: 100%;
}

.payment-hero {
  padding-block: 54px 48px;
  background:
    linear-gradient(90deg, rgba(4, 19, 43, 0.94), rgba(4, 19, 43, 0.62)),
    url("../gallery/gallery-24-lucas-atun-roy.jpg") center 38% / cover;
}

.payment-hero h1 {
  margin-bottom: 12px;
}

.payment-hero .lead {
  max-width: 720px;
  margin-bottom: 0;
}

.payment-section {
  padding-block: 48px 72px;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.payment-summary {
  position: sticky;
  top: 100px;
}

.payment-help {
  margin-top: 28px;
  color: var(--muted);
}

.payment-card {
  border: 1px solid rgba(6, 28, 62, 0.09);
  border-radius: var(--radius);
  padding: 32px 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.payment-card-heading {
  margin-bottom: 22px;
}

.payment-card-heading h2 {
  margin-bottom: 12px;
}

.payment-card-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.payment-options {
  margin-top: 6px;
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--muted);
  background: #f2f7f9;
}

.payment-options h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.payment-options p {
  margin: 4px 0;
  font-size: 0.84rem;
}

.payment-options strong {
  color: var(--navy);
}

.paypal-hosted-button {
  width: min(100%, 520px);
  min-height: 160px;
  margin: 24px auto 0;
}

.payment-security-note {
  display: grid;
  gap: 3px;
  margin-top: 26px;
  border-top: 1px solid #dce5ea;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-security-note strong {
  color: var(--navy);
}

.payment-summary h2 {
  margin-bottom: 16px;
}

.payment-summary > p {
  color: var(--muted);
}

.payment-trust-mark {
  display: grid;
  gap: 2px;
  margin-top: 26px;
  border: 1px solid #d7e3e8;
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--white);
}

.payment-trust-mark strong {
  color: #087fba;
  font-size: 1.35rem;
  font-style: italic;
}

.payment-trust-mark span {
  font-size: 0.8rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.faq {
  display: grid;
  max-width: 900px;
  gap: 12px;
  margin: 40px auto 0;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  background: var(--white);
}

.faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.confirmation {
  max-width: 760px;
  margin: 80px auto;
  border-radius: var(--radius);
  padding: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.summary-list {
  display: grid;
  gap: 8px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.site-footer {
  padding-block: 70px 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #041329;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 92px;
  border-radius: 16px;
}

.site-footer h3 {
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: #ff7da8;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--white);
  background: #0f783d;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-weight: 800;
}

.whatsapp-float:hover {
  background: #0b6332;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    min-height: calc(100vh - 72px);
    align-content: start;
    padding: 34px 28px;
    background: var(--cream);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    font-size: 1.15rem;
  }

  .header-book {
    display: none;
  }

  .split,
  .booking-layout,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-catch-card {
    display: none;
  }

  .booking-aside,
  .payment-summary {
    position: static;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    width: 218px;
    min-width: 0;
    height: 56px;
  }

  .section {
    padding-block: 76px;
  }

  .eyebrow {
    gap: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .eyebrow::before {
    width: 22px;
  }

  .hero {
    min-height: 760px;
    background-position: 56% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(4, 19, 43, 0.96) 0%, rgba(4, 19, 43, 0.68) 62%, rgba(4, 19, 43, 0.2) 100%);
  }

  .hero-video {
    display: block;
    object-position: 58% center;
  }

  .hero-layout {
    display: block;
    align-items: end;
    padding-block: 190px 30px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    padding: 28px 22px;
    background: rgba(4, 19, 43, 0.58);
  }

  .hero h1 {
    overflow-wrap: anywhere;
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cards,
  .info-grid,
  .footer-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .help-options {
    grid-template-columns: 1fr;
  }

  .archive-gallery {
    columns: 2;
    column-gap: 10px;
    margin-top: 30px;
  }

  .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-gallery-grid figure {
    border-radius: 12px;
  }

  .awards-grid {
    gap: 12px;
  }

  .awards-grid figure {
    border-radius: 14px;
    padding: 8px;
  }

  .awards-grid figcaption {
    padding: 10px 2px 2px;
  }

  .awards-grid span {
    font-size: 0.88rem;
  }

  .gallery-photo {
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .gallery-photo span {
    display: none;
  }

  .gallery-lightbox {
    display: block;
    padding: 70px 14px 76px;
  }

  .gallery-lightbox figure {
    height: 100%;
    align-content: center;
  }

  .gallery-lightbox figure img {
    max-height: calc(100vh - 175px);
  }

  .gallery-lightbox figcaption {
    gap: 12px;
    font-size: 0.78rem;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 14px;
  }

  .gallery-lightbox-nav {
    position: absolute;
    bottom: 14px;
  }

  .gallery-lightbox-prev {
    left: 14px;
  }

  .gallery-lightbox-next {
    right: 14px;
  }

  .field-full,
  .footer-grid > :first-child {
    grid-column: auto;
  }

  .trip-card img {
    height: 270px;
  }

  .photo-frame img {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .gallery-grid figure:nth-child(n) {
    grid-column: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .payment-card {
    padding: 28px 18px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .site-header {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-catch-card,
  .species-track,
  .live-dot {
    animation: none;
  }
}
