
:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #11100d;
  color: #f8f3ea;
}
* { box-sizing: border-box; }
body { margin: 0; background: #11100d; color: #f8f3ea; }
button, a { font: inherit; }
.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: max(24px, env(safe-area-inset-top)) 18px 28px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,16,13,.05), rgba(17,16,13,.48) 42%, #11100d 96%);
}
.hero__media { position: absolute; inset: 0; display: grid; grid-template-columns: 1.1fr .9fr; gap: 6px; opacity: .88; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.02); }
.hero__media img:first-child { grid-row: span 2; }
.hero__content { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; width: 100%; }
.eyebrow { margin: 0 0 8px; color: #e4cfa4; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; font-weight: 800; }
h1, h2 { letter-spacing: 0; line-height: .98; margin: 0; }
h1 { font-size: clamp(46px, 13vw, 108px); max-width: 860px; }
h2 { font-size: clamp(30px, 8vw, 62px); }
.dek { margin: 16px 0 0; max-width: 640px; color: #efe7d8; font-size: clamp(17px, 4vw, 22px); line-height: 1.35; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.button {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-decoration: none;
  cursor: pointer;
}
.primary { background: #f8f3ea; color: #15130f; font-weight: 850; }
.secondary { background: rgba(255,255,255,.09); color: #f8f3ea; }
.section { max-width: 1260px; margin: 0 auto; padding: 24px 10px 34px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; padding: 0 8px 14px; }
.sticky-head { position: sticky; top: 0; z-index: 3; background: linear-gradient(180deg, #11100d 72%, rgba(17,16,13,0)); padding-top: 12px; }
.note { margin: -4px 8px 14px; max-width: 780px; color: #bdb3a4; line-height: 1.45; }
.count { color: #bdb3a4; white-space: nowrap; }
.link-button { border: 0; background: transparent; color: #e4cfa4; padding: 8px 0; cursor: pointer; font-weight: 800; }
.people-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(176px, 220px); gap: 10px; overflow-x: auto; padding: 0 8px 8px; scroll-snap-type: x mandatory; }
.person-card { border: 1px solid rgba(255,255,255,.12); background: #1c1a16; border-radius: 18px; overflow: hidden; cursor: pointer; text-align: left; color: inherit; padding: 0; scroll-snap-align: start; }
.face-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; aspect-ratio: 1.45; background: #2a241c; }
.face-stack img { width: 100%; height: 100%; object-fit: cover; }
.person-meta { padding: 12px; }
.person-meta strong { display: block; font-size: 16px; }
.person-meta span { display: block; color: #bdb3a4; font-size: 13px; margin-top: 2px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 8px; }
.tile {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  background: #241f18;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.tile img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .22s ease; }
.tile:active img, .tile:hover img { transform: scale(1.035); }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: #050504;
  display: none;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  touch-action: pan-y;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100vw; max-height: 100vh; object-fit: contain; user-select: none; -webkit-user-select: none; }
.lightbox__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: max(14px, env(safe-area-inset-top)) 14px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,0));
}
.lightbox__actions { display: flex; gap: 10px; align-items: center; }
.lightbox__actions a, .lightbox__actions button {
  color: white;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  min-height: 38px;
  padding: 0 13px;
  text-decoration: none;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  width: 46px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(0,0,0,.32);
  font-size: 42px;
  cursor: pointer;
}
.prev { left: 10px; }
.next { right: 10px; }
@media (max-width: 620px) {
  .hero { min-height: 70vh; }
  .hero__media { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
  .tile { border-radius: 7px; }
  .people-strip { grid-auto-columns: 74vw; }
  .section { padding-left: 5px; padding-right: 5px; }
  .nav { display: none; }
  .button { width: 100%; }
}
