/* ==========================================================================
   Salam Africa — components.css
   Reusable UI components: chips, tabs, pills, modals, galleries
   ========================================================================== */ /* ─── SECTION HEAD ───────────────────────────────────────────────────────── */
.section-head {
  margin-bottom: var(--sp-xl);
}
.section-head.centered {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--sp-xl);
}
.section-head h2 {
  margin-bottom: var(--sp-sm);
}
.section-head p {
  max-width: 54ch;
}
.section-head.centered p {
  margin: 0 auto;
}

/* ─── EYEBROW & CHIPS ────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: var(--sp-sm);
}
.eyebrow-white {
  color: rgba(255, 255, 255, 1);
}
.eyebrow-gold {
  color: var(--gold);
}

/* eyebrow chip — small pastel pill behind eyebrow text */
.eyebrow-chip {
  display: inline-block;
  background: var(--pastel-yellow);
  color: var(--brown);
  padding: 0.2rem 0.9rem 0.2rem 0.7rem;
  border-radius: 2rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.eyebrow-chip.pink {
  background: var(--pastel-pink);
}
.eyebrow-chip.mint {
  background: var(--pastel-mint);
}
.eyebrow-chip.peach {
  background: var(--pastel-peach);
}
.eyebrow-chip.sage {
  background: var(--pastel-sage);
}
.eyebrow-chip.gold {
  background: var(--gold-pale);
  color: var(--brown);
}
.eyebrow-chip.yellow {
  background: #fff3cd;
  color: var(--brown);
}
.eyebrow-chip.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ─── QUICK FACTS PILLS ──────────────────────────────────────────────────── */
.facts-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-md) 0;
}
.facts-pills {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.fact-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--border);
  flex: 1 1 160px;
}
.fact-pill--mint {
  background: var(--pastel-mint);
  border-color: transparent;
}
.fact-pill--yellow {
  background: var(--pastel-yellow);
  border-color: transparent;
}
.fact-pill--peach {
  background: var(--pastel-peach);
  border-color: transparent;
}
.fact-pill--sage {
  background: var(--pastel-sage);
  border-color: transparent;
}
.fact-pill--pink {
  background: var(--pastel-pink);
  border-color: transparent;
} /* ─── TABS ────────────────────────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--sp-xl);
  overflow-x: auto;
}
.tab-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover {
  color: var(--brown);
}
.tab-btn.active {
  color: var(--forest);
  border-bottom-color: var(--gold);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
} /* ─── ACCORDION ──────────────────────────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-md) 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.accordion-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.accordion-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s var(--ease-out),
    padding 0.3s;
}
.accordion-body.open {
  max-height: 9999px;
}
.accordion-body-inner {
  padding-bottom: var(--sp-md);
} /* ─── INCLUDES / EXCLUDES LIST ────────────────────────────────────────────── */ /* ─── GALLERY GRID ────────────────────────────────────────────────────────── */ /* ─── MODAL ───────────────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: var(--sp-md);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.modal-close:hover {
  background: var(--border);
} /* ─── TAGS / CHIPS STRIP ─────────────────────────────────────────────────── */ /* ─── PRICE TABLE ─────────────────────────────────────────────────────────── */ /* ─── STICKY CONVERSION BAR ──────────────────────────────────────────────── */
.sp-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: var(--forest);
  color: var(--white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.sp-sticky-bar.visible {
  opacity: 1;
  pointer-events: all;
}
.sp-sticky-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
}
.sp-sticky-price {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.sp-sticky-price small {
  font-weight: 300;
  opacity: 0.7;
} /* ─── ASIDE BOOKING BOX ──────────────────────────────────────────────────── */
.sp-aside-box {
  background: var(--forest);
  color: var(--white);
  padding: var(--sp-lg);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.sp-aside-box-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.sp-aside-price {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.sp-aside-price-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--sage-light);
  margin-bottom: var(--sp-md);
}
.sp-aside-tiers {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--sp-sm) 0;
  margin-bottom: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sp-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-tier-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--sage-light);
}
.sp-tier-val {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white);
}
.sp-aside-note {
  font-size: 0.73rem;
  color: var(--sage-light);
  margin-top: var(--sp-sm);
  line-height: 1.6;
} /* ─── RELATIONSHIP CHIPS (destination / accommodation inline) ─────────────── */ /* ─── SA-BTN PARTIAL ─────────────────────────────────────────────────── */

