/* ─── AWARDS VARIABLES ─── */
:root {
  --gold: #b8860b;
  --gold-light: #fdf8ee;
  --gold-mid: #f5e6b0;
  --silver: #5a6472;
  --silver-light: #f4f5f7;
  --silver-mid: #dde1e7;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, #1e4a22 0%, #2d6635 40%, #398141 100%);
  color: #fff;
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #c8e6c8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #fff;
}
.page-hero h1 em {
  font-style: normal;
  color: #9ed9a0;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── TIMELINE SECTION ─── */
.timeline-section {
  padding: 64px 24px 100px;
  background: var(--white);
}
.timeline-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-mid), var(--border));
  transform: translateX(-50%);
}

/* ─── YEAR MARKER ─── */
.year-marker {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.year-marker-pill {
  background: var(--green);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(57, 129, 65, 0.25);
  letter-spacing: 0.5px;
}

/* ─── TIMELINE ITEM ─── */
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  margin-bottom: 36px;
  position: relative;
  align-items: start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item.left .card-slot {
  grid-column: 1;
  grid-row: 1;
  padding-right: 28px;
}
.timeline-item.left .dot-slot {
  grid-column: 2;
  grid-row: 1;
}
.timeline-item.left .empty {
  grid-column: 3;
  grid-row: 1;
}
.timeline-item.right .empty {
  grid-column: 1;
  grid-row: 1;
}
.timeline-item.right .dot-slot {
  grid-column: 2;
  grid-row: 1;
}
.timeline-item.right .card-slot {
  grid-column: 3;
  grid-row: 1;
  padding-left: 28px;
}

.dot-slot {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 28px;
}
.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-mid);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.dot.winner {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-mid);
}
.dot.finalist {
  background: var(--silver);
  box-shadow: 0 0 0 2px var(--silver-mid);
}

/* ─── AWARD CARD ─── */
.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
}
.award-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.award-card.winner-card {
  border-color: #e8d68a;
  background: linear-gradient(135deg, #fffef7 0%, var(--gold-light) 100%);
}
.award-card.finalist-card {
  border-color: var(--silver-mid);
  background: linear-gradient(135deg, #ffffff 0%, var(--silver-light) 100%);
}
.timeline-item.left .award-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 35px;
  width: 28px;
  height: 1px;
  background: var(--border);
}
.timeline-item.right .award-card::after {
  content: "";
  position: absolute;
  left: -28px;
  top: 35px;
  width: 28px;
  height: 1px;
  background: var(--border);
}

.card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.card-badge-wrap {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.card-badge-wrap img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.card-badge-wrap img.badge-rect {
  max-height: 64px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.badge-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-placeholder.winner-ph { background: var(--gold-mid); }
.badge-placeholder.finalist-ph { background: var(--silver-mid); }
.badge-placeholder svg { opacity: 0.6; }

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.card-tag.winner { background: var(--gold-mid); color: #7a5800; }
.card-tag.finalist { background: var(--silver-mid); color: #3a4452; }
.card-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.card-tag.winner::before { background: var(--gold); }
.card-tag.finalist::before { background: var(--silver); }

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 6px;
}
.card-body {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: linear-gradient(135deg, #1e4a22 0%, #398141 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.cta-strip h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 14px;
  color: #fff;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--green);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
  .stats-inner { gap: 0; }
  .stat-item { min-width: 100px; padding: 10px 14px; }
  .stat-num { font-size: 26px; }

  .timeline-wrap::before { left: 20px; }
  .year-marker { justify-content: flex-start; }
  .year-marker-pill { font-size: 14px; padding: 7px 20px; }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    margin-bottom: 28px;
  }
  .timeline-item.left .dot-slot,
  .timeline-item.right .dot-slot {
    grid-column: 1;
    grid-row: 1;
    padding-top: 24px;
    justify-content: center;
  }
  .timeline-item.left .card-slot,
  .timeline-item.right .card-slot {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0 0 12px;
  }
  .timeline-item.left .empty,
  .timeline-item.right .empty { display: none; }
  .timeline-item.left .award-card::after,
  .timeline-item.right .award-card::after { display: none; }
}
@media (max-width: 480px) {
  .page-hero { padding: 52px 20px 48px; }
  .timeline-section { padding: 44px 16px 72px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child { border-bottom: none; }
  .stats-inner { flex-direction: column; }
}
