/* ============================================================
   2026 太平洋南島聯合豐年節 ｜ 吉航旅遊
   Immersive Ocean × Austronesian Festival Landing
   Brand: #ea5a26 (sunset orange) + #5e529c (twilight purple)
   ============================================================ */

:root {
  /* Brand */
  --brand-orange: #ea5a26;
  --brand-orange-deep: #c8431a;
  --brand-purple: #5e529c;
  --brand-purple-deep: #3d3470;

  /* Surfaces */
  --pearl: #f8f6f1;
  --pearl-2: #fbf9f4;
  --bone: #f1ece2;
  --ink: #1c1830;
  --ink-2: #3a3454;
  --muted: #7b7390;
  --line: rgba(28, 24, 48, 0.10);

  /* Accents */
  --sand: #f2d2a9;
  --sand-deep: #e1b97f;
  --tiffany: #b2d8d8;

  /* Effects */
  --shadow-sm: 0 4px 16px rgba(28, 24, 48, 0.06);
  --shadow-md: 0 14px 40px -10px rgba(28, 24, 48, 0.14);
  --shadow-lg: 0 30px 80px -20px rgba(28, 24, 48, 0.30);
  --shadow-warm: 0 30px 60px -20px rgba(234, 90, 38, 0.35);

  /* Type */
  --ff-sans: "Plus Jakarta Sans", "Noto Sans TC", system-ui, -apple-system, sans-serif;
  --ff-serif: "Noto Serif TC", "Plus Jakarta Sans", serif;

  /* Layout */
  --container: 1240px;
  --radius: 20px;
  --radius-lg: 28px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
noscript { display: none !important; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--pearl);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

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

/* ---------- Common ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-orange);
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}
.kicker--light { color: var(--sand); }
.kicker--light::before { background: var(--sand); }

.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0.04em;
  margin: 18px 0 16px;
  color: var(--ink);
}
.section-head__lead {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.85;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .25s, color .25s;
  white-space: nowrap;
  position: relative;
}
.btn i { font-size: 18px; transition: transform .35s; }
.btn--sm { padding: 12px 20px; font-size: 13px; }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-warm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 36px 70px -20px rgba(234, 90, 38, 0.55); }
.btn--primary:hover i { transform: translateX(4px); }

.btn--accent {
  background: var(--sand);
  color: var(--brand-purple-deep);
  box-shadow: 0 20px 40px -16px rgba(242, 210, 169, 0.7);
}
.btn--accent:hover { background: var(--sand-deep); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.20); transform: translateY(-2px); }

.btn--light {
  background: #fff;
  color: var(--brand-purple-deep);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 18px 0;
  transition: background .4s, box-shadow .4s, padding .4s, backdrop-filter .4s;
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  position: relative;
}
.nav__logo {
  height: 44px;
  width: auto;
  transition: opacity .35s ease;
  display: block;
}
.nav__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.92);
  transition: color .4s;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  box-shadow: 0 12px 24px -10px rgba(234,90,38,0.5);
  transition: transform .3s, box-shadow .3s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -10px rgba(234,90,38,0.7); }
.nav__cta i { font-size: 16px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s, opacity .35s, background .35s;
}

/* Solid nav after scroll */
.nav.is-scrolled {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 6px 24px -10px rgba(28,24,48,0.18);
  padding: 12px 0;
}
/* When mobile menu is open, drop backdrop-filter on the nav.
   Reason: backdrop-filter creates a containing block for position:fixed
   descendants, which would clip the full-screen menu to the nav bar. */
.nav.is-open,
.nav.is-open.is-scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;
}
.nav.is-scrolled .nav__logo--light { opacity: 0; }
.nav.is-scrolled .nav__logo--dark  { opacity: 1; }
.nav.is-scrolled .nav__links { color: var(--ink-2); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: clamp(110px, 14vh, 160px) 24px 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__video-placeholder {
  position: absolute;
  inset: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(110%) contrast(102%);
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0%   { transform: scale(1.06) translate3d(0,0,0); }
  100% { transform: scale(1.12) translate3d(-1%, -1.5%, 0); }
}
.hero__video-tag {
  position: absolute;
  bottom: 100px; left: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  color: #fff;
}
.hero__video-tag i { font-size: 14px; color: var(--sand); }
.hero__video-tag em { font-style: normal; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 60% at 50% 55%, rgba(20, 16, 40, 0.70) 0%, rgba(20,16,40,0.30) 60%, rgba(20,16,40,0) 80%),
    linear-gradient(180deg, rgba(20, 16, 40, 0.70) 0%, rgba(20, 16, 40, 0.55) 40%, rgba(20, 16, 40, 0.92) 100%);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 10px 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  margin-bottom: 4px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 12px var(--brand-orange);
}