.sa-fun-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.8rem 1.6rem;
  transition:
    background-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  border: none;

  /* SVG shape */
  mask-image: url(../images/vectors/button_shape_fun.svg);
  -webkit-mask-image: url(../images/vectors/button_shape_fun.svg);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
} /* ── Hover & Active ── */
.sa-fun-btn:hover {
  transform: scale(1.06);
}
.sa-fun-btn:active {
  transform: scale(0.97);
} /* ── Arrow ── */
.sa-fun-btn__arrow {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.sa-fun-btn:hover .sa-fun-btn__arrow {
  transform: translateX(3px);
} /* ── Sizes ── */
.sa-fun-btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.65rem;
}
.sa-fun-btn--lg {
  padding: 1.2rem 2.2rem;
  font-size: 0.85rem;
}
/* ── Color Variants ── */
.sa-fun-btn--default {
  background-color: var(--forest);
  color: var(--white);
}
.sa-fun-btn--default:hover {
  background-color: var(--forest-dark);
}

.sa-fun-btn--gold {
  background-color: var(--gold);
  color: var(--white);
}
.sa-fun-btn--gold:hover {
  background-color: var(--gold-deep);
  color: var(--white);
}

.sa-fun-btn--ghost {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.sa-fun-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.sa-fun-btn--ghost-dark {
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--forest);
}
.sa-fun-btn--ghost-dark:hover {
  background-color: var(--forest);
  color: var(--white);
}

.sa-fun-btn--brown {
  background-color: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s var(--ease-out);
}
.sa-fun-btn--brown:hover {
  background-color: var(--charcoal);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
} /* ─── end SA-BTN PARTIAL ─────────────────────────────────────────────── */

/* ─── SA-BORING-BTN PARTIAL ─────────────────────────────────────────────── */
/* The understated utility button — no arrow, no mask, clean and quiet. */
.sa-boring-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.75rem 1.4rem;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 2px;
}
.sa-boring-btn:hover {
  text-decoration: none;
}
.sa-boring-btn__arrow {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.sa-boring-btn:hover .sa-boring-btn__arrow {
  transform: translateX(2px);
}

/* ── Sizes ── */
.sa-boring-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
}
.sa-boring-btn--lg {
  padding: 1.2rem 2.2rem;
  font-size: 0.9rem;
}

