/* Destination pages. Same tokens, same dark cinematic theme as the homepage —
   this file only adds the layout those pages need. */

.phero { position: relative; min-height: clamp(320px, 38vw, 520px); display: grid; isolation: isolate; overflow: hidden; }
.phero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero__scrim { position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(5,7,10,.92) 0%, rgba(5,7,10,.66) 32%, rgba(5,7,10,.18) 62%, rgba(5,7,10,0) 82%),
              linear-gradient(to top, rgba(5,7,10,.8) 0%, rgba(5,7,10,0) 42%); }
.phero__body { position: relative; z-index: 2; align-self: end;
  max-width: var(--shell); width: 100%; margin: 0 auto; padding: 0 var(--gutter) clamp(2rem,4vw,3.2rem); }
.phero__h { margin: .5rem 0 .6rem; font-size: clamp(2.2rem, 5.4vw, 4.2rem); line-height: .94;
  font-weight: 800; text-transform: uppercase; font-stretch: condensed; text-shadow: 0 2px 26px rgba(0,0,0,.65); }
.phero__lede { margin: 0; max-width: 46ch; color: var(--cream); font-size: clamp(1rem,1.3vw,1.12rem);
  text-shadow: 0 1px 12px rgba(0,0,0,.7); }

.sect { padding: clamp(2.2rem,4vw,3.4rem) var(--gutter); }
.sect__in { max-width: var(--shell); margin: 0 auto; }
.sect__h { font-size: clamp(1.5rem,2.6vw,2.2rem); font-weight: 800; text-transform: uppercase;
  margin: 2.2rem 0 1rem; letter-spacing: -.01em; }
.sect__h:first-child { margin-top: 0; }
.sect__lede { margin: 0 0 1.2rem; color: var(--cream-dim); max-width: 70ch; }
.sect__note { margin: 1.4rem 0 0; font-size: .86rem; color: var(--cream-dim); max-width: 78ch; }
.sect__note a { color: var(--lime); }

/* Varied card sizes: the first card runs wide, the rest fill in. */
.grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card--big { grid-column: span 2; }
@media (max-width: 720px) { .card--big { grid-column: span 1; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.card__link { display: grid; text-decoration: none; color: inherit; height: 100%; }
.card__media { display: block; overflow: hidden; aspect-ratio: 16/10; }
.card--big .card__media { aspect-ratio: 16/8; }
.card--person .card__media { aspect-ratio: 4/5; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card__link:hover .card__media img { transform: scale(1.05); }
.card__link:hover { border-color: var(--lime); }
.card:hover { border-color: rgba(214,255,63,.55); box-shadow: 0 10px 34px rgba(0,0,0,.45); }
.card__body { padding: .95rem 1.05rem 1.15rem; display: grid; gap: .3rem; align-content: start; }
.card__kicker { font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); }
.card__t { margin: 0; font-size: 1.15rem; font-weight: 800; }
.card--big .card__t { font-size: 1.6rem; }
.card__d { margin: 0; font-size: .9rem; color: var(--cream-dim); line-height: 1.5; }

.tag { display: inline-block; font-size: .6rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: .2rem .5rem; border-radius: 999px; border: 1px solid; }
.tag--confirmed { color: var(--lime); border-color: rgba(214,255,63,.55); background: rgba(214,255,63,.12); }
.tag--theory { color: var(--sunset); border-color: rgba(255,113,61,.5); background: rgba(255,113,61,.1); }

.claims { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.claim { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.1rem; }
.claim--confirmed { border-left-color: var(--lime); }
.claim--theory { border-left-color: var(--sunset); }
.claim__t { margin: .4rem 0 .25rem; font-size: 1.05rem; font-weight: 800; }
.claim__d { margin: 0; color: var(--cream-dim); font-size: .92rem; }

.notice { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--sunset);
  border-radius: var(--radius); padding: 1.1rem 1.2rem; margin-bottom: 1.8rem; }
.notice__h { margin: 0 0 .4rem; font-size: 1rem; font-weight: 800; }
.notice p { margin: 0; color: var(--cream-dim); font-size: .92rem; max-width: 80ch; }

.rows { display: grid; gap: .9rem; margin-bottom: 1.6rem; }
.row { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem; display: grid; grid-template-columns: 1fr minmax(240px, 300px); gap: 1.4rem; align-items: start; }
@media (max-width: 760px) { .row { grid-template-columns: 1fr; } }
.row:hover { border-color: rgba(214,255,63,.4); }
.row__t { margin: 0 0 .35rem; font-size: 1.15rem; font-weight: 800; }
.row__d { margin: 0 0 .5rem; color: var(--cream); font-size: .94rem; }
.row__lim { margin: 0 0 .6rem; color: var(--cream-dim); font-size: .86rem; }
.row__lim strong { color: var(--cream); }
.row__tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem; }
.row__tags li { font-size: .68rem; font-weight: 700; padding: .2rem .5rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--cream-dim); }
.row__go .btn { width: 100%; }
.row__aff { margin: .5rem 0 0; font-size: .7rem; color: var(--cream-dim); }
.row__none { margin: 0; font-size: .85rem; color: var(--cream-dim); }
.card__kicker, .tag, .row__tags li, .row__aff, .sect__note, .row__lim, .notice p, .row__none {
  font-size: max(0.75rem, 12px);
}

