/* ==========================================================================
   JONAMASS TRAVEL & TOURS — Design System
   Educational consultancy + travel agency, Takoradi, Ghana.

   A deliberately separate identity from the Jonamass Group parent site:
   trustworthy blue, amber accent, light ground, rounded and approachable —
   where the group site is charcoal, brass, square and editorial.

   CONTENTS
   01. Tokens
   02. Base & typography
   03. Layout
   04. Buttons & links
   05. Utility bar, header, navigation
   06. Hero
   07. Cards, pillars, grids
   08. Tabs
   09. Process / pathway steps
   10. Comparison table
   11. Accordion (FAQ + checklists)
   12. Testimonials
   13. Forms & modal
   14. Footer
   15. Floating WhatsApp
   16. Social embed
   17. Motion
   18. Responsive
   ========================================================================== */

/* 01. Tokens ============================================================== */

:root {
  /* Brand — every value below is contrast-checked, see README */
  --blue:        #0b4f9e;   /* primary — 8.0:1 on white                     */
  --blue-deep:   #0a2540;   /* navy ground — white sits at 15.5:1           */
  --blue-mid:    #123a63;
  --blue-tint:   #eaf1fa;   /* soft blue wash                                */

  --amber:       #f5a524;   /* accent FILL only — charcoal on it is 7.6:1   */
  --amber-ink:   #9a6410;   /* accent TEXT on light grounds — 5.0:1         */
  --amber-soft:  #fff4e0;

  --charcoal:    #1f2430;   /* body text — 15.5:1 on white                  */
  --slate:       #5a6472;   /* muted text — 6.0:1 on white                  */
  --white:       #ffffff;
  --gray:        #f4f6f9;
  --gray-200:    #e4e9f0;

  --line:        #e1e7ef;
  --line-dark:   rgba(255, 255, 255, 0.16);

  --ok:          #147a4a;
  --warn:        #9a6410;

  /* Type */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --shell: clamp(1.15rem, 4vw, 4rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
  --shadow:    0 10px 30px -12px rgba(10, 37, 64, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(10, 37, 64, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --util-h: 40px;
  --nav-h: 76px;
}

/* 02. Base & typography =================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe { max-width: 100%; display: block; }
img, video { height: auto; }

h1, h2, h3, h4 {
  margin: 0 0 0.55em;
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }

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

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

.h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.65rem); }
.h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--blue-tint);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--amber { background: var(--amber-soft); color: var(--amber-ink); }
.eyebrow--onDark { background: rgba(255, 255, 255, 0.14); color: #fff; }

.lede { font-size: clamp(1.02rem, 1.4vw, 1.19rem); color: var(--slate); max-width: 62ch; }
.muted { color: var(--slate); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* 03. Layout ============================================================== */

.shell { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--shell); }
.shell--narrow { max-width: 940px; }

.section { padding-block: var(--section-y); }
.section--gray { background: var(--gray); }
.section--tint { background: var(--blue-tint); }
.section--navy { background: var(--blue-deep); color: #fff; }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 4rem); }

.section--navy .lede,
.section--navy .muted { color: rgba(255, 255, 255, 0.78); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { max-width: 760px; margin-inline: auto; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.split { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .split--wide { grid-template-columns: 1.2fr 1fr; } }

.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--16x9 { aspect-ratio: 16 / 9; }

/* Embedded maps and video fill the frame the same way images do. */
.media iframe { width: 100%; height: 100%; border: 0; display: block; }

/* A 16:9 map on a phone is only about 210px tall — too cramped to read street
   names or drag. Give the map a floor and let it go taller than the ratio.

   The iframe is positioned rather than sized with height:100%. When min-height
   overrides the height that aspect-ratio computed, the parent's height is no
   longer definite, so a percentage height on the child resolves to auto and the
   iframe falls back to its own height attribute — 700px inside a 340px frame,
   which is what pushed the map out of its box on small screens. inset:0 against
   a positioned parent always fills the height the box actually ended up with. */
.media--map {
  position: relative;
  width: 100%; max-width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 400px;
  background: var(--gray);
}
.media--map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
@media (max-width: 767.98px) { .media--map { aspect-ratio: 4 / 3; min-height: 340px; } }

/* 04. Buttons & links ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 1.05em; }

.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #08407f; box-shadow: var(--shadow); }

/* Amber is a fill, never small text on white — charcoal on amber is 7.6:1 */
.btn--amber { background: var(--amber); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.btn--amber:hover { background: #e0940f; box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); background: var(--blue-tint); }

.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { background: var(--blue-tint); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--wa { background: #0f7a3d; color: #fff; }
.btn--wa:hover { background: #0b6231; }

.btn--block { width: 100%; }
.btn--sm { padding: 0.62rem 1.1rem; font-size: 0.84rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.93rem;
}
.link-arrow i { transition: transform 0.3s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }

/* 05. Utility bar, header, navigation ===================================== */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  padding: 0.8rem 1.2rem; background: var(--blue); color: #fff; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.utility {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.79rem;
}
.utility .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 1.5rem;
  min-height: var(--util-h);
  padding-block: 0.35rem;
}
.utility a { display: inline-flex; align-items: center; gap: 0.4rem; }
.utility a:hover { color: var(--amber); }
.utility i { color: var(--amber); }
.utility__hours { margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem; }

@media (max-width: 767.98px) {
  .utility { font-size: 0.74rem; }
  .utility__hours { margin-left: 0; }
  .utility__addr { width: 100%; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }

.header .shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--nav-h);
}

.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand__logo { width: 42px; height: 42px; border-radius: 10px; flex: none; }
.brand__name { font-size: 1.02rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.1; }
.brand__name span { color: var(--blue); }
.brand__tag { display: block; font-size: 0.67rem; font-weight: 600; color: var(--slate); letter-spacing: 0.06em; }

.nav { display: none; }
@media (min-width: 1024px) { .nav { display: block; } }

.nav ul { display: flex; align-items: center; gap: clamp(0.5rem, 1.4vw, 1.4rem); list-style: none; margin: 0; padding: 0; }

.nav a {
  position: relative;
  display: block;
  padding: 0.5rem 0.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--blue); }

.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; margin-left: auto;
  background: var(--blue-tint); border: 0; border-radius: 12px; cursor: pointer;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span { display: block; height: 2px; border-radius: 2px; background: var(--blue); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; grid-template-rows: auto 1fr auto;
  background: #fff;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0.45s;
  overflow-y: auto;
}
.drawer[data-open="true"] { transform: none; visibility: visible; }

.drawer__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--nav-h); border-bottom: 1px solid var(--line); }
.drawer__close {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-tint); border: 0; border-radius: 12px; color: var(--blue); font-size: 1.15rem; cursor: pointer;
}
.drawer__body { padding-block: 1.5rem; }
.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer__body a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.12rem; font-weight: 700;
}
.drawer__body a i { color: var(--blue); }
.drawer__foot { padding-block: 1.5rem; border-top: 1px solid var(--line); display: grid; gap: 0.7rem; }

body.no-scroll { overflow: hidden; }

/* 06. Hero ================================================================ */

.hero { position: relative; background: var(--blue-deep); color: #fff; overflow: hidden; }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,37,64,.94) 0%, rgba(10,37,64,.80) 45%, rgba(10,37,64,.55) 100%);
}

.hero__inner { position: relative; z-index: 1; padding-block: clamp(3rem, 7vw, 6rem); }

.hero--home .hero__inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 992px) { .hero--home .hero__inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; } }

