/* ==========================================================================
   LAWELIYA — Homepage CSS (Complete Rebuild)
   All classes match front-page.php exactly.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --ink:       #080806;
  --ink-soft:  #111110;
  --ink-mid:   #1a1916;
  --ink-mist:  #2a2924;
  --gold:      #c8a46e;
  --gold-warm: #d4b483;
  --gold-dim:  rgba(200,164,110,.12);
  --gold-glow: rgba(200,164,110,.06);
  --ivory:     #f0ead8;
  --muted:     #7a7468;
  --border:    rgba(200,164,110,.1);
  --sage:      #3d5e44;
  --amber:     #b86a30;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --body:      'Jost', 'Helvetica Neue', sans-serif;
  --ease:      cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.hp-section-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.hp-section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: currentColor; opacity: .5; }

.hp-section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300;
  color: var(--ivory); line-height: 1.05;
}
.hp-gold { color: var(--gold); }

.hp-btn-gold {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--ink);
  padding: .85rem 1.85rem; border-radius: 8px;
  font-family: var(--body); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; text-decoration: none;
  transition: all .35s var(--ease); border: none; cursor: pointer;
}
.hp-btn-gold:hover { background: var(--gold-warm); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(200,164,110,.3); }

.hp-btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid rgba(200,164,110,.45); color: var(--gold);
  padding: .85rem 1.85rem; border-radius: 8px;
  font-family: var(--body); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; text-decoration: none;
  transition: all .35s var(--ease);
}
.hp-btn-ghost:hover { background: var(--gold-dim); border-color: var(--gold); }

.hp-btn-ghost-dark {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--border); color: var(--muted);
  padding: .85rem 1.85rem; border-radius: 8px;
  font-family: var(--body); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; text-decoration: none;
  transition: all .35s var(--ease);
}
.hp-btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

.hp-btn-xl { padding: 1.1rem 2.5rem; font-size: .88rem; }

/* ── SCROLL REVEAL ── */
.hp-rev { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.hp-rev-in { opacity: 1; transform: none; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hp-hero {
  position: relative; height: 100vh; min-height: 720px;
  display: flex; align-items: center;
  overflow: hidden;
  z-index: 1; /* sits above sections below */
}

/* Media layer */
.hp-hero-media { position: absolute; inset: 0; z-index: 0; }

.hp-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.82) contrast(1.05) saturate(1.1);
  display: block;
}

.hp-hero-video-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0c0a 0%, #1a1510 50%, #0a0d08 100%);
}

.hp-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,6,.9) 0%, rgba(8,8,6,.55) 55%, rgba(8,8,6,.2) 100%),
    linear-gradient(180deg, rgba(8,8,6,.3) 0%, transparent 40%, rgba(8,8,6,.7) 100%);
}

/* Hero copy */
.hp-hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem 0 5vw;
  max-width: 680px;
}

.hp-hero-badge {
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 2rem;
  padding: .5rem 1.1rem;
  background: rgba(200,164,110,.1); border: 1px solid rgba(200,164,110,.25);
  border-radius: 24px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  animation: fadeUp 1s var(--ease) both;
}
.hp-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}

.hp-hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: .95; letter-spacing: -.02em; color: var(--ivory);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s var(--ease) .08s both;
}
.hp-hero-em { display: block; color: var(--gold); font-style: italic; }

.hp-hero-sub {
  font-size: 1rem; font-weight: 300; color: rgba(240,234,216,.7); line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--ease) .16s both;
}

.hp-hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
  animation: fadeUp 1s var(--ease) .24s both;
}

.hp-hero-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) .32s both;
}
.hp-stat { padding: 0 1.5rem; text-align: center; }
.hp-stat:first-child { padding-left: 0; }
.hp-stat-n { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-weight: 300; line-height: 1; }
.hp-stat-l { display: block; font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; }
.hp-stat-div { width: 1px; height: 30px; background: var(--border); }

/* Hero glass cards */
.hp-hero-cards {
  position: absolute; right: 3rem; top: 50%; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: 1rem;
  width: 310px;
  animation: fadeUp 1s var(--ease) .4s both;
}

.hp-glass-card {
  background: rgba(8,8,6,.7);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(200,164,110,.18);
  border-radius: 16px;
  overflow: hidden;
}

