/* ==========================================================================
   Alderpath — custom.css
   Component layer on top of Tailwind utilities.

   CONTENTS
     01  Tokens
     02  Base & accessibility
     03  Buttons
     04  Section furniture (eyebrow, titles, wave dividers)
     05  Header & navigation
     06  Hero
     07  Search card
     08  Booking process
     09  Promotional banner
     10  Destinations
     11  Tours slider
     12  Pricing packages
     13  Destination highlight
     14  Why choose us + statistics
     15  Testimonials
     16  Gallery
     17  Journal
     18  FAQ
     19  Newsletter
     20  Contact form
     21  Footer
     22  Back-to-top
     23  Motion preferences
   ========================================================================== */


/* 01 · TOKENS ============================================================= */
:root {
  /* palette */
  --teal:        #0D6B68;
  --teal-lift:   #12817D;
  --teal-deep:   #08514F;
  --teal-ink:    #052F2E;
  --amber:       #F5A623;
  --amber-deep:  #D98A0B;
  --lime:        #63C943;
  --sand:        #FFFDF9;
  --cream:       #FFF8EF;
  --ink:         #24343B;
  --line:        #E8ECEC;

  /* ink at fixed opacities — stops one-off rgba() literals drifting apart */
  --ink-90: rgba(36,52,59,.90);
  --ink-70: rgba(36,52,59,.70);
  --ink-58: rgba(36,52,59,.58);
  --ink-45: rgba(36,52,59,.45);
  --ink-12: rgba(36,52,59,.12);

  /* Shadows are two-part and colour-tinted. A single grey drop shadow is the
     fastest way to make a card look templated: real depth needs a tight
     contact shadow plus a wide ambient one, both carrying the surface hue. */
  --sh-1: 0 1px 2px rgba(36,52,59,.05),
          0 4px 10px -2px rgba(36,52,59,.05);
  --sh-2: 0 2px 4px rgba(36,52,59,.05),
          0 10px 24px -6px rgba(36,52,59,.08),
          0 24px 48px -20px rgba(13,107,104,.10);
  --sh-3: 0 4px 8px rgba(36,52,59,.06),
          0 18px 36px -10px rgba(36,52,59,.10),
          0 44px 80px -30px rgba(13,107,104,.18);
  --sh-4: 0 8px 16px rgba(36,52,59,.07),
          0 32px 64px -16px rgba(36,52,59,.13),
          0 72px 120px -40px rgba(13,107,104,.26);
  --sh-teal:  0 8px 20px -6px rgba(13,107,104,.34), 0 20px 44px -18px rgba(13,107,104,.40);
  --sh-amber: 0 8px 20px -6px rgba(217,138,11,.34), 0 20px 44px -18px rgba(217,138,11,.38);
  --sh-inset: inset 0 1px 0 rgba(255,255,255,.7);

  /* legacy aliases kept so existing rules keep resolving */
  --shadow-soft: var(--sh-2);
  --shadow-lift: var(--sh-3);
  --shadow-deep: var(--sh-4);

  /* easing — one curve for entrances, a springier one for hover */
  --ease:      cubic-bezier(.22,.61,.28,1);
  --ease-out:  cubic-bezier(.16,.84,.34,1);
  --ease-soft: cubic-bezier(.45,.05,.25,1);

  --radius:    1.75rem;
  --radius-lg: 2.5rem;
  --radius-sm: 1.1rem;
}

/* 02 · BASE & ACCESSIBILITY =============================================== */
html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
}

/* Fraunces is a variable face. Driving opsz, SOFT and WONK is what separates
   it from a static serif dropped in as a display font: letterforms soften and
   the leg of the g flicks out at large sizes, which is where the handmade
   quality comes from. */
.font-display, .section-title, .d1, .d2, .d3,
h1, h2, h3, .step-title, .dest-title, .tour-title, .price-name,
.hl-title, .why-title, .post-title, .review-name, .review-quote,
.faq-item summary, .stat-value, .stat-big, .price-amount, .tour-price,
.promo-figure, .badge-disc-num {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-variation-settings: 'SOFT' 28, 'WONK' 1;
  font-optical-sizing: auto;
}

/* Display sizes: tighter tracking, softer letterforms, no wonk on small text. */
.section-title, .d1, .d2 { font-variation-settings: 'SOFT' 48, 'WONK' 1; }
.review-name, .faq-item summary, .hl-title { font-variation-settings: 'SOFT' 16, 'WONK' 0; }

/* Numerals should never shift width while a counter animates. */
.stat-value, .stat-big, .price-amount, .tour-price, .promo-figure,
.badge-disc-num, .highlight-chip p:first-child {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: 'tnum' 1;
}

/* Body copy: hyphenate long words on narrow columns rather than overflow. */
p { text-wrap: pretty; }
h1, h2, h3, .section-title { text-wrap: balance; }

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: .5rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--sand);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


