/* ============================================================
   JETSKY TANJUNG BENOA — landing page style (static, no build)
   ============================================================ */

:root {
  --ink: #062f35;
  --deep: #03232a;
  --sea: #0a5d5c;
  --teal: #0d8b86;
  --aqua: #b7f0e2;
  --sand: #f7f3ea;
  --paper: #fffdf8;
  --coral: #ff6b4a;
  --gold: #f2b64d;
  --muted: #5f7a7c;
  --line: rgba(6, 47, 53, 0.1);
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 28px;
  --radius-xl: 40px;
  --shadow-s: 0 2px 6px rgba(3, 35, 42, 0.05), 0 10px 24px rgba(3, 35, 42, 0.06);
  --shadow-m: 0 6px 14px rgba(3, 35, 42, 0.07), 0 22px 44px rgba(3, 35, 42, 0.1);
  --shadow-l: 0 12px 24px rgba(3, 35, 42, 0.09), 0 38px 80px rgba(3, 35, 42, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

section[id] { scroll-margin-top: 92px; }

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

button, a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

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

::selection { background: var(--teal); color: #fff; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: rgba(6, 47, 53, 0.28); border-radius: 8px; border: 3px solid var(--sand); }
::-webkit-scrollbar-thumb:hover { background: rgba(6, 47, 53, 0.45); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4.5vw, 48px);
}

.glass {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}

/* ---------- scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

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

/* ---------- typography helpers ---------- */

h1, h2, h3 { font-family: var(--font-display); }

h2 {
  margin: 14px 0 0;
  font-weight: 560;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.accent-line {
  font-style: italic;
  font-weight: 480;
  color: var(--teal);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
}

.eyebrow-light { color: var(--aqua); }
.eyebrow-light::before { background: var(--aqua); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn svg { flex: none; }

.wa-ic { display: inline-flex; align-items: center; }

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 107, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(255, 107, 74, 0.42);
}

.btn-wa {
  background: #1fae5c;
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 174, 92, 0.26);
}

.btn-wa:hover {
  transform: translateY(-3px);
  background: #178f4b;
  box-shadow: 0 18px 38px rgba(31, 174, 92, 0.36);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.btn-dark:hover { background: rgba(255, 255, 255, 0.18); }

.btn-nav { padding: 12px 20px; font-size: 13px; }

.btn-book {
  padding: 13px 18px;
  font-size: 13px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
  flex: none;
}

.btn-book:hover { background: var(--teal); transform: translateY(-2px); }

.btn-cta { padding: 18px 30px; font-size: 15px; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 86px;
  transition: height 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(247, 243, 234, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(3, 35, 42, 0.1);
}

.site-header.open {
  background: rgba(247, 243, 234, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--ink);
}

.site-header.scrolled .header-inner { height: 68px; }

/* brand */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--deep));
  color: #fff;
  box-shadow: var(--shadow-s);
}

.brand-mark svg { color: #fff; }

.brand-text { display: flex; flex-direction: column; gap: 2px; }

.brand-text b { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }

.brand-text span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header:not(.scrolled):not(.open) .brand-text span { color: rgba(255, 255, 255, 0.62); }

/* nav */

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13.5px;
  font-weight: 700;
}

.site-nav > a {
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.25s;
}

.site-nav > a:hover { opacity: 1; }

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transition: right 0.3s var(--ease);
}

.site-nav > a:hover::after { right: 0; }

.language-switch {
  display: flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header.scrolled .language-switch,
.site-header.open .language-switch {
  background: rgba(6, 47, 53, 0.07);
  border-color: rgba(6, 47, 53, 0.16);
}

.language-switch button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 800;
  color: inherit;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity 0.25s, background 0.25s, color 0.25s;
}

.language-switch button:hover { opacity: 1; }

.language-switch button.active {
  background: #fff;
  color: var(--ink);
  opacity: 1;
  box-shadow: 0 3px 10px rgba(3, 35, 42, 0.18);
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  z-index: 52;
}

.menu-button span {
  display: block;
  height: 2.4px;
  border-radius: 3px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: -86px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  animation: kenburns 18s var(--ease) both;
}