/* ── Color Variants ── */
.sa-boring-btn--default {
  background-color: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.sa-boring-btn--default:hover {
  background-color: var(--forest-dark);
  border-color: var(--forest-dark);
}

.sa-boring-btn--dark {
  background-color: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.sa-boring-btn--dark:hover {
  background-color: var(--text);
  border-color: var(--text);
}

.sa-boring-btn--gold {
  background-color: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}
.sa-boring-btn--gold:hover {
  background-color: var(--gold-deep);
  color: var(--white);
}

.sa-boring-btn--ghost {
  background-color: transparent;
  color: var(--text);
  border-color: transparent;
}
.sa-boring-btn--ghost:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.sa-boring-btn--outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}
.sa-boring-btn--outline:hover {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: var(--text);
}

.sa-boring-btn--outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.sa-boring-btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.sa-boring-btn--accent {
  background-color: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.sa-boring-btn--accent:hover {
  background-color: var(--sage);
  border-color: var(--sage);
}

.sa-boring-btn--full {
  width: 100%;
  justify-content: center;
}
/* ─── end SA-BORING-BTN PARTIAL ─────────────────────────────────────────────── */

/* ==========================================================================
   CTA BAND
   --------------------------------------------------------------------------
   Reusable call-to-action strip. This lives in components.css because it is a
   content component, not core page chrome. Both the older background-image helper
   selectors and the newer BEM-ish CTA selectors are kept together here so a CTA
   can support either markup shape during the cleanup transition.
   ========================================================================== */ /* ─── CTA BAND ────────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: var(--sp-3xl) var(--pad);
  text-align: center;
} /* Active/simple CTA-band variant moved from style.css. Loaded later in this file
   so it can intentionally override the older generic .cta-band base above. */ /* ─── CTA BAND ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--forest);
  padding: var(--sp-3xl) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--sp-md);
}
.cta-band p {
  color: var(--white);
  max-width: 52ch;
  margin: 0 auto var(--sp-lg);
}
.cta-band .eyebrow {
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}
.cta-band__content {
  position: relative;
  z-index: 2;
}
.cta-band__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
} /* ==========================================================================
   PAGE HERO  (salam-gen-page-hero)
   --------------------------------------------------------------------------
   Standardised full-width image hero used across all inner pages
   (destinations, packages, journal, about, team, purpose, contact, etc.).

   Markup structure (output by template-parts/page-hero.php):

     <section class="salam-gen-page-hero">
       <div class="salam-gen-page-hero__bg"  [style="background-image:url(…)"]></div>
       <div class="salam-gen-page-hero__overlay"></div>
       <div class="salam-gen-page-hero__content wrap">
         <nav class="breadcrumb">…</nav>           ← only when breadcrumbs=true
         <span class="eyebrow-chip [color]">…</span>
         <h1 class="salam-gen-page-hero__heading">…</h1>
         <p  class="salam-gen-page-hero__paragraph">…</p>
       </div>
     </section>

   Reference design: /resources/website_demo_pass_one/destinations.html
   ========================================================================== */ /* ── Outer shell ─────────────────────────────────────────────────────────── */
.salam-gen-page-hero {
  position: relative;
  /* Matches reference: tall enough to feel immersive, not full-viewport tall */
  min-height: 72vh;
  display: flex;
  /* Content sits at the bottom-left, like the reference destinations.html */
  align-items: flex-end;
  overflow: hidden;
  /*
   * FIX — mobile header overlap:
   * padding-top on the section shifts the flex layout's usable area down by
   * the header height. __bg is position:absolute; inset:0 so the background
   * image still bleeds to the very top (behind the transparent header nav)
   * — the visual effect is unchanged. But flex-end can now never push the
   * content box above the bottom edge of the header bar on short screens.
   */
  padding-top: var(--header-h);
} /* ── Background image layer ──────────────────────────────────────────────── */
.salam-gen-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  /* Subtle Ken Burns: starts slightly zoomed, drifts to 1× on hover */
  transform: scale(1.05);
  transition: transform 8s linear;
}
.salam-gen-page-hero:hover .salam-gen-page-hero__bg {
  transform: scale(1);
} /* Default background when no image is provided */
.salam-gen-page-hero__bg--default {
  background: var(--forest);
} /* ── Dark gradient overlay ───────────────────────────────────────────────── */ /* Heavy at the bottom (where text lives), lighter at the top — matches reference */
.salam-gen-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 8, 3, 0.92) 0%,
    rgba(13, 8, 3, 0.6) 45%,
    rgba(13, 8, 3, 0.22) 100%
  );
} /* ── Content wrapper ─────────────────────────────────────────────────────── */
.salam-gen-page-hero__content {
  position: relative;
  z-index: 2;
  /*
   * No padding-top here — the section's padding-top: var(--header-h) already
   * guarantees content never goes behind the nav. Bottom padding provides
   * comfortable breathing room below the last line of text.
   */
  padding-bottom: var(--sp-xl);
  /* Horizontal padding handled by the .wrap utility */
  width: 100%;
} /* ── Heading ─────────────────────────────────────────────────────────────── */
.salam-gen-page-hero__heading {
  color: var(--white);
  /* Slightly smaller than the global h1 ceiling — less overwhelming on busy hero images */
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  max-width: 22ch;
  margin-top: 0.4rem;
  margin-bottom: 0;
}
.salam-gen-page-hero__heading em {
  /* Italics carry the serif/script feel from the brand palette */
  font-style: italic;
  color: var(--white);
} /* ── Subtitle paragraph ──────────────────────────────────────────────────── */
.salam-gen-page-hero__paragraph {
  color: var(--white);
  max-width: 50ch;
  margin-top: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.7;
} /* ── Eyebrow chip ─────────────────────────────────────────────────────────── */ /*
 * Zero the global bottom margin — the heading's margin-top (0.4rem) already
 * provides the visual gap between eyebrow and heading, preventing double-spacing.
 */