.hp-glass-card-label {
  display: flex; align-items: center; gap: .5rem;
  padding: .9rem 1.1rem;
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(200,164,110,.1);
}

/* Weather card */
.hp-weather-grid { padding: .5rem 0; }
.hp-weather-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 1.1rem; transition: background .2s;
}
.hp-weather-item:hover { background: rgba(200,164,110,.04); }
.hw-emoji { font-size: 1.2rem; flex-shrink: 0; }
.hw-info { flex: 1; min-width: 0; }
.hw-park { display: block; font-size: .8rem; color: var(--ivory); font-weight: 500; }
.hw-cond { display: block; font-size: .68rem; color: var(--muted); margin-top: .1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hw-temp { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-weight: 400; flex-shrink: 0; }

.hp-weather-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.1rem;
  border-top: 1px solid rgba(200,164,110,.08);
}
.hw-update { font-size: .6rem; color: var(--muted); }
.hw-link { font-size: .65rem; color: var(--gold); text-decoration: none; letter-spacing: .05em; }
.hw-link:hover { text-decoration: underline; }

/* Parks card */
.hp-park-item {
  display: block; text-decoration: none;
  padding: .75rem 1.1rem;
  border-bottom: 1px solid rgba(200,164,110,.06);
  transition: background .2s;
}
.hp-park-item:last-of-type { border-bottom: none; }
.hp-park-item:hover { background: rgba(200,164,110,.05); }

.hp-park-name-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.hp-park-name { font-size: .82rem; color: var(--ivory); font-weight: 500; }
.hp-park-badge { font-size: .58rem; color: var(--gold); background: var(--gold-dim); padding: .2rem .5rem; border-radius: 8px; }
.hp-park-highlight { font-size: .7rem; color: var(--muted); line-height: 1.4; margin-bottom: .4rem; }
.hp-park-score-bar { height: 3px; background: rgba(255,255,255,.05); border-radius: 2px; overflow: hidden; }
.hp-park-score-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-warm)); border-radius: 2px; }
.hp-parks-all { display: block; padding: .75rem 1.1rem; font-size: .68rem; color: var(--gold); text-decoration: none; letter-spacing: .06em; }
.hp-parks-all:hover { text-decoration: underline; }

/* Scroll cue */
.hp-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .58rem; color: var(--muted); letter-spacing: .2em; text-transform: uppercase;
  z-index: 4; animation: scrollBob 2.2s ease-in-out infinite;
}
.hp-scroll-line { width: 1px; height: 48px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%); }

/* ==========================================================================
   WHY LAWELIYA — 2×4 editorial mosaic
   ========================================================================== */

.hp-why { position: relative; overflow: hidden; z-index: 0; }

.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 420px);
}

.hp-why-img {
  position: relative; /* required for ::after to be contained */
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease);
  overflow: hidden;
}
.hp-why-img:hover { transform: scale(1.04); }

