:root {
  --navy: #082b45;
  --navy-2: #0d3c5c;
  --gold: #d9a441;
  --gold-dark: #aa7720;
  --teal: #168d9c;
  --ivory: #f7f2e8;
  --sand: #ede4d4;
  --white: #fff;
  --ink: #12232e;
  --muted: #5f707a;
  --line: rgba(8, 43, 69, 0.14);
  --shadow: 0 20px 55px rgba(8, 43, 69, 0.13);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
.button,
.lang-button,
.menu-button {
  min-height: 44px;
  min-width: 44px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -100px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(247, 242, 232, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 32px), var(--max));
  min-height: 86px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(180px, 245px) auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: block;
  width: min(100%, 235px);
}

.brand img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  justify-self: end;
}

.desktop-nav ul,
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a,
.mobile-nav a {
  display: block;
  padding: 10px 11px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--navy);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--gold-dark);
}

.lang-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

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

.lang-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 8px 22px rgba(217, 164, 65, 0.28);
}

.button-primary:hover {
  background: #e4b552;
}

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

.button-outline {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.header-book {
  white-space: nowrap;
  padding-inline: 24px;
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

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

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

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 60px 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #f2c56e;
}

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

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

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

h1 {
  font-size: clamp(2.65rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 18px;
}

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

.section-dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

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

.hero-split {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: stretch;
  background: var(--navy);
}

.hero-split::before {
  display: none;
}

.hero-visual {
  min-height: 680px;
  overflow: hidden;
  background: #0b3652;
}

.hero-split .hero-visual img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-panel {
  display: grid;
  align-items: center;
  padding: 44px clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 141, 156, 0.24), transparent 38%),
    var(--navy);
}

.hero-panel-inner {
  max-width: 680px;
}

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

.hero-panel .hero-copy {
  max-width: 600px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-price strong {
  color: #f1c56f;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 28, 46, 0.92) 0%, rgba(4, 28, 46, 0.62) 46%, rgba(4, 28, 46, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 28, 46, 0.72), transparent 60%);
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero img {
  object-position: center 32%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 100px 0 72px;
}

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

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.card-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(6, 37, 58, 0.62);
  backdrop-filter: blur(10px);
}

.hero-fact {
  padding: 18px 22px;
}

.hero-fact + .hero-fact {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-fact strong {
  display: block;
  color: #f4c86f;
  font-size: 0.77rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero img {
  left: auto;
  width: 52%;
  object-position: center 38%;
}

.page-hero::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 28, 46, 1) 0%, rgba(4, 28, 46, 0.96) 43%, rgba(4, 28, 46, 0.5) 70%, rgba(4, 28, 46, 0.1) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 110px 0 58px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.split.reverse > :first-child {
  order: 2;
}

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

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-card.landscape img {
  aspect-ratio: 4 / 3;
}

.media-card.contain-photo img {
  height: auto;
  max-height: 650px;
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--navy);
}

.caption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(8, 43, 69, 0.07);
}

.card-image {
  padding: 0;
}

.card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.trip-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.trip-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trip-card-image {
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.trip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trip-card-copy {
  align-self: center;
  padding: 30px;
}

.text-link {
  color: var(--navy);
  font-weight: 850;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.operation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.operation-media {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  gap: 18px;
}

.captain-photo,
.boat-stage,
.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d3c5c;
  box-shadow: var(--shadow);
}

.captain-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.boat-stage {
  padding: 18px 18px 0;
  background:
    linear-gradient(180deg, #168d9c 0%, #0d3c5c 72%);
}

.boat-stage img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  object-position: center bottom;
}

.captain-photo figcaption,
.boat-stage figcaption {
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.check-list-light li {
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-photo {
  padding: 18px;
  background: var(--navy);
}

.feature-photo img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(217, 164, 65, 0.24);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price {
  display: block;
  margin: 5px 0 16px;
  color: var(--gold-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-list,
.check-list,
.plain-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 24px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px 24px 28px 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  counter-increment: steps;
}

.step::before {
  position: absolute;
  left: 16px;
  top: 26px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  content: counter(steps);
  font-weight: 900;
}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding-right: 40px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy);
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-curated {
  margin-top: 36px;
}

.gallery-curated .gallery-item {
  grid-column: span 4;
  min-height: 0;
  padding: 12px;
}

.gallery-curated .gallery-item img {
  min-height: 0;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--navy);
}

.cta-panel {
  padding: clamp(30px, 6vw, 64px);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(22, 141, 156, 0.5), transparent 35%),
    var(--navy);
}

.cta-panel h2 {
  max-width: 720px;
  color: var(--white);
}

.meeting-box {
  padding: 26px;
  border-left: 5px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 43, 69, 0.08);
}

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

