/* ================================================================
   SejourSahara — Design System  (light, warm desert palette)
   ================================================================ */

/* ===== DESIGN TOKENS — Light Desert Theme ===== */
:root {
  --bg:          hsl(38 28% 96%);
  --bg-alt:      hsl(38 22% 92%);
  --surface:     #ffffff;
  --surface2:    hsl(38 20% 90%);
  --surface3:    hsl(38 16% 86%);

  --text:        hsl(22 50% 10%);
  --muted:       hsl(28 22% 42%);
  --muted2:      hsl(28 18% 58%);

  --primary:     hsl(34 82% 44%);
  --primary-hi:  hsl(34 90% 34%);
  --primary-lo:  hsl(34 82% 44% / .14);
  --primary-gradient: linear-gradient(135deg, hsl(34 78% 46%), hsl(38 90% 56%));

  --accent:      hsl(18 60% 38%);
  --oasis:       hsl(165 58% 32%);
  --oasis-hi:    hsl(165 65% 26%);
  --oasis-lo:    hsl(165 58% 32% / .14);
  --oasis-gradient: linear-gradient(135deg, hsl(165 60% 30%), hsl(165 68% 42%));

  --border:      hsl(30 22% 84%);
  --border-hi:   hsl(30 28% 72%);
  --ring:        hsl(34 82% 44% / .55);

  --radius:      20px;
  --radius-sm:   12px;
  --radius-xs:   8px;
  --radius-pill: 999px;

  --shadow:    0 16px 48px rgba(0,0,0,.11);
  --shadow-sm: 0 6px 20px rgba(0,0,0,.08);
  --shadow-glow: 0 0 36px hsl(34 82% 44% / .18);
  --gutter: clamp(16px, 4vw, 24px);

  /* Hero always dark text-on-image overrides */
  --hero-overlay: linear-gradient(180deg,
    hsl(20 30% 4% / .22) 0%,
    hsl(20 30% 4% / .68) 55%,
    hsl(20 30% 4% / .94) 100%);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
::selection { background: var(--primary-lo); color: var(--text); }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(15.5px, 1vw + 10px, 17px);
  line-height: 1.75;
  letter-spacing: .018em;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { line-height: 1.1; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: 56px 0; }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: "Playfair Display", Georgia, serif; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: hsl(0 0% 100% / .18); border: 1px solid hsl(0 0% 100% / .35);
  padding: 6px 14px; border-radius: var(--radius-pill);
  color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .04em;
  margin-bottom: 14px; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.6vw + 10px, 40px);
  line-height: 1.1; margin-bottom: 10px; color: var(--text);
}
.section-sub { color: var(--muted); max-width: 640px; margin-bottom: 36px; }
.lead {
  font-size: clamp(16px, 1.1vw + 10px, 20px);
  max-width: 820px; margin: 0 auto 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); font-weight: 700; font-size: 14px;
  cursor: pointer; transition: transform .16s ease, filter .16s ease,
    background .16s ease, border-color .16s ease, box-shadow .16s ease;
  white-space: nowrap; text-decoration: none;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--ring); }
.btn-primary {
  background: var(--primary-gradient);
  color: #fff; border: none; font-weight: 800;
  box-shadow: 0 4px 16px hsl(34 82% 44% / .28);
}
.btn-oasis {
  background: var(--oasis-gradient);
  color: #fff; border: none; font-weight: 800;
  box-shadow: 0 4px 16px hsl(165 58% 32% / .28);
}
.btn-ghost { color: var(--primary); background: var(--primary-lo); border-color: hsl(34 82% 44% / .30); }
.btn-outline { color: var(--text); background: transparent; border-color: var(--border-hi); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 13px 26px; font-size: 15px; }
.btn-primary:hover, .btn-oasis:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn-ghost:hover { background: var(--primary-lo); border-color: var(--primary); transform: translateY(-1px); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-hi); transform: translateY(-1px); }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 90;
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  background: hsl(38 28% 96% / .92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; border-radius: 8px; }
.brand strong { font-size: 17px; font-weight: 800; letter-spacing: .3px; color: var(--text); }
.brand span { font-size: 11px; color: var(--primary); font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }

nav > ul { display: flex; align-items: center; gap: 2px; }
nav li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600; font-size: 14px; color: var(--muted);
  transition: .16s ease; white-space: nowrap;
}
.nav-link:hover { border-color: var(--border); background: var(--surface); color: var(--text); }
.nav-link.active { color: var(--primary-hi); }
.nav-caret { font-size: 10px; opacity: .6; }

/* ─── Dropdown — smooth animated ─── */
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  padding: 8px;
  /* smooth opacity/transform toggle */
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}
/* bridge gap so mouse can reach dropdown */
.dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
nav li.dd-open .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
/* fallback for no-JS */
@media (hover: hover) {
  nav li:hover .dropdown-menu {
    opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  border: 1px solid transparent; color: var(--text); font-size: 14px;
}
.dropdown-menu a .dd-icon { font-size: 18px; flex-shrink: 0; }
.dropdown-menu a .dd-info { flex: 1; }
.dropdown-menu a .dd-info strong { display: block; font-weight: 700; color: var(--text); }
.dropdown-menu a .dd-info small { color: var(--muted); font-size: 12px; }
.dropdown-menu a:hover { background: var(--bg-alt); border-color: var(--border); }
.dd-section-label {
  padding: 6px 12px 4px;
  font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  color: var(--primary); opacity: .9;
}
.dd-divider { height: 1px; background: var(--border); margin: 6px 4px; }

/* Burger */
.burger {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 8px 14px;
  color: var(--text); font-weight: 700; cursor: pointer; font-size: 14px;
  transition: border-color .16s, background .16s;
}
.burger:hover { border-color: var(--primary); background: var(--primary-lo); }

@media (max-width: 960px) {
  .burger { display: inline-flex; align-items: center; gap: 6px; }
  nav > ul {
    display: none;
    position: absolute; inset: 68px 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    padding: 12px 16px; flex-direction: column; gap: 4px; align-items: stretch;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  nav > ul.open { display: flex; }
  nav li { width: 100%; }
  .nav-link {
    width: 100%; justify-content: space-between;
    color: var(--text); border-radius: 10px; padding: 10px 14px;
  }
  .nav-link:hover { background: var(--bg-alt); }
  .dropdown-menu {
    position: static; transform: none !important; left: auto !important;
    box-shadow: none; border: 1px solid var(--border);
    background: var(--bg-alt); border-radius: 10px;
    opacity: 0; max-height: 0; overflow: hidden; padding: 0;
    pointer-events: none;
    transition: opacity .22s ease, max-height .22s ease, padding .22s ease;
  }
  nav li.sub-open .dropdown-menu {
    opacity: 1; max-height: 600px; padding: 8px; pointer-events: auto;
  }
}

/* ===== HERO (full-page) ===== */
.hero {
  position: relative; isolation: isolate;
  min-height: 92vh; display: grid; place-items: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.12) contrast(1.05) brightness(.78);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: var(--hero-overlay);
}
.hero .inner {
  position: relative; z-index: 1;
  padding: 120px var(--gutter) 80px;
  max-width: 1060px; margin: 0 auto;
  color: #fff;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5.6vw + 4px, 74px);
  line-height: 1.04; margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0,0,0,.65), 0 1px 6px rgba(0,0,0,.40);
}
.hero .lead { color: rgba(255,255,255,.88); margin-bottom: 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--border); }
.stat { background: var(--surface); padding: 22px 16px; text-align: center; }
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.4vw + 8px, 34px);
  font-weight: 700; color: var(--primary); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 5px; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== CIRCUIT CARDS ===== */
.circuits-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .circuits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .circuits-grid { grid-template-columns: 1fr; } }

.circuit-card {
  position: relative; overflow: hidden;
  border-radius: 20px; min-height: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.circuit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: hsl(34 82% 44% / .40); }