.hero h1 { color: #fff; }
.hero .lede { color: rgba(255, 255, 255, 0.85); }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2.2rem;
  margin-top: 2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.86rem; color: rgba(255,255,255,.8);
}
.hero__stats span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__stats i { color: var(--amber); }

.hero--page .hero__inner { max-width: 780px; }

.crumbs {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  margin: 0 0 1.1rem; padding: 0; list-style: none;
  font-size: 0.8rem; color: rgba(255,255,255,.7);
}
.crumbs li + li::before { content: "/"; margin-right: 0.4rem; opacity: .6; }
.crumbs a:hover { color: var(--amber); }
.crumbs [aria-current] { color: var(--amber); }

/* 07. Cards, pillars, grids =============================================== */

.card {
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: clamp(1.35rem, 2.5vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfdcec; }
.section--gray .card, .section--tint .card { background: #fff; }
.section--navy .card { background: rgba(255,255,255,.06); border-color: var(--line-dark); color: #fff; }
.section--navy .card p { color: rgba(255,255,255,.78); }

.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-tint); color: var(--blue);
  font-size: 1.4rem; flex: none;
}
.card__icon--amber { background: var(--amber-soft); color: var(--amber-ink); }
.section--navy .card__icon { background: rgba(255,255,255,.12); color: var(--amber); }

.card h3 { margin: 0; font-size: 1.12rem; }
.card p { margin: 0; color: var(--slate); font-size: 0.96rem; }
.card__foot { margin-top: auto; padding-top: 0.9rem; }

/* Whole-card link. The arrow inside is a span, not a nested anchor — one card,
   one tap target, and the arrow still animates on hover through .card:hover. */
a.card--link { text-decoration: none; color: inherit; }
a.card--link h3 { color: var(--charcoal); }
a.card--link .link-arrow { margin-top: auto; padding-top: 0.9rem; }
a.card--link:hover .link-arrow i { transform: translateX(5px); }
a.card--link:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* Standalone caveat / disclosure panel. */
.note {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.note h2, .note .h3 { margin: 0 0 0.75rem; }
.note h2 i, .note .h3 i { color: var(--amber-ink); margin-right: 0.4rem; }
.note p { margin: 0 0 0.8rem; color: var(--slate); }
.note p:last-child { margin-bottom: 0; }

/* Destination / tour card with image */
.dcard {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  background: var(--blue-deep); color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dcard img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s var(--ease); }
.dcard:hover img { transform: scale(1.06); }
.dcard__overlay {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(to top, rgba(10,37,64,.94), rgba(10,37,64,.55) 60%, transparent);
}
.dcard__flag { font-size: 0.72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); }
.dcard h3 { margin: 0.25rem 0 0.4rem; font-size: 1.2rem; color: #fff; }
.dcard p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,.85); }
.dcard__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.7rem; }
.dcard__tags span {
  padding: 0.22rem 0.6rem; border-radius: 999px;
  background: rgba(255,255,255,.16); font-size: 0.72rem; font-weight: 600;
}