/* 03 · BUTTONS ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease);
}
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

.btn-primary { background: var(--teal); color: var(--sand); box-shadow: 0 8px 22px rgba(13,107,104,.24); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(13,107,104,.30); }

.btn-amber { background: var(--amber); color: #3A2708; box-shadow: 0 8px 22px rgba(245,166,35,.30); }
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(245,166,35,.38); }

.btn-dark { background: var(--ink); color: var(--sand); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(36,52,59,.26); }

.btn-outline { border: 1.5px solid var(--line); background: #fff; color: var(--ink); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { color: var(--teal); transform: translateY(-3px); }


/* 04 · SECTION FURNITURE ================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow-rule { display: block; width: 2.4rem; height: 2px; border-radius: 2px; background: var(--amber); }
.eyebrow--light { color: var(--amber); }

.section-title {
  margin-top: 1rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.9vw, 3.35rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.028em;
}
.section-lead {
  margin-top: 1.15rem;
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(36,52,59,.7);
}
.section-head { max-width: 44rem; }
.section-head.text-center .section-lead { margin-inline: auto; }

.wave-divider { position: absolute; inset-inline: 0; line-height: 0; pointer-events: none; }
.wave-divider svg { display: block; width: 100%; height: clamp(52px, 7vw, 120px); }
.wave-divider--bottom { bottom: -1px; }
.wave-divider--top { top: -1px; }


/* 05 · HEADER & NAVIGATION ================================================ */
.site-header {
  background: rgba(255,253,249,0);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(36,52,59,.06);
}

.nav-link { position: relative; padding-bottom: .3rem; transition: color .2s var(--ease); }
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--amber);
  transition: width .28s var(--ease);
}
.nav-link:hover { color: var(--teal); }
.nav-link:hover::after { width: 100%; }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(255,253,249,.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(36,52,59,.10);
}
.mobile-link {
  display: block;
  padding: .95rem .25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  font-weight: 500;
}
.mobile-link:hover { color: var(--teal); }


/* 06 · HERO =============================================================== */
.hero { background: linear-gradient(170deg, #FFFDF9 0%, #F4FAF7 46%, #FFF8EF 100%); }

.hero-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.35;
  border-radius: 48% 52% 42% 58% / 44% 40% 60% 56%;
  box-shadow: var(--shadow-deep);
}

.badge-disc {
  position: absolute;
  right: -.5rem; top: 1.5rem;
  display: grid; place-items: center; gap: .1rem;
  width: 7.2rem; height: 7.2rem;
  border-radius: 50%;
  background: var(--amber);
  color: #3A2708;
  text-align: center;
  box-shadow: 0 14px 34px rgba(245,166,35,.42);
}
/* The bob lives on an inner layer so the parallax transform on .badge-disc
   itself is never overwritten by the keyframes. */
.badge-disc-num, .badge-disc-txt { animation: bob 5.2s ease-in-out infinite; }
.badge-disc-txt { animation-delay: .06s; }
.badge-disc-num { font-family: 'Fraunces', Georgia, serif; font-size: 1.85rem; font-weight: 700; line-height: 1; }
.badge-disc-txt { font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; line-height: 1.25; }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: .85rem;
  padding: .95rem 1.15rem;
  border-radius: 1.15rem;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lift);
}
.float-card--tl { left: -1rem; top: 22%; }
.float-card--br { right: -1rem; bottom: 9%; }

@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(36,52,59,.5); }
.stat-value { margin-top: .45rem; font-family: 'Fraunces', Georgia, serif; font-size: 2.15rem; font-weight: 700; line-height: 1; color: var(--teal); }

@media (max-width: 1023px) {
  .float-card--tl { left: .25rem; top: 4%; }
  .float-card--br { right: .25rem; bottom: 4%; }
  .badge-disc { width: 5.8rem; height: 5.8rem; right: .5rem; }
  .badge-disc-num { font-size: 1.45rem; }
}