/* Image placeholders — gold gradient backgrounds */
.hp-why-img-1 { background: linear-gradient(135deg, #1a2818 0%, #2d4a2a 100%); }
.hp-why-img-2 { background: linear-gradient(135deg, #0a1e0d 0%, #1a3a1e 100%); }
.hp-why-img-3 { background: linear-gradient(135deg, #1e1505 0%, #3a2a08 100%); }
.hp-why-img-4 { background: linear-gradient(135deg, #0d0f0a 0%, #1e2318 100%); }

/* Image emoji overlay — contained inside each cell, will not bleed */
.hp-why-img::after {
  content: '🌍'; font-size: 5rem; opacity: .08;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.hp-why-img-1::after { content: '🦁'; }
.hp-why-img-2::after { content: '🐘'; }
.hp-why-img-3::after { content: '🌅'; }
.hp-why-img-4::after { content: '🦒'; }

.hp-why-block {
  padding: 3rem; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hp-why-block::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.03); pointer-events: none;
}

.hp-why-block--gold  { background: linear-gradient(135deg, #8c6030 0%, #6a4820 100%); }
.hp-why-block--sage  { background: linear-gradient(135deg, #2a4832 0%, #1e3424 100%); }
.hp-why-block--amber { background: linear-gradient(135deg, #7a3810 0%, #5a2808 100%); }
.hp-why-block--ink   { background: linear-gradient(135deg, #1a1a14 0%, #2a2820 100%); border: 1px solid rgba(200,164,110,.1); }

.hp-why-block-icon { font-size: 1.5rem; color: rgba(255,255,255,.3); margin-bottom: 1rem; display: block; }
.hp-why-block-title { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: #fff; margin-bottom: .3rem; }
.hp-why-block-sub { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.hp-why-block-body { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.8; }

/* ==========================================================================
   DESTINATIONS — alternating rows
   ========================================================================== */

.hp-dests {
  padding: 6rem 0;
  background: var(--ink);
}

.hp-dests-head {
  max-width: 1440px; margin: 0 auto 3rem;
  padding: 0 4rem;
}

.hp-dest-row {
  max-width: 1440px; margin: 0 auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.hp-dest-row:last-of-type { border-bottom: none; }

.hp-dest-row--reverse .hp-dest-img { order: 2; }
.hp-dest-row--reverse .hp-dest-copy { order: 1; }

.hp-dest-img {
  position: relative; height: 480px; overflow: hidden;
}
.hp-dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.hp-dest-img:hover img { transform: scale(1.05); }
.hp-dest-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ink-mid) 0%, var(--ink-mist) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hp-dest-img-placeholder span { font-family: var(--serif); font-size: 3rem; color: rgba(200,164,110,.2); letter-spacing: .1em; }
.hp-dest-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  padding: .45rem 1rem;
  background: rgba(200,164,110,.9); color: var(--ink);
  border-radius: 6px; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

.hp-dest-copy {
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.hp-dest-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.hp-dest-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hp-dest-country { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hp-dest-name { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: var(--ivory); margin-bottom: 1.25rem; line-height: 1.1; }
.hp-dest-body { font-size: .95rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem; max-width: 460px; }
.hp-dest-link {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold); text-decoration: none; font-size: .82rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  transition: gap .3s;
}
.hp-dest-link:hover { gap: 1rem; }

.hp-dests-foot { text-align: center; padding: 4rem 0 0; }

/* ==========================================================================
   PILLARS
   ========================================================================== */

.hp-pillars { padding: 6rem 4vw; background: var(--ink-soft); }
.hp-pillars-wrap { max-width: 1440px; margin: 0 auto; }
.hp-pillars-head { text-align: center; margin-bottom: 3.5rem; }
.hp-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.hp-pillar {
  padding: 2.5rem 2rem; text-align: center;
  background: var(--ink); border: 1px solid var(--border); border-radius: 12px;
  transition: all .4s var(--ease);
}
.hp-pillar:hover { border-color: rgba(200,164,110,.3); transform: translateY(-6px); }
.hp-pillar-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.hp-pillar-num { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); font-weight: 300; display: block; line-height: 1; }
.hp-pillar-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory); margin: .5rem 0 1rem; display: block; font-weight: 500; }
.hp-pillar-body { font-size: .85rem; color: var(--muted); line-height: 1.75; }

/* ==========================================================================
   TOURS CAROUSEL
   ========================================================================== */

.hp-tours { padding: 6rem 0; background: var(--ink); overflow: hidden; }

.hp-tours-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 4vw 3rem;
  max-width: 1440px; margin: 0 auto; flex-wrap: wrap; gap: 1.5rem;
}

/* Toggle buttons */
.hp-tours-toggles { display: flex; gap: .5rem; flex-wrap: wrap; }

.hp-toggle {
  padding: .55rem 1.25rem;
  background: transparent; border: 1px solid var(--border);
  border-radius: 24px; color: var(--muted);
  font-family: var(--body); font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .3s var(--ease); white-space: nowrap;
}
.hp-toggle:hover { border-color: rgba(200,164,110,.4); color: var(--gold-warm); }
.hp-toggle.active { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

/* Track + arrows */
.hp-tours-track-wrap {
  position: relative; display: flex; align-items: center;
  padding: 0 4vw;
}

.hp-track-arrow {
  position: absolute; z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,164,110,.1); border: 1px solid var(--border);
  color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease); flex-shrink: 0;
}
.hp-track-arrow:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.hp-track-prev { left: 0; }
.hp-track-next { right: 0; }

.hp-tours-track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .5rem 0; scroll-padding: 0;
  scrollbar-width: none;
  flex: 1; margin: 0 .5rem;
}
.hp-tours-track::-webkit-scrollbar { display: none; }

/* Tour cards */
.hp-tour-card {
  flex: 0 0 320px; scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--ink-soft); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all .4s var(--ease);
}
.hp-tour-card:hover { border-color: rgba(200,164,110,.3); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(200,164,110,.15); }

.hp-tc-img {
  position: relative; height: 220px; overflow: hidden; flex-shrink: 0;
}
.hp-tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.hp-tour-card:hover .hp-tc-img img { transform: scale(1.06); }
.hp-tc-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--ink-mid) 0%, var(--ink-mist) 100%);
  display: flex; align-items: center; justify-content: center;
}

.hp-tc-price-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(8,8,6,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,164,110,.3); border-radius: 8px;
  padding: .4rem .75rem;
}
.hp-tc-from { display: block; font-size: .55rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.hp-tc-price { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--gold); font-weight: 400; line-height: 1.1; }

.hp-tc-dur {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--ink);
  padding: .3rem .7rem; border-radius: 6px;
  font-size: .65rem; font-weight: 700; letter-spacing: .06em;
}

.hp-tc-badge-top {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(8,8,6,.8); border: 1px solid rgba(200,164,110,.25);
  padding: .3rem .7rem; border-radius: 6px;
  font-size: .6rem; color: var(--gold-warm); letter-spacing: .06em;
  backdrop-filter: blur(4px);
}

.hp-tc-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }

.hp-tc-diff {
  display: inline-block; margin-bottom: .75rem;
  font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border: 1px solid; border-radius: 20px;
}

.hp-tc-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--ivory);
  line-height: 1.2; margin-bottom: .75rem;
}

.hp-tc-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; flex-grow: 1; }

.hp-tc-cta {
  display: inline-block; align-self: flex-start;
  background: var(--gold); color: var(--ink);
  padding: .6rem 1.25rem; border-radius: 7px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: all .3s var(--ease);
}
.hp-tc-cta:hover { background: var(--gold-warm); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.hp-reviews { padding: 6rem 4vw; background: var(--ink-soft); }
.hp-reviews-inner { max-width: 1440px; margin: 0 auto; }
.hp-reviews-head { text-align: center; margin-bottom: 3.5rem; }

.hp-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.hp-review-card {
  background: var(--ink); border: 1px solid var(--border); border-radius: 12px;
  padding: 2.5rem; transition: all .4s var(--ease);
}
.hp-review-card:hover { border-color: rgba(200,164,110,.25); transform: translateY(-5px); }

.hp-review-stars { font-size: 1rem; color: var(--gold); letter-spacing: .1em; margin-bottom: 1.25rem; }
.hp-review-text { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: var(--ivory); line-height: 1.75; margin-bottom: 1.75rem; font-style: italic; }

.hp-review-author { display: flex; align-items: center; gap: 1rem; }
.hp-review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.hp-review-name { display: block; font-size: .9rem; color: var(--ivory); font-weight: 500; }
.hp-review-loc { display: block; font-size: .75rem; color: var(--muted); margin-top: .15rem; }

/* ==========================================================================
   CTA
   ========================================================================== */

.hp-cta {
  position: relative; padding: 9rem 4vw; text-align: center;
  background: var(--ink); overflow: hidden;
}

.hp-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(200,164,110,.1) 0%, transparent 70%),
    var(--ink);
  pointer-events: none;
}
.hp-cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,164,110,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,164,110,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hp-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.hp-cta-title {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300; color: var(--ivory); line-height: 1; margin-bottom: 1.5rem;
}
.hp-cta-title em { display: block; font-style: italic; color: var(--gold); }
.hp-cta-sub { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }
.hp-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
@keyframes scrollBob {
  0%, 100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1; transform: translateX(-50%) translateY(7px); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .hp-hero-cards { width: 280px; right: 2rem; }
  .hp-why-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 380px); }
  .hp-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hp-hero { flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-bottom: 2rem; }
  .hp-hero-content { padding: 0 2rem; max-width: none; }
  /* HIDE cards on mobile — they destroy the layout on small screens */
  .hp-hero-cards { display: none !important; }

  .hp-dest-row { grid-template-columns: 1fr; }
  .hp-dest-row--reverse .hp-dest-img, .hp-dest-row--reverse .hp-dest-copy { order: unset; }
  .hp-dest-img { height: 300px; }
  .hp-dest-copy { padding: 2.5rem 2rem; }
}

