/* DOP PAGE */
.dop-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}

.dop-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dop-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.1) brightness(0.5);
}

.dop-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.75) 50%, rgba(13,17,23,0.6) 100%),
    linear-gradient(180deg, rgba(13,17,23,0.5), rgba(13,17,23,0.9));
}

.dop-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.dop-hero-left h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.92;
  font-weight: 400;
  margin: 20px 0 28px;
  letter-spacing: -2px;
}

.dop-hero-left h1 em {
  color: var(--accent);
  font-style: italic;
}

.dop-hero-left p {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
}

.dop-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dop-stat-card {
  background: rgba(28, 33, 40, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.dop-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.dop-stat-row:last-child { border-bottom: none; }

.dop-stat-row span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dop-stat-row strong {
  font-family: 'Abril Fatface', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
}

.dop-stat-row.accent strong { color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }

.live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
  display: inline-block;
}

[data-motion="off"] .live { animation: none; }

/* REEL */
.dop-reel {
  padding: 120px 0;
  background: var(--bg-primary);
}

.reel-head {
  text-align: center;
  margin-bottom: 60px;
}

.reel-head .section-label { justify-content: center; }
.reel-head .section-label::before { display: none; }
.reel-head em { color: var(--accent); font-style: italic; }

.reel-player {
  position: relative;
  aspect-ratio: 21/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.reel-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.9);
  transition: transform 1.5s var(--ease-out), filter 0.6s;
}

.reel-player:hover img { transform: scale(1.03); filter: contrast(1.15); }

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0.3) 0%, transparent 50%, rgba(13,17,23,0.6) 100%);
  pointer-events: none;
}

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  box-shadow: 0 0 40px rgba(86,196,184,0.3);
}

.reel-play::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

.reel-play svg {
  width: 40px;
  height: 40px;
  margin-left: 5px;
}

.reel-player:hover .reel-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 60px rgba(86,196,184,0.5);
}

.reel-meta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* KIT */
.section-kit {
  position: relative;
  background-color: var(--bg-surface);
  background-image: url('media/dop/kit.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 0;
}
.section-kit > .container { position: relative; z-index: 1; }
.section-kit .bg-overlay { background: linear-gradient(rgba(10,12,16,0.84), rgba(10,12,16,0.90)); }

.kit-head {
  text-align: center;
  margin-bottom: 64px;
}

.kit-head .section-label { justify-content: center; }
.kit-head .section-label::before { display: none; }
.kit-head .section-desc { margin: 0 auto; }

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kit-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.kit-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.kit-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.kit-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.kit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kit-card li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.kit-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* CREDITS */
.section-credits {
  background: var(--bg-primary);
  padding: 140px 0;
}

.credits-head {
  margin-bottom: 60px;
  max-width: 600px;
}

.credits-head em { color: var(--accent); font-style: italic; }

.credits-table {
  border-top: 1px solid var(--border-soft);
}

.credit-row {
  display: grid;
  grid-template-columns: 80px 2fr 1.2fr 1.4fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: center;
  transition: background 0.3s, padding 0.4s var(--ease-out);
  font-size: 14px;
}

.credit-row:not(.credit-head):hover {
  background: var(--bg-surface);
  padding-left: 16px;
}

.credit-row.credit-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
}

.credit-row span:nth-child(1) {
  font-family: 'Abril Fatface', serif;
  font-size: 20px;
  color: var(--accent);
}

.credit-row.credit-head span:nth-child(1) {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
}

.credit-row span:nth-child(2) {
  font-weight: 600;
  color: var(--text-primary);
}

.credit-row:not(.credit-head) span:nth-child(3),
.credit-row:not(.credit-head) span:nth-child(4),
.credit-row:not(.credit-head) span:nth-child(5) {
  color: var(--text-secondary);
}

/* AWARDS */
.section-awards {
  background-color: var(--bg-surface);
  background-image:
    linear-gradient(rgba(10,12,16,0.66), rgba(10,12,16,0.76)),
    url('media/dop/awards.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 0;
}

.awards-head {
  text-align: center;
  margin-bottom: 60px;
}

.awards-head .section-label { justify-content: center; }
.awards-head .section-label::before { display: none; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.award {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}

.award:hover {
  border-color: var(--border-accent);
  background: var(--bg-primary);
}

.award-year {
  font-family: 'Abril Fatface', serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.award-name {
  font-family: 'Abril Fatface', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.award-detail {
  font-size: 13px;
  color: var(--text-secondary);
}

/* CTA */
.section-cta-slim {
  text-align: center;
  padding: 140px 0;
  background: var(--gradient-hero);
}

.cta-slim-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .dop-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .kit-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .credit-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .credit-row.credit-head { display: none; }
  .credit-row span:nth-child(n+3)::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .reel-play { width: 80px; height: 80px; }
  .reel-play svg { width: 28px; height: 28px; }
}

@media (max-width: 600px) {
  .kit-grid { grid-template-columns: 1fr; }
}


/* ABOUT (DOP) */
.section-about-dop {
  position: relative;
  background-color: var(--bg-secondary, #12161d);
  background-image: url('media/dop/about-bts.jpg');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-about-dop > .container { position: relative; z-index: 1; }
.section-about-dop .bg-overlay { background: linear-gradient(rgba(10,12,16,0.80), rgba(10,12,16,0.90)); }
.about-dop-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.about-dop-left {
  position: sticky;
  top: 120px;
}
.about-dop-right p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.about-dop-right .about-dop-lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .about-dop-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-dop-left { position: static; }
}
