/* ============================================================
   SAY THE WORD — Home Page
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 64px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

/* Pink gradient overlay — bottom heavy */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(155, 73, 119, 0.88) 0%,
      rgba(155, 73, 119, 0.45) 30%,
      rgba(0, 0, 0, 0.25) 65%,
      rgba(0, 0, 0, 0.1) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title .dim {
  color: rgba(255,255,255,0.2);
}

.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Sound toggle */
.hero__sound {
  position: absolute;
  bottom: 32px;
  left: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 8px 16px 8px 12px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.hero__sound:hover {
  background: rgba(155,73,119,0.5);
  border-color: rgba(255,255,255,0.4);
}
.hero__sound svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero__sound .sound-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__sound.unmuted .icon-muted  { display: none; }
.hero__sound.unmuted .icon-unmuted { display: block !important; }

/* ── ACTS SECTION ──────────────────────────────────────────── */
.acts {
  background: var(--bg);
}

.acts__header {
  padding: 80px 40px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.acts__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 12px;
}

.acts__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Grid of 3 act cards */
.acts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Individual act card */
.act-card {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.act-card:last-child { border-right: none; }

/* Video background */
.act-card__video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.act-card__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Pink overlay — stronger at bottom */
.act-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(155,73,119,0.95) 0%,
    rgba(155,73,119,0.5) 35%,
    rgba(0,0,0,0.2) 70%,
    transparent 100%
  );
  transition: background 0.4s var(--ease), opacity 0.6s var(--ease);
}

/* Play button top-right */
.act-card__play {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155,73,119,0.4);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.act-card:hover .act-card__play {
  background: rgba(155,73,119,0.8);
  border-color: rgba(255,255,255,0.6);
}
.act-card__play svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }

/* Content at bottom of card */
.act-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.act-card__format {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

.act-card__name {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.act-card__tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 240px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.act-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 3px;
  transition: border-color 0.2s, gap 0.2s;
}
.act-card:hover .act-card__cta {
  border-color: rgba(255,255,255,0.8);
  gap: 10px;
}
.act-card__cta svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── GALLERY STRIP ─────────────────────────────────────────── */
.gallery {
  background: var(--pink);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.gallery__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.gallery__track:hover { animation-play-state: paused; }

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

.gallery__item {
  width: 180px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

/* ── WHY SECTION ───────────────────────────────────────────── */
.why {
  background: var(--pink);
  padding: 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.why__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why__item {
  padding: 0 48px 0 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.why__item:not(:first-child) { padding-left: 48px; }
.why__item:last-child { border-right: none; }

.why__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why__icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.5; }

.why__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why__text {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: 140px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 16px;
}

.cta-section__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .acts__grid { grid-template-columns: 1fr; }
  .act-card { height: 60vh; min-height: 400px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .why__item { padding: 0 0 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .why__item:not(:first-child) { padding-left: 0; }
  .why__item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 768px) {
  .hero { padding: 0 20px 48px; }
  .hero__scroll { right: 20px; }
  .acts__header { padding: 56px 20px 32px; }
  .act-card__content { padding: 20px; }
  .why { padding: 56px 20px; }
  .cta-section { padding: 72px 20px; }
  .gallery__item { width: 140px; height: 86px; }
}
