/* ============================================================
   Subpages + cinematic components
   (journey 3D story · page heroes · image bands · link tiles)
   ============================================================ */

/* ---------- hero canvas (index) ---------- */
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; opacity: 0.85; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

/* ---------- THE JOURNEY (process.html) ---------- */
.journey-body { background: #05080E; }
#scene { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; }
.progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
  background: rgba(200, 164, 92, 0.12);
}
#progress { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width 0.1s linear; }

.stage-rail {
  position: fixed; right: 38px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px; z-index: 100;
}
.stage-dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--gold-faint); background: transparent;
  transition: all 0.5s ease;
}
.stage-dot.on { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 14px rgba(200, 164, 92, 0.7); }

.journey { position: relative; z-index: 10; }
.j-stage {
  min-height: 100vh; display: flex; align-items: center;
  padding: 0 8vw; pointer-events: none;
}
.j-copy { max-width: 520px; pointer-events: auto; }
.j-copy.right { margin-left: auto; text-align: right; }
.j-copy.center { margin: 0 auto; text-align: center; }
.j-copy h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem); line-height: 1.08; margin-top: 28px;
}
.j-copy h1 em, .j-copy h2 em { font-style: italic; color: var(--gold-soft); }
.j-copy h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.12;
}
.j-copy p { color: var(--ivory-dim); margin-top: 26px; line-height: 2.05; font-size: 0.97rem; text-shadow: 0 2px 18px rgba(5, 8, 14, 0.9); }
.j-num { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); margin-bottom: 18px; }
.j-hint { margin-top: 60px; font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); }
.j-hint span { display: inline-block; margin-left: 12px; color: var(--gold); animation: sink 2.2s ease-in-out infinite; }
@keyframes sink { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.journey-body footer { position: relative; z-index: 10; background: rgba(5, 8, 14, 0.85); backdrop-filter: blur(8px); }

/* ---------- page hero (service & country pages) ---------- */
.page-hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 90px;
}
.page-hero img {
  position: absolute; inset: -10% 0; width: 100%; height: 120%;
  object-fit: cover; z-index: 0; transform: scale(1.18);
  filter: brightness(0.6) saturate(0.9);
  will-change: transform;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,8,14,0.55) 0%, rgba(5,8,14,0.18) 45%, rgba(5,8,14,0.96) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem); line-height: 1.05; margin-top: 26px; max-width: 18ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); }
.page-hero .sub { margin-top: 26px; color: var(--ivory-dim); max-width: 52ch; line-height: 2; font-size: 0.98rem; }
.crumb { font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--gold); }
.crumb i { font-style: normal; color: var(--gold); margin: 0 12px; }

/* ---------- full-bleed image bands ---------- */
.img-band { position: relative; height: 64vh; overflow: hidden; }
.img-band img {
  position: absolute; inset: -10% 0; width: 100%; height: 120%;
  object-fit: cover; transform: scale(1.18);
  filter: brightness(0.62); will-change: transform;
}
.img-band video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.62);
}
.img-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,8,14,0.92) 0%, rgba(5,8,14,0.1) 30%, rgba(5,8,14,0.1) 70%, rgba(5,8,14,0.95) 100%);
}
.img-band .caption {
  position: absolute; left: 0; right: 0; bottom: 56px; z-index: 2; text-align: center;
}
.img-band .caption .t {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--ivory);
}

/* ---------- editorial link tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.tile {
  position: relative; display: block; min-height: 460px; overflow: hidden;
  text-decoration: none; background: var(--navy);
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.5) saturate(0.85);
  transition: transform 1.4s cubic-bezier(.16,.84,.3,1), filter 1.4s ease;
}
.tile:hover img { transform: scale(1.07); filter: brightness(0.68) saturate(1); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,8,14,0.25) 0%, rgba(5,8,14,0.88) 100%);
}
.tile-text { position: absolute; left: 36px; right: 36px; bottom: 36px; z-index: 2; }
.tile-text .label { display: block; margin-bottom: 12px; }
.tile-text h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.9rem; color: var(--ivory); line-height: 1.15;
}
.tile-text .go {
  display: inline-block; margin-top: 18px;
  font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold);
  transition: letter-spacing 0.4s ease;
}
.tile:hover .go { letter-spacing: 0.5em; }

/* big single tile (journey invite) */
.tile.wide { grid-column: 1 / -1; min-height: 380px; }
.tile.wide .tile-text { left: 50%; right: auto; bottom: 50%; transform: translate(-50%, 50%); text-align: center; }
.tile.wide h3 { font-size: clamp(2rem, 4vw, 3.2rem); }

/* ---------- subpage content blocks ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.detail-grid .lead-text {
  font-family: var(--serif); font-size: 1.6rem; line-height: 1.6; color: var(--ivory); font-weight: 400;
}
.detail-grid .lead-text em { font-style: italic; color: var(--gold-soft); }
.detail-grid .body-text { color: var(--ivory-dim); line-height: 2.05; font-size: 0.95rem; }
.detail-grid .body-text + .body-text { margin-top: 22px; }

.scope-list { list-style: none; border-top: 1px solid var(--gold-hairline); margin-top: 10px; }
.scope-list li {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid rgba(243, 239, 230, 0.08);
}
.scope-list .roman { font-family: var(--serif); font-style: italic; color: var(--gold); }
.scope-list .what { color: var(--ivory); font-family: var(--serif); font-size: 1.2rem; }
.scope-list .how { color: var(--muted); font-size: 0.84rem; margin-top: 6px; line-height: 1.8; }

.minds-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.mind-chip {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-hairline); padding: 10px 18px;
}

.cta-band { text-align: center; padding: 130px 24px; border-top: 1px solid var(--gold-hairline); }
.cta-band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-band p { color: var(--muted); margin: 20px 0 40px; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .tiles { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 50px; }
  .stage-rail { right: 18px; }
}
@media (max-width: 720px) {
  .j-stage { padding: 0 24px; }
  .j-copy.right { text-align: left; }
  .page-hero { min-height: 64vh; }
  .img-band { height: 46vh; }
}