/* Tile variant — name and theme only, no description. Used where the card is a
   pointer to the full entry elsewhere rather than the entry itself. */
.dcard--tile img { aspect-ratio: 1 / 1; }
.dcard--tile h3 { margin-bottom: 0.15rem; }
.dcard--tile .dcard__tags { margin-top: 0.5rem; }
@media (min-width: 768px) { .dcard--tile img { aspect-ratio: 4 / 3; } }

/* Price / package meta */
.pkg-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem;
  margin-top: 0.8rem; padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem; color: var(--slate);
}
.pkg-meta i { color: var(--blue); margin-right: 0.3rem; }

/* 08. Tabs ================================================================ */

.tabs__list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  padding: 0.4rem;
  background: var(--gray);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.tabs__btn {
  padding: 0.8rem 1.5rem;
  border: 0; border-radius: 999px;
  background: transparent; color: var(--slate);
  font-family: inherit; font-size: 0.93rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.tabs__btn:hover { color: var(--blue); }
.tabs__btn[aria-selected="true"] { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }

.tabs__panel[hidden] { display: none; }

/* 09. Process / pathway steps ============================================= */

.steps { display: grid; gap: clamp(1rem, 2vw, 1.5rem); counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

.step { position: relative; padding-top: 3.6rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 0.95rem; font-weight: 800;
}
.section--navy .step::before { background: var(--amber); color: var(--charcoal); }

/* connector line between steps */
@media (min-width: 768px) {
  .steps > .step:not(:last-child)::after {
    content: "";
    position: absolute; top: 26px; left: 62px; right: -12px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--gray-200) 0 8px, transparent 8px 16px);
  }
  .section--navy .steps > .step:not(:last-child)::after {
    background: repeating-linear-gradient(to right, rgba(255,255,255,.28) 0 8px, transparent 8px 16px);
  }
}

.step h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.step p { margin: 0; font-size: 0.94rem; color: var(--slate); }
.section--navy .step p { color: rgba(255,255,255,.78); }

/* 10. Comparison table ==================================================== */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