@media (max-width: 680px) {
  .hp-hero {
    padding-bottom: 3rem;
    min-height: 100svh;
  }
  .hp-hero-content {
    padding: 0 1.25rem;
    width: 100%;
  }
  .hp-hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); line-height: 1.05; }
  .hp-hero-sub { font-size: .88rem; margin-bottom: 1.5rem; }
  .hp-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: .75rem;
    margin-bottom: 1.75rem;
  }
  .hp-hero-actions .hp-btn-gold,
  .hp-hero-actions .hp-btn-ghost {
    width: 100%;
    justify-content: center;
    padding: .9rem 1.5rem;
  }
  .hp-hero-stats {
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .hp-stat { padding: 0 .75rem; flex-shrink: 0; }
  .hp-stat-n { font-size: 1.4rem; }
  .hp-why-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hp-why-img { height: 260px; }
  .hp-why-block { padding: 2rem; }
  .hp-tours-head { flex-direction: column; align-items: flex-start; }
  .hp-tours-track-wrap { padding: 0 1rem; }
  .hp-track-arrow { display: none; }
  .hp-pillars-grid { grid-template-columns: 1fr; }
  .hp-reviews-grid { grid-template-columns: 1fr; }
  .hp-tour-card { flex: 0 0 280px; }
}
/* =============================================================================
   LAWELIYA — VIDEO FIX
   
   INSTRUCTIONS: APPEND this entire block to the BOTTOM of:
   wp-content/themes/laweliya-safari/assets/css/homepage.css
   
   DO NOT replace anything. Just paste at the very end.
   ============================================================================= */