/* ==========================================================================
   THE CITY — image-led location cards and a detail panel.
   Rebuilt 2026-09-19. The cards were seven of the same shape linking to the
   news page; the picture is the subject now, and selecting one opens it here.
   ========================================================================== */
.phero--big { min-height: min(72vh, 600px); }
.phero--big .phero__img { animation-play-state: running; }
.phero__meta { margin: 1.3rem 0 0; }

.plcs {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(0.9rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
/* The city gets the room it deserves; the rest share the grid. */
.plcs > li:first-child { grid-column: span 2; }
@media (max-width: 720px) { .plcs > li:first-child { grid-column: auto; } }

.plc__btn {
  width: 100%; height: 100%; padding: 0; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface); color: inherit;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.plc__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #06090A; }
.plcs > li:first-child .plc__media { aspect-ratio: 16 / 7; }
.plc__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
/* The wash sits under the text only, so the photograph is not dimmed to read
   a caption that is nowhere near it. */
.plc__wash {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(8,10,11,0.5) 74%, rgba(8,10,11,0.9) 100%);
}
@media (hover: hover) and (pointer: fine) {
  .plc__btn:hover {
    transform: translateY(-4px); border-color: rgb(var(--a-rgb) / 0.6);
    box-shadow: 0 28px 60px -32px rgba(0,0,0,0.95), 0 0 0 1px rgb(var(--a-rgb) / 0.3);
  }
  .plc__btn:hover .plc__img { transform: scale(1.06); }
}
.plc__btn:focus-visible { outline: 3px solid var(--a); outline-offset: 3px; }
.plc__b { display: grid; gap: 0.3rem; padding: 0.9rem 1rem 1rem; }
.plc__k { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--a); }
.plc__t { font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 800; letter-spacing: -0.025em; color: var(--cream); line-height: 1.15; }
.plc__d { font-size: 0.9375rem; line-height: 1.55; color: var(--cream-dim); }
.plc__go { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: 0.35rem; }
.plc__n { font-size: 0.8125rem; color: var(--cream-dim); }
.plc__cta { font-size: 0.875rem; font-weight: 800; color: var(--a); }

/* ------------------------------- the panel ------------------------------- */
.pl { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: var(--gutter); }
.pl[hidden] { display: none !important; }
.pl__scrim { position: absolute; inset: 0; background: rgba(4,6,7,0.92); }
.pl__box {
  position: relative; width: min(980px, 100%); max-height: 90vh;
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.pl__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--line); flex: none;
}
.pl__back {
  display: inline-flex; align-items: center; gap: 0.45rem; cursor: pointer;
  background: none; border: 0; color: var(--cream); font-size: 0.9375rem; font-weight: 700;
  padding: 0.5rem 0.6rem; border-radius: var(--radius); min-height: 44px;
}
.pl__back:hover { color: var(--cyan); }
.pl__x {
  width: 40px; height: 40px; flex: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line); color: var(--cream); font-size: 1.4rem; line-height: 1;
}
.pl__x:hover { background: var(--cyan); color: var(--cyan-ink); border-color: var(--cyan); }
.pl__scroll { overflow: auto; }
.pl__stage { margin: 0; aspect-ratio: 16 / 9; background: #06090A; overflow: hidden; }
.pl__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pl__img.is-swap { animation: ww-swap 420ms var(--ease-out); }
@keyframes ww-swap { from { opacity: 0.25; transform: scale(1.03); } to { opacity: 1; transform: none; } }
.pl__thumbs { list-style: none; display: flex; gap: 0.5rem; margin: 0; padding: 0.6rem 0.9rem 0; }
.pl__thumbs[hidden] { display: none; }
.pl__thumb {
  width: 92px; aspect-ratio: 16 / 9; padding: 0; cursor: pointer; overflow: hidden;
  border-radius: 7px; border: 2px solid transparent; background: #06090A;
  transition: border-color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
  opacity: 0.6;
}
.pl__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pl__thumb:hover { opacity: 1; }
.pl__thumb[aria-pressed="true"] { border-color: var(--cyan); opacity: 1; }
.pl__thumb:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }
.pl__body { padding: 1rem 1.1rem 1.3rem; display: grid; gap: 0.6rem; }
.pl__k { margin: 0; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }
.pl__t { margin: 0; font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; color: var(--cream); }
.pl__lede { margin: 0; font-size: 1.0625rem; font-weight: 600; color: var(--cream); line-height: 1.5; }
.pl__p { margin: 0; line-height: 1.65; color: var(--cream-dim); max-width: 72ch; }
.pl__cols { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-top: 0.3rem; }
.pl__lab { margin: 0 0 0.35rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }
.pl__lab--warn { color: var(--orange); }
.pl__seen { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.25rem; color: var(--cream); font-size: 0.9375rem; line-height: 1.5; }
.pl__unk { margin: 0; color: var(--cream-dim); font-size: 0.9375rem; line-height: 1.55; }
.pl__acts { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.pl__tri { width: 0; height: 0; border-left: 8px solid currentColor; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.pl__src { margin: 0; font-size: 0.8125rem; color: var(--cream-dim); line-height: 1.55; }
.pl__src a { color: var(--cream); font-weight: 700; }

@media (max-width: 720px) {
  .pl { padding: 0; }
  .pl__box { max-height: 100vh; height: 100%; border-radius: 0; border: 0; width: 100%; }
}