table.matrix { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.93rem; }
table.matrix caption { padding: 1rem 1.15rem; text-align: left; font-size: 0.86rem; color: var(--slate); border-bottom: 1px solid var(--line); }
table.matrix th, table.matrix td { padding: 0.95rem 1.15rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
table.matrix thead th { background: var(--blue-deep); color: #fff; font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
table.matrix tbody tr:last-child th, table.matrix tbody tr:last-child td { border-bottom: 0; }
table.matrix tbody tr:nth-child(even) { background: var(--gray); }
table.matrix tbody th { font-weight: 800; color: var(--blue); white-space: nowrap; }
table.matrix td { color: var(--slate); }

/* 11. Accordion =========================================================== */

.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc + .acc { margin-top: 1rem; }
.acc__item + .acc__item { border-top: 1px solid var(--line); }

.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.15rem clamp(1rem, 2vw, 1.5rem);
  background: transparent; border: 0;
  font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--charcoal);
  text-align: left; cursor: pointer;
  transition: background-color 0.25s var(--ease);
}
.acc__btn:hover { background: var(--gray); }
.acc__btn i { color: var(--blue); font-size: 1.1rem; flex: none; transition: transform 0.3s var(--ease); }
.acc__btn[aria-expanded="true"] { color: var(--blue); }
.acc__btn[aria-expanded="true"] i { transform: rotate(45deg); }

.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.acc__panel[data-open="true"] { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel .inner { padding: 0 clamp(1rem, 2vw, 1.5rem) 1.3rem; color: var(--slate); }
.acc__panel .inner > :first-child { margin-top: 0; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.95rem; }
.check-list i { color: var(--ok); margin-top: 0.2rem; flex: none; }

/* 12. Testimonials ======================================================== */

.quote-card {
  display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.quote-card__stars { color: var(--amber-ink); font-size: 0.95rem; letter-spacing: 0.1em; }
.quote-card blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--charcoal); }
.quote-card figcaption { margin-top: auto; display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; border-top: 1px solid var(--line); }
.quote-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-tint); color: var(--blue); font-weight: 800; font-size: 0.95rem;
}
.quote-card__who { font-size: 0.9rem; font-weight: 700; line-height: 1.3; }
.quote-card__who span { display: block; font-weight: 500; color: var(--slate); font-size: 0.83rem; }

.video-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--blue-deep); }
.video-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; opacity: .85; }
.video-card__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 3rem; text-shadow: 0 4px 18px rgba(0,0,0,.4);
}
.video-card__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem; font-size: 0.86rem; color: #fff;
  background: linear-gradient(to top, rgba(10,37,64,.92), transparent);
}

/* 13. Forms & modal ======================================================= */

.form-card {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--charcoal);
}
.form-card h2, .form-card h3 { margin-bottom: 0.35rem; }
.form-card__sub { margin-bottom: 1.3rem; font-size: 0.92rem; color: var(--slate); }

.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.83rem; font-weight: 700; }
.field label .req { color: #c0392b; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.82rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit; font-size: 0.97rem; color: var(--charcoal);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%), linear-gradient(135deg, var(--slate) 50%, transparent 50%);
  background-position: right 18px center, right 12px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem; cursor: pointer;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 79, 158, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa4b2; }

.field__err { display: none; font-size: 0.79rem; font-weight: 600; color: #c0392b; }
.field.is-invalid .field__err { display: block; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c0392b; }

.form-note { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.83rem; color: var(--slate); }
.form-note i { color: #0f7a3d; margin-top: 0.15rem; }

.form-status {
  display: none; margin-top: 0.5rem;
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  background: var(--blue-tint); color: var(--blue);
  font-size: 0.9rem; font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fdecea; color: #c0392b; }

/* Multi-step */
.steps-bar { display: flex; gap: 0.5rem; margin-bottom: 1.3rem; }
.steps-bar div { flex: 1; height: 5px; border-radius: 999px; background: var(--gray-200); transition: background-color 0.3s var(--ease); }
.steps-bar div.is-done { background: var(--blue); }

.fstep[hidden] { display: none; }
.fstep__label { margin-bottom: 0.9rem; font-size: 0.78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-ink); }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 1200;
  display: grid; place-items: center;
  padding: 1rem;
  background: rgba(10, 37, 64, 0.6);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.modal[data-open="true"] { opacity: 1; visibility: visible; }
.modal__box {
  width: min(560px, 100%);
  max-height: 90vh; overflow-y: auto;
  transform: translateY(16px) scale(.98);
  transition: transform 0.35s var(--ease);
}
.modal[data-open="true"] .modal__box { transform: none; }
.modal__close {
  position: absolute; top: 0.7rem; right: 0.7rem;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: var(--gray); color: var(--charcoal); font-size: 1rem; cursor: pointer;
}
.modal__close:hover { background: var(--gray-200); }
.form-card { position: relative; }

/* Promo modal — auto-opening tour carousel ------------------------------- */

.promo__box {
  position: relative;
  width: min(880px, 100%);
  max-height: 92vh; overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.promo__head {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem clamp(1rem, 3vw, 1.5rem);
  padding-right: 3.4rem;
  background: var(--blue-deep); color: #fff;
}
.promo__head i { color: var(--amber); }
.promo__head p { margin: 0; font-size: 0.9rem; font-weight: 700; letter-spacing: .04em; }

.promo__close {
  position: absolute; top: 0.6rem; right: 0.6rem; z-index: 3;
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff;
  font-size: 1.05rem; cursor: pointer; line-height: 1;
  transition: background 0.25s var(--ease);
}
.promo__close:hover { background: rgba(255,255,255,.3); }
.promo__close:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.promo__viewport { position: relative; overflow: hidden; flex: 1; min-height: 0; }
.promo__track { display: flex; transition: transform 0.5s var(--ease); }
.promo__slide { flex: 0 0 100%; min-width: 0; }

.promo__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 700px) { .promo__grid { grid-template-columns: 1.05fr 1fr; } }

.promo__media { position: relative; background: var(--blue-tint); }
.promo__media img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 700px) { .promo__media img { aspect-ratio: auto; min-height: 340px; } }
.promo__badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  background: var(--amber); color: var(--charcoal);
  font-size: 0.72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}