/* ===== Hero title image (uploaded brush typography) ===== */
.hero__title-img {
  display: block;
  width: min(960px, 92vw);
  height: auto;
  margin: 18px auto 24px;
  pointer-events: none;
  /* Warm glow only — no dark vignette so the brush typography floats over the night banner. */
  filter:
    drop-shadow(0 0 14px rgba(255, 235, 200, 0.60))
    drop-shadow(0 0 40px rgba(255, 190, 120, 0.35));
  animation:
    heroTitleEnter 1.6s cubic-bezier(.2,.75,.2,1) both,
    heroTitleGlow 5.5s ease-in-out 1.8s infinite;
}
@keyframes heroTitleEnter {
  0%   { opacity: 0; transform: translateY(36px) scale(0.94); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes heroTitleGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 14px rgba(255, 235, 200, 0.60))
      drop-shadow(0 0 40px rgba(255, 190, 120, 0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(255, 240, 210, 0.85))
      drop-shadow(0 0 60px rgba(255, 200, 140, 0.55));
  }
}

@media (max-width: 760px) {
  .hero__title-img { width: 94vw; margin-bottom: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-img { animation: heroTitleEnter 0.4s ease both; }
}

.hero__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.16;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow:
    0 4px 18px rgba(0,0,0,0.55),
    0 12px 50px rgba(0,0,0,0.45);
  margin-bottom: 28px;
}
.hero__title-line { display: block; position: relative; }
.hero__title-line:nth-child(2) {
  color: #fff;
  display: inline-block;
  padding-bottom: 14px;
}
.hero__title-line:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-orange) 30%, var(--sand) 70%, transparent);
  box-shadow: 0 0 16px rgba(234,90,38,0.7);
}

.hero__sub {
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: 0.42em;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.80);
  font-size: 10px;
  letter-spacing: 0.5em;
  font-weight: 600;
  z-index: 2;
}
.hero__scroll-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.5);
  animation: scrollBob 2.4s ease-in-out infinite;
}
.hero__scroll-icon i { font-size: 16px; }
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* Banner variant: image already has text baked in — minimal overlay, content sits at bottom */
.hero--banner {
  justify-content: flex-end;
  padding-bottom: 140px;
}
.hero--banner .hero__overlay {
  background:
    linear-gradient(180deg, rgba(20,16,40,0) 0%, rgba(20,16,40,0) 55%, rgba(20,16,40,0.55) 100%);
}
.hero--banner .hero__bg {
  object-position: center center;
  transform: scale(1);
  animation: none;
}
/* Wave divider */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  display: block;
}
.wave--bottom { bottom: -1px; }
.wave--top    { top: -1px; transform: rotate(180deg) translateY(-1px); }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 8vw, 120px);
  background: var(--pearl);
  position: relative;
}
.intro__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.intro__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 22px 0 36px;
}
.intro__title em {
  font-style: italic;
  color: var(--brand-orange);
  font-family: var(--ff-serif);
}

.intro__meta { display: flex; flex-direction: column; gap: 20px; }
.intro__meta > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.intro__meta i {
  font-size: 22px;
  color: var(--brand-purple);
  padding: 10px;
  background: rgba(94, 82, 156, 0.10);
  border-radius: 12px;
}
.intro__meta strong { display: block; font-weight: 700; letter-spacing: 0.06em; font-size: 16px; color: var(--ink); }
.intro__meta span { color: var(--muted); font-size: 13px; letter-spacing: 0.12em; margin-top: 4px; display: block; }

