/* ============================================================
   REMOTE MADEIRA — Editorial Atlantic Design System
   ============================================================ */

/* Fonts loaded asynchronously in header.php */

:root {
  --paper:     #F7F4ED;
  --paper-2:   #EDE6D8;
  --card:      #FFFFFF;
  --ink:       #17140F;
  --ink-2:     #39342B;
  --muted:     #736B5E;
  --line:      rgba(23,20,15,.13);
  --line-2:    rgba(23,20,15,.08);
  --amber:     #D9760F;
  --amber-2:   #F2960E;
  --teal:      #1E5B4C;
  --wa:        #1FA855;

  --maxw:  1280px;
  --pad:   clamp(20px, 5vw, 80px);
  --r:     24px;
  --r-lg:  30px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --ease:  cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--amber); color: #fff; }

/* WordPress admin bar offset */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ============================================================
   TYPE PRIMITIVES
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--amber); display: inline-block; }
.eyebrow.on-dark { color: rgba(255,255,255,.72); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -.015em;
  font-size: clamp(34px, 5.4vw, 70px);
}
.display em { font-style: italic; font-weight: 500; }
.display .amber { color: var(--amber); }

.lead { color: var(--ink-2); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; max-width: 46ch; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: .01em;
  padding: 15px 18px 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: .4s var(--ease); white-space: nowrap;
}
.btn .arr {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0; transition: .4s var(--ease); font-size: 15px;
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink .arr { background: rgba(255,255,255,.14); }
.btn-ink:hover { background: #000; }
.btn-ink:hover .arr { background: var(--amber); transform: translateX(3px); }

.btn-amber { background: var(--amber); color: #fff; }
.btn-amber .arr { background: rgba(255,255,255,.22); }
.btn-amber:hover { background: #c4690a; }
.btn-amber:hover .arr { transform: translateX(3px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost .arr { background: rgba(23,20,15,.07); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost:hover .arr { background: var(--amber); color: #fff; transform: translateX(3px); }

.btn-white { background: #fff; color: var(--ink); }
.btn-white .arr { background: rgba(23,20,15,.08); }
.btn-white:hover .arr { background: var(--amber); color: #fff; transform: translateX(3px); }

.btn-outline-white {
  background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.32);
  backdrop-filter: blur(6px);
}
.btn-outline-white .arr { background: rgba(255,255,255,.16); }
.btn-outline-white:hover { background: rgba(255,255,255,.14); }
.btn-outline-white:hover .arr { transform: translateX(3px); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa .arr { background: rgba(255,255,255,.22); }
.btn-wa svg { width: 18px; height: 18px; }
.btn-wa:hover { background: #198f47; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  transition: .45s var(--ease);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: -.01em;
  color: var(--ink); transition: .4s;
}
.nav-logo img { height: 34px; width: auto; filter: none; transition: .4s; }
.nav-logo-text { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); transition: .4s; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a:not(.btn) {
  color: var(--ink-2); font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; transition: .3s;
}
.nav-links a:not(.btn):hover { background: rgba(23,20,15,.06); }
.nav .btn { padding: 12px 14px 12px 22px; margin-left: 8px; }

/* Hero nav — pages with dark full-screen background image */
.nav--hero .nav-logo { color: #fff; }
.nav--hero .nav-logo img { filter: brightness(0) invert(1); }
.nav--hero .nav-logo-text { color: #fff; }
.nav--hero .nav-links a:not(.btn) { color: rgba(255,255,255,.9); }
.nav--hero .nav-links a:not(.btn):hover { background: rgba(255,255,255,.12); }
.nav--hero .hamburger span { background: #fff; }

/* Non-hero pages: nav always opaque (no hero image behind it) */
.nav--solid {
  background: rgba(247,244,237,.97) !important;
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line-2);
}

/* scrolled */
.nav.scrolled {
  background: rgba(247,244,237,.92);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line-2);
  padding-top: 14px; padding-bottom: 14px;
}
.nav.scrolled .nav-logo { color: var(--ink); }
.nav.scrolled .nav-logo img { filter: none; }
.nav.scrolled .nav-logo-text { color: var(--ink); }
.nav.scrolled .nav-links a:not(.btn) { color: var(--ink-2); }
.nav.scrolled .nav-links a:not(.btn):hover { background: rgba(23,20,15,.06); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav.scrolled .hamburger span { background: var(--ink); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 var(--pad);
  transform: translateY(-100%); transition: .5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(30px, 8vw, 48px); color: #fff; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a em { font-style: italic; color: var(--amber-2); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8,12,18,.5) 0%,
    rgba(8,12,18,.05) 30%,
    rgba(8,12,18,.15) 62%,
    rgba(8,12,18,.82) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(64px, 9vw, 100px);
  padding-top: 140px;
  padding-inline: var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-content .eyebrow { color: rgba(255,255,255,.82); margin-bottom: 18px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(44px, 8vw, 110px);
  line-height: .92;
  letter-spacing: -.025em;
  margin-bottom: 0;
}
.hero-title em { font-style: italic; color: var(--amber-2); display: inline-block; }
.hero-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-top: 28px;
}
.hero-tagline {
  font-size: clamp(18px, 1.5vw, 22px);
  color: rgba(255,255,255,.88);
  font-weight: 400;
  line-height: 1.45;
  max-width: 28ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  right: var(--pad);
  bottom: 36px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: .3s; padding: 0;
}
.hero-dot.active { background: var(--amber-2); width: 24px; border-radius: 3px; }

.scroll-hint {
  position: absolute; left: var(--pad); bottom: 26px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
@media (max-width: 560px) { .scroll-hint { display: none; } }
@media (max-width: 768px) {
  .hero-content { padding-bottom: 80px; }
  .hero-dots { right: 20px; bottom: 28px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(380px, 55vw, 600px);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,18,.45) 0%, rgba(8,12,18,.08) 35%, rgba(8,12,18,.72) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(40px,5vw,64px);
  width: 100%; max-width: var(--maxw); margin: 0 auto;
}
.page-hero-content .eyebrow { color: rgba(255,255,255,.72); margin-bottom: 14px; }
.page-hero-content h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 7vw, 96px); line-height: .95; letter-spacing: -.025em;
  margin-bottom: 14px;
}
.page-hero-content p { font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,.8); max-width: 42ch; }

/* ============================================================
   FACTS STRIP
   ============================================================ */
.facts { background: var(--ink); color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact {
  padding: 34px clamp(20px, 3vw, 40px);
  border-left: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 7px;
}
.fact:first-child { border-left: 0; }
.fact-icon { color: var(--amber-2); display: flex; margin-bottom: 6px; }
.fact-t { font-weight: 800; font-size: 16px; letter-spacing: -.01em; }
.fact-d { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.45; }
@media (max-width: 860px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3) { border-left: 0; }
  .fact { border-top: 1px solid rgba(255,255,255,.08); }
  .fact:nth-child(1), .fact:nth-child(2) { border-top: 0; }
}
@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-left: 0 !important; border-top: 1px solid rgba(255,255,255,.08) !important; }
  .fact:first-child { border-top: 0 !important; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(72px, 9vw, 140px) 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head .h-left { max-width: 640px; }
.section-head .display { margin-top: 18px; }
.section-head .h-right { max-width: 480px; padding-bottom: 6px; }

/* ============================================================
   ACTIVITIES
   ============================================================ */
.filters { display: flex; gap: 8px; flex-wrap: nowrap; margin-top: 18px; }
.filter {
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--ink-2);
  cursor: pointer; transition: .3s;
}
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.act {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/3.7; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; isolation: isolate; transition: .5s var(--ease);
  text-decoration: none;
}
.act-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: 1s var(--ease); z-index: -2;
}
.act::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,12,16,.28) 0%, rgba(10,12,16,0) 32%, rgba(10,12,16,.55) 70%, rgba(10,12,16,.9) 100%);
}
.act:hover { transform: translateY(-6px); }
.act:hover .act-img { transform: scale(1.07); }
.act-top { position: absolute; top: 20px; left: 20px; right: 20px; display: flex; justify-content: space-between; align-items: flex-start; z-index: 2; }
.badge {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(4px);
}
.badge-amber { background: var(--amber); color: #fff; }
.badge-fire  { background: #E0512B; color: #fff; }
.badge-teal  { background: var(--teal); color: #fff; }
.badge-dark  { background: rgba(0,0,0,.7); color: #fff; }
.badge-green { background: var(--teal); color: #fff; }
.act-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.act-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.act-tags span {
  font-size: 11.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.18);
}
.act h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 2.6vw, 38px); line-height: 1; letter-spacing: -.01em;
}
.act-foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.22); padding-top: 16px;
}
.act-price { font-weight: 500; font-size: 15px; }
.act-price b { font-family: var(--serif); font-size: 26px; font-weight: 600; margin-right: 2px; }
.act-price span { color: rgba(255,255,255,.7); font-size: 13px; }
.act-arr {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--ink);
  display: grid; place-items: center; font-size: 18px;
  transition: .4s var(--ease);
}
.act:hover .act-arr { background: var(--amber); color: #fff; transform: rotate(-45deg); }
@media (max-width: 900px) { .acts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .acts { grid-template-columns: 1fr; } .act { aspect-ratio: 3/3.4; } }

/* private strip */
.private {
  margin-top: 20px; background: var(--ink); border-radius: var(--r-lg); color: #fff;
  padding: clamp(26px, 3.5vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.private::before {
  content: ""; position: absolute; right: -40px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,118,15,.5), transparent 70%); filter: blur(20px);
}
.private .pr-txt { position: relative; max-width: 560px; }
.private .pr-txt p:first-child { margin-bottom: 8px; }
.private h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.08; letter-spacing: -.01em;
}
.private .btn { position: relative; }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.step {
  background: var(--paper); padding: clamp(30px, 3.4vw, 44px);
  display: flex; flex-direction: column; gap: 16px; transition: .4s;
}
.step:hover { background: #fff; }
.step-n {
  font-family: var(--serif); font-size: clamp(52px, 6vw, 84px);
  font-weight: 500; line-height: .8; color: var(--amber); opacity: .9;
}
.step h3 { font-family: var(--sans); font-weight: 800; font-size: 21px; letter-spacing: -.01em; margin-top: 6px; }
.step p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   WHY / MARCOS
   ============================================================ */
.why { background: var(--paper-2); }
.why-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
.why-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/4.4; }
.why-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--amber); color: #fff; border-radius: 18px;
  padding: 16px 20px; display: flex; align-items: baseline; gap: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.why-badge b { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: .8; }
.why-badge span { font-size: 12px; font-weight: 600; line-height: 1.25; text-transform: uppercase; letter-spacing: .04em; opacity: .92; }
.why-text .display { margin: 16px 0 20px; font-size: clamp(30px, 4vw, 56px); }
.why-text > p { color: var(--ink-2); max-width: 48ch; font-size: 17px; }
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 32px 0; border-top: 1px solid var(--line); }
.cred {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.cred:nth-child(even) { padding-left: 24px; padding-right: 0; border-right: 0; }
.cred strong { font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -.01em; }
.cred p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.why-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  border-top: 1px solid var(--line); padding-top: 26px; margin-bottom: 30px;
}
.why-stat b { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; display: block; line-height: 1; }
.why-stat span { font-size: 11.5px; color: var(--muted); line-height: 1.3; display: block; margin-top: 8px; text-transform: uppercase; letter-spacing: .03em; }
/* mobile-only image hidden on desktop */
.why-media-mobile { display: none; }

@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-media { display: none; } /* hide desktop image */
  .why-text { order: 1; }
  .why-media-mobile {
    display: block;
    border-radius: var(--r-lg); overflow: hidden;
    aspect-ratio: 4/3; margin: 24px 0;
  }
  .why-media-mobile img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .creds {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }
  .cred {
    padding: 16px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 20px 8px; }
}

/* ============================================================
   INSTAGRAM STRIP
   ============================================================ */
.insta-section { padding: 56px 0 64px; }
.insta-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}
.insta-title .display { margin-top: 10px; }
.insta-profile {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 60px; padding: 10px 16px 10px 10px;
  text-decoration: none; color: var(--ink);
  transition: box-shadow .2s;
  flex-shrink: 0;
}
.insta-profile:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.insta-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.insta-meta { display: flex; flex-direction: column; line-height: 1.3; }
.insta-meta strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.insta-meta span { font-size: 12px; color: var(--muted); }
.insta-follow {
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 700; padding: 7px 16px;
  border-radius: 60px; flex-shrink: 0;
}
.insta-track-wrap { overflow: hidden; position: relative; }
.insta-track {
  display: flex; gap: 16px;
  padding: 4px 0 20px;
  width: max-content;
  animation: rm-marquee 42s linear infinite;
}
.insta-track:hover { animation-play-state: paused; }
@keyframes rm-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.insta-item {
  flex-shrink: 0;
  width: clamp(200px, 20vw, 270px);
  height: 400px;
  border-radius: var(--r);
  overflow: hidden;
  background: #111;
  position: relative;
}
.insta-item iframe,
.insta-item video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}
@media (max-width: 700px) {
  .insta-item { width: 72vw; height: 360px; }
  .insta-header { align-items: flex-start; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--ink); color: #fff; }
.rev-top {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: clamp(24px, 5vw, 70px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.rev-score { display: flex; align-items: center; gap: 14px; }
.rev-score .badge-logo {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-weight: 800; font-size: 18px; flex-shrink: 0; color: #fff;
}
.rev-score .stars { color: var(--amber-2); font-size: 15px; letter-spacing: 2px; }
.rev-score .lbl { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 3px; }
.rev-score b { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.rev-mid { text-align: center; }
.rev-mid .display { color: #fff; }
.rev-mid p { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 10px; }
.rev-score.right { justify-content: flex-end; }

.rev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 28px;
  display: flex; flex-direction: column; gap: 16px; transition: .4s;
}
.rev-card:hover { background: rgba(255,255,255,.08); }
.rev-card .top { display: flex; justify-content: space-between; align-items: center; }
.rev-card .stars { color: var(--amber-2); letter-spacing: 2px; font-size: 14px; }
.rev-card .src { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 5px 10px; border-radius: 999px; }
.rev-card p { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.92); font-weight: 400; }
.rev-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.rev-card .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0; }
.rev-card .nm { font-weight: 700; font-size: 14px; }
.rev-card .meta { font-size: 12px; color: rgba(255,255,255,.55); }
.rev-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 42px; }
.rev-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2); font-size: 13.5px; font-weight: 600; color: #fff; transition: .3s;
}
.rev-link:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.rev-link .sc { color: var(--amber-2); font-weight: 700; }
@media (max-width: 880px) {
  .rev-top { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .rev-score, .rev-score.right { justify-content: center; }
  .rev-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   GUARANTEES
   ============================================================ */
.guards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.guard {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; background: #fff;
  display: flex; flex-direction: column; gap: 12px; min-height: 200px;
}
.guard-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(217,118,15,.1); color: var(--amber);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guard h4 { font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.guard p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.guard.dark { background: var(--ink); border-color: var(--ink); }
.guard.dark h4 { color: #fff; }
.guard.dark p { color: rgba(255,255,255,.65); }
.guard.dark .guard-icon { background: rgba(255,255,255,.08); color: var(--amber-2); }
.guard.amber-card { background: var(--amber); border-color: var(--amber); }
.guard.amber-card h4 { color: #fff; }
.guard.amber-card p { color: rgba(255,255,255,.88); }
.guard.amber-card .guard-icon { background: rgba(255,255,255,.2); color: #fff; }
@media (max-width: 880px) { .guards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .guards { grid-template-columns: 1fr; } }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; }
.cta-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,16,.78), rgba(8,11,16,.62)); }
.cta-section .container { position: relative; z-index: 2; padding-top: clamp(80px, 11vw, 150px); padding-bottom: clamp(80px, 11vw, 150px); }
.cta-section .eyebrow { justify-content: center; color: var(--amber-2); }
.cta-section .eyebrow::before { background: var(--amber-2); }
.cta-section h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(42px, 7.5vw, 104px); line-height: .95; letter-spacing: -.02em; margin: 18px 0; }
.cta-section h2 em { font-style: italic; color: var(--amber-2); }
.cta-section p { color: rgba(255,255,255,.82); max-width: 48ch; margin: 0 auto 32px; font-size: 17px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: clamp(56px, 7vw, 90px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo-link { font-family: var(--serif); font-size: 24px; color: #fff; font-weight: 600; margin-bottom: 18px; display: inline-block; }
.footer-logo-link img { height: 34px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 14.5px; line-height: 1.6; max-width: 30ch; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #fff; transition: .3s; }
.footer-socials a:hover { background: var(--amber); border-color: var(--amber); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.5); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: .25s; }
.footer-col a:hover { color: #fff; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact-list .ci { display: flex; gap: 11px; font-size: 14.5px; }
.footer-contact-list .ci .k { color: rgba(255,255,255,.45); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; width: 62px; flex-shrink: 0; padding-top: 2px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(40px, 5vw, 64px); padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1/-1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(31,168,85,.4); transition: .3s; animation: wapulse 2.6s infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wapulse {
  0%   { box-shadow: 0 10px 30px rgba(31,168,85,.4), 0 0 0 0 rgba(31,168,85,.4); }
  70%  { box-shadow: 0 10px 30px rgba(31,168,85,.4), 0 0 0 16px rgba(31,168,85,0); }
  100% { box-shadow: 0 10px 30px rgba(31,168,85,.4), 0 0 0 0 rgba(31,168,85,0); }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ACTIVITY PAGES (coasteering, canyoning, climbing)
   ============================================================ */

/* Page wrapper — sits below the fixed nav */
.act-page-wrap { padding-top: clamp(80px, 10vw, 110px); padding-bottom: clamp(60px, 8vw, 100px); }

/* Two-column layout: content left, sticky booking card right */
.act-two-col { display: grid; grid-template-columns: 1fr 380px; gap: clamp(32px, 5vw, 64px); align-items: start; padding-top: 20px; }
.act-content-col { min-width: 0; }
/* Booking column — natural position, no sticky */
.act-booking-col { position: static; }

/* Floating booking bar — appears when card scrolls out of view */
.bk-float-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(0,0,0,.10);
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform .3s var(--ease);
  pointer-events: none;
}
.bk-float-bar.visible { transform: translateY(0); pointer-events: all; }
.bk-float-info { display: flex; flex-direction: column; gap: 1px; }
.bk-float-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.bk-float-price { font-size: 13px; color: var(--muted); }
.bk-float-bar .btn { flex-shrink: 0; white-space: nowrap; }

/* Hide float bar on mobile (has its own booking layout) */
@media (max-width: 960px) { .bk-float-bar { display: none; } }

/* Gallery grid — fills the left content column */
.act-gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; height: clamp(260px, 34vw, 440px); gap: 3px; border-radius: var(--r); overflow: hidden; }
.act-gallery-main { grid-row: 1 / 3; overflow: hidden; }
.act-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: .5s; }
.act-gallery-main:hover img { transform: scale(1.03); }
.act-gallery-side { grid-row: 1 / 3; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; }
.act-gallery-side a { overflow: hidden; display: block; }
.act-gallery-side img { width: 100%; height: 100%; object-fit: cover; display: block; transition: .5s; }
.act-gallery-side a:hover img { transform: scale(1.05); }
/* "+N more" overlay on last gallery thumbnail */
.act-gallery-more { position: relative; }
.act-gallery-more-count {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,8,5,.48); color: #fff; font-size: 22px; font-weight: 700;
  letter-spacing: -.01em; pointer-events: none;
  transition: background .2s;
}
.act-gallery-more:hover .act-gallery-more-count { background: rgba(10,8,5,.62); }

/* Layout (kept for compatibility) */
.product-layout { display: grid; grid-template-columns: 1fr 400px; gap: clamp(30px, 5vw, 64px); align-items: start; padding: clamp(40px, 6vw, 80px) 0; }

/* Breadcrumb */
.act-breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; padding-top: 8px; }
.act-breadcrumb a { color: var(--muted); text-decoration: none; }
.act-breadcrumb a:hover { color: var(--ink); }

/* Title */
.act-h1 { font-family: var(--serif); font-size: clamp(34px, 4.5vw, 58px); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; margin: 8px 0 12px; }
.act-tagline { font-size: 14px; color: var(--muted); letter-spacing: .02em; line-height: 1.6; margin-bottom: 4px; }

/* Perfect for */
.act-perfect-for { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line); }
.act-perfect-for h3 { font-family: var(--serif); font-size: clamp(18px, 2vw, 24px); font-weight: 500; margin-bottom: 20px; letter-spacing: -.01em; }
.act-pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.act-pf-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.act-pf-icon { font-size: 28px; line-height: 1; }
.act-pf-item strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.act-pf-item p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* Sections */
.act-section { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.act-section h2 { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 30px); font-weight: 500; margin-bottom: 16px; letter-spacing: -.01em; }
.act-section p { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }

/* Checklist */
.act-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.act-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.act-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(38,153,100,.12); color: #269964; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.act-arrow { width: 22px; height: 22px; border-radius: 50%; background: rgba(217,118,15,.1); color: var(--amber); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* Map link */
.act-map-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--amber); text-decoration: none; margin: 8px 0 16px; }
.act-map-link:hover { text-decoration: underline; }

