/* ── Sleek content layouts (shared by inner pages) ── */
body.sleek main { position: relative; }

/* kicker replaces the big page heading */
.kicker {
  position: absolute; top: 44px; left: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #000; z-index: 2;
}
.sheet .kicker { position: static; margin-bottom: 40px; }

/* ── Filmstrip: same rhythm as the home page ── */
body.sleek main.strip {
  margin-left: 260px; height: 100vh; padding: 0 20px;
  display: flex; flex-direction: row; align-items: center; gap: 6px;
  overflow-x: auto; overflow-y: hidden; scrollbar-width: none;
}
body.sleek main.strip::-webkit-scrollbar { display: none; }
.tile { flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; height: 88vh; }
.tile img, .tile .poster { display: block; height: 74vh; width: auto; object-fit: cover; }
.tile.photo img { height: 88vh; }
.tile .cap { padding-top: 12px; display: flex; flex-direction: column; gap: 3px; }
.tile .cap .t { font-size: 15px; font-weight: 500; letter-spacing: -0.1px; }
.tile .cap .r { font-size: 12px; font-weight: 400; color: #777; letter-spacing: 0.2px; }

/* video tile: poster only, no player chrome until clicked */
.tile a.play { position: relative; display: block; text-decoration: none; color: inherit; cursor: pointer; }
.tile a.play .poster { aspect-ratio: 16 / 9; height: 74vh; background: #111; }
.tile a.play::after {
  content: "Play"; position: absolute; left: 18px; bottom: 18px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,.8); padding: 7px 12px 6px; opacity: .9;
  transition: opacity .2s, background .2s;
}
.tile a.play:hover::after { background: #fff; color: #000; opacity: 1; }
.tile a.play:hover .poster { opacity: .92; }

/* text panel that sits beside a still */
.tile.text { width: 300px; margin: 0 24px 0 18px; height: 88vh; justify-content: center; }
.tile.text .h { font-size: 22px; font-weight: 700; letter-spacing: -0.4px; line-height: 1.15; margin-bottom: 6px; }
.tile.text .role { font-size: 13px; color: #777; margin-bottom: 26px; }
.tile.text .k { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin: 16px 0 6px; }
.tile.text .k:first-of-type { margin-top: 0; }
.tile.text .i { font-size: 13px; font-weight: 300; line-height: 1.55; color: #333; }
.tile.text .lead { font-size: 30px; font-weight: 700; letter-spacing: -0.6px; line-height: 1.1; margin-bottom: 18px; }
.tile.text .clients { font-size: 13px; line-height: 1.8; color: #333; font-weight: 300; }

/* ── Sheet: typographic pages (press, social, contact) ── */
body.sleek main.sheet {
  margin-left: 260px; min-height: 100vh; padding: 44px 60px 80px; max-width: 980px;
  overflow-y: auto; scrollbar-width: none;
}
body.sleek main.sheet::-webkit-scrollbar { display: none; }
.sheet .group { margin-bottom: 44px; }
.sheet .group .k { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.sheet .row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 11px 0; border-top: 1px solid #e6e6e6; }
.sheet .row:last-child { border-bottom: 1px solid #e6e6e6; }
.sheet .row .pub { font-size: 14px; font-weight: 500; }
.sheet .row a { text-decoration: none; color: #333; font-weight: 300; font-size: 14px; transition: opacity .2s; }
.sheet .row a:hover { opacity: .5; }
.sheet .big { font-size: clamp(56px, 9vw, 120px); font-weight: 700; letter-spacing: -3px; line-height: .95; }
.sheet .big small { display: block; font-size: 13px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; color: #777; margin-top: 10px; }
.sheet .stats { display: flex; gap: 80px; flex-wrap: wrap; margin-bottom: 60px; }
.sheet .huge a { font-size: clamp(28px, 4vw, 52px); font-weight: 700; letter-spacing: -1px; text-decoration: none; color: #000; transition: opacity .2s; }
.sheet .huge a:hover { opacity: .5; }
.sheet .links { display: flex; gap: 28px; flex-wrap: wrap; }
.sheet .links a { font-size: 15px; text-decoration: none; color: #000; border-bottom: 1px solid #000; padding-bottom: 2px; transition: opacity .2s; }
.sheet .links a:hover { opacity: .5; }
.sheet .logos { max-width: 620px; display: block; }
.sheet .thumbs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; margin-top: 40px; }
.sheet .thumbs img { height: 260px; width: auto; flex-shrink: 0; }
.sheet .thumbs::-webkit-scrollbar { display: none; }

/* ── Lightbox ── */
.lb { position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lb.on { display: flex; }
.lb .frame { width: min(1200px, 100%); aspect-ratio: 16/9; }
.lb iframe { width: 100%; height: 100%; border: 0; }
.lb .x { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 30px; background: none; border: none; cursor: pointer; line-height: 1; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .kicker { position: static; margin: 0 0 18px; }
  body.sleek main.strip { margin-left: 0; margin-top: 60px; height: auto; flex-direction: column; align-items: stretch; overflow: visible; padding: 20px; gap: 26px; }
  .tile { height: auto; }
  .tile img, .tile .poster, .tile.photo img, .tile a.play .poster { height: auto; width: 100%; }
  .tile.text { width: auto; margin: 0; height: auto; }
  body.sleek main.sheet { margin-left: 0; margin-top: 60px; padding: 20px 20px 60px; min-height: 0; }
  .sheet .row { grid-template-columns: 1fr; gap: 4px; }
  .sheet .stats { gap: 30px; }
}

/* neutralise page-specific layouts left in the inline styles */
body.sleek main.sheet { display: block; height: auto; }
body.sleek main.sheet .group img.logos { width: 100%; max-width: 560px; height: auto; }
