/* ============================================================
   KASHI TRAVELS — Destinations Pages CSS
   Scoped on purpose: every variable is --dest-* and every class
   is .dest-* so this file cannot collide with the site's existing
   CSS, even if both are loaded on the same page.
   Color values match the site's existing token palette.
   ============================================================ */

.dest-scope {
  /* ── tokens (renamed, same values as site palette) ── */
  --dest-ink: #1a0505;
  --dest-ink-80: rgba(26, 5, 5, .8);
  --dest-red: #b83232;
  --dest-red-dk: #8c1e1e;
  --dest-red-lt: #f9f0ef;
  --dest-gold: #c9952a;
  --dest-gold-lt: #fdf6e8;
  --dest-cream: #fdf7f5;
  --dest-stone: #e8e0db;
  --dest-muted: #7a6868;
  --dest-green: #2d6a35;
  --dest-white: #fff;

  --dest-r: 12px;
  --dest-r-sm: 8px;
  --dest-r-xl: 20px;
  --dest-ease: .28s cubic-bezier(.4, 0, .2, 1);
  --dest-shadow-xs: 0 1px 4px rgba(26, 5, 5, .07);
  --dest-shadow-sm: 0 3px 14px rgba(26, 5, 5, .09);
  --dest-shadow-md: 0 8px 32px rgba(26, 5, 5, .14);
  --dest-shadow-lg: 0 18px 56px rgba(26, 5, 5, .20);

  display: block;
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--dest-ink);
  background: var(--dest-cream);
}

.dest-scope *,
.dest-scope *::before,
.dest-scope *::after { box-sizing: border-box; }
.dest-scope img { max-width: 100%; display: block; }
.dest-scope a { color: inherit; text-decoration: none; }
.dest-scope ul { margin: 0; padding: 0; list-style: none; }
.dest-scope h1, .dest-scope h2, .dest-scope h3, .dest-scope h4 {
  margin: 0 0 .5em; line-height: 1.2; color: var(--dest-ink);
}
.dest-scope p { margin: 0 0 1em; line-height: 1.65; }
.dest-scope a:focus-visible, .dest-scope button:focus-visible {
  outline: 3px solid var(--dest-gold); outline-offset: 2px;
}

.dest-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── hero ── */
.dest-hero {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  color: var(--dest-white);
  overflow: hidden;
}
.dest-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,5,5,.35) 0%, rgba(26,5,5,.6) 45%, rgba(26,5,5,.94) 100%);
}
.dest-hero-inner { position: relative; width: 100%; padding: 56px 0 44px; }
.dest-breadcrumb {
  font-size: .82rem; color: var(--dest-stone); margin-bottom: 14px;
}
.dest-breadcrumb a { color: var(--dest-gold); }
.dest-breadcrumb span { opacity: .6; margin: 0 6px; }
.dest-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--dest-white); max-width: 760px; }
.dest-hero .dest-lede {
  max-width: 600px; font-size: 1.04rem; color: var(--dest-stone); margin-bottom: 22px;
}

/* ── buttons ── */
.dest-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .94rem;
  transition: transform var(--dest-ease), box-shadow var(--dest-ease), background var(--dest-ease);
  white-space: nowrap; border: none; cursor: pointer;
}
.dest-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.dest-btn-primary { background: var(--dest-red); color: var(--dest-white); box-shadow: var(--dest-shadow-sm); }
.dest-btn-primary:hover { background: var(--dest-red-dk); transform: translateY(-2px); box-shadow: var(--dest-shadow-md); }
.dest-btn-outline { background: transparent; color: var(--dest-white); border: 1.5px solid rgba(255,255,255,.55); }
.dest-btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--dest-white); }
.dest-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── gold rule divider (signature element) ── */
.dest-rule {
  height: 3px; width: 64px; margin: 0 0 20px;
  background: linear-gradient(90deg, var(--dest-gold), var(--dest-red));
  border-radius: 2px;
}

/* ── sections ── */
.dest-section { padding: 40px 0; }
.dest-section-tight { padding: 38px 0; }
.dest-section-alt { background: var(--dest-white); }
.dest-section-dark { background: var(--dest-ink); color: var(--dest-white); }
.dest-section-dark h2, .dest-section-dark h3 { color: var(--dest-white); }
.dest-section-head {  margin-bottom: 34px; }
.dest-section-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.dest-section-head p { color: var(--dest-muted); }
.dest-section-dark .dest-section-head p { color: var(--dest-stone); }

/* ── intro paragraph block ── */
.dest-intro { max-width: 740px; }
.dest-intro p { font-size: 1.03rem; color: var(--dest-ink-80); }

/* ── service grid ── */
.dest-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.dest-service-item {
  background: var(--dest-white); border: 1px solid var(--dest-stone);
  border-radius: var(--dest-r); padding: 22px;
}
.dest-service-item .dest-num {
  font-weight: 700; color: var(--dest-gold); font-size: .8rem; display: block; margin-bottom: 8px;
  letter-spacing: .04em;
}
.dest-service-item h4 { font-size: 1rem; margin-bottom: 6px; }
.dest-service-item p { color: var(--dest-muted); font-size: .9rem; margin: 0; }

/* ── why choose grid ── */
.dest-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.dest-why-item { display: flex; gap: 13px; align-items: flex-start; }
.dest-why-item .dest-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,149,42,.16); display: flex; align-items: center; justify-content: center;
}
.dest-why-item .dest-icon svg { width: 19px; height: 19px; color: var(--dest-gold); }
.dest-why-item h4 { color: var(--dest-white); font-size: .98rem; margin-bottom: 4px; }
.dest-why-item p { color: var(--dest-stone); font-size: .88rem; margin: 0; }

/* ── cta banner ── */
.dest-cta-banner {
  background: linear-gradient(120deg, var(--dest-red) 0%, var(--dest-red-dk) 100%);
  border-radius: var(--dest-r-xl);
  padding: 34px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  color: var(--dest-white);
}
.dest-cta-banner h3 { color: var(--dest-white); margin-bottom: 6px; font-size: 1.28rem; }
.dest-cta-banner p { color: var(--dest-gold-lt); margin: 0; }
.dest-cta-banner .dest-btn-outline { border-color: rgba(255,255,255,.6); }

/* ── destination cards (index grid) ── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.dest-card {
  position: relative;
  background: var(--dest-white);
  border: 1px solid var(--dest-stone);
  border-radius: var(--dest-r);
  padding: 20px 20px 18px;
  box-shadow: var(--dest-shadow-xs);
  transition: transform var(--dest-ease), box-shadow var(--dest-ease), border-color var(--dest-ease);
  display: flex; flex-direction: column; gap: 9px;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--dest-shadow-md); border-color: var(--dest-gold); }
.dest-card .dest-pin {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--dest-gold), var(--dest-red));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dest-card .dest-pin svg { width: 18px; height: 18px; color: var(--dest-white); }
.dest-card h3 { font-size: 1.08rem; margin: 0; }
.dest-card p { color: var(--dest-muted); font-size: .9rem; margin: 0; flex-grow: 1; }
.dest-card .dest-link {
  font-size: .8rem; font-weight: 700; color: var(--dest-red);
  display: inline-flex; align-items: center; gap: 6px; margin-top: 2px;
}
.dest-card .dest-link svg { width: 13px; height: 13px; transition: transform var(--dest-ease); }
.dest-card:hover .dest-link svg { transform: translateX(3px); }

@media (max-width: 720px) {
  .dest-cta-banner { flex-direction: column; align-items: flex-start; }
  .dest-hero-inner { padding: 50px 27px 30px; }
}
