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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* ── Strip section wrapper ── */
.strip-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.strip-tag {
  position: absolute;
  top: 11px;
  left: 12px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 10;
  pointer-events: none;
}

/* ── Marquee inner container ── */
.strip-inner {
  display: flex;
  width: max-content;
  height: 218px;
}

/* Pause on section hover */
.strip-section:hover .strip-inner {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.scroll-left  { animation: scrollLeft  55s linear infinite; }
.scroll-right { animation: scrollRight 48s linear infinite; }

/* ── Individual strip items ── */
.strip-item {
  position: relative;
  flex-shrink: 0;
  height: 218px;
  background: #1c1c1c;
  overflow: hidden;
  border-right: 1px solid #fff;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.35s ease;
  z-index: 0;
  transform-origin: top center;
}

.strip-item:hover {
  transform: scale(1.4);
  z-index: 10;
  border-color: transparent;
}

.strip-item:not([data-yt-id]):hover {
  transform: scale(1.6);
}

.bottom-strip .strip-item {
  transform-origin: bottom center;
}

.bottom-strip .strip-item:hover {
  transform: scale(1.4);
}

.bottom-strip .strip-item:not([data-yt-id]):hover {
  transform: scale(1.6);
}

.strip-item:last-child {
  border-right: none;
}

.thumb {
  display: block;
  transition: transform 0.5s ease;
}

img.thumb {
  height: 218px;
  width: auto;
}

video.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35);
  transition: transform 0.5s ease;
}

.strip-item.is-video {
  width: 388px;
}

img.thumb {
  height: 218px;
  width: auto;
  transition: transform 0.5s ease;
}

.strip-item:hover video.thumb {
  transform: scale(1.05);
}

.strip-item:hover img.thumb {
  transform: scale(1.1);
}

@media (max-width: 700px) {
  img.thumb  { height: 140px; }
  video.thumb { height: 140px; }
  .strip-item.is-video { width: 249px; }
}

/* ── Hover overlay ── */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.strip-item:hover .overlay {
  opacity: 1;
}

.play-btn {
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}

.overlay-meta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
}

/* Film posters — no play btn, center vertically */
.overlay:not(:has(.play-btn)) {
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 12px;
}
.overlay:not(:has(.play-btn)) .overlay-meta {
  position: static;
  padding: 0 12px 0;
}

.overlay-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.overlay-role {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ── Middle section ── */
.middle {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 64px 28px;
}

.left-col {
  display: flex;
  flex-direction: column;
}

.left-col .bio {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.right-col {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-right: 0;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.contact-email {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.contact-email:hover {
  opacity: 0.5;
}

.bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #888;
  text-transform: lowercase;
}

.headline {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.copy {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #222;
}

.also {
  font-size: 11.5px;
  font-weight: 300;
  color: #999;
  margin-top: 6px;
}

.also a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.contact-heading {
  display: block;
  font-size: clamp(72px, 10.5vw, 168px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: #000;
  text-decoration: none;
}

.contact-heading:hover {
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.social-links a:hover {
  opacity: 0.5;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.contact-links a {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.contact-links a:hover {
  opacity: 0.5;
}

/* ── Brand ticker vertical ── */
.contact-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-right: 28px;
}

.contact-wrap .social-links {
  justify-content: flex-start;
}

.brand-ticker-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 16px);
  width: 110px;
  overflow: hidden;
}

.brand-inner-v {
  display: flex;
  flex-direction: column;
  animation: scrollUp 25s linear infinite;
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.brand-inner-v span {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 4px 0;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── Modal ── */
#modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

#modal.active {
  display: flex;
}

#modal-video {
  width: 90vw;
  height: 50.625vw; /* 16:9 */
  max-height: 90vh;
  max-width: calc(90vh * 16 / 9);
  outline: none;
  background: #000;
}

#modal-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  z-index: 1001;
}

#modal-close:hover {
  opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 700px) {
  .strip-inner {
    height: 140px;
  }

  .strip-item {
    height: 140px;
  }


  .thumb { height: 140px; }

  .middle {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
    align-items: start;
  }

  .contact-heading {
    text-align: left;
    font-size: clamp(56px, 16vw, 120px);
  }

  .contact-links {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }
}
