/* PK MAN — cinematic dark theme.
   Hand-authored for this campaign; the site is design_locked so site_build
   will not regenerate over it. Class names from the house renderer are kept
   so the five interior pages restyle without markup changes. */

:root {
  --ink: #eef2f6;
  --ink-dim: #a4b1bd;
  --paper: #05070b;
  --surface: #0c1119;
  --surface-2: #121926;
  --line: #1e2836;
  --teal: #6fb7e8;
  --coral: #d4622f;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  --max: 1220px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: var(--teal); }

/* ---------- nav: centered ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 12px;
  background: rgba(5, 7, 11, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.site-nav .brand {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--ink);
  text-decoration: none;
}

.site-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 22px;
}

.site-nav nav a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.site-nav nav a:hover { color: var(--ink); border-bottom-color: var(--teal); }

/* ---------- hero: full-bleed, no panel ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(420px, 62vh, 660px);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 7vw, 84px) clamp(18px, 5vw, 64px) clamp(30px, 6vw, 70px);
}

.hero-bg-wrap { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.hero-bg,
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Legibility wash so headline text survives over any frame of the art. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(5, 7, 11, 0.96) 4%, rgba(5, 7, 11, 0.55) 42%, rgba(5, 7, 11, 0.18) 78%),
    linear-gradient(to right, rgba(5, 7, 11, 0.72), rgba(5, 7, 11, 0) 62%);
}

/* The old translucent card is gone — copy sits directly on the art. */
.hero-copy {
  background: none;
  border-radius: 0;
  padding: 0;
  max-width: 34rem;
}

.hero-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.8);
}

.hero-copy .lead {
  margin: 0 0 22px;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  color: var(--ink-dim);
  max-width: 30rem;
}

/* ---------- buttons: present, not dominant ---------- */
.button {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(238, 242, 246, 0.42);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.button:hover { background: rgba(238, 242, 246, 0.1); border-color: var(--ink); }

/* One accent instance, on the support page only. */
.cta-band .button {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
}

.cta-band .button:hover { background: #e0703c; border-color: #e0703c; }

/* ---------- poster showcase ---------- */
.poster-showcase {
  padding: clamp(40px, 7vw, 86px) clamp(18px, 5vw, 48px);
  background: radial-gradient(ellipse at 50% 0%, #101927 0%, var(--paper) 68%);
  text-align: center;
}

.poster-showcase figure { margin: 0; display: inline-block; max-width: min(680px, 92vw); }

.poster-showcase img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.poster-showcase figcaption {
  margin-top: 14px;
  color: var(--ink-dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- video rail (horizontal carousel) ---------- */
.video-rail-section {
  padding: clamp(34px, 6vw, 68px) 0 clamp(40px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.rail-head {
  max-width: var(--max);
  margin: 0 auto 20px;
  padding: 0 clamp(18px, 5vw, 48px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.rail-head h2 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.rail-hint { margin: 0; color: var(--ink-dim); font-size: 0.78rem; }

.video-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px clamp(18px, 5vw, 48px) 18px;
  scrollbar-width: thin;
}

.video-rail::-webkit-scrollbar { height: 8px; }
.video-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.rail-item {
  flex: 0 0 min(560px, 84vw);
  scroll-snap-align: start;
  margin: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.rail-item video { width: 100%; aspect-ratio: 16 / 9; background: #000; object-fit: cover; }

.rail-item figcaption {
  padding: 12px 15px 14px;
  color: var(--ink-dim);
  font-size: 0.85rem;
  line-height: 1.5;
}

.rail-item figcaption strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }

/* ---------- body copy ---------- */
.content-band {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 82px) clamp(18px, 5vw, 32px);
}

.section-kicker {
  color: var(--teal);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.content-band p { margin: 0 0 1.15em; color: #d3dae2; font-size: 1.045rem; }

/* ---------- interior-page asset grid ---------- */
.asset-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px) clamp(18px, 5vw, 48px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.asset-slot {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.asset-slot img, .asset-slot video { width: 100%; height: auto; }

.asset-slot figcaption {
  padding: 11px 14px 13px;
  color: var(--ink-dim);
  font-size: 0.82rem;
}

aside.asset-slot { padding: 16px; color: var(--ink-dim); font-size: 0.85rem; }

/* ---------- closing CTA ---------- */
.cta-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 48px) clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cta-band p { color: var(--ink-dim); }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 26px clamp(18px, 5vw, 48px) 40px;
  color: #6f7c8a;
  font-size: 0.76rem;
  text-align: center;
  background: var(--paper);
}

footer p { margin: 0 0 6px; }

@media (max-width: 620px) {
  .hero { align-items: flex-end; min-height: 58vh; }
  .site-nav nav { gap: 2px 14px; }
  .site-nav nav a { font-size: 0.76rem; }
}

/* ---------- stay tuned + email capture ---------- */
.signup {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px) clamp(18px, 5vw, 32px);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signup h2 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 3.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.signup-lead {
  margin: 0 auto 22px;
  color: var(--ink-dim);
  max-width: 34rem;
  font-size: 1.02rem;
}

.signup-button {
  border-color: var(--teal);
  color: var(--paper);
  background: var(--teal);
  font-size: 0.95rem;
  padding: 13px 26px;
}

.signup-button:hover { background: #8ac8f0; border-color: #8ac8f0; }

.signup-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 30rem;
}

.signup-form input[type="email"] {
  flex: 1 1 17rem;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 0.98rem;
  font-family: inherit;
}

.signup-form input[type="email"]::placeholder { color: #63707e; }

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(111, 183, 232, 0.16);
}

.signup-form .signup-button { flex: 0 0 auto; cursor: pointer; }

.signup-thanks {
  margin: 0;
  color: var(--teal);
  font-size: 1.02rem;
  font-weight: 600;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.signup-alt { margin: 14px 0 0; color: #7d8894; font-size: 0.82rem; }

/* ---------- archival photo strips ---------- */
.photo-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 48px);
  border-top: 1px solid var(--line);
}

.strip-head h2 {
  margin: 0 0 20px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

.photo-grid.portraits { grid-template-columns: repeat(auto-fit, minmax(200px, 260px)); justify-content: center; }

.photo-grid figure, .wide-still {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.photo-grid img, .wide-still img { width: 100%; height: auto; display: block; }

.photo-grid figcaption, .wide-still figcaption {
  padding: 11px 14px 13px;
  color: var(--ink-dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

.wide-still { margin-top: 20px; }
