/**
 * First-Timers cinematic scroll — verbatim port of the Mostar rig.
 * Values are 1:1 with the reference spec; only assets, palette (warm dusk
 * instead of Adriatic blue) and half-canvas splitframes are adapted.
 */
:root {
  --ftc-mx: 0;
  --ftc-my: 0;
  --ftc-back-opacity: 1;
  --ftc-back-x: 0px;
  --ftc-back-y: 0px;
  --ftc-back-scale: 0.76;
  --ftc-four-y: 10vh;
  --ftc-four-scale: 0.78;
  --ftc-mid-y: 20vh;
  --ftc-blur-px: 0px;
  --ftc-back-brightness: 1;
  --ftc-mid-blur-px: 0px;
  --ftc-mid-brightness: 1;
  --ftc-mid-saturation: 1;
  --ftc-shade-opacity: 1;
  --ftc-shade-z: 2;
  --ftc-shade-top-alpha: 0;
  --ftc-shade-mid-alpha: 0;
  --ftc-shade-bottom-alpha: 0;
  --ftc-blur-tint: 226, 186, 138;
  --ftc-title-y: 0px;
  --ftc-title-scale: 1;
  --ftc-title-opacity: 1;
  --ftc-wall-x: -50%;
  --ftc-wall-y: 0px;
  --ftc-wall-bottom: 5vh;
  --ftc-wall-width: 67.2vw;
  --ftc-wall-scale: 1.02;
  --ftc-split-left-x: -98.17%;
  --ftc-split-left-y: 0px;
  --ftc-split-left-scale: 1;
  --ftc-split-right-x: -1.83%;
  --ftc-split-right-y: 0px;
  --ftc-split-right-scale: 1;
  --ftc-frame2-opacity: 0;
  --ftc-frame2-x: -50%;
  --ftc-frame2-y: -50%;
  --ftc-frame2-scale: 1.06;
  --ftc-intro-y: 0px;
  --ftc-intro-opacity: 1;
  --ftc-panel2-opacity: 0;
  --ftc-panel2-y: calc(-50% + 58px);
  --ftc-panel3-opacity: 0;
  --ftc-panel3-y: calc(-50% + 58px);
  --ftc-sights-opacity: 0;
  --ftc-sights-controls-opacity: 0;
  --ftc-sights-y: 0px;
  --ftc-sights-enter-x: 420vw;
  --ftc-sights-visibility: hidden;
  --ftc-sights-shift: 0px;
  --ftc-sights-scale: 1;
  --ftc-sights-top: calc(50% - 165px);
  --ftc-sights-screen-top: calc(50vh - 165px);
  --ftc-ink: #1c1a18;
  --ftc-paper: #fdfcfa;
  --ftc-shadow: rgba(0, 0, 0, 0.32);
  --ftc-display: "Playfair Display", Georgia, serif;
  --ftc-body: "Outfit", Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* —— Scroll rig —— */
/* Theme sets overflow-x:hidden on html/body, which turns body into a scroll
 * container and silently disables position:sticky. overflow-x:clip crops the
 * same horizontal overflow without creating a scroll container. This file
 * only loads on the first-timers page, so the override is page-scoped. */
html {
  overflow-x: clip;
  /* Window resizes reflow the long content below the hero; Chrome's scroll
   * anchoring then silently shifts scrollY, which scrubs the sticky cinema
   * into a mid-transition state that looks broken. Disable it here. */
  overflow-anchor: none;
}

body {
  overflow-x: clip;
  overflow-y: visible;
}

.gcn-ft-cinema {
  /* .gcn-ft-btn styles read these; they are normally scoped to .gcn-ft-section. */
  --gcn-ft-brand: var(--gcn-brand, #a33b39);
  --gcn-ft-brand-dark: #8c2f2d;
  /* How far (vw) each gate half drifts at full split; JS reads this per
   * breakpoint so the halves always clear the viewport completely. */
  --ftc-split-drift-vw: 90;
  position: relative;
  height: calc(100vh + 5200px);
  /* svh = smallest visible viewport: keeps the composition fully on-screen
   * on phones with collapsing URL bars and on short desktop windows. */
  height: calc(100svh + 5200px);
  margin: 0;
  padding: 0;
  font-family: var(--ftc-body);
  color: var(--ftc-paper);
  background: #171310;
}

.gcn-ftc-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #cdb392;
}

.gcn-ftc-world,
.gcn-ftc-back,
.gcn-ftc-sky,
.gcn-ftc-shade,
.gcn-ftc-scene,
.gcn-ftc-sights,
.gcn-ftc-controls,
.gcn-ftc-title,
.gcn-ftc-intro,
.gcn-ftc-panel {
  position: absolute;
}

.gcn-ftc-world {
  inset: 0;
  overflow: hidden;
  background: #c9b49a;
}

/* —— Scene images (shared) —— */
.gcn-ftc-scene {
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

/* <picture> is only a source switcher — keep the img as the positioned layer. */
.gcn-ftc-world picture,
.gcn-ftc-back picture {
  display: contents;
}

/* Sky (z 0) */
.gcn-ftc-sky {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: blur(var(--ftc-blur-px)) brightness(var(--ftc-back-brightness));
}

/* Back stack (z 1) */
.gcn-ftc-back {
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -3vw;
  right: -3vw;
  opacity: var(--ftc-back-opacity);
  transform: translate3d(var(--ftc-back-x), var(--ftc-back-y), 0) scale(var(--ftc-back-scale));
  transform-origin: 50% 100%;
  will-change: transform, filter, opacity;
}

.gcn-ftc-back-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(var(--ftc-blur-px)) brightness(var(--ftc-back-brightness));
}

.gcn-ftc-mid,
.gcn-ftc-glow {
  top: auto;
  bottom: 0;
  left: 48%;
  right: auto;
  width: 112%;
  height: auto;
  object-fit: contain;
}

.gcn-ftc-mid {
  z-index: 3;
  opacity: 1;
  filter: blur(var(--ftc-mid-blur-px)) brightness(var(--ftc-mid-brightness)) saturate(var(--ftc-mid-saturation));
  transform: translate3d(-50%, var(--ftc-mid-y), 0) scale(0.86);
}

.gcn-ftc-glow {
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: screen;
  transform: translate3d(-50%, calc(var(--ftc-four-y) - 110px), 0) scale(var(--ftc-four-scale));
}

/* —— Sights slider (above the mid-city layer so taller photo cards stay readable) —— */
.gcn-ftc-sights {
  z-index: 4;
  left: 0;
  right: 0;
  top: var(--ftc-sights-top);
  padding: 0;
  opacity: 1;
  visibility: var(--ftc-sights-visibility);
  transform: translate3d(var(--ftc-sights-enter-x), var(--ftc-sights-y), 0) scale(var(--ftc-sights-scale));
  transform-origin: 0 0;
  pointer-events: auto;
  will-change: transform;
}

.gcn-ftc-track {
  display: flex;
  gap: clamp(16px, 1.15vw, 24px);
  align-items: stretch;
  transform: translate3d(calc(var(--ftc-sights-shift) - 18vw), 0, 0);
  transition: transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gcn-ftc-track.is-jumping {
  transition: none;
}

.gcn-ftc-card {
  position: relative;
  flex: 0 0 clamp(360px, 19.4vw, 430px);
  height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(253, 252, 250, 0.42);
  border-radius: 24px;
  color: var(--ftc-ink);
  background: var(--ftc-paper);
  box-shadow: 0 18px 52px rgba(28, 26, 24, 0.14);
  backdrop-filter: none;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
}

.gcn-ftc-card::before,
.gcn-ftc-card::after {
  content: none;
}

.gcn-ftc-card:focus-visible,
.gcn-ftc-card.is-active {
  outline: none;
}

/* City photo band at the top of each loop card (centered cover crop). */
.gcn-ftc-card-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 186px;
  display: block;
  overflow: hidden;
}

.gcn-ftc-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 26, 24, 0.34) 0%, rgba(28, 26, 24, 0) 46%);
}