@keyframes kenburns {
  from { transform: scale(1.14) translateY(-1.5%); }
  to { transform: scale(1) translateY(0); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 20, 26, 0.62) 0%, rgba(2, 20, 26, 0.16) 38%, rgba(2, 20, 26, 0.52) 76%, rgba(2, 20, 26, 0.88) 100%),
    linear-gradient(90deg, rgba(2, 20, 26, 0.5) 0%, transparent 55%);
}

.hero-glow {
  position: absolute;
  right: -12%;
  top: 16%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 139, 134, 0.38), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: clamp(150px, 22vh, 220px) 0 clamp(120px, 16vh, 170px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
}

.hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.6);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(255, 107, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0); }
}

.hero-title {
  margin: 24px 0 0;
  font-weight: 560;
  font-size: clamp(50px, 7.6vw, 108px);
  line-height: 0.99;
  letter-spacing: -0.02em;
  max-width: 13ch;
}

.hero-title .accent-line { color: var(--aqua); }

.hero-sub {
  margin: 26px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 36px 0 0;
  padding: 0;
}

.hero-chips li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.hero-chips svg { color: var(--aqua); }

.hero-rating {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 5vw, 60px);
  bottom: clamp(112px, 15vh, 152px);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  padding: 18px 22px;
  border-radius: 20px;
  color: #fff;
}

.hero-rating-stars { grid-column: 1 / -1; display: flex; gap: 3px; color: var(--gold); }

.hero-rating strong {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 34px;
  line-height: 1;
}

.hero-rating strong span:last-child { font-size: 13px; color: rgba(255, 255, 255, 0.6); font-family: var(--font-sans); }

.hero-rating small { font-size: 11px; color: rgba(255, 255, 255, 0.66); }

.hero-scroll {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 34px;
  background: linear-gradient(var(--aqua), transparent);
  animation: scrollHint 1.9s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  display: block;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
  background: linear-gradient(90deg, var(--deep), #073f46 50%, var(--deep));
  border-block: 1px solid rgba(183, 240, 226, 0.14);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-row { overflow: hidden; }

.marquee-row + .marquee-row { margin-top: 12px; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee-alt .marquee-track {
  animation-direction: reverse;
  animation-duration: 48s;
}

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

.marquee-segment { display: flex; align-items: center; }

.mq-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 480;
  font-size: clamp(20px, 2.6vw, 30px);
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.mq-item i {
  font-style: normal;
  color: var(--coral);
  font-size: 0.62em;
}

/* ============================================================
   STATS
   ============================================================ */

.stats {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--sand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat span {
  display: block;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ACTIVITIES
   ============================================================ */

.activities {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--sand) 0%, #f0eade 55%, var(--sand) 100%);
}

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

.section-head h2 { margin-top: 16px; }

.section-lead {
  max-width: 460px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

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

.activity-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-l);
  border-color: rgba(13, 139, 134, 0.28);
}

.activity-media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
}

.activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

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

.activity-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 35, 42, 0.36), transparent 45%);
  pointer-events: none;
}

.activity-index {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(3, 35, 42, 0.2);
}

.activity-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(255, 107, 74, 0.42);
}

.activity-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 22px 24px 24px;
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.duration-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(13, 139, 134, 0.1);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
}

.note-chip {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(242, 182, 77, 0.16);
  color: #97670e;
  font-size: 10px;
  font-weight: 700;
}

.activity-body h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.activity-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-block small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.price-block strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ============================================================
   BANNER
   ============================================================ */

.banner {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

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

.banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 20, 26, 0.82) 0%, rgba(2, 20, 26, 0.38) 55%, rgba(2, 20, 26, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 20, 26, 0.5), transparent 60%);
}

.banner-wave-top {
  top: 0;
  bottom: auto;
  transform: scaleY(-1);
}

.banner-inner {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.banner-title { margin: 18px 0 32px; }
.banner-title .accent-line { color: var(--aqua); }

/* ============================================================
   WHY US
   ============================================================ */

.why {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--deep) 0%, var(--ink) 55%, #083f45 100%);
  color: #fff;
}