.circuit-card .bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.08) brightness(.72);
  transition: transform .36s ease;
}
.circuit-card:hover .bg-img { transform: scale(1.05); }
.circuit-card .bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.50) 48%, rgba(0,0,0,.90) 100%);
}
.c-body {
  position: relative; z-index: 1; padding: 22px;
  display: flex; flex-direction: column;
  height: 100%; min-height: 380px; color: #fff;
}
.c-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: hsl(34 82% 44% / .30); border: 1px solid hsl(34 82% 44% / .70);
  color: hsl(38 100% 92%); margin-bottom: 10px; align-self: flex-start;
  letter-spacing: .03em; text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.c-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.70);
  margin-bottom: 8px; line-height: 1.2;
}
.c-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.chip {
  font-size: 11px; padding: 4px 9px; border-radius: var(--radius-pill);
  background: hsl(0 0% 100% / .16); border: 1px solid hsl(0 0% 100% / .28);
  color: #fff;
}
.c-body > p {
  font-size: 14px; color: rgba(255,255,255,.90);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  margin-bottom: 10px; flex: 1;
}
.c-features { font-size: 13px; margin: 0 0 16px; }
.c-features li { position: relative; padding-left: 18px; color: rgba(255,255,255,.92); margin-bottom: 4px; }
.c-features li::before { content: "✓"; position: absolute; left: 0; color: hsl(38 100% 78%); font-weight: 800; }
.c-cta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
/* Force white-text buttons over dark card */
.c-cta .btn-ghost { color: #fff; background: hsl(0 0% 100% / .14); border-color: hsl(0 0% 100% / .35); }
.c-cta .btn-ghost:hover { background: hsl(0 0% 100% / .22); }

/* ===== DESTINATION CARDS ===== */
.dest-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-card {
  position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 4/3;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: block;
  transition: transform .24s ease, box-shadow .24s ease;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .32s ease; }
.dest-card:hover img { transform: scale(1.07); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.82) 100%); }
.dest-label { position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 1; }
.dest-label strong { display: block; font-family: "Playfair Display", serif; font-size: 17px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.dest-label span { font-size: 12px; color: hsl(38 80% 90%); }

/* ===== GLASS / INFO CARDS ===== */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.glass-card-sm { padding: 20px; border-radius: var(--radius-sm); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.info-card:hover { border-color: hsl(34 82% 44% / .40); transform: translateY(-3px); box-shadow: var(--shadow); }
.info-icon { font-size: 32px; margin-bottom: 12px; }
.info-card h3 { font-family: "Playfair Display", serif; font-size: 18px; margin-bottom: 8px; color: var(--text); }
.info-card p { font-size: 14px; color: var(--muted); }
.info-card a { color: var(--primary); }

/* ===== PARTNER BLOCK ===== */
.partner-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) { .partner-block { grid-template-columns: 1fr; } }
.partner-block img { border-radius: 14px; object-fit: cover; width: 100%; max-height: 320px; }
.partner-block h2 { font-family: "Playfair Display", serif; font-size: clamp(22px, 2.5vw + 8px, 32px); margin-bottom: 14px; color: var(--text); }
.partner-block p { color: var(--muted); margin-bottom: 12px; }
.partner-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.why-card:hover { border-color: hsl(34 82% 44% / .35); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-family: "Playfair Display", serif; font-size: 18px; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 14px; color: var(--muted); }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
}
.stars { color: hsl(38 90% 50%); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--muted); font-style: italic; margin-bottom: 14px; line-height: 1.7; }
.reviewer { font-size: 13px; font-weight: 700; color: var(--primary); }
.reviewer span { font-weight: 400; color: var(--muted); }