/* Reviews */
.act-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.act-reviews-3 { grid-template-columns: 1fr 1fr 1fr; }
.act-review { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; display: flex; flex-direction: column; gap: 0; }
.act-review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.act-review-stars { color: var(--amber-2); font-size: 13px; letter-spacing: 1px; }
.act-review-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.act-review-badge--google { background: #f1f3f4; color: #3c4043; }
.act-review-badge--ta { background: #e8f5e0; color: #00aa6c; }
.act-review p { font-size: 13px; color: var(--ink-2); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.act-review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.act-review-av { width: 32px; height: 32px; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.act-review-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.act-review-author span { font-size: 11px; color: var(--muted); }

/* FAQ */
.act-faq { display: flex; flex-direction: column; gap: 0; margin-top: 20px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left; gap: 12px; }
.faq-q:hover { color: var(--amber); }
.faq-icon { font-size: 20px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--amber); }
.faq-a { display: none; padding-bottom: 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14.5px; color: var(--ink-2); line-height: 1.65; margin: 0; }

/* Booking card */
.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.bk-price-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.bk-price { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; color: var(--ink); }
.bk-per { font-size: 13px; color: var(--muted); margin-top: 4px; }
.bk-info { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.bk-info-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.bk-label { color: var(--muted); font-weight: 500; }
.bk-val { font-weight: 600; color: var(--ink); text-align: right; }
.bk-form label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; margin-top: 16px; }
.bk-radio-label { display: flex !important; align-items: center; gap: 8px; font-size: 14px; font-weight: 500 !important; text-transform: none !important; letter-spacing: 0 !important; color: var(--ink) !important; cursor: pointer; margin-top: 0 !important; margin-bottom: 0 !important; }
.bk-form input:not([type="radio"]):not([type="checkbox"]), .bk-form select { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--paper); transition: .2s; appearance: none; -webkit-appearance: none; box-sizing: border-box; }
.bk-form input:not([type="radio"]):not([type="checkbox"]):focus, .bk-form select:focus { outline: none; border-color: var(--amber); }
.bk-form input[type="radio"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--amber); cursor: pointer; margin: 0; }
.bk-total-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); margin-top: 20px; padding-top: 16px; font-size: 14px; color: var(--muted); }
.bk-total-row strong { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); }
.bk-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group-row-3 { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.form-group-row-3 .form-group label { font-size: 10px; letter-spacing: .06em; white-space: nowrap; }
.form-group-row-3 input { padding: 10px 8px; font-size: 14px; }
.bk-equipment-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 4px 0 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.bk-equipment-label span { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

/* WhatsApp desktop / mobile control */
.bk-wa-desktop { margin-top: 12px; text-align: center; }
.act-wa-mobile  { display: none; }

/* Mobile gallery carousel — hidden on desktop */
.act-gallery-mobile { display: none; }
.agm-track { display: flex; height: 100%; transition: transform .35s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.agm-slide { flex-shrink: 0; width: 100%; height: 100%; overflow: hidden; }
.agm-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.agm-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.82); border: none;
  font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.18); transition: background .2s;
  color: var(--ink); z-index: 2;
}
.agm-btn:hover { background: #fff; }
.agm-prev { left: 12px; }
.agm-next { right: 12px; }
.agm-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.agm-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); transition: background .2s, transform .2s; }
.agm-dot-active { background: #fff; transform: scale(1.3); }

/* Mobile */
@media (max-width: 960px) {
  .act-two-col { grid-template-columns: 1fr; padding-top: 16px; }
  .act-booking-col { position: static; order: -1; }
  .act-reviews-3 { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; padding-top: 32px; }
  .booking-card { position: static; }
  .act-pf-grid { grid-template-columns: 1fr 1fr; }
  /* Switch gallery: hide desktop grid, show mobile carousel */
  .act-gallery-desktop { display: none; }
  .act-gallery-mobile {
    display: block; position: relative;
    height: clamp(240px, 60vw, 340px);
    border-radius: var(--r); overflow: hidden;
    margin-bottom: 4px;
  }
  /* WhatsApp: hide from sidebar, show after FAQ */
  .bk-wa-desktop { display: none; }
  .act-wa-mobile {
    display: block; text-align: center;
    padding: 32px 0 60px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .act-wa-mobile p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
}
@media (max-width: 560px) {
  .act-page-wrap { padding-top: 70px; }
  .act-reviews-3 { grid-template-columns: 1fr; }
  .act-pf-grid { grid-template-columns: 1fr; }
  .form-group-row-3 { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
}

/* ============================================================
   CANYONING HUB — level selector tabs + level comparison cards
   ============================================================ */

/* "Choose your level" label above tabs */
.bk-choose-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

/* Booking card level tabs */
.bk-level-tabs {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--paper);
}
.bk-level-tab {
  flex: 1; padding: 10px 6px; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: transparent; transition: background .15s, color .15s;
  border-right: 1px solid var(--line);
}
.bk-level-tab:last-child { border-right: none; }
.bk-tab-label { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.bk-tab-price { font-size: 16px; font-weight: 800; color: var(--ink); }
.bk-level-tab.active { background: var(--ink); }
.bk-level-tab.active .bk-tab-label { color: rgba(255,255,255,.7); }
.bk-level-tab.active .bk-tab-price { color: #fff; }
.bk-level-tab:hover:not(.active) { background: rgba(0,0,0,.04); }

/* Level comparison cards */
.cyn-levels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 20px; }
.cyn-level {
  border: 2px solid var(--line); border-radius: var(--r); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 10px; background: #fff;
  transition: border-color .2s, box-shadow .2s; cursor: default;
}
.cyn-level--active { border-color: var(--amber); box-shadow: 0 4px 20px rgba(217,118,15,.12); }
.cyn-level-name { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.cyn-level-price { font-size: 30px; font-weight: 800; color: var(--ink); line-height: 1; }
.cyn-level-specs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--muted); flex: 1; border-top: 1px solid var(--line); padding-top: 12px; }
.cyn-level-specs li { display: flex; align-items: center; gap: 7px; }
.cyn-booking-type--online { color: #1a7a4a !important; font-weight: 600; }
.cyn-booking-type--wa { color: var(--amber) !important; font-weight: 600; }
.cyn-select-btn { width: 100%; justify-content: center; margin-top: 4px; font-size: 13px; padding: 12px; }
.cyn-details-link { display: block; text-align: center; font-size: 13px; color: var(--muted); text-decoration: none; margin-top: 2px; }
.cyn-details-link:hover { color: var(--ink); }
@media (max-width: 760px) {
  .cyn-levels { grid-template-columns: 1fr; }
}

/* ============================================================
   ACTIVITY PAGE — inline review strip
   ============================================================ */
.act-reviews-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 40px 0 0; padding-top: 40px; border-top: 1px solid var(--line);
}
.act-review-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.act-review-stars { color: var(--amber-2); font-size: 13px; letter-spacing: 3px; }
.act-review-item p { font-size: 14px; color: var(--ink-2); line-height: 1.65; font-style: italic; flex: 1; margin: 0; }
.act-review-item span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
@media (max-width: 600px) { .act-reviews-strip { grid-template-columns: 1fr; } }

/* ============================================================
   ALSO EXPLORE — cross-sell cards at bottom of activity pages
   ============================================================ */
.act-also { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
@media (max-width: 960px) { .act-also { margin-top: 24px; } }
.act-also-title { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 3vw, 26px); margin: 0 0 24px; color: var(--ink); }
.act-also-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.act-also-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease);
  background: #fff;
}
.act-also-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); }
.act-also-img { aspect-ratio: 16/9; overflow: hidden; }
.act-also-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); display: block; }
.act-also-card:hover .act-also-img img { transform: scale(1.05); }
.act-also-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.act-also-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 0; color: var(--ink); }
.act-also-body p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; flex: 1; }
.act-also-price { font-size: 15px; font-weight: 700; color: var(--amber); margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.act-also-price .arr {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--amber); color: #fff;
  font-size: 14px; flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.act-also-card:hover .act-also-price .arr { background: var(--ink); transform: translateX(3px); }
@media (max-width: 560px) { .act-also-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT PAGES (legacy)
   ============================================================ */
.product-layout { display: grid; grid-template-columns: 1fr 420px; gap: clamp(30px, 5vw, 64px); align-items: start; padding: clamp(48px, 7vw, 96px) 0; }
.product-main h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; letter-spacing: -.01em; margin: 24px 0 16px; }
.product-main p { color: var(--ink-2); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.product-includes { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.product-includes li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-2); line-height: 1.4; }
.product-includes li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.spec-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; }
.spec-item .spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.spec-item .spec-val { font-weight: 700; font-size: 16px; color: var(--ink); }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 32px 0; }
.product-gallery img { border-radius: var(--r); width: 100%; height: 220px; object-fit: cover; }
.product-gallery img:first-child { grid-column: 1/-1; height: 300px; }

