:root {
  --ink: #0f2933;
  --deep: #08212c;
  --muted: #5f737c;
  --sea: #07adc4;
  --sea-dark: #006b7a;
  --blue: #145a7a;
  --sand: #f4efe4;
  --mist: #eef8f8;
  --line: #d7e5e8;
  --white: #ffffff;
  --warning: #f2b84b;
  --shadow: 0 20px 60px rgba(8, 33, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--mist);
  color: var(--sea-dark);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.stars {
  color: var(--warning);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 48px;
  height: auto;
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 21px;
  line-height: 1;
  font-weight: 950;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 850;
}

.nav-actions a.active,
.nav-actions a:not(.whatsapp):hover {
  color: var(--sea-dark);
}

.language-select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 10px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.whatsapp,
.booking-button,
.reserve-button,
.lead-form button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--sea);
  color: var(--white);
  padding: 0 18px;
  font-weight: 950;
  cursor: pointer;
}

.booking-button:hover,
.reserve-button:hover,
.whatsapp:hover {
  background: var(--sea-dark);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #25d366;
  color: var(--white);
  padding: 0 18px;
  box-shadow: 0 16px 36px rgba(8, 33, 44, 0.22);
  font-weight: 950;
}

.static-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.static-header .nav {
  min-height: 72px;
}

.static-header .language-select {
  pointer-events: none;
}

.floating-whatsapp:hover {
  background: #1fae55;
}

.booking-button.disabled {
  background: #b7c8ce;
  cursor: not-allowed;
}

.ghost-button,
.secondary-button,
.clear-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}

.ghost-button.light {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.ghost-button.full,
.booking-button.full {
  width: 100%;
}

.hero,
.page-hero,
.split-hero,
.activity-detail-hero,
.page-section,
.feature-band,
.intro-band,
.activity-layout,
.form-section,
.contact-layout,
.cart-page {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 670px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 33, 44, 0.82), rgba(8, 33, 44, 0.5) 50%, rgba(8, 33, 44, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 84px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sea);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 950;
}

.hero .eyebrow,
.activity-detail-hero .eyebrow {
  color: #8bf2ff;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  margin-top: 42px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(8, 33, 44, 0.08);
}

.page-section {
  padding: 64px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 720px;
}

.text-link,
.back-link {
  color: var(--sea-dark);
  font-weight: 950;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-tile {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 20px;
  color: var(--white);
  background: var(--deep);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.35s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 33, 44, 0.05), rgba(8, 33, 44, 0.85));
}

.category-tile:hover img {
  transform: scale(1.04);
}

.category-tile span,
.category-tile h3,
.category-tile p {
  position: relative;
  z-index: 1;
}

.category-tile span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--sea);
  font-weight: 950;
}

.category-tile p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.cards.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  box-shadow: 0 12px 34px rgba(8, 33, 44, 0.08);
}

.activity-card:focus-visible {
  outline: 3px solid rgba(7, 173, 196, 0.45);
  outline-offset: 4px;
}

.activity-card-media {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  background: var(--mist);
}

.activity-card-media img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.activity-card:hover .activity-card-media img {
  transform: scale(1.04);
}

.activity-card-media span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--sea-dark);
  font-size: 13px;
  font-weight: 950;
}

.activity-card-body {
  padding: 18px;
}

.activity-card-body p {
  margin-bottom: 14px;
}

.activity-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.activity-card-meta strong {
  color: var(--sea-dark);
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: center;
  margin-top: 70px;
  padding: 40px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.76);
}

.benefits,
.benefit-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefits article,
.benefit-grid article,
.review-grid blockquote {
  margin: 0;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.pack-grid article {
  min-height: 190px;
  border-color: rgba(7, 173, 196, 0.28);
  background: linear-gradient(180deg, #ffffff, #f6fcfc);
}

.pack-grid strong {
  color: var(--sea-dark);
}

.benefit-grid article,
.review-grid blockquote {
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(8, 33, 44, 0.07);
}

.benefits strong,
.benefits span,
.benefit-grid strong,
.benefit-grid span {
  display: block;
}

.benefits strong,
.benefit-grid strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.benefits span,
.benefit-grid span,
blockquote p {
  color: var(--muted);
  line-height: 1.55;
}

cite {
  color: var(--sea-dark);
  font-style: normal;
  font-weight: 950;
}

.contact-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 8px;
  background: var(--sand);
}

.contact-cta p {
  max-width: 760px;
}

.page-hero.compact {
  padding: 70px 0 30px;
}

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

.catalog-tools input,
.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  color: var(--ink);
}

.catalog-tools {
  margin: 24px 0 14px;
}