.promo__body { padding: clamp(1.15rem, 3vw, 1.9rem); display: flex; flex-direction: column; }
.promo__body .eyebrow { margin-bottom: 0.3rem; }
.promo__body h3 { margin: 0 0 0.6rem; font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.2; }
.promo__body p { margin: 0 0 0.9rem; color: var(--slate); font-size: 0.95rem; }
.promo__body .btn-row { margin-top: auto; padding-top: 0.4rem; }

.promo__meta {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  margin: 0 0 1rem; padding: 0; list-style: none;
}
.promo__meta li {
  padding: 0.22rem 0.6rem; border-radius: 999px;
  background: var(--blue-tint); color: var(--blue);
  font-size: 0.74rem; font-weight: 700;
}

/* Controls */
.promo__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.7rem clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--line);
  background: var(--gray);
}
.promo__nav { display: flex; gap: 0.4rem; }
.promo__arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--blue);
  cursor: pointer; font-size: 0.95rem;
}
.promo__arrow:hover { border-color: var(--blue); background: var(--blue-tint); }
.promo__arrow:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.promo__dots { display: flex; gap: 0.4rem; }
.promo__dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%;
  border: 0; background: var(--gray-200); cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.promo__dot[aria-current="true"] { background: var(--blue); transform: scale(1.3); }
.promo__dot:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.promo__dismiss {
  border: 0; background: none; padding: 0;
  color: var(--slate); font: inherit; font-size: 0.84rem;
  text-decoration: underline; cursor: pointer;
}
.promo__dismiss:hover { color: var(--charcoal); }

@media (prefers-reduced-motion: reduce) {
  .promo__track { transition: none; }
}

/* Itinerary ------------------------------------------------------------- */

.itin { margin: 0; padding: 0; list-style: none; display: grid; gap: 1.1rem; }

.itin__day {
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.itin__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 0.9rem; margin-bottom: 0.9rem; }
.itin__num {
  padding: 0.2rem 0.65rem; border-radius: 999px;
  background: var(--blue); color: #fff;
  font-size: 0.74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.itin__title { margin: 0; font-size: 1.15rem; }
.itin__emoji { margin-right: 0.35rem; }

.itin__meals {
  margin: 0.9rem 0 0; padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 600; color: var(--amber-ink);
}
.itin__meals i { margin-right: 0.35rem; }

/* Highlight chips ------------------------------------------------------- */

.tag-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin: 0; padding: 0; list-style: none;
}
.tag-row li {
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--blue-tint); color: var(--blue);
  font-weight: 700; font-size: 0.9rem;
}

/* CTA banner */
.cta-banner {
  position: relative; overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(115deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
}
.cta-banner::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(245, 165, 36, 0.16);
}
.cta-banner .shell { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.85); }

/* 14. Footer ============================================================== */