.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.booking-card .price-display { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--ink); line-height: 1; margin: 12px 0 4px; }
.booking-card .price-display span { font-size: 16px; color: var(--muted); font-weight: 400; font-family: var(--sans); }
.booking-card label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 6px; margin-top: 20px; }
.booking-card select, .booking-card input[type="date"], .booking-card input[type="text"] { width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--paper); transition: .3s; appearance: none; -webkit-appearance: none; }
.booking-card select:focus, .booking-card input:focus { outline: none; border-color: var(--amber); }
.booking-total-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); margin-top: 20px; padding-top: 16px; font-size: 14px; color: var(--muted); }
.booking-total-row strong { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.booking-card .btn { width: 100%; justify-content: center; margin-top: 14px; font-size: 15px; }
.booking-policy { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.booking-policy a { color: var(--amber); }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } .booking-card { position: static; } }

/* ============================================================
   BOOK NOW PAGE
   ============================================================ */
.book-now-section { padding: clamp(56px, 8vw, 100px) 0; }
.book-now-header { text-align: center; margin-bottom: 48px; }
.book-now-header h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 500; letter-spacing: -.01em; margin-bottom: 10px; }
.book-now-header p { color: var(--muted); font-size: 16px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: .4s var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(23,20,15,.1); }
.product-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badge { position: absolute; top: 14px; left: 14px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.product-card-body { padding: 24px; }
.product-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 10px; flex-wrap: nowrap; }
.product-card-top h3 { font-family: var(--serif); font-size: clamp(17px, 1.8vw, 22px); font-weight: 500; letter-spacing: -.01em; flex: 1; min-width: 0; }
.product-price { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--amber); white-space: nowrap; flex-shrink: 0; }
.product-price sub { font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--muted); }
.product-card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.product-card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.product-spec { font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--ink-2); }
.product-card-actions { display: flex; gap: 10px; }
.product-card-actions .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 13px; }
.product-card-actions .btn .arr { display: none; }
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-page-section { padding: clamp(56px, 8vw, 100px) 0; }
.reviews-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: .4s; }
.review-card:hover { box-shadow: 0 12px 40px rgba(23,20,15,.08); }
.review-stars { display: flex; gap: 3px; }
.review-star { color: var(--amber-2); font-size: 16px; }
.review-text { font-family: var(--serif); font-size: 17px; line-height: 1.55; color: var(--ink-2); font-weight: 400; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.review-author-name { font-weight: 700; font-size: 14px; }
.review-author-meta { font-size: 12px; color: var(--muted); }
@media (max-width: 880px) { .reviews-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-cards-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* About page — no-hero header */
.about-header-section { padding: clamp(96px, 9vw, 120px) 0 clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.about-header-h1 { font-family: var(--serif); font-size: clamp(42px, 7vw, 80px); font-weight: 500; letter-spacing: -.02em; line-height: 1.08; margin: 16px 0 24px; }
.about-header-lead { max-width: 580px; font-size: clamp(16px, 1.8vw, 19px); color: var(--ink-2); line-height: 1.7; }
.about-header-subtitle { font-size: clamp(16px, 1.8vw, 20px); color: var(--ink-2); margin: 0; }

.about-section { padding: clamp(64px, 9vw, 120px) 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.about-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; letter-spacing: .02em; }
.about-quote { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--ink-2); border-left: 3px solid var(--amber); padding: 12px 0 12px 20px; margin: 24px 0 0; line-height: 1.5; }

/* Photo strip */
.strip-section { display: flex; height: 320px; gap: 4px; overflow: hidden; }
.strip-item { flex: 1; overflow: hidden; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.strip-item:hover img { transform: scale(1.04); }
@media (max-width: 640px) {
  .strip-section {
    height: 260px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 6px;
  }
  .strip-section::-webkit-scrollbar { display: none; }
  .strip-item { flex: 0 0 80vw; width: 80vw; scroll-snap-align: start; overflow: hidden; }
  .strip-item:nth-child(n+4) { display: block; }
}

/* About values (dark section) */
.about-values { background: var(--ink); padding: clamp(56px, 8vw, 100px) 0; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-item { text-align: center; }
.value-item-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.value-item h3 { font-family: var(--serif); font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.value-item p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }
@media (max-width: 860px) { .about-values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } .about-values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .about-values-grid { grid-template-columns: 1fr; } }

/* About activities section */
.about-activities-section { padding: clamp(56px, 8vw, 96px) 0; background: var(--paper); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { padding: clamp(56px, 8vw, 100px) 0; }
.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 6px; }
.faq-cat-btn { font-family: var(--sans); font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink-2); cursor: pointer; text-align: left; transition: .3s; }
.faq-cat-btn:hover { border-color: var(--ink); }
.faq-cat-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-group { margin-bottom: 40px; }
.faq-group-title { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-weight: 500; margin-bottom: 16px; color: var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; text-align: left; padding: 18px 0; font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--ink); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-question::after { content: "+"; font-size: 22px; color: var(--amber); flex-shrink: 0; transition: .3s; }
.faq-question.open::after { content: "−"; }
.faq-answer { display: none; padding: 0 0 18px; font-size: 15px; color: var(--muted); line-height: 1.65; }
.faq-answer.open { display: block; }
@media (max-width: 760px) { .faq-layout { grid-template-columns: 1fr; } .faq-sidebar { position: static; flex-direction: row; flex-wrap: wrap; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: clamp(56px, 8vw, 100px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.contact-info h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 500; letter-spacing: -.01em; margin-bottom: 20px; }
.contact-info p { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; gap: 14px; }
.contact-detail .cd-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; width: 56px; flex-shrink: 0; padding-top: 3px; }
.contact-detail a, .contact-detail span { font-size: 15px; color: var(--ink-2); font-weight: 500; }
.contact-detail a:hover { color: var(--amber); }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; }
.contact-form-wrap h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 24px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--paper); transition: .3s; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--amber); }
.form-field textarea { height: 120px; resize: vertical; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* Contact simple (no-form layout) */
.contact-simple { display: flex; gap: 64px; align-items: flex-start; padding: clamp(40px,6vw,80px) 0; }
.contact-block { flex: 1; }
.contact-block-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 8px; }
.contact-block-value { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 30px); font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.contact-block-divider { width: 1px; background: var(--line); align-self: stretch; flex-shrink: 0; }
@media (max-width: 640px) { .contact-simple { flex-direction: column; gap: 40px; } .contact-block-divider { width: 100%; height: 1px; } }