.salam-gen-page-hero__content .eyebrow-chip {
  margin-bottom: 0;
} /* ── Breadcrumb — compact vertical rhythm inside the dark hero ───────────── */
.salam-gen-page-hero__content .breadcrumb {
  /* Small gap before the eyebrow chip — enough to distinguish, not excessive */
  margin-bottom: 0.6rem;
} /* ── Responsive adjustments ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .salam-gen-page-hero {
    min-height: 60vh;
  }
  .salam-gen-page-hero__content {
    padding-bottom: var(--sp-lg);
  }
  .salam-gen-page-hero__heading {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .salam-gen-page-hero {
    min-height: 55vh;
  }
} /* ── end PAGE HERO (salam-gen-page-hero) ─────────────────────────────────── */

/* ==========================================================================
   WAVE DIVIDER  (wave-divider)
   --------------------------------------------------------------------------
   CSS-class-driven SVG wave transition between sections.

   Markup (output by template-parts/components/wave-divider.php):

     <div class="wave-divider wave-divider-bg-{token} wave-divider-fill-{token}">
       <svg …><path class="wave-divider__path" …/></svg>
     </div>

   How it works:
     The base rule exposes two CSS custom properties:
       --wd-bg   → background colour of the wrapper div   (default: transparent)
       --wd-fill → fill colour of the SVG wave path        (default: #ffffff)

     Each modifier class sets ONLY the property it owns, so any combination of
     bg-* and fill-* classes works without specificity clashes.

   Available tokens:
     white | bg | bg-alt | brown | gold | gold-deep | gold-pale |
     olive | forest | forest-dark | sage | sage-light |
     pastel-pink | pastel-yellow | pastel-mint |
     pastel-peach | pastel-sage | pastel-blue
   ========================================================================== */

/* ── Base ─────────────────────────────────────────────────────────────────── */
.wave-divider {
  position: relative;
  height: 70px;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 2;
  /* Consume the custom properties set by modifier classes */
  background: var(--wd-bg, transparent);
}
.wave-divider svg {
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 100%;
  height: calc(100% + 3px);
}
.wave-divider__path {
  fill: var(--wd-fill, var(--white));
}

/* ── Background colour modifiers  (wave-divider-bg-*) ────────────────────── */
/* Hope palette */
.wave-divider-bg-white {
  --wd-bg: var(--white);
}

/*
.wave-divider-bg-bg {
  --wd-bg: var(--bg);
}*/

