/* ===========================
   PROOF & AWARDS SECTION
   =========================== */

.proof-section {
  background: #050505;
  overflow: hidden;
  padding-bottom: 0 !important;
  /* Spotlight banner at the bottom is full-bleed */
}

.proof-header {
  max-width: 900px;
  margin: 0 auto 60px;
  /* Centered */
  text-align: center;
  /* Centered text */
}

.proof-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.proof-header p {
  font-size: 17px;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}

.proof-header strong {
  color: var(--primary);
}

/* Laurel Grid Styling - 3 columns */
.laurel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Strict 3 columns on desktop */
  gap: 30px;
  margin-bottom: 80px;
}

.laurel-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.laurel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 0, 0.25);
  background: rgba(255, 200, 0, 0.03);
}

.laurel-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

.laurel-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.laurel-festival {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Spotlight Banner Wrap - Taller layout */
.spotlight-banner-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 660px;
  /* Increased vertical space */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spotlight-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.spotlight-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.65);
}

/* Gradient: Left is 50% transparent, Right is 0% clear */
.spotlight-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg,
      rgba(5, 5, 5, 0.5) 0%,
      rgba(5, 5, 5, 0.25) 50%,
      rgba(5, 5, 5, 0) 100%);
}

.spotlight-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 140px 0;
  /* Increased vertical space */
}

.spotlight-left {
  max-width: 650px;
  text-align: left;
}

.spotlight-left h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 24px;
}

.spotlight-left p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.proof-disclaimer {
  font-size: 13px !important;
  color: var(--muted) !important;
  border-left: 2px solid var(--primary);
  padding-left: 14px;
  margin-bottom: 30px !important;
}

/* Trophy & Badge Container - Dual overlapping trophies */
.spotlight-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trophy-badge-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.spotlight-trophy-img {
  width: 240px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.spotlight-trophy-img:hover {
  transform: translateY(-8px) scale(1.05);
}

.spotlight-badge-label {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 1px;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .laurel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 0;
  }

  .spotlight-gradient-overlay {
    background: linear-gradient(to bottom,
        rgba(5, 5, 5, 0.98) 0%,
        rgba(5, 5, 5, 0.9) 60%,
        rgba(5, 5, 5, 0.7) 85%,
        rgba(5, 5, 5, 0.4) 100%);
  }

  .spotlight-left {
    text-align: center;
    margin: 0 auto;
  }

  .proof-disclaimer {
    border-left: none;
    border-top: 2px solid var(--primary);
    padding-left: 0;
    padding-top: 10px;
  }

  .spotlight-right {
    margin-top: 20px;
  }
}

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