/* ===== PARTNERS STRIP ===== */
.partners-strip {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  padding: 28px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.partner-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); font-weight: 600; font-size: 14px; color: var(--text);
  background: var(--bg-alt); transition: .16s ease;
}
.partner-link:hover { border-color: var(--primary); color: var(--primary-hi); transform: translateY(-2px); background: var(--primary-lo); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 0 auto; }
details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm);
}
details[open] { border-color: hsl(34 82% 44% / .45); }
summary {
  padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; list-style: none; color: var(--text);
  transition: background .14s;
}
summary:hover { background: var(--bg-alt); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "＋"; color: var(--primary); font-size: 18px; font-weight: 400; flex-shrink: 0; margin-left: 12px; }
details[open] summary::after { content: "－"; }
details[open] summary { background: hsl(34 82% 44% / .06); }
.faq-answer { padding: 0 22px 18px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.faq-answer a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer ul { padding-left: 20px; list-style: disc; }
.faq-answer li { margin-bottom: 5px; }

/* ===== CONTACT ===== */
.contact-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) { .contact-block { grid-template-columns: 1fr; padding: 24px; } }
.contact-person {
  text-align: center; padding: 26px; background: var(--bg-alt);
  border-radius: 14px; border: 1px solid var(--border);
}
.contact-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--primary-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 14px;
  box-shadow: 0 4px 16px hsl(34 82% 44% / .30);
}
.contact-person h3 { font-family: "Playfair Display", serif; font-size: 21px; margin-bottom: 6px; color: var(--text); }
.contact-person .role { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.contact-btns { display: flex; flex-direction: column; gap: 10px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13px; padding: 16px 0;
}
.breadcrumb a { color: rgba(255,255,255,.70); transition: color .14s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.80); }
.breadcrumb li:not(:last-child)::after { content: "›"; opacity: .5; }
.breadcrumb li:last-child { color: rgba(255,255,255,.95); font-weight: 600; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; isolation: isolate;
  min-height: 62vh; display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg { filter: saturate(1.05) brightness(.60); }
.page-hero .hero-overlay {
  background: linear-gradient(180deg, hsl(20 30% 4% / .08) 0%, hsl(20 30% 4% / .70) 55%, hsl(20 30% 4% / .97) 100%);
}
.page-hero .inner {
  position: relative; z-index: 1;
  padding: 0 var(--gutter) 56px; max-width: 1200px; margin: 0 auto; width: 100%;
  color: #fff;
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw + 6px, 56px); line-height: 1.06;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0,0,0,.70), 0 1px 6px rgba(0,0,0,.40);
  margin-bottom: 14px;
}
.page-hero .lead { color: rgba(255,255,255,.86); }

/* ===== PROGRAM / DAY CARDS ===== */
.day-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 720px) { .day-grid { grid-template-columns: 1fr; } }
.day-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px; box-shadow: var(--shadow-sm);
  transition: border-color .18s, transform .18s;
}
.day-card:hover { border-color: hsl(34 82% 44% / .40); transform: translateY(-3px); }
.day-num { font-family: "Playfair Display", serif; font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 6px; }
.day-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.day-stops { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.day-stops li { position: relative; padding-left: 16px; margin-bottom: 3px; }
.day-stops li::before { content: "›"; position: absolute; left: 0; color: var(--primary); }
.night-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-pill); background: hsl(250 60% 96%);
  border: 1px solid hsl(250 50% 80%); color: hsl(250 60% 35%);
}

/* ===== INCLUDES / NOT INCLUDES ===== */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .includes-grid { grid-template-columns: 1fr; } }
.inc-list li { position: relative; padding-left: 22px; margin-bottom: 6px; font-size: 14.5px; color: var(--muted); }
.inc-list.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--oasis); font-weight: 800; }
.inc-list.no li::before { content: "✗"; position: absolute; left: 0; color: hsl(0 62% 55%); font-weight: 800; }