.wave-divider-bg-bg-alt {
  --wd-bg: var(--bg-alt);
}
.wave-divider-bg-brown {
  --wd-bg: var(--brown);
}
.wave-divider-bg-gold {
  --wd-bg: var(--gold);
}
.wave-divider-bg-gold-deep {
  --wd-bg: var(--gold-deep);
}
.wave-divider-bg-gold-pale {
  --wd-bg: var(--gold-pale);
}
.wave-divider-bg-olive {
  --wd-bg: var(--olive);
}
.wave-divider-bg-forest {
  --wd-bg: var(--forest);
}
.wave-divider-bg-forest-dark {
  --wd-bg: var(--forest-dark);
}
.wave-divider-bg-sage {
  --wd-bg: var(--sage);
}
.wave-divider-bg-sage-light {
  --wd-bg: var(--sage-light);
}
/* Pastel pops */
.wave-divider-bg-pastel-pink {
  --wd-bg: var(--pastel-pink);
}
.wave-divider-bg-pastel-yellow {
  --wd-bg: var(--pastel-yellow);
}
.wave-divider-bg-pastel-mint {
  --wd-bg: var(--pastel-mint);
}
.wave-divider-bg-pastel-peach {
  --wd-bg: var(--pastel-peach);
}
.wave-divider-bg-pastel-sage {
  --wd-bg: var(--pastel-sage);
}
.wave-divider-bg-pastel-blue {
  --wd-bg: var(--pastel-blue);
}

/* ── Fill colour modifiers  (wave-divider-fill-*) ────────────────────────── */
/* Hope palette */
.wave-divider-fill-white {
  --wd-fill: var(--white);
}
.wave-divider-fill-bg {
  --wd-fill: var(--bg);
}
.wave-divider-fill-bg-alt {
  --wd-fill: var(--bg-alt);
}
.wave-divider-fill-brown {
  --wd-fill: var(--brown);
}
.wave-divider-fill-gold {
  --wd-fill: var(--gold);
}
.wave-divider-fill-gold-deep {
  --wd-fill: var(--gold-deep);
}
.wave-divider-fill-gold-pale {
  --wd-fill: var(--gold-pale);
}
.wave-divider-fill-olive {
  --wd-fill: var(--olive);
}
.wave-divider-fill-forest {
  --wd-fill: var(--forest);
}
.wave-divider-fill-forest-dark {
  --wd-fill: var(--forest-dark);
}
.wave-divider-fill-sage {
  --wd-fill: var(--sage);
}
.wave-divider-fill-sage-light {
  --wd-fill: var(--sage-light);
}
/* Pastel pops */
.wave-divider-fill-pastel-pink {
  --wd-fill: var(--pastel-pink);
}
.wave-divider-fill-pastel-yellow {
  --wd-fill: var(--pastel-yellow);
}
.wave-divider-fill-pastel-mint {
  --wd-fill: var(--pastel-mint);
}
.wave-divider-fill-pastel-peach {
  --wd-fill: var(--pastel-peach);
}
.wave-divider-fill-pastel-sage {
  --wd-fill: var(--pastel-sage);
}
.wave-divider-fill-pastel-blue {
  --wd-fill: var(--pastel-blue);
}

/* ── end WAVE DIVIDER ─────────────────────────────────────────────────────── */

/* ─── PACKAGE CARDS & FUN ARROW ─────────────────────────────────────────── */
.sa-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.sa-pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.sa-pkg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg-dark);
}
.sa-pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sa-pkg-card:hover .sa-pkg-img img {
  transform: scale(1.05);
}
.sa-pkg-card:hover .sa-card-arrow {
  transform: translateX(5px);
  filter: brightness(1.1) saturate(1.1);
}
.sa-pkg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0) 60%
  );
}
.sa-pkg-info {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.sa-pkg-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
}
.sa-pkg-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--sage-light);
  font-weight: 500;
}

/* Base Fun Arrow SVG */
.sa-fun-arrow-svg {
  display: inline-block;
  width: 3.5rem;
  height: auto;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* Card Arrow Modifier */
.sa-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 4;
  filter: brightness(1) saturate(0.9);
}

@media (max-width: 600px) {
  .sa-pkg-grid {
    grid-template-columns: 1fr;
  }
}