/* 07 · SEARCH CARD ======================================================== */
.search-card {
  position: relative;
  margin-top: -5.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lift);
}
.search-field { display: grid; gap: .5rem; min-width: 0; }
.search-field > label { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(36,52,59,.5); }
.search-input-wrap { position: relative; }
.search-icon {
  position: absolute; left: .95rem; top: 50%; transform: translateY(-50%);
  width: 1.05rem; height: 1.05rem; color: var(--teal); pointer-events: none;
}
.search-input-wrap select,
.search-input-wrap input {
  width: 100%;
  padding: .95rem 1rem .95rem 2.7rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--sand);
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  appearance: none;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.search-input-wrap select:focus,
.search-input-wrap input:focus { outline: none; border-color: var(--teal); background: #fff; }
.search-submit { height: 3.25rem; padding-inline: 2rem; }
.search-note { margin-top: 1rem; text-align: center; font-size: .82rem; color: rgba(36,52,59,.45); }

@media (max-width: 1100px) {
  .search-card { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: -3rem; }
  .search-submit { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .search-card { grid-template-columns: 1fr; }
}


/* 08 · BOOKING PROCESS ==================================================== */
.step-card {
  position: relative;
  padding: 2.4rem 2rem 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.step-num {
  position: absolute; right: 1.8rem; top: 1.6rem;
  font-family: 'Fraunces', Georgia, serif; font-size: 2.6rem; font-weight: 700;
  line-height: 1; color: rgba(13,107,104,.10);
}
.step-icon {
  display: grid; place-items: center;
  width: 3.4rem; height: 3.4rem;
  border-radius: 1.1rem;
  background: rgba(13,107,104,.09);
  color: var(--teal);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.step-card:hover .step-icon { background: var(--teal); color: var(--sand); }
.step-title { margin-top: 1.35rem; font-family: 'Fraunces', Georgia, serif; font-size: 1.4rem; font-weight: 600; letter-spacing: -.02em; }
.step-body { margin-top: .7rem; font-size: 1rem; line-height: 1.7; color: rgba(36,52,59,.68); }


/* 09 · PROMOTIONAL BANNER ================================================= */
.promo-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(105deg, var(--amber) 0%, #FFC55F 58%, #FFD98C 100%);
  box-shadow: 0 20px 54px rgba(245,166,35,.28);
}
.promo-banner::after {
  content: '';
  position: absolute; right: -6rem; top: -8rem;
  width: 22rem; height: 22rem; border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.promo-copy { position: relative; z-index: 2; }
.promo-action { position: relative; z-index: 2; display: grid; justify-items: center; gap: 1.2rem; }
.promo-figure {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  font-weight: 700; line-height: .9; color: #fff;
  text-shadow: 0 6px 20px rgba(150,90,0,.22);
}
.promo-figure span { font-size: .45em; vertical-align: super; }

@media (max-width: 860px) {
  .promo-banner { grid-template-columns: 1fr; }
  .promo-action { justify-items: start; }
}


/* 10 · DESTINATIONS ======================================================= */
.filter-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.filter-chip {
  padding: .65rem 1.25rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem; font-weight: 500;
  color: rgba(36,52,59,.7);
  transition: all .22s var(--ease);
}
.filter-chip:hover { border-color: var(--teal); color: var(--teal); }
.filter-chip[aria-pressed="true"] { background: var(--teal); border-color: var(--teal); color: var(--sand); }

.dest-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .3s var(--ease);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.dest-card--tall { min-height: 34rem; }
.dest-card.is-hidden { display: none; }

.dest-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.dest-card:hover .dest-img { transform: scale(1.06); }

.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,40,39,0) 34%, rgba(8,40,39,.78) 100%);
}
.dest-badge {
  position: absolute; left: 1.25rem; top: 1.25rem; z-index: 3;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(255,253,249,.94);
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
}
.dest-body { position: absolute; inset-inline: 0; bottom: 0; z-index: 3; padding: 1.6rem; }
.dest-kicker { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,253,249,.72); }
.dest-title { margin-top: .45rem; font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; font-weight: 600; letter-spacing: -.02em; color: var(--sand); }
.dest-copy { margin-top: .6rem; max-width: 40ch; font-size: .98rem; line-height: 1.65; color: rgba(255,253,249,.78); }
.dest-link {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: 1rem;
  font-size: .92rem; font-weight: 600; color: var(--amber);
  transition: gap .25s var(--ease);
}
.dest-link:hover { gap: .8rem; }


/* 11 · TOURS SLIDER ======================================================= */
.slider-nav { display: flex; gap: .6rem; }
.slider-btn {
  display: grid; place-items: center;
  width: 3.25rem; height: 3.25rem;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transition: all .25s var(--ease);
}
.slider-btn:hover { border-color: var(--teal); background: var(--teal); color: var(--sand); transform: translateY(-3px); }
.slider-btn:disabled { opacity: .35; cursor: default; transform: none; background: #fff; border-color: var(--line); color: var(--ink); }

.tour-swiper { padding-bottom: 3.5rem; }
.tour-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.tour-media { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tour-card:hover .tour-media img { transform: scale(1.07); }
.tour-tag {
  position: absolute; left: 1rem; top: 1rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(255,253,249,.94);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.tour-tag--amber { background: var(--amber); color: #3A2708; }
.tour-tag--lime  { background: var(--lime);  color: #10330C; }

.tour-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.5rem 1.6rem; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: .85rem; color: rgba(36,52,59,.6); }
.tour-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.tour-meta svg { color: var(--teal); }
.tour-title { margin-top: .75rem; font-family: 'Fraunces', Georgia, serif; font-size: 1.4rem; font-weight: 600; letter-spacing: -.02em; }
.tour-copy { margin-top: .6rem; flex: 1; font-size: .98rem; line-height: 1.68; color: rgba(36,52,59,.68); }
.tour-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.tour-price { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; color: var(--teal); }
.tour-price span { display: block; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(36,52,59,.45); }

.swiper-pagination.tour-pagination,
.swiper-pagination.review-pagination { bottom: 0 !important; }
.swiper-pagination-bullet { width: 9px; height: 9px; background: var(--ink); opacity: .2; transition: all .25s var(--ease); }
.swiper-pagination-bullet-active { width: 30px; border-radius: 999px; background: var(--teal); opacity: 1; }


/* 12 · PRICING PACKAGES =================================================== */
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.price-card--featured { border-color: var(--teal); box-shadow: var(--shadow-lift); }
.price-flag {
  position: absolute; right: 1.1rem; top: 1.1rem; z-index: 3;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: var(--amber);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #3A2708;
}
.price-media { overflow: hidden; aspect-ratio: 16 / 8; }
.price-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.price-card:hover .price-media img { transform: scale(1.06); }
.price-body { display: flex; flex-direction: column; flex: 1; padding: 1.9rem 1.8rem 2rem; }
.price-name { font-family: 'Fraunces', Georgia, serif; font-size: 1.7rem; font-weight: 600; letter-spacing: -.022em; }
.price-desc { margin-top: .45rem; font-size: .95rem; line-height: 1.6; color: rgba(36,52,59,.62); }
.price-amount {
  margin-top: 1.35rem; padding-bottom: 1.35rem; border-bottom: 1px solid var(--line);
  font-family: 'Fraunces', Georgia, serif; font-size: 2.4rem; font-weight: 700; line-height: 1; letter-spacing: -.03em; color: var(--teal);
}
.price-amount span { display: block; margin-top: .5rem; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(36,52,59,.45); }
.price-list { display: grid; gap: .8rem; margin: 1.4rem 0 1.9rem; flex: 1; list-style: none; }
.price-list li { display: flex; gap: .7rem; font-size: .97rem; line-height: 1.5; }
.price-list svg { width: 1.05rem; height: 1.05rem; flex: none; margin-top: .18rem; color: var(--lime); }


/* 13 · DESTINATION HIGHLIGHT ============================================== */
.highlight-frame {
  overflow: hidden;
  aspect-ratio: 5 / 4.4;
  border-radius: 54% 46% 38% 62% / 42% 48% 52% 58%;
  box-shadow: var(--shadow-deep);
}
.highlight-chip {
  position: absolute; right: -.5rem; bottom: 1.5rem;
  display: grid; place-items: center;
  padding: 1.5rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.hl-item { display: flex; gap: 1.1rem; }
.hl-icon {
  display: grid; place-items: center; flex: none;
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: rgba(13,107,104,.09);
  color: var(--teal);
}
.hl-title { font-family: 'Fraunces', Georgia, serif; font-size: 1.16rem; font-weight: 600; letter-spacing: -.015em; }
.hl-copy { margin-top: .3rem; font-size: .98rem; line-height: 1.66; color: rgba(36,52,59,.66); }


/* 14 · WHY CHOOSE US + STATISTICS ========================================= */
.why-section { position: relative; background: linear-gradient(165deg, #0F7A76 0%, var(--teal) 42%, #073F3E 100%); }

.why-card {
  padding: 2rem 1.7rem 1.9rem;
  border: 1px solid rgba(255,253,249,.14);
  border-radius: var(--radius);
  background: rgba(255,253,249,.06);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.why-card:hover { transform: translateY(-8px); background: rgba(255,253,249,.11); }
.why-icon {
  display: grid; place-items: center;
  width: 3.2rem; height: 3.2rem;
  border-radius: 1.05rem;
  background: var(--amber);
  color: #3A2708;
}
.why-title { margin-top: 1.25rem; font-family: 'Fraunces', Georgia, serif; font-size: 1.24rem; font-weight: 600; letter-spacing: -.018em; color: var(--cream); }
.why-copy { margin-top: .6rem; font-size: .98rem; line-height: 1.66; color: rgba(255,248,239,.7); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 4.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,253,249,.16);
}
.stat-cell { padding: 2.2rem 1.5rem; text-align: center; background: rgba(7,63,62,.55); }
.stat-big { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 700; line-height: 1; color: var(--amber); }
.stat-cap { margin-top: .7rem; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,248,239,.62); }

@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }


/* 15 · TESTIMONIALS ======================================================= */
.review-swiper { padding-bottom: 3.5rem; }
.review-card {
  display: flex; flex-direction: column;
  height: auto;
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.review-stars { display: flex; gap: .25rem; color: var(--amber); }
.review-stars svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.review-quote {
  flex: 1;
  margin-top: 1.2rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: -.01em;
  color: rgba(36,52,59,.86);
}
.review-person { display: flex; align-items: center; gap: .95rem; margin-top: 1.7rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.review-person img { width: 3.1rem; height: 3.1rem; border-radius: 50%; flex: none; }
.review-name { font-family: 'Fraunces', Georgia, serif; font-size: 1.05rem; font-weight: 600; }
.review-role { margin-top: .18rem; font-size: .84rem; color: rgba(36,52,59,.55); }


/* 16 · GALLERY ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 12.5rem;
  gap: 1rem;
}
.gal-tile { position: relative; overflow: hidden; border-radius: 1.4rem; box-shadow: var(--shadow-soft); }
.gal-tile--wide { grid-column: span 2; }
.gal-tile--tall { grid-row: span 2; }
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gal-tile:hover img { transform: scale(1.09); }
.gal-tile figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 2.2rem 1.1rem .95rem;
  background: linear-gradient(180deg, rgba(8,40,39,0), rgba(8,40,39,.8));
  font-size: .85rem; font-weight: 600; color: var(--sand);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gal-tile:hover figcaption, .gal-tile:focus-within figcaption { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 10.5rem; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-tile--wide, .gal-tile--tall { grid-column: auto; grid-row: auto; }
  .gal-tile figcaption { opacity: 1; transform: none; }
}


/* 17 · JOURNAL ============================================================ */
.post-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.post-media { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.08); }
.post-body { display: flex; flex-direction: column; flex: 1; padding: 1.6rem 1.6rem 1.8rem; }
.post-meta { display: flex; align-items: center; gap: .8rem; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(36,52,59,.45); }
.post-meta span { color: var(--teal); }
.post-title { margin-top: .85rem; font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; font-weight: 600; line-height: 1.28; letter-spacing: -.02em; }
.post-title a { transition: color .2s var(--ease); }
.post-title a:hover { color: var(--teal); }
.post-copy { margin-top: .7rem; flex: 1; font-size: .97rem; line-height: 1.68; color: rgba(36,52,59,.66); }
.post-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.3rem; font-size: .92rem; font-weight: 600; color: var(--teal); transition: gap .25s var(--ease); }
.post-card:hover .post-link { gap: .75rem; }


/* 18 · FAQ ================================================================ */
.faq-list { display: grid; gap: .9rem; }
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] { border-color: rgba(13,107,104,.35); box-shadow: var(--shadow-lift); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.35rem 1.6rem;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem; font-weight: 600; letter-spacing: -.015em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: none;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  background: rgba(13,107,104,.10);
  background-image: linear-gradient(var(--teal), var(--teal)), linear-gradient(var(--teal), var(--teal));
  background-size: .75rem 2px, 2px .75rem;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-answer { padding: 0 1.6rem 1.5rem; }
.faq-answer p { font-size: 1rem; line-height: 1.72; color: rgba(36,52,59,.7); }


/* 19 · NEWSLETTER ========================================================= */
.newsletter {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 3rem;
  padding: clamp(2.2rem, 4.5vw, 3.8rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #0F7A76 0%, var(--teal) 55%, #06403E 100%);
  box-shadow: var(--shadow-deep);
}
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: .7rem; }
.newsletter-form input {
  min-width: 0;
  padding: 1.1rem 1.4rem;
  border: 1.5px solid rgba(255,253,249,.22);
  border-radius: 999px;
  background: rgba(255,253,249,.08);
  font: inherit; font-size: 1rem; color: var(--cream);
}
.newsletter-form input::placeholder { color: rgba(255,248,239,.5); }
.newsletter-form input:focus { outline: none; border-color: var(--amber); background: rgba(255,253,249,.14); }
.newsletter-note { grid-column: 1 / -1; font-size: .8rem; color: rgba(255,248,239,.55); }

@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .newsletter-form { grid-template-columns: 1fr; }
}


/* 20 · CONTACT FORM ======================================================= */
.contact-visual {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.contact-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,40,39,.15) 30%, rgba(8,40,39,.88) 100%);
}
.contact-overlay { position: absolute; inset-inline: 0; bottom: 0; z-index: 2; padding: 2.2rem; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .5rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(36,52,59,.55); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--line);
  border-radius: 1.1rem;
  background: #fff;
  font: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { border-radius: 1.35rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(13,107,104,.10);
}
.field input[aria-invalid="true"] { border-color: #C0392B; }
.field-error { font-size: .85rem; color: #C0392B; }
.form-status { margin-top: .9rem; font-size: .85rem; color: rgba(36,52,59,.5); }
.form-status.is-ok { color: var(--teal); font-weight: 600; }

@media (max-width: 640px) { .contact-form { grid-template-columns: 1fr; } }


/* 21 · FOOTER ============================================================= */
.site-footer { background: linear-gradient(180deg, #095350 0%, #062F2E 100%); color: rgba(255,248,239,.72); }
.footer-head { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,248,239,.45); margin-bottom: 1.35rem; }
.footer-list { display: grid; gap: .8rem; list-style: none; }
.footer-list a { font-size: .97rem; color: rgba(255,248,239,.78); transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer-list a:hover { color: var(--amber); padding-left: .3rem; }
.footer-inline { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-inline:hover { color: var(--amber); }

.social-btn {
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid rgba(255,248,239,.22);
  border-radius: 50%;
  color: var(--cream);
  transition: all .25s var(--ease);
}
.social-btn:hover { background: var(--amber); border-color: var(--amber); color: #3A2708; transform: translateY(-3px); }

.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; list-style: none; }
.insta-grid img { aspect-ratio: 1; width: 100%; object-fit: cover; border-radius: .75rem; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.insta-grid a:hover img { transform: scale(1.07); opacity: .82; }

.footer-bar { border-top: 1px solid rgba(255,248,239,.14); }
.footer-bar p { font-size: .82rem; color: rgba(255,248,239,.5); }


/* 22 · BACK TO TOP ======================================================== */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  display: grid; place-items: center;
  width: 3.1rem; height: 3.1rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--sand);
  box-shadow: var(--shadow-lift);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.to-top:hover { background: var(--teal-deep); transform: translateY(-4px); }


/* 23 · MOTION PREFERENCES ================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}


/* 24 · PROGRESSIVE-ENHANCEMENT FALLBACKS ==================================
   These CDN libraries are optional. If any of them fails to load — offline,
   blocked network, CDN outage — the page must still be readable and usable.
   script.js removes the matching body class once a library is confirmed.
   ========================================================================== */

/* AOS: without its JS the CSS would leave content at opacity 0 forever. */
.no-aos [data-aos] { opacity: 1 !important; transform: none !important; }

/* Swiper: degrade the track to a native scroll-snap carousel. */
.no-swiper .swiper { overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.no-swiper .swiper::-webkit-scrollbar { display: none; }
.no-swiper .swiper-wrapper { display: flex; gap: 1.5rem; }
.no-swiper .swiper-slide { flex: 0 0 min(22rem, 82%); scroll-snap-align: start; }
.no-swiper .swiper-pagination { display: none; }

/* Lucide: reserve the icon box so nothing reflows if the sprite never arrives. */
[data-lucide] { display: inline-block; width: 1em; height: 1em; }


/* 25 · REFINEMENT PASS ====================================================
   Second polish pass. Everything below either replaces a first-pass rule that
   felt templated, or adds the detail layer that separates a commercial
   template from a competent one. Ordered last so it wins on equal specificity.
   ========================================================================== */

/* --- 25.1 · Surface gradients ------------------------------------------
   Flat #FFF8EF bands read as filler. Each section instead gets a very low
   contrast radial wash offset from centre, so light appears to fall across
   the page rather than sitting evenly on it. */

.hero {
  background:
    radial-gradient(120% 90% at 82% 8%,  rgba(245,166,35,.13) 0%, transparent 58%),
    radial-gradient(90% 80% at 4% 42%,   rgba(13,107,104,.10) 0%, transparent 62%),
    linear-gradient(168deg, #FFFDF9 0%, #F3FAF7 44%, #FFF8EF 100%);
}

.bg-cream {
  background:
    radial-gradient(110% 70% at 88% 0%, rgba(13,107,104,.05) 0%, transparent 60%),
    #FFF8EF;
}

.why-section {
  background:
    radial-gradient(80% 60% at 12% 6%,  rgba(99,201,67,.16) 0%, transparent 55%),
    radial-gradient(90% 70% at 92% 92%, rgba(245,166,35,.14) 0%, transparent 58%),
    linear-gradient(158deg, #11837E 0%, #0D6B68 44%, #063C3B 100%);
}

.site-footer {
  background:
    radial-gradient(70% 50% at 88% 0%, rgba(13,107,104,.55) 0%, transparent 62%),
    linear-gradient(180deg, #08514F 0%, #052B2A 100%);
}


/* --- 25.2 · Eyebrow, titles, section rhythm -----------------------------
   The rule now animates in with the text instead of sitting static, and
   titles get an optical hanging indent so the cap-height aligns with the
   eyebrow above it. */

.eyebrow { position: relative; }
.eyebrow-rule {
  width: 2.4rem;
  transform-origin: left center;
  animation: rule-draw .8s var(--ease-out) both;
}
@keyframes rule-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.section-title { margin-left: -.03em; }

.section-lead { color: var(--ink-70); }


/* --- 25.3 · Buttons -----------------------------------------------------
   Adds a sheen sweep on the primary action and pairs every lift with a
   matching shadow change, so the button appears to leave the surface rather
   than just move up. */

.btn { position: relative; overflow: hidden; isolation: isolate; }

.btn-primary, .btn-amber, .btn-dark { box-shadow: var(--sh-teal); }
.btn-amber { box-shadow: var(--sh-amber); }
.btn-dark  { box-shadow: 0 8px 20px -6px rgba(36,52,59,.34); }

.btn-primary::before,
.btn-amber::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 12%, rgba(255,255,255,.26) 46%, transparent 78%);
  transform: translateX(-115%);
  transition: transform .62s var(--ease-out);
}
.btn-primary:hover::before,
.btn-amber:hover::before { transform: translateX(115%); }

.btn-primary { background: linear-gradient(168deg, var(--teal-lift), var(--teal)); }
.btn-primary:hover { background: linear-gradient(168deg, var(--teal), var(--teal-deep)); }
.btn-amber   { background: linear-gradient(168deg, #FFB544, var(--amber)); }
.btn-amber:hover { background: linear-gradient(168deg, var(--amber), var(--amber-deep)); }

.btn:active { transform: translateY(-1px) scale(.985); }

/* Icons inside buttons track the label instead of sitting still. */
.btn svg { transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn-ghost:hover svg, .btn-outline:hover svg { transform: translateX(2px); }


/* --- 25.4 · Card choreography ------------------------------------------
   One shared hover language: lift, shadow deepen, border warm, image ease
   forward. Previously each card type hovered slightly differently, which is
   the kind of inconsistency that reads as machine-assembled. */

.step-card, .tour-card, .price-card, .post-card, .review-card, .dest-card {
  transition:
    transform .42s var(--ease-out),
    box-shadow .42s var(--ease-out),
    border-color .42s var(--ease-out);
  will-change: transform;
}
.step-card:hover, .tour-card:hover, .price-card:hover,
.post-card:hover, .review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: rgba(13,107,104,.22);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }

/* Images inside cards drift rather than snap. */
.tour-media img, .price-media img, .post-media img, .dest-img, .gal-tile img {
  transition: transform 1.05s var(--ease-soft), filter .5s var(--ease);
  filter: saturate(.97);
}
.tour-card:hover .tour-media img,
.price-card:hover .price-media img,
.post-card:hover .post-media img { transform: scale(1.055); filter: saturate(1.06); }
.dest-card:hover .dest-img       { transform: scale(1.05);  filter: saturate(1.06); }
.gal-tile:hover img              { transform: scale(1.07);  filter: saturate(1.08); }

/* A hairline of light on the top edge of every white card. */
.step-card, .tour-card, .price-card, .post-card, .review-card, .faq-item, .search-card {
  box-shadow: var(--sh-2), var(--sh-inset);
}


/* --- 25.5 · Media treatment --------------------------------------------
   Vector art has no lens. These add the two things a camera would: a slight
   vignette at the frame edge and a warm highlight where the light falls. */

.tour-media, .price-media, .post-media, .highlight-frame,
.hero-frame, .contact-visual, .gal-tile, .dest-card { position: relative; }

.tour-media::after, .price-media::after, .post-media::after,
.hero-frame::after, .highlight-frame::after, .gal-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,.16) 0%, transparent 46%),
    radial-gradient(130% 110% at 50% 100%, rgba(6,40,39,.16) 0%, transparent 52%);
}
.gal-tile::after { z-index: 1; }
.gal-tile figcaption { z-index: 2; }


/* --- 25.6 · Hero -------------------------------------------------------- */

.hero-frame {
  /* asymmetric organic mask, weighted so the heavier lobe faces the copy */
  border-radius: 56% 44% 47% 53% / 42% 38% 62% 58%;
  box-shadow: var(--sh-4);
}
.hero-frame img { transform: scale(1.02); }

.badge-disc {
  background: linear-gradient(150deg, #FFC259, var(--amber) 58%, var(--amber-deep));
  box-shadow: var(--sh-amber), inset 0 2px 0 rgba(255,255,255,.4);
}
.badge-disc::after {
  content: '';
  position: absolute;
  inset: .42rem;
  border: 1px dashed rgba(58,39,8,.34);
  border-radius: 50%;
}

.float-card {
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--sh-3), var(--sh-inset);
  animation: float-in .9s var(--ease-out) both;
}
.float-card--tl { animation-delay: .35s; }
.float-card--br { animation-delay: .5s; }
@keyframes float-in {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

.stat-value { letter-spacing: -.03em; }
.stat-label { color: var(--ink-45); }


/* --- 25.7 · Search card ------------------------------------------------- */

.search-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-4), var(--sh-inset);
  background: linear-gradient(180deg, #FFFFFF, #FFFDF9);
}
.search-input-wrap select,
.search-input-wrap input { transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.search-input-wrap select:focus,
.search-input-wrap input:focus { box-shadow: 0 0 0 4px rgba(13,107,104,.10); }
.search-field:focus-within .search-icon { color: var(--amber); }
.search-icon { transition: color .25s var(--ease); }


/* --- 25.8 · Numbered steps ---------------------------------------------
   The step number now sits behind the icon as a watermark and a connector
   line runs between cards on desktop, so the three read as a sequence. */

.step-card { overflow: hidden; }
.step-num { font-size: 4.2rem; right: 1.2rem; top: .6rem; color: rgba(13,107,104,.07); }
.step-icon { box-shadow: inset 0 0 0 1px rgba(13,107,104,.10); }
.step-card:hover .step-icon { box-shadow: var(--sh-teal); }

@media (min-width: 768px) {
  ol.grid > .step-card { position: relative; }
  ol.grid > .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.6rem; top: 3.7rem;
    width: 1.6rem; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(13,107,104,.28) 0 5px, transparent 5px 10px);
  }
}


/* --- 25.9 · Promotional banner ------------------------------------------ */

.promo-banner {
  background: linear-gradient(102deg, #F3A01F 0%, #FFBE4E 52%, #FFD68A 100%);
  box-shadow: var(--sh-amber);
}
.promo-banner::before {
  content: '';
  position: absolute;
  left: -4rem; bottom: -7rem;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.4);
}
.promo-figure { text-shadow: 0 4px 18px rgba(140,84,0,.26); }


/* --- 25.10 · Destination tiles ------------------------------------------ */

.dest-card::after {
  background:
    linear-gradient(180deg, rgba(5,32,31,0) 28%, rgba(5,32,31,.52) 62%, rgba(5,32,31,.88) 100%);
  transition: opacity .45s var(--ease);
}
.dest-card:hover::after { opacity: .92; }
.dest-badge {
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-1);
}
.dest-body { transition: transform .45s var(--ease-out); }
.dest-card:hover .dest-body { transform: translateY(-4px); }
.dest-link { position: relative; }
.dest-link::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width .35s var(--ease-out);
}
.dest-card:hover .dest-link::after { width: calc(100% - 1.4rem); }

.filter-chip { box-shadow: var(--sh-1); }
.filter-chip[aria-pressed="true"] { box-shadow: var(--sh-teal); }


/* --- 25.11 · Tour + pricing cards --------------------------------------- */

.tour-tag { backdrop-filter: blur(8px); box-shadow: var(--sh-1); }
.tour-price span { color: var(--ink-45); }

.price-card--featured {
  border-color: rgba(13,107,104,.4);
  box-shadow: var(--sh-4), var(--sh-inset);
}
.price-card--featured::before {
  content: '';
  position: absolute;
  inset-inline: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--lime));
  z-index: 4;
}
.price-flag { box-shadow: var(--sh-amber); }
.price-list li { color: var(--ink-90); }
.price-list svg { padding: .1rem; border-radius: 50%; background: rgba(99,201,67,.14); }


/* --- 25.12 · Why-choose-us + statistics --------------------------------- */

.why-card {
  border-color: rgba(255,253,249,.16);
  background: linear-gradient(165deg, rgba(255,253,249,.10), rgba(255,253,249,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.why-card:hover {
  background: linear-gradient(165deg, rgba(255,253,249,.16), rgba(255,253,249,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 24px 48px -20px rgba(0,0,0,.4);
}
.why-icon {
  background: linear-gradient(150deg, #FFC259, var(--amber));
  box-shadow: var(--sh-amber);
  transition: transform .4s var(--ease-out);
}
.why-card:hover .why-icon { transform: translateY(-3px) rotate(-4deg); }

.stat-strip {
  background: rgba(255,253,249,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 30px 70px -30px rgba(0,0,0,.5);
}
.stat-cell { background: rgba(4,44,43,.5); transition: background-color .35s var(--ease); }
.stat-cell:hover { background: rgba(4,44,43,.3); }


/* --- 25.13 · Testimonials ----------------------------------------------- */

.review-card::before {
  content: '\\201C';
  position: absolute;
  right: 1.4rem; top: .2rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(13,107,104,.09);
  pointer-events: none;
}
.review-card { position: relative; }
.review-quote { color: var(--ink-90); }
.review-person img { box-shadow: 0 0 0 3px #fff, 0 0 0 4.5px rgba(13,107,104,.18); }


/* --- 25.14 · Gallery ----------------------------------------------------
   Tiles now stagger their reveal by column position, which stops the grid
   arriving as one block. */

.gal-tile { border-radius: 1.6rem; }
.gal-tile figcaption {
  padding: 2.6rem 1.2rem 1rem;
  letter-spacing: .01em;
  background: linear-gradient(180deg, rgba(5,32,31,0), rgba(5,32,31,.86));
}


/* --- 25.15 · Journal ----------------------------------------------------- */

.post-meta span {
  padding: .3rem .6rem;
  border-radius: .4rem;
  background: rgba(13,107,104,.08);
  letter-spacing: .1em;
}
.post-title a { background-image: linear-gradient(var(--teal), var(--teal)); background-size: 0 1.5px;
  background-position: 0 100%; background-repeat: no-repeat; transition: background-size .4s var(--ease-out); }
.post-card:hover .post-title a { background-size: 100% 1.5px; }


/* --- 25.16 · FAQ --------------------------------------------------------- */

.faq-item { border-radius: var(--radius-sm); transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease); }
.faq-item:hover { border-color: rgba(13,107,104,.28); }
.faq-item[open] { background: linear-gradient(180deg, #FFFFFF, #FDFBF6); }
.faq-item summary { transition: color .25s var(--ease); }
.faq-item summary:hover { color: var(--teal); }
.faq-answer p { color: var(--ink-70); }


/* --- 25.17 · Newsletter + contact ---------------------------------------- */

.newsletter {
  background:
    radial-gradient(80% 70% at 88% 4%, rgba(99,201,67,.18) 0%, transparent 58%),
    linear-gradient(122deg, #11837E 0%, #0D6B68 52%, #05403E 100%);
  box-shadow: var(--sh-4);
}
.newsletter-form input { transition: border-color .25s var(--ease), background-color .25s var(--ease); }

.contact-visual::after {
  background: linear-gradient(180deg, rgba(5,32,31,.08) 24%, rgba(5,32,31,.62) 62%, rgba(5,32,31,.92) 100%);
}
.field input, .field select, .field textarea { box-shadow: var(--sh-1); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(13,107,104,.3); }


/* --- 25.18 · Footer ------------------------------------------------------ */

.social-btn { box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.insta-grid img { box-shadow: var(--sh-1); }
.footer-list a { display: inline-block; }


/* --- 25.19 · Icon consistency -------------------------------------------
   Lucide defaults to stroke-width 2, which is heavy next to a serif display
   face at these sizes. Everything is dialled back and set to round joins. */

svg[class*="lucide"], .lucide {
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-icon .lucide, .step-icon .lucide, .hl-icon .lucide { stroke-width: 1.6; }
.review-stars .lucide { stroke-width: 1.4; }


/* --- 25.20 · Staggered reveal -------------------------------------------
   Applied by script.js to direct children of a marked container, so grids
   arrive in sequence without hand-writing a delay on every element. */

[data-stagger] > * { animation: rise .72s var(--ease-out) both; animation-delay: var(--d, 0ms); }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }


/* --- 25.21 · Section transitions ----------------------------------------
   Three distinct divider silhouettes rather than one wave reused, plus a
   soft light seam where two flat bands meet. */

.wave-divider svg { height: clamp(46px, 6.5vw, 108px); }

.seam { position: relative; }
.seam::before {
  content: '';
  position: absolute;
  inset-inline: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,107,104,.16), transparent);
}


/* --- 25.22 · Reduced motion --------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .eyebrow-rule, .float-card, [data-stagger] > * { animation: none !important; }
  .btn-primary::before, .btn-amber::before { display: none; }
}