.intro__lead {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.intro__body {
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  margin-bottom: 40px;
}

.intro__images {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}
.intro__img {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.intro__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.intro__img:hover img { transform: scale(1.06); }
.intro__img--1 { transform: translateY(-30px); aspect-ratio: 4/5; }
.intro__img--1 img { aspect-ratio: 4/5; }
.intro__img--2 { transform: translateY(30px); }

/* Stats */
.intro__stats {
  margin-top: clamp(60px, 8vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(28px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.30) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.intro__stats::before {
  content: "";
  position: absolute; inset: auto -10% -120% -10%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(234,90,38,0.10), transparent 50%),
              radial-gradient(circle at 75% 70%, rgba(94,82,156,0.12), transparent 55%);
  z-index: -1;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-purple-deep);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.7;
}
.stat__sep {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ============================================================
   ITINERARY
   ============================================================ */
.itinerary {
  position: relative;
  padding: clamp(90px, 10vw, 130px) 0 clamp(90px, 10vw, 130px);
  background:
    radial-gradient(circle at 80% -10%, rgba(234,90,38,0.25), transparent 45%),
    radial-gradient(circle at 0% 50%, rgba(94,82,156,0.35), transparent 50%),
    linear-gradient(180deg, var(--brand-purple-deep) 0%, #2a2348 60%, var(--brand-purple-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.itinerary .kicker { color: var(--sand); }
.itinerary .kicker::before { background: var(--sand); }
.itinerary .section-head__title { color: #fff; }
.itinerary .section-head__lead { color: rgba(255,255,255,0.75); }

.itinerary__grid,
.hl-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
  position: relative;
}

/* ----- Highlight card ----- */
.hl {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
  min-height: clamp(280px, 32vw, 380px);
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2vw, 26px);
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.45);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s, border-color .4s;
}
.hl:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 32px 60px -20px rgba(0,0,0,0.55);
}
.hl--reverse .hl__visual { order: 2; }

.hl__visual {
  position: relative;
  height: 100%;
  min-height: clamp(220px, 26vw, 320px);
  border-radius: 16px;
  overflow: hidden;
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.55);
  isolation: isolate;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s;
}
.hl:hover .hl__visual {
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.65);
}

.hl__visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.hl:hover .hl__visual img { transform: scale(1.06); }

/* Readability overlay so badge + chip pop on any photo */
.hl__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,16,40,0.55) 0%, rgba(20,16,40,0) 35%, rgba(20,16,40,0) 60%, rgba(20,16,40,0.75) 100%);
  pointer-events: none;
}

.hl__badge {
  position: absolute;
  top: 22px; left: 26px;
  font-family: var(--ff-serif);
  font-size: clamp(44px, 4.5vw, 70px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0,0,0,0.45);
  z-index: 2;
}
.hl__badge::after {
  content: "";
  display: block;
  width: 36px; height: 2px;
  background: var(--brand-orange);
  margin-top: 10px;
  box-shadow: 0 0 12px rgba(234,90,38,0.7);
}

.hl__chip {
  position: absolute;
  bottom: 22px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  background: rgba(20,16,40,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
  z-index: 2;
}

.hl__body {
  padding: clamp(14px, 1.6vw, 24px) clamp(10px, 1.2vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hl__kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}
.hl__title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}
.hl__desc {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.hl__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.hl__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hl__list li:first-child { border-top: 0; padding-top: 4px; }
.hl__list i {
  font-size: 19px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* Featured callout box (used on Liyu Lake 5 activities) */
.hl__feature {
  margin-top: 16px;
  padding: 20px 22px;
  background: rgba(234, 90, 38, 0.10);
  border: 1px solid rgba(234, 90, 38, 0.30);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.hl__feature-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 0.10em;
  color: var(--sand);
}
.hl__feature-head i { font-size: 22px; color: var(--brand-orange); }
.hl__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hl__chips li {
  padding: 7px 14px;
  font-size: 12.5px;
  letter-spacing: 0.10em;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  color: #fff;
}

.hl__credit {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 10vw, 140px);
  background: var(--pearl);
  position: relative;
}
.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(242,210,169,0.35), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(178,216,216,0.35), transparent 60%);
  pointer-events: none;
}
.packages .container { position: relative; }