/* ============================================================
   POLICY BAR
   ============================================================ */
.policy-bar { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 28px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.policy-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-2); }

/* Transport radio group */
.bk-radio-group { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.bk-radio-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.bk-radio-label input[type="radio"] { accent-color: var(--amber); width: 16px; height: 16px; flex-shrink: 0; }

/* Per-person equipment label */
.bk-person-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted);
  margin: 14px 0 8px; padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.bk-person-label:first-child { margin-top: 2px; }

/* ============================================================
   BOOKING TYPE STRIP
   ============================================================ */

/* Shared strip */
.bk-type {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: 12px; margin-bottom: 18px;
}
.bk-type-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.bk-type-text { display: flex; flex-direction: column; gap: 2px; }
.bk-type-text strong { font-size: 13px; font-weight: 700; line-height: 1.3; }
.bk-type-text span   { font-size: 12px; line-height: 1.4; }

/* Online booking variant — green tint */
.bk-type--online { background: rgba(38,153,100,.08); }
.bk-type--online .bk-type-icon { background: rgba(38,153,100,.14); color: #269964; }
.bk-type--online .bk-type-text strong { color: #1a7a4a; }
.bk-type--online .bk-type-text span   { color: #3a8a5a; }

/* WhatsApp / arrange variant — amber tint */
.bk-type--wa { background: rgba(217,118,15,.08); }
.bk-type--wa .bk-type-icon { background: rgba(217,118,15,.14); color: var(--amber); }
.bk-type--wa .bk-type-text strong { color: var(--amber); }
.bk-type--wa .bk-type-text span   { color: var(--ink-2); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 8, 5, .94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.lb-overlay.lb-open { opacity: 1; pointer-events: all; }

.lb-img-wrap {
  display: flex; align-items: center; justify-content: center;
  max-width: calc(100vw - 120px); max-height: calc(100vh - 80px);
}
.lb-img-wrap img {
  max-width: 100%; max-height: calc(100vh - 80px);
  object-fit: contain; border-radius: 10px; display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transition: opacity .2s ease;
}
.lb-img-wrap img.lb-loading { opacity: 0; }

.lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  color: #fff; font-size: 20px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,.24); }

.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none;
  color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 1;
}
.lb-arrow:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: 13px; font-family: var(--sans);
  letter-spacing: .05em; pointer-events: none;
}

/* hide arrows when only 1 photo */
.lb-overlay[data-count="1"] .lb-arrow { display: none; }

@media (max-width: 600px) {
  .lb-img-wrap { max-width: 100vw; }
  .lb-arrow { width: 40px; height: 40px; font-size: 22px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}


/* ============================================================
   MOBILE BOOK BAR — sticky CTA on product pages
   ============================================================ */
.act-mobile-book-bar {
  display: none;
  position: fixed; bottom: 20px; left: 16px; z-index: 50;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.act-mobile-book-bar.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.act-mobile-book-bar a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  white-space: nowrap;
}
@media (max-width: 960px) {
  .act-mobile-book-bar { display: block; }
}

/* ============================================================
   RESPONSIVE / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transform: none; transition: opacity 0.5s; }
  .wa-float { animation: none; }
}
