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

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #111;
}

/* ── Header ── */
header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 48px 28px;
}

.identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #111;
}

.site-role {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #aaa;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 6px;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #aaa;
  padding: 0;
  transition: color 0.2s;
}

.nav-btn:hover { color: #555; }
.nav-btn.active { color: #111; font-weight: 700; }

/* ── Tabs ── */
.tab { display: none; }
.tab.active { display: block; }

/* ── Video stack ── */
.video-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 48px 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.video-block { width: 100%; }

.video-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: #111;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── GIF thumbnail (click to load video) ── */
.gif-thumb {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.gif-thumb img,
.gif-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gif-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
}

.gif-thumb:hover .gif-play { opacity: 1; }

.gif-play svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }

/* YouTube thumbnail fallback (for videos with embedding disabled) */
.yt-thumb {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-thumb .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.yt-thumb:hover .yt-play { background: rgba(255,0,0,0.85); }

.yt-play svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }

/* ── Photo grid ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px;
  padding: 0 48px 48px;
}

.photo-card {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f0f0;
  cursor: pointer;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.photo-card:hover img { transform: scale(1.03); }

/* ── Global centering ── */
.video-stack,
.carousel-section,
.poster-grid,
.contact-wrap,
.load-more-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Carousels ── */
.carousel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 48px 48px;
}

.carousel {
  position: relative;
  width: 100%;
}

.car-track-wrap {
  overflow: hidden;
  width: 100%;
}

.car-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.car-slide {
  flex: 0 0 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: #fff;
}

.car-slide img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.25);
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  padding: 6px 14px;
  opacity: 0;
  transition: opacity 0.2s;
  line-height: 1;
}

.carousel:hover .car-btn { opacity: 1; }
.car-prev { left: 0; }
.car-next { right: 0; }

/* ── Movie poster grid ── */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 8px 48px 48px;
  max-width: 1200px;
}

.poster-card img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.hidden { display: none; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 16px; right: 24px; font-size: 40px; }
.lb-prev  { left: 16px; font-size: 56px; }
.lb-next  { right: 16px; font-size: 56px; }

/* ── Load More grid ── */
.video-grid-more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 48px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid-item { width: 100%; }

/* ── Load More ── */
.hidden { display: none; }

.load-more-wrap {
  text-align: center;
  padding: 32px 0 48px;
}

.load-more-btn {
  background: none;
  border: 1px solid #bbb;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 12px 28px;
  cursor: pointer;
  color: #555;
  transition: all 0.2s;
}

.load-more-btn:hover {
  border-color: #111;
  color: #111;
}

/* ── Contact ── */
.contact-wrap {
  padding: 60px 48px;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.contact-photo {
  width: 384px;
  display: block;
}

.contact-text {
  width: 100%;
}

.contact-bio {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

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

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label,
.form-group .field-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #111;
}

.form-group label em,
.form-group .field-label em {
  font-style: normal;
  color: #999;
  font-size: 11px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group input,
.form-group textarea,
.form-field input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-field input:focus {
  border-color: #111;
}

.form-group textarea { resize: vertical; }

.submit-btn {
  align-self: flex-start;
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover { background: #333; }

/* ── Mobile ── */
@media (max-width: 640px) {
  header { padding: 24px 20px 20px; flex-direction: column; gap: 20px; }
  nav { gap: 16px; flex-wrap: wrap; }
  .video-stack, .photo-grid, .contact-wrap { padding-left: 20px; padding-right: 20px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