.pill-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-filter button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 900;
}

.pill-filter button.active {
  background: var(--sea);
  color: var(--white);
  border-color: var(--sea);
}

.category-section {
  scroll-margin-top: 120px;
  padding-top: 48px;
}

.activity-detail-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: center;
  padding: 56px 0 34px;
}

.activity-detail-copy {
  padding: 34px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.activity-detail-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.activity-detail-copy h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 64px);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:first-child {
  grid-row: span 2;
}

.activity-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  padding-bottom: 70px;
}

.activity-main {
  display: grid;
  gap: 18px;
}

.content-panel,
.booking-card,
.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 33, 44, 0.07);
}

.booking-panel {
  position: sticky;
  top: 110px;
}

.booking-card {
  display: grid;
  gap: 14px;
}

.booking-group {
  display: grid;
  gap: 10px;
}

.booking-group h3 {
  margin: 0;
  font-size: 15px;
}

.booking-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-options {
  display: grid;
  gap: 8px;
}

.booking-option {
  position: relative;
  display: grid;
  cursor: pointer;
}

.booking-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-option span {
  min-height: 58px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.booking-option input:checked + span {
  border-color: var(--sea);
  background: var(--mist);
  box-shadow: inset 0 0 0 1px var(--sea);
}

.booking-option small {
  color: var(--sea-dark);
  font-weight: 950;
}

.calendar-nav {
  display: inline-flex;
  gap: 6px;
}

.calendar-nav button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}

.availability-calendar {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.calendar-month {
  text-transform: capitalize;
  font-weight: 950;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-weekdays span {
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-empty {
  min-height: 36px;
}

.calendar-day {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.calendar-day[data-status="request"] {
  border-color: rgba(7, 173, 196, 0.38);
  background: #eefafa;
}

.calendar-day[data-status="available"] {
  border-color: rgba(31, 174, 85, 0.35);
  background: #eaf8ef;
}

.calendar-day[data-status="limited"] {
  border-color: rgba(242, 184, 75, 0.45);
  background: #fff7e8;
}

.calendar-day[data-status="unavailable"],
.calendar-day:disabled {
  border-color: #e3e8ea;
  background: #f3f5f5;
  color: #9aabb1;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.selected {
  border-color: var(--sea-dark);
  background: var(--sea);
  color: var(--white);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.calendar-legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 999px;
}

.status-request {
  background: var(--sea);
}

.status-limited {
  background: var(--warning);
}

.status-unavailable {
  background: #b7c8ce;
}

.people-field {
  display: grid;
  gap: 7px;
  font-weight: 950;
}

.people-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}

.booking-summary {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.booking-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
}

.booking-summary strong {
  line-height: 1.35;
}

.price-options,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-options li,
.check-list li {
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink);
  font-weight: 850;
}

.check-list.muted li {
  background: #f5f7f7;
  color: var(--muted);
}

.small-note,
.legal-line {
  font-size: 13px;
}

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

.detail-field {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.detail-field span,
.detail-field strong {
  display: block;
}

.detail-field span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.detail-field strong {
  line-height: 1.35;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.split-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 60px 0 30px;
}

.split-hero img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.form-section,
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 60px 0 70px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 33, 44, 0.07);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.lead-form .full,
.lead-form button {
  grid-column: 1 / -1;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 38px max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.footer-brand {
  max-width: 460px;
}

.footer-brand-row strong {
  font-size: 20px;
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
  font-weight: 850;
}

.footer-links span {
  color: var(--muted);
}

.legal-copy {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-section {
  display: grid;
  gap: 18px;
}

.product-page {
  background: #f7fbfb;
}

.product-shell,
.product-layout {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.product-shell {
  padding: 34px 0 0;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.product-breadcrumb a {
  color: var(--sea-dark);
}

.product-title-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.product-title-grid h1 {
  max-width: 940px;
  margin-bottom: 12px;
  color: var(--deep);
  font-size: clamp(38px, 5.2vw, 64px);
}

.product-lead {
  max-width: 820px;
  font-size: 19px;
}

.product-signals,
.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-signals span,
.product-meta-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.product-signals .rating-pill {
  border-color: rgba(242, 184, 75, 0.45);
  background: #fff7e8;
  color: #7b5200;
}

.product-price-preview {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 33, 44, 0.09);
}

.product-price-preview span,
.booking-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.product-price-preview strong,
.booking-box .booking-price {
  color: var(--deep);
  font-size: 26px;
  font-weight: 950;
}

.product-gallery-static {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 220px);
  gap: 10px;
  margin-bottom: 28px;
}

.product-gallery-static img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: var(--mist);
}

.product-gallery-static img:first-child {
  grid-row: span 2;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  padding-bottom: 70px;
}

.product-main {
  display: grid;
  gap: 18px;
}

.section-card,
.booking-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 33, 44, 0.07);
}

.section-card {
  padding: 24px;
}

.section-card h2,
.booking-box h2,
.booking-box h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.quick-facts-grid div {
  padding: 14px;
  border-radius: 8px;
  background: var(--mist);
}

.quick-facts-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.quick-facts-grid strong {
  line-height: 1.35;
}

.highlight-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 850;
}

.highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sea-dark);
  font-weight: 950;
}

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

.booking-box {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

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

.option-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
  font-weight: 850;
}

.option-list strong {
  flex-shrink: 0;
  color: var(--sea-dark);
}

.calendar-lite {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: var(--mist);
}

.calendar-lite-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.calendar-lite-head h3,
.calendar-lite h3 {
  margin: 0;
}

.calendar-lite-head span {
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--white);
  padding: 6px 8px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 950;
}

.availability-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(7, 173, 196, 0.28);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 950;
}

.availability-weekdays,
.availability-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.availability-weekdays span {
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.availability-days > span,
.availability-days > button {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 173, 196, 0.22);
  border-radius: 8px;
  background: var(--white);
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 950;
}

.availability-days > button {
  cursor: pointer;
  font-family: inherit;
}

.availability-days > button small {
  color: inherit;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.availability-days > button:disabled {
  cursor: not-allowed;
}

.availability-days > button.selected {
  border-color: var(--sea-dark);
  box-shadow: 0 0 0 3px rgba(7, 173, 196, 0.16);
}

.selected-date-label {
  margin: 0;
  color: var(--deep);
  font-size: 13px;
  font-weight: 850;
}

.availability-days .muted {
  border-color: #e3e8ea;
  background: #f4f6f6;
  color: #9aabb1;
  text-decoration: line-through;
}

.availability-days .request {
  border-color: rgba(7, 173, 196, 0.35);
  background: #ffffff;
}

.availability-days .limited {
  border-color: rgba(242, 184, 75, 0.55);
  background: #fff7e8;
  color: #7b5200;
}

.availability-days .featured {
  border-color: rgba(31, 174, 85, 0.4);
  background: #eaf8ef;
  color: #176f37;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.availability-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.availability-legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 999px;
}

.legend-request {
  background: var(--sea);
}

.legend-limited {
  background: var(--warning);
}

.legend-featured {
  background: #1fae55;
}

.meeting-card {
  padding: 18px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.meeting-card p {
  color: rgba(255, 255, 255, 0.8);
}

.review-snippets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.review-snippets blockquote {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.review-snippets p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.static-footer {
  padding: 32px max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.static-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.static-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-weight: 850;
}

@media (max-width: 980px) {
  .product-title-grid,
  .product-layout,
  .quick-facts-grid,
  .included-grid,
  .review-snippets {
    grid-template-columns: 1fr;
  }

  .booking-box {
    position: static;
  }

  .product-gallery-static {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .product-gallery-static img:first-child {
    grid-row: span 1;
  }

  .static-footer-inner {
    flex-direction: column;
  }

  .static-footer nav {
    justify-content: flex-start;
  }
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(420px, calc(100% - 36px));
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-page {
  padding: 60px 0;
}

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

  .nav-actions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .static-header .nav-actions {
    position: static;
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
  }

  .nav-actions a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .static-header .nav-actions a {
    min-height: 38px;
  }

  .language-select {
    width: 100%;
    margin: 8px 0;
  }

  .intro-band,
  .category-grid,
  .cards.grid,
  .feature-band,
  .benefits,
  .benefit-grid,
  .review-grid,
  .activity-detail-hero,
  .activity-layout,
  .split-hero,
  .form-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    position: static;
  }

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

  .gallery img:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    font-size: 12px;
  }

  .brand-mark {
    width: 42px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

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

  h1 {
    font-size: 42px;
  }

  .section-head,
  .contact-cta,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .details-grid,
  .two-columns,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .split-hero img {
    min-height: 320px;
  }

  .footer-links {
    text-align: left;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 14px;
  }
}

/* First-review CTA */
.first-review-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.first-review-cta p {
  color: var(--muted);
  line-height: 1.7;
}

/* Form fallback email note */
.form-fallback {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.form-fallback a {
  color: var(--sea-dark);
  text-decoration: underline;
}

/* Legal line in footer - highlight registration */
.legal-line strong {
  color: var(--sea-dark);
}