.cards {
  margin-top: clamp(60px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px);
  max-width: 920px;
  margin-inline: auto;
}

.card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow: var(--shadow-lg);
}

.card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.card:hover .card__media img { transform: scale(1.08); }
.card__ribbon {
  position: absolute;
  top: 18px; left: 18px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  background: rgba(255,255,255,0.92);
  color: var(--brand-orange);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.card__ribbon--alt { color: var(--brand-purple); }
.card__ribbon--gold { background: var(--sand); color: var(--brand-purple-deep); }

.card__body {
  padding: 28px clamp(22px, 2vw, 30px) 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.card__cat {
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--brand-purple);
  text-transform: uppercase;
}
.card__title {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.card__desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card__tags li {
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  background: rgba(94, 82, 156, 0.08);
  color: var(--brand-purple-deep);
  border-radius: 999px;
  border: 1px solid rgba(94, 82, 156, 0.15);
}
.card__dates {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(28, 24, 48, 0.03);
  border-radius: 12px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  line-height: 1.6;
}
.card__dates i {
  font-size: 16px;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.card__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--brand-orange-deep);
}
.card__price-from { font-size: 13px; font-weight: 600; letter-spacing: 0.10em; }
.card__price strong {
  font-family: var(--ff-serif);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.card__price-suffix { font-size: 12px; color: var(--muted); letter-spacing: 0.14em; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background:
    radial-gradient(circle at 20% 20%, rgba(242,210,169,0.25), transparent 50%),
    linear-gradient(120deg, var(--brand-purple-deep) 0%, #2d255a 60%, var(--brand-orange-deep) 130%);
  color: #fff;
  padding: clamp(60px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
  pointer-events: none;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-strip__text h3 {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 12px;
}
.cta-strip__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #16122c;
  color: rgba(255,255,255,0.78);
  padding: clamp(70px, 8vw, 110px) 0 0;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 60px;
}
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}
.footer__tag {
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--sand);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__license {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer__col h4 {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.footer__col h4::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 28px; height: 2px;
  background: var(--brand-orange);
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  transition: color .25s;
}
.footer__col a:hover { color: var(--sand); }
.footer__col i {
  font-size: 15px;
  color: var(--brand-orange);
  width: 18px;
  text-align: center;
}

.footer__col--cta p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px clamp(20px, 4vw, 48px);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { gap: 24px; font-size: 13px; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__images { margin-top: 40px; }
  .itinerary__grid { gap: 28px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(20,16,40,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    color: #fff !important;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    font-size: 18px;
    padding: 80px 24px 40px;
    z-index: 85;
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav.is-scrolled .nav__links { color: #fff !important; }
  .nav__cta { padding: 9px 14px; font-size: 12px; letter-spacing: 0.12em; gap: 6px; }
  .nav__cta i { font-size: 14px; }
  .nav__burger { display: flex; z-index: 95; position: relative; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }

  .hero { padding: 130px 20px 100px; }
  .hero__video-tag { display: none; }
  .hero__scroll { bottom: 36px; }

  .intro__stats { flex-wrap: wrap; gap: 28px 16px; justify-content: center; text-align: center; padding: 30px 24px; }
  .stat { flex: 1 1 40%; align-items: center; }
  .stat__sep { display: none; }

  .itinerary__grid { grid-template-columns: 1fr; }
  .day--alt { transform: none; }
  .day--alt:hover { transform: translateY(-8px); }

  .hl { grid-template-columns: 1fr; gap: 24px; min-height: 0; }
  .hl--reverse .hl__visual { order: 0; }
  .hl__visual { aspect-ratio: 4/3; height: auto; min-height: 0; }
  .hl__badge { top: 16px; left: 20px; }

  .cards { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