/* ===== PRACTICAL CARD ===== */
.practical-card {
  background: hsl(34 82% 44% / .06);
  border: 1px solid hsl(34 82% 44% / .28); border-radius: var(--radius);
  padding: 28px;
}
.practical-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.prac-item { display: flex; flex-direction: column; gap: 4px; }
.prac-label { font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--primary); }
.prac-value { font-size: 15px; font-weight: 700; color: var(--text); }
.prac-note { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid img {
  border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; width: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--border);
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.gallery-grid img:first-child { grid-column: span 2; aspect-ratio: 16/9; }

/* ===== MONTH TABLE ===== */
.month-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
@media (max-width: 720px) { .month-grid { grid-template-columns: repeat(3, 1fr); } }
.month-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 10px; text-align: center;
}
.month-card.ideal { border-color: hsl(34 82% 44% / .50); background: hsl(34 82% 44% / .06); }
.month-card.good { border-color: hsl(165 58% 32% / .40); background: hsl(165 58% 32% / .06); }
.month-card.hot { border-color: hsl(0 68% 52% / .40); background: hsl(0 68% 52% / .06); }
.month-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.month-temp { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.month-badge {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .04em;
  padding: 2px 8px; border-radius: var(--radius-pill); text-transform: uppercase;
}
.badge-ideal { background: hsl(34 82% 44% / .14); color: hsl(34 82% 32%); }
.badge-good { background: hsl(165 58% 32% / .14); color: hsl(165 58% 28%); }
.badge-hot { background: hsl(0 68% 52% / .12); color: hsl(0 68% 40%); }
.badge-cold { background: hsl(210 60% 50% / .12); color: hsl(210 60% 35%); }

/* ===== PACKING LIST ===== */
.packing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.pack-group h4 {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: var(--primary); margin-bottom: 10px; padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.pack-group ul { font-size: 14px; color: var(--muted); }
.pack-group li { padding: 3px 0 3px 18px; position: relative; }
.pack-group li::before { content: "·"; position: absolute; left: 6px; color: var(--primary); font-size: 18px; line-height: 1.3; }

/* ===== ITINERARY STRIP ===== */
.itinerary-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  padding: 20px 24px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.itin-stop { text-align: center; padding: 8px 14px; }
.itin-stop-name { font-weight: 700; font-size: 14px; color: var(--text); }
.itin-stop-note { font-size: 12px; color: var(--muted); }
.itin-arrow { color: var(--primary); opacity: .7; font-size: 18px; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  border-top: 2px solid var(--border);
  background: hsl(22 50% 10%); color: hsl(34 30% 78%);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { font-weight: 800; color: #fff; margin-bottom: 14px; font-size: 15px; }
footer ul li { margin-bottom: 8px; }
footer a { color: hsl(34 30% 72%); transition: color .14s; }
footer a:hover { color: hsl(38 90% 68%); }
.footer-bottom {
  border-top: 1px solid hsl(34 20% 22%); margin-top: 32px; padding-top: 20px;
  text-align: center; font-size: 13px; color: hsl(34 20% 56%);
}
.footer-bottom a { color: hsl(38 80% 60%); }
.footer-brand { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-tagline { color: hsl(34 30% 62%); font-size: 14px; margin-bottom: 16px; }

/* ===== FLOATING CTA ===== */
.float-cta { position: fixed; right: 16px; bottom: 16px; z-index: 99; display: flex; flex-direction: column-reverse; gap: 10px; }
.float-btn {
  display: none; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.22); border: none; cursor: pointer;
  transition: filter .16s, transform .16s;
}
.float-wpp { background: var(--oasis-gradient); color: #fff; }
.float-call { background: var(--primary-gradient); color: #fff; }
.float-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
@media (max-width: 860px) { .float-btn { display: inline-flex; } }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, hsl(34 82% 44% / .08), hsl(165 58% 32% / .06));
  border: 1px solid hsl(34 82% 44% / .28);
  border-radius: var(--radius); padding: 48px 32px; text-align: center;
}
.cta-banner h2 { font-family: "Playfair Display", serif; font-size: clamp(22px, 2.5vw + 8px, 34px); margin-bottom: 10px; color: var(--text); }
.cta-banner p { color: var(--muted); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