.booking-form {
  padding: clamp(24px, 5vw, 44px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

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

.field label,
.fieldset-title {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #b8c4ca;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

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

.field-help {
  margin: -2px 0 5px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.fishing-notes {
  margin-top: 4px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  background: #f2f8f7;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(22, 141, 156, 0.2);
  border-color: var(--teal);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.estimate {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid rgba(22, 141, 156, 0.25);
  border-radius: 14px;
  background: #eef8f7;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}

.estimate-row.total {
  margin-top: 8px;
  padding-top: 13px;
  border-top: 1px solid rgba(8, 43, 69, 0.15);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.policy-box {
  margin: 24px 0;
  padding: 20px;
  border-radius: 14px;
  background: var(--sand);
  font-size: 0.92rem;
}

.extras-box {
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid rgba(22, 141, 156, 0.3);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 164, 65, 0.2), transparent 36%),
    #f5fbfa;
}

.extras-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 25px;
}

.extras-intro h3 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 1.3rem;
}

.extras-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.extras-toggle {
  position: relative;
  display: inline-grid;
  min-height: 48px;
  place-items: center;
  padding: 11px 18px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-weight: 850;
  text-align: center;
}

.extras-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.extras-toggle:has(input:checked) {
  color: var(--white);
  background: var(--teal);
}

.extras-panel {
  padding: 25px;
  border-top: 1px solid rgba(22, 141, 156, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.activity-fieldset {
  min-width: 0;
  padding: 0;
  margin: 0 0 22px;
  border: 0;
}

.activity-fieldset legend {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

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

.activity-option {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
}

.activity-option:has(input:checked) {
  border-color: var(--teal);
  background: #e7f6f4;
  box-shadow: inset 0 0 0 1px var(--teal);
}

.activity-option input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  accent-color: var(--teal);
}

.option-error {
  margin: 8px 0 0;
  color: #8b2e24;
  font-size: 0.86rem;
  font-weight: 750;
}

.discount-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(217, 164, 65, 0.2);
  font-size: 0.88rem;
}

.form-status {
  margin-top: 14px;
  color: #8b2e24;
  font-weight: 750;
}

.sidebar-card {
  position: sticky;
  top: 100px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #051f32;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 48px;
  padding: 62px 0 38px;
}

.footer-grid > * {
  min-width: 0;
}

.site-footer a {
  overflow-wrap: anywhere;
}

.footer-logo {
  width: min(100%, 290px);
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  display: inline-block;
  padding: 6px 0;
  color: inherit;
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: #147b52;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  font-weight: 850;
}

[data-lang-content="es"] {
  display: none;
}

html[lang="es"] [data-lang-content="en"] {
  display: none;
}

html[lang="es"] [data-lang-content="es"] {
  display: revert;
}

@media (max-width: 1040px) {
  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    grid-template-columns: minmax(150px, 1fr) auto auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .mobile-nav {
    position: fixed;
    inset: 86px 0 0;
    padding: 22px;
    overflow-y: auto;
    background: var(--ivory);
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1.07rem;
  }

  .operation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

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

  .trust-item + .trust-item {
    border-left: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .hero-split {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-panel {
    padding: 58px 28px 68px;
  }

  .trip-cards {
    grid-template-columns: 1fr;
  }

  .trip-card {
    min-height: 460px;
  }

  .split.reverse > :first-child {
    order: initial;
  }

  .sidebar-card {
    position: static;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item.wide {
    grid-column: span 12;
  }

  .gallery-curated .gallery-item {
    grid-column: span 6;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 590px) {
  .container,
  .narrow,
  .hero-content {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 64px;
    grid-template-columns: minmax(86px, 1fr) auto auto;
    gap: 8px;
  }

  .brand img {
    height: 46px;
  }

  .lang-switch {
    display: none;
  }

  .header-book {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.79rem;
  }

  .mobile-nav {
    inset: 64px 0 0;
  }

  .hero-split {
    min-height: auto;
  }

  .hero-split .hero-visual {
    min-height: 430px;
  }

  .hero-split .hero-visual img {
    object-position: center 36%;
  }

  .hero-panel {
    padding: 44px 20px 54px;
  }

  .hero-panel h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .page-hero {
    min-height: 610px;
  }

  .page-hero img {
    inset: 0;
    width: 100%;
    height: 58%;
    object-fit: contain;
    object-position: center top;
    background: var(--navy);
  }

  .page-hero::before {
    background: linear-gradient(0deg, rgba(4, 28, 46, 1) 0%, rgba(4, 28, 46, 0.96) 47%, rgba(4, 28, 46, 0.12) 78%, rgba(4, 28, 46, 0.04) 100%);
  }

  .hero-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .trip-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .extras-intro {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .extras-toggle {
    width: 100%;
  }

  .extras-panel {
    padding: 20px;
  }

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

  .trip-card-image {
    min-height: 390px;
  }

  .trip-card-image img {
    object-position: center 38%;
  }

  .operation-media {
    grid-template-columns: 1fr;
  }

  .boat-stage img {
    max-height: 560px;
  }

  .mobile-nav .lang-switch {
    display: inline-flex;
    margin-top: 22px;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before,
  .page-hero::before {
    background: linear-gradient(0deg, rgba(4, 28, 46, 0.96) 0%, rgba(4, 28, 46, 0.62) 62%, rgba(4, 28, 46, 0.25) 100%);
  }

  .hero img {
    object-position: 48% center;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-fact + .hero-fact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .grid-2,
  .grid-3,
  .trust-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item:nth-child(even) {
    border-left: 0;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 12;
  }

  .gallery-curated .gallery-item {
    grid-column: span 12;
  }

  .gallery-item img {
    min-height: 280px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .whatsapp-float span {
    display: none;
  }

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

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

  html {
    scroll-padding-top: 10px;
  }

  .hero {
    min-height: 640px;
  }
}

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