:root {
  --ink: #0b2731;
  --teal: #073c49;
  --teal-soft: #0f5966;
  --cream: #f5efe5;
  --sand: #f0dfc6;
  --sun: #ffc75f;
  --coral: #ef7458;
  --white: #fffdf9;
  --line: rgba(11, 39, 49, 0.14);
  --shadow: 0 28px 70px rgba(7, 60, 73, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body.lightbox-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 58px);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px rgba(7, 60, 73, 0.08);
  backdrop-filter: blur(16px);
}
.wordmark { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.wordmark-number { color: var(--sun); font-size: 1.55rem; font-weight: 1000; letter-spacing: -0.08em; }
.wordmark-name { font-size: 0.76rem; font-weight: 900; letter-spacing: 0.16em; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 40px); font-size: 0.82rem; font-weight: 750; }
.desktop-nav a, .language-toggle { opacity: 0.9; }
.desktop-nav a:hover, .language-toggle:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-toggle, .header-book {
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}
.language-toggle {
  padding: 0 16px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  cursor: pointer;
}
.header-book { display: inline-flex; align-items: center; padding: 0 18px; color: var(--ink); background: var(--sun); }

.hero {
  position: relative;
  min-height: 700px;
  height: min(820px, calc(100svh - 18px));
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  overflow: hidden;
  color: white;
  background: var(--teal);
  border-radius: 0 0 34px 34px;
  box-shadow: var(--shadow);
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: var(--teal); cursor: zoom-in; }
.hero-photo picture, .hero-photo img { width: 100%; height: 100%; }
.hero-photo img { object-fit: cover; object-position: 50% 50%; }
.hero-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(4, 35, 43, 0.9) 0%, rgba(4, 35, 43, 0.52) 54%, rgba(4, 35, 43, 0.2) 100%), linear-gradient(0deg, rgba(4, 35, 43, 0.55) 0%, transparent 45%); }
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  padding: 130px 0 42px;
}
.eyebrow { margin: 0 0 18px; color: var(--teal-soft); font-size: 0.73rem; font-weight: 950; letter-spacing: 0.18em; }
.eyebrow.light { color: #b7e2e4; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { margin: 0; letter-spacing: -0.055em; line-height: 0.96; }
h1 { max-width: 820px; font-size: clamp(3.25rem, 6vw, 5.65rem); }
h2 { max-width: 760px; font-size: clamp(2.6rem, 5.6vw, 5.3rem); }
h3 { margin: 0; line-height: 1.08; }
.hero-copy { max-width: 700px; margin: 18px 0 0; font-size: clamp(1rem, 1.35vw, 1.2rem); color: rgba(255,255,255,0.88); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--sun); }
.button-ghost { color: white; background: rgba(4,35,43,0.25); border-color: rgba(255,255,255,0.6); backdrop-filter: blur(7px); }
.button-whatsapp { color: white; background: #1fae5b; }
.hero-proof { display: flex; max-width: 720px; gap: 28px; margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.26); font-size: 0.86rem; color: rgba(255,255,255,0.76); }
.hero-proof strong { color: white; }
.tide-card {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(360px, 32vw);
  padding: 20px;
  color: white;
  background: rgba(4, 35, 43, 0.76);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(2,23,29,0.22);
  backdrop-filter: blur(14px);
}
.tide-heading { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.tide-kicker { margin: 0 0 5px; color: #b7e2e4; font-size: 0.62rem; font-weight: 950; letter-spacing: 0.15em; }
.tide-heading h2 { margin: 0; font-size: 1.55rem; line-height: 1; letter-spacing: -0.04em; }
.tide-status { flex: 0 0 auto; padding: 5px 8px; color: var(--ink); background: var(--sun); border-radius: 999px; font-size: 0.62rem; font-weight: 950; text-transform: uppercase; }
.tide-date { margin: 8px 0 0; color: rgba(255,255,255,0.72); font-size: 0.75rem; }
.tide-events { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-top: 15px; }
.tide-event { min-height: 67px; padding: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 13px; }
.tide-event.next { color: var(--ink); background: var(--sun); border-color: var(--sun); }
.tide-event span { display: block; color: #b7e2e4; font-size: 0.61rem; font-weight: 950; letter-spacing: 0.1em; text-transform: uppercase; }
.tide-event.next span { color: #72530e; }
.tide-event strong { display: block; margin-top: 4px; font-size: 0.98rem; }
.tide-event small { color: rgba(255,255,255,0.68); font-size: 0.68rem; }
.tide-event.next small { color: rgba(11,39,49,0.72); }
.tide-loading { grid-column: 1 / -1; min-height: 56px; display: grid; place-items: center; color: rgba(255,255,255,0.76); font-size: 0.76rem; }
.tide-note,.tide-attribution { margin: 8px 0 0; color: rgba(255,255,255,0.63); font-size: 0.61rem; line-height: 1.35; }
.tide-source { margin-top: 7px; color: rgba(255,255,255,0.63); font-size: 0.62rem; }
.tide-source summary { width: max-content; padding: 3px 0; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.tide-attribution { max-height: 72px; margin-top: 4px; overflow-y: auto; padding-right: 5px; }
.tide-card.is-stale .tide-status { background: #f2d49a; }
.tide-card.is-error .tide-events { display: block; }
.tide-card.is-error .tide-loading { min-height: 0; place-items: start; line-height: 1.45; }
.photo-expand {
  position: absolute;
  right: 24px;
  top: 96px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: white;
  background: rgba(7,60,73,0.78);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.photo-expand.dark { background: rgba(7,60,73,0.88); }

.section-wrap { width: min(1180px, calc(100% - 40px)); margin: auto; }
.host-section, .offer-section, .gallery-section, .reviews-section, .booking-section { padding: clamp(80px, 10vw, 140px) 0; }
.host-section { background: var(--cream); }
.host-grid { display: grid; grid-template-columns: minmax(280px, 0.72fr) 1.28fr; gap: clamp(42px, 8vw, 110px); align-items: center; }
.host-photo { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--teal); cursor: zoom-in; }
.host-photo img { width: 100%; aspect-ratio: 0.75; object-fit: cover; object-position: 50% 45%; }
.host-copy .lead { max-width: 730px; }
.lead { margin: 28px 0 0; color: #52666d; font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.host-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.host-points > div { padding-top: 18px; border-top: 1px solid var(--line); }
.host-points p { margin: 12px 0 0; color: #4c6067; }
.point-number { color: var(--coral); font-weight: 950; }

.offer-section { background: var(--white); }
.section-heading { display: flex; justify-content: space-between; gap: 42px; align-items: flex-end; }
.split-heading .lead { max-width: 470px; margin: 0; }
.offer-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 18px; margin-top: 50px; }
.offer-card { min-height: 320px; padding: clamp(26px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.offer-card.featured { color: white; background: var(--teal); }
.card-label { margin: 0 0 28px; font-size: 0.72rem; font-weight: 950; letter-spacing: 0.16em; }
.check-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; }
.check-list li::before { content: "✓"; color: var(--sun); font-weight: 950; }
.offer-card:not(.featured) > p:not(.card-label) { color: #455d65; font-size: 1.1rem; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 18px; color: var(--teal-soft); font-weight: 900; text-decoration: underline; text-underline-offset: 5px; }
.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 50px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); }
.activity-card { min-height: 230px; padding: 28px; background: var(--white); }
.activity-card.river-card { background: #e2f0ed; }
.activity-card > span { color: var(--coral); font-size: 0.72rem; font-weight: 950; }
.activity-card h3 { margin-top: 48px; font-size: 1.3rem; }
.activity-card p { margin: 12px 0 0; color: #5a6c72; font-size: 0.92rem; }

.activities-banner-section { overflow: hidden; padding: 18px; background: var(--white); }
.activities-banner-scroll {
  width: min(1400px, 100%);
  margin: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overscroll-behavior-inline: contain;
}
.activities-banner { display: block; width: 100%; height: auto; }
.activities-mobile { display: none; }

.gallery-section { overflow: hidden; background: var(--sand); }
.gallery-heading h2 { max-width: 820px; }
.view-all { min-height: 48px; padding: 0 20px; color: var(--ink); background: transparent; border: 1px solid var(--ink); border-radius: 999px; font-weight: 900; cursor: pointer; white-space: nowrap; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; grid-template-rows: 300px 300px; gap: 14px; margin-top: 46px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; color: white; background: var(--teal); border: 0; border-radius: 22px; cursor: zoom-in; text-align: left; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(2,30,38,0.76)); }
.gallery-item span { position: absolute; z-index: 2; left: 20px; bottom: 17px; font-size: 0.9rem; font-weight: 900; }
.gallery-river { grid-row: 1 / 3; }
.gallery-river img { object-position: 52% center; }
.gallery-action { grid-row: 1 / 3; grid-column: 3; }
.gallery-action img { object-position: 45% center; }
.gallery-group { display: none; }

.reviews-section { color: white; background: var(--teal); }
.review-heading { align-items: start; }
.review-heading h2 { max-width: 880px; }
.rating-block { display: grid; min-width: 140px; text-align: right; }
.rating-block strong { font-size: 4rem; line-height: 1; letter-spacing: -0.06em; }
.rating-block span, .stars { color: var(--sun); letter-spacing: 0.1em; }
.rating-block small { margin-top: 8px; color: #b8d0d5; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 50px; }
.review-card { min-height: 230px; padding: clamp(24px, 3vw, 36px); background: rgba(255,255,255,0.075); border: 1px solid rgba(255,255,255,0.13); border-radius: 22px; }
.review-card blockquote { margin: 22px 0 30px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.review-card p { margin: auto 0 0; color: #b9cfd4; font-size: 0.8rem; font-weight: 800; }
.review-summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 20px; }
.review-summary p { color: #c4d6da; }

.booking-section { background: var(--cream); }
.booking-box { padding: clamp(34px, 4.5vw, 54px); background: var(--white); border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); }
.booking-box > div:first-child {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-areas:
    "eyebrow title"
    "lead title";
  column-gap: clamp(40px, 5vw, 64px);
  row-gap: 24px;
  align-items: start;
}
.booking-box > div:first-child .eyebrow { grid-area: eyebrow; }
.booking-box > div:first-child h2 { grid-area: title; }
.booking-box > div:first-child .lead { grid-area: lead; margin: 0; }
.booking-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 36px 0 0; padding: 0; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 20px; list-style: none; }
.booking-steps li { min-height: 150px; padding: 24px; background: white; }
.booking-steps span { display: grid; place-items: center; width: 30px; height: 30px; color: white; background: var(--coral); border-radius: 50%; font-size: 0.8rem; font-weight: 950; }
.booking-steps p { margin: 24px 0 0; font-weight: 800; }
.booking-actions { display: flex; gap: 20px; align-items: center; margin-top: 28px; }

footer { padding: 60px 0 90px; color: white; background: #052e38; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 0.8fr); gap: 30px; }
.footer-brand { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; }
.footer-brand > span { color: var(--sun); font-size: 2.2rem; font-weight: 1000; letter-spacing: -0.08em; }
.footer-brand > strong { letter-spacing: 0.16em; }
.footer-brand p { grid-column: 1 / 3; color: #adc5ca; }
.footer-label { margin-top: 0; color: #8fadb3; font-size: 0.68rem; font-weight: 950; letter-spacing: 0.16em; }
.mobile-booking { display: none; }

.lightbox { width: 100vw; max-width: none; height: 100dvh; max-height: none; padding: 0; color: white; background: rgba(2, 23, 29, 0.96); border: 0; }
.lightbox::backdrop { background: rgba(2, 23, 29, 0.96); }
.lightbox-shell { position: relative; display: grid; grid-template-columns: 76px minmax(0, 1fr) 76px; grid-template-rows: 66px minmax(0, 1fr) 94px; width: 100%; height: 100%; }
.lightbox-topbar { grid-column: 1 / 4; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
.lightbox-close { display: grid; place-items: center; width: 48px; height: 48px; color: white; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; font-size: 2rem; cursor: pointer; }
.lightbox figure { grid-column: 2; grid-row: 2; display: flex; min-width: 0; min-height: 0; flex-direction: column; justify-content: center; align-items: center; margin: 0; }
.lightbox-image { max-width: 100%; max-height: calc(100dvh - 210px); object-fit: contain; border-radius: 12px; }
.lightbox figcaption { min-height: 24px; margin-top: 10px; color: #c5d7da; text-align: center; }
.lightbox-arrow { grid-row: 2; align-self: center; display: grid; place-items: center; width: 52px; height: 52px; color: white; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; font-size: 1.4rem; cursor: pointer; }
.lightbox-arrow.previous { grid-column: 1; justify-self: center; }
.lightbox-arrow.next { grid-column: 3; justify-self: center; }
.lightbox-thumbs { grid-column: 1 / 4; display: flex; align-items: center; justify-content: center; gap: 8px; overflow-x: auto; padding: 10px 18px 18px; }
.lightbox-thumbs button { flex: 0 0 auto; width: 70px; height: 56px; padding: 0; overflow: hidden; background: transparent; border: 2px solid transparent; border-radius: 8px; opacity: 0.55; cursor: pointer; }
.lightbox-thumbs button.active { border-color: var(--sun); opacity: 1; }
.lightbox-thumbs img { width: 100%; height: 100%; object-fit: cover; }

:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { justify-self: end; }
  .host-grid { grid-template-columns: 0.8fr 1.2fr; gap: 42px; }
  .host-points { grid-template-columns: 1fr; gap: 10px; }
  .offer-grid, .booking-box > div:first-child { grid-template-columns: 1fr; }
  .booking-box > div:first-child {
    grid-template-areas:
      "eyebrow"
      "title"
      "lead";
    gap: 0;
  }
  .booking-box > div:first-child .lead { margin-top: 24px; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 280px); }
  .gallery-river, .gallery-action { grid-row: auto; grid-column: auto; }
  .gallery-group { display: block; }
  .gallery-prep { display: none; }
  .booking-steps { grid-template-columns: repeat(2, 1fr); }
  .hero { height: auto; min-height: 760px; }
  .hero-content { min-height: 760px; height: auto; padding-bottom: 40px; }
  .tide-card { position: static; width: min(100%, 520px); margin-top: 24px; }
}

@media (max-width: 650px) {
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .site-header { min-height: 68px; padding: 0 14px; }
  .wordmark { gap: 7px; }
  .wordmark-number { font-size: 1.35rem; }
  .wordmark-name { display: inline; font-size: 0.62rem; letter-spacing: 0.12em; }
  .language-toggle { min-height: 44px; padding: 0 13px; font-size: 0.76rem; }
  .header-book { display: none; }
  .hero { min-height: calc(100svh - 62px); height: auto; width: 100%; margin: 0; border-radius: 0 0 26px 26px; }
  .hero-photo img { object-position: 55% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,35,43,0.95) 0%, rgba(4,35,43,0.5) 62%, rgba(4,35,43,0.38) 100%); }
  .hero-content { width: min(100% - 28px, 580px); min-height: calc(100svh - 62px); padding: 96px 0 82px; }
  h1 { max-width: 520px; font-size: clamp(2.65rem, 11vw, 3.5rem); line-height: 0.98; }
  h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .hero-copy { font-size: 1rem; }
  .button-row { gap: 9px; }
  .button-row .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 20px; padding-top: 14px; }
  .hero-proof span:last-child { grid-column: 1 / 3; }
  .photo-expand { right: 14px; top: 84px; bottom: auto; width: 44px; height: 44px; }
  .tide-card { width: 100%; margin-top: 22px; padding: 17px; border-radius: 20px; }
  .tide-heading h2 { font-size: 1.4rem; }
  .section-wrap { width: min(100% - 28px, 580px); }
  .host-section, .offer-section, .gallery-section, .reviews-section, .booking-section { padding: 82px 0; }
  .host-grid { grid-template-columns: 1fr; }
  .host-photo { max-height: 540px; }
  .host-photo img { aspect-ratio: 0.83; }
  .host-photo .photo-expand { top: auto; bottom: 14px; }
  .section-heading, .review-summary, .booking-actions { align-items: stretch; flex-direction: column; }
  .split-heading .lead { margin-top: 22px; }
  .offer-grid { margin-top: 34px; }
  .offer-card { min-height: auto; }
  .activities-grid { grid-template-columns: 1fr; }
  .activity-card { min-height: 180px; }
  .activity-card h3 { margin-top: 28px; }
  .activities-banner-section { padding: 14px; background: var(--white); }
  .activities-desktop { display: none; }
  .activities-mobile { display: block; width: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--cream); box-shadow: var(--shadow); }
  .activities-mobile-photo { position: relative; min-height: 390px; height: 390px; overflow: hidden; background: var(--teal); }
  .activities-mobile-photo > img { position: absolute; top: 0; right: 0; width: auto; max-width: none; height: 620px; }
  .activities-mobile-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,35,43,0.96) 0%, rgba(4,35,43,0.32) 64%, rgba(4,35,43,0.08) 100%); }
  .activities-mobile-copy { position: absolute; inset: auto 18px 24px; color: white; }
  .activities-mobile-copy h2 { max-width: 340px; margin: 0; font-size: clamp(2.15rem, 10vw, 3rem); line-height: 0.98; text-wrap: balance; }
  .activities-mobile-copy p { max-width: 340px; margin: 16px 0 0; color: rgba(255,255,255,0.88); font-size: 0.98rem; font-weight: 750; line-height: 1.45; }
  .activities-mobile-listing { padding: 28px 0 34px; background: var(--cream); }
  .activities-mobile-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding: 0 14px; }
  .activities-mobile-heading .eyebrow { margin: 0; }
  .activities-swipe-hint { display: block; }
  .activities-swipe-hint { margin: 0; color: var(--teal-soft); font-size: 0.78rem; font-weight: 900; white-space: nowrap; }
  .activities-mobile-track { display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(46vw, 180px); gap: 10px; margin-top: 18px; padding: 0 14px 12px; overflow-x: auto; scroll-padding-left: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
  .activities-mobile-track::-webkit-scrollbar { display: none; }
  .mobile-activity-card { display: flex; min-height: 210px; padding: 16px; flex-direction: column; scroll-snap-align: start; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 12px 30px rgba(7,60,73,0.07); }
  .mobile-activity-card:nth-child(3n + 2) { background: #e8f4f2; }
  .mobile-activity-card:nth-child(3n) { background: #f8e8df; }
  .mobile-activity-card span { color: var(--coral); font-size: 0.72rem; font-weight: 950; letter-spacing: 0.12em; }
  .mobile-activity-icon { display: block; width: 112px; height: 92px; margin: 5px auto 8px; flex: 0 0 auto; background-image: url("/assets/activities-banner-en.webp"); background-repeat: no-repeat; background-size: 1050px auto; border-radius: 14px; }
  .activity-icon-1 { background-position: -20px -384px; }
  .activity-icon-2 { background-position: -119px -384px; }
  .activity-icon-3 { background-position: -218px -384px; }
  .activity-icon-4 { background-position: -318px -384px; }
  .activity-icon-5 { background-position: -417px -384px; }
  .activity-icon-6 { background-position: -517px -384px; }
  .activity-icon-7 { background-position: -617px -384px; }
  .activity-icon-8 { background-position: -717px -384px; }
  .activity-icon-9 { background-position: -817px -384px; }
  .activity-icon-10 { background-position: -917px -384px; }
  .mobile-activity-card strong { margin-top: auto; color: var(--ink); font-size: 1.02rem; line-height: 1.08; text-transform: uppercase; }
  .activities-mobile-cta { width: calc(100% - 28px); margin: 12px 14px 0; }
  .gallery-heading { align-items: flex-start; }
  .gallery-grid {
    width: calc(100vw - 14px);
    grid-template-columns: repeat(5, 82vw);
    grid-template-rows: 390px;
    gap: 10px;
    margin-top: 34px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-right: 14px;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item { display: block; grid-row: 1; scroll-snap-align: start; }
  .gallery-item img { object-position: center; }
  .gallery-group img { object-position: center 34%; }
  .review-heading { gap: 28px; }
  .rating-block { text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .review-summary .button { width: 100%; }
  .booking-box { width: min(100% - 28px, 580px); padding: 30px 22px; }
  .booking-box > div:first-child { grid-template-areas: none; gap: 60px; align-items: end; }
  .booking-box > div:first-child .eyebrow,
  .booking-box > div:first-child h2,
  .booking-box > div:first-child .lead { grid-area: auto; }
  .booking-box > div:first-child .lead { margin: 0; }
  .booking-steps { grid-template-columns: 1fr; margin-top: 50px; }
  .booking-steps li { min-height: 122px; }
  .booking-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-booking {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: calc(62px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(7,60,73,0.1);
  }
  .mobile-booking a { display: grid; place-items: center; min-height: 62px; font-weight: 950; }
  .mobile-booking a:first-child { color: white; background: #1fae5b; }
  .lightbox-shell { grid-template-columns: 58px minmax(0, 1fr) 58px; grid-template-rows: 62px minmax(0, 1fr) 82px; }
  .lightbox-topbar { padding: 0 12px; }
  .lightbox-arrow { width: 46px; height: 46px; }
  .lightbox-image { max-height: calc(100dvh - 190px); }
  .lightbox-thumbs { justify-content: flex-start; }
}

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