.gcn-ftc-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gcn-ftc-kicker,
.gcn-ftc-card h3,
.gcn-ftc-card p {
  position: relative;
  z-index: 1;
  text-shadow: none;
}

.gcn-ftc-kicker {
  display: block;
  margin-bottom: 56px;
  /* Sits on the photo band, so it reads in paper white with a soft shadow. */
  color: var(--ftc-paper);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(28, 26, 24, 0.55);
}

.gcn-ftc-pin {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--ftc-paper);
  background: #a33b39;
  font-family: var(--ftc-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.gcn-ftc-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: calc(24px + (16px * 1.16 * 2) + 12px);
  max-width: calc(100% - 76px);
  margin: 0;
  color: var(--ftc-ink);
  font-family: var(--ftc-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 0.95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gcn-ftc-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 100%;
  margin: 12px 0 0;
  color: var(--ftc-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.16;
  display: -webkit-box;
  max-height: calc(2em * 1.16);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* —— Slider controls (z 5) —— */
.gcn-ftc-controls {
  z-index: 5;
  left: 48px;
  right: auto;
  top: calc(var(--ftc-sights-screen-top) + 330px + 16px);
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  opacity: var(--ftc-sights-controls-opacity);
  transform: translate3d(0, var(--ftc-sights-y), 0);
  pointer-events: none;
  will-change: transform, opacity;
}

.gcn-ftc-controls.is-ready {
  pointer-events: auto;
}

.gcn-ftc-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  color: var(--ftc-ink);
  background: rgba(253, 252, 250, 0.94);
  font: inherit;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* —— Hero title —— */
/* Reference puts the title at z 3 under the splitframes because the Mostar
 * bridge is low-profile; our gate layers are full-height, so the title rides
 * above them (z 7) exactly like MOSTAR reads over the open sky. */
.gcn-ftc-title {
  z-index: 7;
  left: 50%;
  top: clamp(122px, 19vh, 205px);
  width: min(94vw, 1780px);
  margin: 0;
  color: var(--ftc-paper);
  font-family: var(--ftc-display);
  font-weight: 500;
  text-align: center;
  text-shadow: none;
  transform: translate3d(-50%, var(--ftc-title-y), 0) scale(var(--ftc-title-scale));
  opacity: var(--ftc-title-opacity);
  will-change: transform, opacity;
}

.gcn-ftc-title__kicker {
  display: block;
  margin-bottom: 18px;
  font-family: var(--ftc-body);
  font-size: clamp(0.95rem, 1.3vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.gcn-ftc-title__word {
  display: block;
  /* Fully fluid: tracks viewport width, capped by height so short windows
   * never clip the word, absolute cap = the reference 14rem. */
  font-size: clamp(3.4rem, min(14.5vw, 24vh), 14rem);
  font-weight: 500;
  line-height: 0.78;
}

.gcn-ftc-title__word.gcn-hero-gold {
  color: var(--gcn-gold, #e8b84a);
  text-shadow: 0 4px 22px rgba(232, 184, 74, 0.28);
}

/* —— Wall foreground (z 4, = bridge) —— */
.gcn-ftc-wall {
  z-index: 4;
  left: 50%;
  bottom: var(--ftc-wall-bottom);
  width: min(var(--ftc-wall-width), 2140px);
  height: auto;
  transform: translate3d(var(--ftc-wall-x), var(--ftc-wall-y), 0) scale(var(--ftc-wall-scale));
  transform-origin: 50% 48%;
}

/* —— Splitframes (z 6) — half-canvas PNGs, meet at center —— */
.gcn-ftc-split {
  z-index: 6;
  left: 50%;
  bottom: -2vh;
  /* The 95vh term caps each gate half by viewport height: on wide 16:9
   * screens 59vw would make the gate far taller than the screen and crop
   * the roof away. Halves are 1528x2000, so h = w * 1.309.
   * The 52vw floor guarantees the two halves always span the full viewport
   * width (with margin for the ±11px mouse parallax) — any extra height
   * only crops into the photo's sky band (top ~25%). */
  width: max(52vw, min(59vw, 1120px, 95vh));
  height: auto;
  pointer-events: none;
}

.gcn-ftc-split-left {
  transform: translate3d(var(--ftc-split-left-x), var(--ftc-split-left-y), 0) scale(var(--ftc-split-left-scale));
  transform-origin: 42% 52%;
}

.gcn-ftc-split-right {
  transform: translate3d(var(--ftc-split-right-x), var(--ftc-split-right-y), 0) scale(var(--ftc-split-right-scale));
  transform-origin: 58% 52%;
}

/* —— Frame-two close-up (z 5) —— */
.gcn-ftc-frame-two {
  z-index: 5;
  filter: none !important;
  backdrop-filter: none;
  left: 50%;
  top: 50%;
  width: min(122vw, 2160px);
  height: auto;
  opacity: var(--ftc-frame2-opacity);
  transform: translate3d(var(--ftc-frame2-x), var(--ftc-frame2-y), 0) scale(var(--ftc-frame2-scale));
  transform-origin: 50% 48%;
}

/* —— Shade —— */
.gcn-ftc-shade {
  inset: 0;
  z-index: var(--ftc-shade-z);
  pointer-events: none;
  opacity: var(--ftc-shade-opacity);
  background: linear-gradient(180deg,
    rgba(var(--ftc-blur-tint), var(--ftc-shade-top-alpha)) 0%,
    rgba(var(--ftc-blur-tint), var(--ftc-shade-mid-alpha)) 48%,
    rgba(var(--ftc-blur-tint), var(--ftc-shade-bottom-alpha)) 100%);
}

/* —— Intro copy (z 9) —— */
.gcn-ftc-intro {
  z-index: 9;
  left: 50%;
  bottom: clamp(56px, 28vh, 400px);
  width: min(560px, calc(100vw - 40px));
  text-align: center;
  transform: translate3d(-50%, var(--ftc-intro-y), 0);
  opacity: var(--ftc-intro-opacity);
  will-change: transform, opacity;
}

.gcn-ftc-intro p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--ftc-paper);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.gcn-ftc-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.gcn-ftc-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  color: var(--ftc-ink);
  border-radius: 999px;
  background: var(--ftc-paper);
  font-size: 0.98rem;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gcn-ftc-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

/* —— Story panels (z 10) —— */
.gcn-ftc-panel {
  z-index: 10;
  left: 50%;
  top: 45%;
  width: min(760px, calc(100vw - 42px));
  text-align: center;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
}

.gcn-ftc-panel h2 {
  margin: 0;
  color: var(--ftc-paper);
  font-family: var(--ftc-display);
  font-size: clamp(2.3rem, min(5.5vw, 10vh), 4.75rem);
  font-weight: 500;
  line-height: 0.95;
  text-shadow: 0 16px 38px var(--ftc-shadow);
}

.gcn-ftc-panel p {
  width: min(520px, 100%);
  margin: 26px auto 0;
  color: var(--ftc-paper);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.gcn-ftc-panel-wall {
  top: 60%;
  opacity: var(--ftc-panel2-opacity);
  transform: translate3d(-50%, var(--ftc-panel2-y), 0);
}

.gcn-ftc-panel-city {
  top: 29%;
  opacity: var(--ftc-panel3-opacity);
  transform: translate3d(-50%, var(--ftc-panel3-y), 0);
}

.gcn-ftc-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px;
  width: min(470px, 100%);
  margin: 72px auto 0;
}

.gcn-ftc-facts dt {
  color: var(--ftc-paper);
  font-family: var(--ftc-display);
  font-size: clamp(2.2rem, min(4.8vw, 9vh), 4.2rem);
  font-weight: 500;
  line-height: 0.9;
  text-shadow: 0 14px 34px var(--ftc-shadow);
}

.gcn-ftc-facts dd {
  margin: 18px 0 0;
  color: var(--ftc-paper);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.14;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.gcn-ftc-note {
  min-height: 50px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--ftc-ink);
  background: var(--ftc-paper);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
  cursor: pointer;
}

.gcn-ftc-note span:first-child {
  font-size: 1.25rem;
  line-height: 1;
}

/* —— Media queries —— */
@media (max-width: 1100px) {
  .gcn-ft-cinema { --ftc-split-drift-vw: 105; }
  .gcn-ftc-title { top: 15vh; }
  .gcn-ftc-wall { width: 138vw; }
  .gcn-ftc-split { width: max(52vw, min(69vw, 100vh)); }
  .gcn-ftc-frame-two { width: 132vw; }
  .gcn-ftc-facts { gap: 34px; margin-top: 44px; }
  .gcn-ftc-card { flex-basis: clamp(320px, 40vw, 390px); }
}

@media (max-width: 640px) {
  .gcn-ft-cinema {
    --ftc-split-drift-vw: 88;
    /* Still shorter than desktop, but long enough to sit on the Wall + finish the loop. */
    height: calc(100svh + 4500px);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .gcn-ftc-stage,
  .gcn-ftc-world {
    width: 100%;
    left: 0;
    right: 0;
    background: #2a2118;
  }
  .gcn-ftc-back {
    left: 0;
    right: 0;
    transform: none;
  }
  .gcn-ftc-sights {
    transform: translate3d(var(--ftc-sights-enter-x), var(--ftc-sights-y), 0);
  }
  .gcn-ftc-split-left,
  .gcn-ftc-split-right {
    transform: translate3d(var(--ftc-split-left-x), var(--ftc-split-left-y), 0);
  }
  .gcn-ftc-split-right {
    transform: translate3d(var(--ftc-split-right-x), var(--ftc-split-right-y), 0);
  }
  .gcn-ftc-wall {
    transform: translate3d(var(--ftc-wall-x), var(--ftc-wall-y), 0);
  }
  .gcn-ftc-frame-two {
    transform: translate3d(var(--ftc-frame2-x), var(--ftc-frame2-y), 0);
  }
  .gcn-ftc-title {
    top: 46%;
    width: min(92vw, 420px);
    transform: translate3d(-50%, calc(-50% + var(--ftc-title-y)), 0);
  }
  .gcn-ftc-title__kicker {
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
  }
  .gcn-ftc-title__word {
    font-size: clamp(3.1rem, 22vw, 4.4rem);
    line-height: 0.82;
  }

  /* Full-bleed portrait plates: cover the sticky stage edge-to-edge. */
  .gcn-ftc-sky {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .gcn-ftc-split {
    bottom: 0;
    top: auto;
    width: 72vw;
    height: 100svh;
    object-fit: cover;
    object-position: center bottom;
  }
  .gcn-ftc-wall {
    bottom: 0;
    width: 165vw;
    max-width: none;
  }
  .gcn-ftc-mid,
  .gcn-ftc-glow {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
  .gcn-ftc-frame-two {
    width: 260vw;
    max-width: none;
  }

  /* Intro sits above the theme sticky quote bar; CTAs stack for thumbs. */
  .gcn-ftc-intro {
    bottom: 88px;
    width: min(360px, calc(100vw - 28px));
  }
  .gcn-ftc-intro p,
  .gcn-ftc-panel p {
    font-size: 0.95rem;
    line-height: 1.28;
  }
  .gcn-ftc-intro p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .gcn-ftc-tags {
    display: none;
  }
  .gcn-ftc-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .gcn-ftc-actions .gcn-ft-btn {
    width: 100%;
    min-height: 46px;
  }

  .gcn-ftc-panel {
    top: 40%;
    width: min(360px, calc(100vw - 28px));
  }
  .gcn-ftc-panel h2 {
    font-size: clamp(1.85rem, 8.4vw, 2.45rem);
  }
  .gcn-ftc-panel-city { top: 28%; }
  .gcn-ftc-facts {
    gap: 16px;
    margin-top: 22px;
  }
  .gcn-ftc-facts dt { font-size: 2rem; }
  .gcn-ftc-note {
    min-height: 44px;
    margin-top: 18px;
    padding: 0 20px;
  }

  /* Photo-forward city cards: one full card + a peek of the next. */
  .gcn-ftc-sights { padding: 0; }
  .gcn-ftc-track {
    gap: 10px;
    transform: translate3d(calc(var(--ftc-sights-shift) - 4vw), 0, 0);
  }
  .gcn-ftc-card {
    flex-basis: min(86vw, 340px);
    height: 318px;
    padding: 18px;
    border-radius: 22px;
  }
  .gcn-ftc-card-media { height: 188px; }
  .gcn-ftc-card h3 {
    left: 18px;
    right: 18px;
    bottom: calc(18px + (15px * 1.2 * 2) + 8px);
    max-width: calc(100% - 64px);
    font-size: 1.15rem;
  }
  .gcn-ftc-card p {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: 100%;
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.2;
  }
  .gcn-ftc-kicker { margin-bottom: 48px; font-size: 11px; }
  .gcn-ftc-pin {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .gcn-ftc-controls {
    left: 16px;
    right: auto;
    top: auto;
    bottom: 96px;
  }
  .gcn-ftc-nav {
    width: 48px;
    height: 48px;
  }
}

/* Short windows: pull the title up, tuck the intro to the bottom edge,
 * tighten vertical rhythm so nothing collides or falls below the fold. */
@media (max-height: 720px) and (min-width: 641px) {
  /* Keep the kicker below the sticky site header (~90px stack). */
  .gcn-ftc-title { top: clamp(96px, 14vh, 160px); }
  .gcn-ftc-title__kicker { margin-bottom: 10px; }
  .gcn-ftc-intro { bottom: 18px; }
  .gcn-ftc-intro p { font-size: 1rem; }
  .gcn-ftc-tags { margin-top: 12px; }
  .gcn-ftc-tags span { min-height: 36px; padding: 0 16px; font-size: 0.86rem; }
  .gcn-ftc-actions { margin-top: 12px; }
  .gcn-ftc-panel p { margin-top: 16px; }
  .gcn-ftc-facts { margin-top: 28px; gap: 30px; }
  .gcn-ftc-note { margin-top: 16px; min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .gcn-ftc-scene,
  .gcn-ftc-back,
  .gcn-ftc-title,
  .gcn-ftc-intro,
  .gcn-ftc-panel,
  .gcn-ftc-track,
  .gcn-ftc-sights {
    transition: none;
  }
}