/* ── FIX 1: Hero video stacking ───────────────────────────────────────────────
   Problem: .hp-hero has z-index:1 but its internal video sits at z-index:0
   inside .hp-hero-media. The cinematic overlay gradients (z-index 2-4) and
   the cinematic bg layer (z-index:1, position:fixed) both paint over it.
   
   Fix: Give .hp-hero its own stacking context via isolation:isolate so its
   internal z-index children are self-contained and render above the fixed layers.
   ─────────────────────────────────────────────────────────────────────────── */

.hp-hero {
  isolation: isolate !important;
  z-index: 5 !important;           /* above ALL cinematic layers (1-4) */
  position: relative !important;
}

.hp-hero-media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
}

.hp-hero-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transform: scale(1.05) !important;
  filter: brightness(0.75) contrast(1.05) !important;
  /* GPU compositing */
  will-change: transform !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
}

.hp-hero-video-fallback {
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;          /* behind video */
  background: linear-gradient(135deg, #0d0c0a 0%, #1a1510 50%, #0a0d08 100%) !important;
}

.hp-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;           /* above video, below content */
  background:
    linear-gradient(90deg,  rgba(8,8,6,.88) 0%, rgba(8,8,6,.5) 55%, rgba(8,8,6,.15) 100%),
    linear-gradient(180deg, rgba(8,8,6,.25) 0%, transparent 40%, rgba(8,8,6,.65) 100%) !important;
  pointer-events: none !important;
}

.hp-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

.hp-hero-cards {
  position: absolute !important;
  z-index: 3 !important;
}

.hp-scroll-cue {
  position: absolute !important;
  z-index: 4 !important;
}


/* ── FIX 2: Cinematic layer — exclude hero from its gradient overlays ──────────
   When cinematic-layer.css is installed, its position:fixed gradient overlays
   paint over the hero video. We exclude the hero area using pointer-events
   and transparency at the top of the viewport.
   ─────────────────────────────────────────────────────────────────────────── */

/* On homepage, make cinematic gradient transparent at top 100vh */
body.home .lcl-gradient,
body.page-template-front-page .lcl-gradient {
  background:
    linear-gradient(180deg,
      transparent 0%,
      transparent 20%,
      rgba(5,5,4,0.3) 60%,
      rgba(5,5,4,0.75) 100%
    ) !important;
}

/* Hero sits above all fixed cinematic layers */
.hp-hero,
.hero-section {
  z-index: 5 !important;
  isolation: isolate !important;
}


/* ── FIX 3: Video preload — change none → metadata so browser can play ────────
   Can't change HTML attribute via CSS but we ensure the video element
   has no competing display rules.
   The PHP template must change preload="none" to preload="auto".
   This CSS ensures there are no display/visibility blocks.
   ─────────────────────────────────────────────────────────────────────────── */

.hp-hero-video,
.hero-video {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}