/* ============================================================
   Hero — light editorial, people-first
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding-top: 7rem; overflow: hidden;
}
.hero__glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 72vw; height: 72vw; max-width: 900px; max-height: 900px;
  top: -24%; right: -14%; border-radius: 50%;
  background: radial-gradient(circle, var(--halo) 0%, transparent 64%);
  filter: blur(20px); opacity: 0.9;
}
.hero__grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background: linear-gradient(90deg, var(--line-2) 1px, transparent 1px) 0 0 / 92px 100%;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 70%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 20%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 2; display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.15fr 0.85fr; align-items: center; width: 100%;
}
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title { font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem, 1.5rem + 4.6vw, 5.3rem);
  line-height: 1; letter-spacing: -0.025em; color: var(--ink); }
.hero__title em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero__sub { max-width: 30em; margin-top: 1.8rem; font-size: var(--t-lead); color: var(--text-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }

/* photo panel */
.hero__media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--line); background: var(--card);
  box-shadow: 0 30px 60px -28px rgba(12,20,34,0.4);
}
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; filter: contrast(1.02) saturate(1.02); }
.hero__media::after {
  content: ""; position: absolute; inset: 0; mix-blend-mode: soft-light;
  background: linear-gradient(150deg, rgba(10,111,240,0.5), transparent 60%);
}
.hero__chip {
  position: absolute; z-index: 3; left: 1rem; bottom: 1rem; right: 1rem;
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.1rem; border-radius: var(--radius);
  background: rgba(251,249,244,0.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero__chip b { font-family: var(--display); font-size: 1.7rem; font-weight: 600; line-height: 1; color: var(--ink); }
.hero__chip span { font-size: var(--t-small); color: var(--ink-soft); line-height: 1.3; }

/* client strip */
.trust { position: relative; z-index: 2; margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem); }
.trust .rule { height: 1px; background: var(--line); margin-bottom: 1.6rem; }
.trust__label { font-size: var(--t-eyebrow); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 1.1rem; }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(0.7rem, 2vw, 1rem); }
.logo-chip {
  display: grid; place-items: center; height: 70px; padding: 0 1.9rem;
  background: var(--card-2); border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 8px 22px -16px rgba(12,20,34,0.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-chip:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(12,20,34,0.6); }
.logo-chip img { height: clamp(28px, 3vw, 38px); width: auto; mix-blend-mode: multiply; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16/12; max-height: 52vh; margin-top: 2.4rem; }
  .hero { min-height: auto; padding-top: 8rem; padding-bottom: 3rem; }
}

/* ---- Animated city skyline (London + SV silhouettes, GPU drift) ---- */
.skyline { position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  overflow: hidden; height: clamp(150px, 28vh, 290px);
  -webkit-mask-image: linear-gradient(to top, #000 50%, transparent 100%);
          mask-image: linear-gradient(to top, #000 50%, transparent 100%); }
.skyline__layer { position: absolute; bottom: 0; left: 0; height: 100%; display: flex;
  width: max-content; animation: skylineDrift linear infinite; will-change: transform; }
.skyline__tile { display: block; height: 100%; width: auto; }
.skyline__layer--far  { height: 70%; opacity: 0.035; animation-duration: 170s; }
.skyline__layer--near { height: 100%; opacity: 0.055; animation-duration: 105s; }
.skyline__layer--near .skyline__tile { transform: scaleX(-1); }
@keyframes skylineDrift { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .skyline__layer { animation: none; } }