.footer { background: var(--blue-deep); color: rgba(255,255,255,.78); padding-top: clamp(2.75rem, 5vw, 4.25rem); font-size: 0.94rem; }
.footer__top { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer h3 { color: #fff; font-size: 0.86rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer a:hover { color: var(--amber); }
.footer__brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer__brand .brand__name, .footer__brand .brand__name span { color: #fff; }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer__contact i { color: var(--amber); margin-top: 0.22rem; flex: none; }

.footer__social { display: flex; gap: 0.5rem; margin-top: 1.2rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); color: #fff;
  transition: background-color 0.25s var(--ease);
}
.footer__social a:hover { background: var(--amber); color: var(--charcoal); }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem;
  padding-block: 1.35rem; border-top: 1px solid var(--line-dark); font-size: 0.85rem;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1.35rem; }

/* 15. Floating WhatsApp =================================================== */

.wa-fab {
  position: fixed; right: clamp(0.9rem, 2vw, 1.6rem); bottom: clamp(0.9rem, 2vw, 1.6rem);
  z-index: 800;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: #0f7a3d; color: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 32px -12px rgba(15, 122, 61, 0.8);
  font-size: 0.86rem; font-weight: 700;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.wa-fab i { font-size: 1.4rem; }
.wa-fab span { display: none; }
@media (min-width: 768px) { .wa-fab span { display: inline; } }
.wa-fab:hover { transform: translateY(-3px); background: #0b6231; }

/* 16. Social embed ======================================================== */

/* TikTok's iframe brings its own player chrome, so the wrapper supplies only
   the frame, the reserved height and the fallback state. The embed script is
   fetched lazily by initTikTok() — nothing third-party loads on first paint. */

.social-embed {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .social-embed { grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); }
}

.social-embed__copy .h2 { margin-bottom: 0.75rem; }

.social-embed__handle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.4rem;
  font-weight: 700; font-size: 1.05rem;
  color: var(--blue); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.social-embed__handle:hover,
.social-embed__handle:focus-visible { border-bottom-color: var(--amber); }

.social-embed__list {
  margin: 1.5rem 0 0; padding: 0; list-style: none;
  display: grid; gap: 0.75rem;
  color: var(--slate);
}
.social-embed__list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.social-embed__list i { color: var(--amber-ink); margin-top: 0.15rem; flex: none; }

/* Frame ------------------------------------------------------------------ */

.social-embed__frame {
  position: relative;
  min-height: 560px;
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* TikTok injects an iframe in place of the blockquote. Keep it fluid. */
.social-embed__frame iframe { max-width: 100% !important; border-radius: var(--radius-sm); }
.social-embed__frame .tiktok-embed { margin: 0 auto !important; max-width: 100% !important; }

/* Placeholder shown until the widget paints, and left in place if the script
   is blocked by an extension, a corporate proxy or no network. */
.social-embed__ph {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center;
  gap: 0.9rem; padding: 2rem 1.5rem; text-align: center;
  color: var(--slate);
}
.social-embed__ph i.bi-tiktok { font-size: 2.4rem; color: var(--blue-deep); }
.social-embed__ph p { margin: 0; max-width: 32ch; font-size: 0.92rem; }
.is-embedded .social-embed__ph { display: none; }

.social-embed__spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 3px solid var(--gray-200);
  border-top-color: var(--blue);
  animation: se-spin 0.9s linear infinite;
}
@keyframes se-spin { to { transform: rotate(360deg); } }

.social-embed__frame.is-failed .social-embed__spinner { display: none; }

@media (prefers-reduced-motion: reduce) {
  .social-embed__spinner { animation: none; border-top-color: var(--gray-200); }
}

@media (max-width: 575.98px) {
  .social-embed__frame { min-height: 500px; padding: 0.5rem; }
}

/* 17. Motion ============================================================== */

[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .btn:hover, .card:hover, .dcard:hover, .wa-fab:hover { transform: none; }
  .dcard:hover img { transform: none; }
}

/* 18. Responsive ========================================================== */

@media (max-width: 639.98px) {
  .btn-row .btn { width: 100%; }
  .tabs__list { width: 100%; }
  .tabs__btn { flex: 1; padding-inline: 0.6rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media print {
  .header, .utility, .drawer, .wa-fab, .modal, .hero__bg { display: none !important; }
  body { color: #000; background: #fff; }
  .section--navy, .cta-banner, .footer { background: #fff !important; color: #000 !important; }
}