.why::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -12%;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 139, 134, 0.26), transparent 62%);
  pointer-events: none;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.why-copy h2 { margin-top: 16px; color: #fff; }
.why-copy .accent-line { color: var(--aqua); }

.why-text {
  margin: 26px 0 0;
  max-width: 560px;
  color: #a8c0c0;
  font-size: 15.5px;
  line-height: 1.85;
}

.benefit-list { margin-top: 44px; }

.benefit-list > div {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding-left 0.3s var(--ease), background 0.3s var(--ease), border-radius 0.3s var(--ease);
}

.benefit-list > div:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 16px;
}

.benefit-list b {
  flex: none;
  width: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 480;
  font-size: 16px;
  color: var(--coral);
}

.benefit-list span { display: flex; flex-direction: column; gap: 6px; }
.benefit-list strong { font-size: 15.5px; }
.benefit-list small { color: #93aeae; font-size: 13px; line-height: 1.55; }

.why-copy .btn { margin-top: 40px; }

.why-media { position: relative; }

.why-stack {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 42px;
}

.why-a,
.why-b {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
}

.why-b {
  position: relative;
  z-index: 1;
  transform: translateY(30px);
  border: 5px solid var(--deep);
}

.why-badge {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: -4%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.why-badge svg { color: var(--aqua); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sand);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.testi-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }

.testi-stars { display: flex; gap: 3px; color: var(--gold); }

.testi-card blockquote {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-weight: 460;
  font-size: 19px;
  line-height: 1.55;
  color: #24464a;
}

.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--deep));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.testi-who { display: flex; flex-direction: column; gap: 2px; }
.testi-who b { font-size: 13.5px; }
.testi-who small { color: var(--muted); font-size: 11.5px; }

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #f2ecdf;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-m);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 20, 26, 0.58), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-item:hover figcaption { opacity: 1; transform: none; }

.gallery-big { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sand);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.faq-head { position: sticky; top: 120px; }

.faq-head h2 { margin: 16px 0 28px; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-item[open] { border-color: rgba(13, 139, 134, 0.4); box-shadow: var(--shadow-m); }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary svg {
  flex: none;
  color: var(--teal);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary svg { transform: rotate(180deg); }

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */

.cta {
  padding: clamp(30px, 5vw, 70px) 0 clamp(90px, 12vw, 150px);
  background: var(--sand);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, var(--deep) 0%, var(--ink) 60%, #0a4f52 100%);
  color: #fff;
  box-shadow: var(--shadow-l);
}

.cta-glow {
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 139, 134, 0.42), transparent 65%);
  pointer-events: none;
}

.cta-panel > * { position: relative; z-index: 1; }

.cta-title { margin: 18px auto 0; max-width: 16ch; }
.cta-title .accent-line { color: var(--aqua); }

.cta-text {
  margin: 22px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.cta-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 40px 0 0;
  padding: 0;
}

