/* ===========================
   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 — kept for backward compat */
.spotlight-banner-wrap { display: none; }


/* ===========================
   AWARD INFOGRAPHIC SHOWCASE
   =========================== */
.award-showcase-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 90px 0 80px;
  overflow: hidden;
}

.award-showcase-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,200,0,.45), transparent);
  pointer-events: none;
}

.award-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Header block */
.award-showcase-header {
  text-align: center;
  max-width: 760px;
}

.award-showcase-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
}

.award-showcase-header p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

/* Infographic frame */
.award-infographic-frame {
  width: 100%;
  max-width: 1060px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,200,0,.18);
  box-shadow:
    0 0 0 1px rgba(255,200,0,.06),
    0 24px 80px rgba(0,0,0,.65),
    0 0 60px rgba(255,200,0,.04);
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease;
}

.award-infographic-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,200,0,.14),
    0 30px 100px rgba(0,0,0,.7),
    0 0 80px rgba(255,200,0,.07);
}

.award-infographic-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Footer block */
.award-showcase-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.award-showcase-footer .proof-disclaimer {
  font-size: 13px;
  color: var(--muted);
  border-left: 2px solid var(--primary);
  padding-left: 14px;
  text-align: left;
  max-width: 540px;
  margin: 0;
}

.award-showcase-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* Responsive */
@media (max-width: 992px) {
  .laurel-grid { grid-template-columns: repeat(2, 1fr); }
  .award-showcase-wrap { padding: 60px 0; }
  .award-infographic-frame { border-radius: 12px; }
}

@media (max-width: 600px) {
  .laurel-grid { grid-template-columns: 1fr; }
  .award-showcase-ctas { flex-direction: column; align-items: center; }
  .award-showcase-ctas .btn { width: 100%; text-align: center; }
  .award-showcase-footer .proof-disclaimer { border-left: none; border-top: 2px solid var(--primary); padding-left: 0; padding-top: 10px; }
}