/* Destination platform stylesheet — shared by every generated destination page. */
:root {
  --brand: #ae29bb;
  --brand-deep: #6a1f72;
  --ink: #302a38;
  --muted: #625d6d;
  --panel: #fbf5ff;
  --line: #eadcf0;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  text-decoration: none;
}
.header-cta {
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 999px;
}
.breadcrumbs { padding: 12px 20px 0; font-size: 13px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: '›'; margin-right: 6px; color: var(--muted); }
.breadcrumbs a { color: var(--brand-deep); text-decoration: none; }
.breadcrumbs .crumb-pending, .breadcrumbs [aria-current] { color: var(--muted); }
.hero {
  margin: 14px 20px 0;
  padding: 44px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
}
/* Region-tinted heroes: brand plum anchors every gradient; the second stop is
   a deterministic per-region accent so pages differ without invented imagery. */
.hero--mena { background: linear-gradient(135deg, var(--brand) 0%, #8a3d1f 100%); }
.hero--europe { background: linear-gradient(135deg, var(--brand) 0%, #2f4d8f 100%); }
.hero--asia { background: linear-gradient(135deg, var(--brand) 0%, #7a1257 100%); }
.hero--americas { background: linear-gradient(135deg, var(--brand) 0%, #1f6f6f 100%); }
.hero--africa { background: linear-gradient(135deg, var(--brand) 0%, #a3541c 100%); }
.hero--oceania { background: linear-gradient(135deg, var(--brand) 0%, #1f7f8f 100%); }
.chips--hero { margin-top: 14px; }
.chips--hero li {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hero .kicker {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero h1 { margin: 0; font-size: clamp(28px, 5vw, 42px); }
main { max-width: 760px; margin: 0 auto; padding: 24px 20px 48px; }
.lead { font-size: 18px; font-weight: 500; }
.supporting { color: var(--muted); }
main h2 { color: var(--brand-deep); font-size: 20px; margin: 32px 0 12px; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.chips li {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.facts { width: 100%; border-collapse: collapse; }
.facts th, .facts td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
.facts th { width: 40%; color: var(--muted); font-weight: 600; }
.facts thead th { width: auto; color: var(--brand-deep); border-bottom: 2px solid var(--line); }
.facts.climate th[scope="row"], .facts.compare th[scope="row"] { width: 28%; }
.table-scroll { overflow-x: auto; }
.facts.compare thead a { color: var(--brand-deep); }
.ideal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.ideal-grid h3 { margin: 0 0 6px; font-size: 15px; color: var(--brand-deep); }
.ideal-grid ul { margin: 0; padding-left: 18px; font-size: 14px; color: var(--ink); }
.ideal-grid li { margin-bottom: 6px; }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.dest-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
}
a.dest-card strong { color: var(--brand-deep); }
.dest-card span { color: var(--muted); font-size: 12px; }
.dest-card--pending { opacity: 0.75; }
details { border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; margin-bottom: 8px; }
summary { font-weight: 600; cursor: pointer; }
.teaser {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 30px 0;
}
.teaser h2 { margin-top: 0; font-size: 20px; }
.teaser p { margin: 8px 0; }
.teaser-invite { color: var(--muted); }
.teaser-cta { display: inline-block; margin-top: 6px; font-weight: 700; color: var(--brand-deep); text-decoration: none; }
.teaser-cta:hover, .teaser-cta:focus-visible { text-decoration: underline; }
.cta-panel {
  margin-top: 36px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}
.cta-panel h2 { margin-top: 0; }
.cta-button {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 999px;
  margin: 6px 8px 0 0;
}
.cta-secondary { color: var(--brand-deep); font-weight: 600; text-decoration: none; }
.explore-links { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; font-size: 14px; }
.explore-links a { color: var(--brand-deep); }
/* Protected images (destination imagery only) — casual-copy deterrent.
   Selection/drag/callout disabled ONLY inside the component; the <img>
   stays a real crawlable element with alt text. */
.protected-img {
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.protected-img img {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
.site-footer { border-top: 1px solid var(--line); padding: 22px 20px 34px; text-align: center; color: var(--muted); font-size: 13px; }
.site-footer .footer-links { display: flex; justify-content: center; gap: 16px; margin-top: 6px; }
.site-footer a { color: var(--brand-deep); text-decoration: none; }
/* Destinations hub */
.hub-intro { font-size: 17px; }
.hub-region { margin-top: 34px; }
.hub-region h2 { margin-bottom: 12px; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hub-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(48, 42, 56, 0.12); }
.hub-card .hub-card-art { margin: 0; aspect-ratio: 8 / 5; }
.hub-card .hub-card-art img { width: 100%; height: 100%; object-fit: cover; }
.hub-card-art--fallback { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); }
.art--mena { background: linear-gradient(135deg, var(--brand) 0%, #8a3d1f 100%); }
.art--europe { background: linear-gradient(135deg, var(--brand) 0%, #2f4d8f 100%); }
.art--asia { background: linear-gradient(135deg, var(--brand) 0%, #7a1257 100%); }
.art--americas { background: linear-gradient(135deg, var(--brand) 0%, #1f6f6f 100%); }
.art--africa { background: linear-gradient(135deg, var(--brand) 0%, #a3541c 100%); }
.art--oceania { background: linear-gradient(135deg, var(--brand) 0%, #1f7f8f 100%); }
.hub-card-body { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px 14px; }
.hub-card-body strong { color: var(--brand-deep); font-size: 16px; }
.hub-card-country { color: var(--muted); font-size: 12.5px; }
.hub-card-reason { color: var(--ink); font-size: 13px; margin-top: 6px; }
.hub-card-cta { color: var(--brand); font-size: 12.5px; font-weight: 700; margin-top: 8px; }

/* Hero photography (Phase 9): full-bleed within the hero card */
.hero .hero-image { margin-top: 18px; }
.hero .hero-image img,
.hero .hero-image picture { width: 100%; }
.hero .hero-image img { height: auto; border-radius: 12px; }