.cta-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-chips svg { color: var(--aqua); }
.cta-chips a { text-decoration: none; }
.cta-chips a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--deep);
  color: #fff;
  padding-top: clamp(60px, 8vw, 100px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand .brand { margin-bottom: 18px; }

.footer-brand > p {
  max-width: 320px;
  margin: 0 0 22px;
  color: #93aeae;
  font-size: 14px;
  line-height: 1.7;
}

.footer-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-stars { display: flex; gap: 2px; color: var(--gold); }

.footer-rating b { font-family: var(--font-display); font-weight: 560; font-size: 20px; }

.footer-rating small { color: #93aeae; font-size: 11px; }

.footer-col h4 {
  margin: 4px 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: #b9cdcd;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-col a:hover { color: #fff; transform: translateX(3px); }

.footer-col svg { flex: none; color: var(--aqua); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7fa0a0;
  font-size: 12.5px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.floating-wa {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: #fff;
  box-shadow: 0 12px 30px rgba(18, 140, 75, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.floating-wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 38px rgba(18, 140, 75, 0.55);
}

.wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: waPing 2.4s ease-out infinite;
}

@keyframes waPing {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 40px; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-head { position: static; }
  .why-grid { grid-template-columns: 1fr; gap: 70px; }
  .why-media { max-width: 520px; margin-inline: auto; width: 100%; }
}

@media (max-width: 860px) {
  .header-inner { height: 72px; }
  .menu-button { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 47, 53, 0.06);
    box-shadow: 0 24px 60px rgba(3, 35, 42, 0.22);
    color: var(--ink);
  }
  .site-nav.nav-open { display: flex; }
  .site-nav > a { padding: 13px 12px; border-radius: 12px; }
  .site-nav > a:hover { background: rgba(6, 47, 53, 0.05); }
  .site-nav > a::after { display: none; }
  .language-switch { align-self: flex-start; margin: 6px 8px 14px; background: rgba(6, 47, 53, 0.07); border-color: rgba(6, 47, 53, 0.16); }
  .btn-nav { justify-content: center; margin-top: 8px; }

  .site-header.open .menu-button span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  .site-header.open .menu-button span:nth-child(2) { opacity: 0; }
  .site-header.open .menu-button span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

  .hero { margin-top: -72px; }
  .hero-bg img { object-position: 58% 42%; }
  .hero-title { font-size: clamp(44px, 11vw, 64px); }
  .hero-rating { display: none; }
  .hero-scroll { display: none; }
  .hero-inner { padding-top: 140px; padding-bottom: 100px; }
  .hero-sub { font-size: 15px; }
  .hero-chips { gap: 10px 16px; }

  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .banner { min-height: 520px; }
}

@media (max-width: 700px) {
  .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .activity-media { aspect-ratio: 16 / 12; }
  .activity-media::after { background: linear-gradient(to top, rgba(3, 35, 42, 0.16), transparent 38%); }
  .activity-index { top: 10px; left: 10px; width: 30px; height: 30px; border-radius: 9px; font-size: 10px; }
  .activity-tag { top: 10px; right: 10px; padding: 5px 9px; font-size: 9px; }
  .activity-body { padding: 14px 14px 16px; gap: 8px; }
  .activity-meta { gap: 6px; }
  .duration-chip { padding: 5px 9px; font-size: 10px; gap: 5px; }
  .note-chip { padding: 5px 9px; font-size: 9px; }
  .activity-body h3 { font-size: 14px; line-height: 1.3; letter-spacing: -0.01em; min-height: 2.6em; -webkit-line-clamp: 2; }
  .activity-foot { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 2px; padding-top: 12px; }
  .price-block small { font-size: 9px; letter-spacing: 0.09em; margin-bottom: 2px; }
  .price-block strong { font-size: 15px; }
  .btn-book { width: 100%; justify-content: center; font-size: 11.5px; padding: 10px 12px; gap: 6px; white-space: nowrap; }
}

@media (max-width: 620px) {
  .hero-chips { display: none; }
  .hero-ctas, .cta-btns { align-items: stretch; flex-direction: column; }
  .hero-ctas .btn, .cta-btns .btn { width: 100%; }
  .stats-grid { gap: 12px; }
  .stat { padding: 26px 12px; }
  .stat strong { font-size: 38px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 12px; }
  .banner { min-height: 460px; }
  .banner-inner { padding-bottom: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .floating-wa { right: 15px; bottom: 15px; width: 54px; height: 54px; }
  .wave-divider { height: 64px; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .hero-title { font-size: clamp(38px, 12vw, 54px); }
  .hero-sub { font-size: 14.5px; }
  .hero-inner { padding-top: 130px; padding-bottom: 90px; }
  .hero-ctas { margin-top: 26px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 22px 12px; }
  .activity-body { padding: 14px 12px 15px; }
  .why-stack { gap: 14px; padding-bottom: 30px; }
  .why-b { transform: translateY(20px); border-width: 4px; }
  .why-badge { top: 4%; left: 0; padding: 11px 15px; font-size: 12px; }
  .testi-card { padding: 24px 20px; }
  .testi-card blockquote { font-size: 17px; }
  .footer-grid { gap: 28px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
}
