/* ============================================================
   AWARDS PAGE — LUXURY GOLD & BLACK
============================================================ */
:root {
  --aw-gold:       #C9A84C;
  --aw-gold-light: #F0C84A;
  --aw-gold-deep:  #7A6020;
  --aw-black:      #080808;
  --aw-black-2:    #0f0f0f;
  --aw-black-3:    #161616;
  --aw-card:       #111111;
}

/* ============================================================
   LOADER
============================================================ */
#awards-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--aw-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.al-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.al-trophy {
  width: 120px;
  height: auto;
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  animation: alRise 1s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.6));
}

@keyframes alRise {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.al-glow {
  width: 130px;
  height: 18px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.45) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: -8px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: alGlow 1.5s ease 1s infinite alternate;
}

@keyframes alGlow {
  from { opacity: 0.3; transform: scaleX(0.75); }
  to   { opacity: 0.9; transform: scaleX(1.1); }
}

.al-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.42em;
  color: var(--aw-gold);
  opacity: 0;
  animation: fadeUp 0.5s ease 1.0s forwards;
  margin-bottom: 0.3rem;
}

.al-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  opacity: 0;
  animation: fadeUp 0.5s ease 1.2s forwards;
  margin-bottom: 1.8rem;
}

.al-bar {
  width: 130px;
  height: 1px;
  background: rgba(201,168,76,0.14);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.3s ease 1.4s forwards;
}

.al-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--aw-gold-light), var(--aw-gold), transparent);
  animation: alBar 1.4s ease 1.5s forwards;
}

@keyframes alBar { to { width: 100%; } }

/* ============================================================
   HERO
============================================================ */
.aw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--aw-black);
  padding-top: 70px;
}

/* Multi-layer gold radial atmosphere */
.aw-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(201,168,76,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 15% 65%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 85% 20%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201,168,76,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 20% 20% at 90% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

/* Horizontal gold horizon line */
.aw-hero-bg::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%; top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.14) 25%, rgba(201,168,76,0.14) 75%, transparent);
}

/* Vertical faint gold line */
.aw-hero-bg::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.06) 30%, rgba(201,168,76,0.06) 70%, transparent);
}

/* Glitter particles */
.aw-glitter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.aw-glitter span {
  position: absolute;
  border-radius: 50%;
  background: var(--aw-gold);
  opacity: 0;
  animation: glitterFloat var(--dur, 7s) ease-in-out var(--delay, 0s) infinite;
  pointer-events: none;
}

.aw-glitter span:nth-child(1)  { width:3px;height:3px; left:5%;  top:12%; --dur:6s;  --delay:0s;   }
.aw-glitter span:nth-child(2)  { width:2px;height:2px; left:12%; top:55%; --dur:8s;  --delay:1s;   }
.aw-glitter span:nth-child(3)  { width:4px;height:4px; left:22%; top:28%; --dur:7s;  --delay:2s;   }
.aw-glitter span:nth-child(4)  { width:2px;height:2px; left:35%; top:75%; --dur:9s;  --delay:0.5s; }
.aw-glitter span:nth-child(5)  { width:3px;height:3px; left:50%; top:18%; --dur:6s;  --delay:1.5s; }
.aw-glitter span:nth-child(6)  { width:5px;height:5px; left:60%; top:65%; --dur:8s;  --delay:0.8s; }
.aw-glitter span:nth-child(7)  { width:2px;height:2px; left:72%; top:35%; --dur:7s;  --delay:2.2s; }
.aw-glitter span:nth-child(8)  { width:3px;height:3px; left:80%; top:80%; --dur:9s;  --delay:1.2s; }
.aw-glitter span:nth-child(9)  { width:2px;height:2px; left:88%; top:20%; --dur:6s;  --delay:0.3s; }
.aw-glitter span:nth-child(10) { width:4px;height:4px; left:93%; top:55%; --dur:8s;  --delay:1.8s; }
.aw-glitter span:nth-child(11) { width:2px;height:2px; left:40%; top:45%; --dur:7s;  --delay:2.5s; }
.aw-glitter span:nth-child(12) { width:3px;height:3px; left:70%; top:10%; --dur:9s;  --delay:0.6s; }
.aw-glitter span:nth-child(13) { width:2px;height:2px; left:28%; top:88%; --dur:8s;  --delay:3s;   }
.aw-glitter span:nth-child(14) { width:4px;height:4px; left:55%; top:38%; --dur:6s;  --delay:1.4s; }
.aw-glitter span:nth-child(15) { width:2px;height:2px; left:18%; top:15%; --dur:9s;  --delay:0.9s; }
.aw-glitter span:nth-child(16) { width:3px;height:3px; left:45%; top:60%; --dur:7s;  --delay:2.8s; }
.aw-glitter span:nth-child(17) { width:2px;height:2px; left:78%; top:48%; --dur:8s;  --delay:0.4s; }
.aw-glitter span:nth-child(18) { width:5px;height:5px; left:8%;  top:72%; --dur:6s;  --delay:1.7s; }
.aw-glitter span:nth-child(19) { width:2px;height:2px; left:65%; top:92%; --dur:9s;  --delay:2.1s; }
.aw-glitter span:nth-child(20) { width:3px;height:3px; left:95%; top:38%; --dur:7s;  --delay:3.2s; }

@keyframes glitterFloat {
  0%,100% { opacity:0; transform:translateY(0) scale(1); }
  30%     { opacity:0.7; }
  50%     { opacity:0.5; transform:translateY(-22px) scale(1.2); }
  70%     { opacity:0.3; }
}

/* Hero content */
.aw-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.aw-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--aw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.aw-eyebrow::before, .aw-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--aw-gold);
  flex-shrink: 0;
}

.aw-hero-title {
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.12s ease both;
}

.aw-t1 {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 11vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.aw-t2 {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.55);
}

.aw-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.38);
  max-width: 540px;
  margin: 0 auto 3rem;
  animation: fadeUp 0.8s 0.22s ease both;
}

.aw-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  animation: fadeUp 0.8s 0.32s ease both;
}

/* Shared buttons */
.aw-btn-gold {
  display: inline-flex;
  align-items: center;
  background: var(--aw-gold);
  color: var(--aw-black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}
.aw-btn-gold:hover {
  background: var(--aw-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.aw-btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.8rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.aw-btn-ghost:hover { color: var(--aw-gold); border-color: rgba(201,168,76,0.3); }

/* Scroll indicator */
.aw-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.aw-hero-scroll span {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

.aw-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--aw-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.25; }
  50%     { opacity: 1; }
}

/* ============================================================
   STATS STRIP
============================================================ */
.aw-stats {
  background: var(--aw-black-3);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 2.8rem 0;
}

.aw-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-stat {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.aw-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(201,168,76,0.12);
  flex-shrink: 0;
}

.aw-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--aw-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.aw-stat-label {
  display: block;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-top: 0.35rem;
}

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.aw-eyebrow-section {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.aw-eyebrow-section::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-red);
  flex-shrink: 0;
}
.aw-eyebrow-gold { color: var(--aw-gold) !important; }
.aw-eyebrow-gold::before { background: var(--aw-gold) !important; }

.aw-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0.03em;
  color: var(--aw-gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.aw-section-title span { color: var(--aw-gold) !important; }
.aw-section-title--light { color: #ffffff !important; }

.aw-gold { color: var(--aw-gold) !important; }

.aw-section-sub {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #666;
  max-width: 580px;
  margin-bottom: 3.5rem;
}

.aw-section-sub--light {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
  max-width: 580px;
  margin-bottom: 3.5rem;
}

/* ============================================================
   WINNER SPOTLIGHT
============================================================ */
.aw-spotlight {
  background: var(--off-white);
  padding: var(--sp-3xl) 0;
}

.aw-spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}

.aw-spotlight-img {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.aw-spotlight-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 6s ease;
}

.aw-spotlight-card:hover .aw-spotlight-img img { transform: scale(1.04); }

.aw-spotlight-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #ffffff 100%);
}

.aw-spotlight-flag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--aw-gold);
  color: var(--aw-black);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.aw-spotlight-body {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aw-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--aw-gold-deep);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.aw-award-badge svg { fill: var(--aw-gold); }

.aw-spotlight-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-bottom: 0.5rem;
}

.aw-spotlight-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.aw-spotlight-org {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--aw-gold-deep);
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
}

.aw-spotlight-quote {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #666;
  border-left: 2px solid rgba(201,168,76,0.4);
  padding-left: 1.2rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.aw-spotlight-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.aw-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.aw-meta-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
}
.aw-meta-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
}

/* ============================================================
   LOGISTICS LEGENDS
============================================================ */
.aw-legends {
  background: var(--aw-black-3);
  padding: var(--sp-3xl) 0;
  position: relative;
  overflow: hidden;
}

.aw-legends::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.aw-legends-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.aw-legend-card {
  background: var(--aw-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.aw-legend-card.visible { opacity: 1; transform: translateY(0); }
.aw-legend-card:nth-child(1) { transition-delay: 0s; }
.aw-legend-card:nth-child(2) { transition-delay: 0.1s; }
.aw-legend-card:nth-child(3) { transition-delay: 0.2s; }
.aw-legend-card:nth-child(4) { transition-delay: 0.3s; }

.aw-legend-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 45px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.06);
}

.aw-legend-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.aw-legend-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(35%) brightness(0.85);
  transition: all 0.5s ease;
}

.aw-legend-card:hover .aw-legend-img img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.06);
}

.aw-legend-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--aw-card) 0%, transparent 55%);
}

.aw-legend-body { padding: 1.4rem 1.4rem 1.8rem; }

.aw-legend-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--aw-gold);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}

.aw-legend-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.aw-legend-title {
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.7rem;
}

.aw-legend-edition {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}

/* ============================================================
   CHIEF GUESTS
============================================================ */
.aw-guests {
  background: #ffffff;
  padding: var(--sp-3xl) 0;
}

.aw-guests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.aw-guest-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.aw-guest-card.visible { opacity: 1; transform: translateY(0); }
.aw-guest-card:nth-child(1) { transition-delay: 0s; }
.aw-guest-card:nth-child(2) { transition-delay: 0.1s; }
.aw-guest-card:nth-child(3) { transition-delay: 0.2s; }
.aw-guest-card:nth-child(4) { transition-delay: 0.3s; }

.aw-guest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aw-gold), var(--aw-gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.aw-guest-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.09);
  border-color: rgba(201,168,76,0.25);
}
.aw-guest-card:hover::before { transform: scaleX(1); }

.aw-guest-img {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  transition: border-color 0.3s ease;
}
.aw-guest-card:hover .aw-guest-img { border-color: var(--aw-gold); }

.aw-guest-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.aw-guest-tag {
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  background: var(--aw-gold);
  color: var(--aw-black);
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 1px;
  white-space: nowrap;
}

.aw-guest-role {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aw-gold-deep);
  margin-bottom: 0.35rem;
}

.aw-guest-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}

.aw-guest-title {
  font-size: 0.72rem;
  line-height: 1.55;
  color: #777;
}

.aw-guest-edition {
  display: block;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-top: 0.7rem;
}

/* ============================================================
   AWARDEE TESTIMONIALS
============================================================ */
.aw-testimonials {
  background: var(--aw-black-2);
  padding: var(--sp-3xl) 0;
}

.aw-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.aw-quote-card {
  background: var(--aw-card);
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}

.aw-quote-card.visible { opacity: 1; transform: translateY(0); }
.aw-quote-card:nth-child(1) { transition-delay: 0s; }
.aw-quote-card:nth-child(2) { transition-delay: 0.1s; }
.aw-quote-card:nth-child(3) { transition-delay: 0.2s; }
.aw-quote-card:hover { border-color: rgba(201,168,76,0.25); }

.aw-quote-mark {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.65;
  color: var(--aw-gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 1rem;
}

.aw-quote-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
  margin-bottom: 2rem;
  font-style: italic;
}

.aw-quote-divider {
  height: 1px;
  background: rgba(201,168,76,0.1);
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
}
.aw-quote-divider::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--aw-gold), transparent);
  transition: left 0.5s ease;
}
.aw-quote-card:hover .aw-quote-divider::after { left: 0; }

.aw-quote-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.aw-quote-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
}
.aw-quote-avatar img { width: 100%; height: 100%; object-fit: cover; }

.aw-quote-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.aw-quote-award {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aw-gold);
}

/* ============================================================
   YOUTUBE
============================================================ */
.aw-youtube {
  background: var(--aw-black);
  padding: var(--sp-3xl) 0;
  border-top: 1px solid rgba(201,168,76,0.06);
}

.aw-yt-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.aw-embed-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--aw-black-3);
  border-radius: 6px;
}

.aw-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.aw-yt-featured .aw-embed-wrap {
  border: 1px solid rgba(201,168,76,0.12);
}

.aw-yt-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.aw-yt-thumb .aw-embed-wrap {
  border: 1px solid rgba(201,168,76,0.07);
}

.aw-yt-badge {
  display: inline-block;
  background: var(--aw-gold);
  color: var(--aw-black);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 1px;
  margin-bottom: 0.6rem;
}

.aw-yt-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  margin-top: 0.6rem;
  line-height: 1.4;
}

/* ============================================================
   PAST WINNERS
============================================================ */
.aw-winners {
  background: var(--aw-black-3);
  padding: var(--sp-3xl) 0;
}

.aw-winners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.aw-winner-card {
  background: #181818;
  padding: 2.8rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.aw-winner-card.visible { opacity: 1; transform: translateY(0); }
.aw-winner-card:nth-child(1) { transition-delay: 0s; }
.aw-winner-card:nth-child(2) { transition-delay: 0.08s; }
.aw-winner-card:nth-child(3) { transition-delay: 0.16s; }
.aw-winner-card:nth-child(4) { transition-delay: 0.24s; }
.aw-winner-card:hover { background: #161616; }

.aw-winner-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aw-gold), var(--aw-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.aw-winner-card:hover::after { transform: scaleX(1); }

.aw-winner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.aw-winner-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,0.07);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.aw-winner-card:hover .aw-winner-num { color: rgba(201,168,76,0.14); }

.aw-winner-status {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.06);
}

.aw-winner-status--latest {
  background: rgba(201,168,76,0.1);
  color: var(--aw-gold);
  border-color: rgba(201,168,76,0.2);
}

.aw-winner-city {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.aw-winner-year {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--aw-gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.aw-winner-meta span { font-size: 0.74rem; color: rgba(255,255,255,0.55); }

.aw-winner-cta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  transition: color 0.2s ease;
}
.aw-winner-card:hover .aw-winner-cta { color: var(--aw-gold-light); }

.aw-winner-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.aw-winner-meta span { font-size: 0.74rem; color: rgba(255,255,255,0.28); }

.aw-winner-cta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
  transition: color 0.2s ease;
}
.aw-winner-card:hover .aw-winner-cta { color: var(--aw-gold); }

/* ============================================================
   BENEFITS OF NOMINATING
============================================================ */
.aw-benefits {
  background: var(--aw-black);
  padding: var(--sp-3xl) 0;
  border-top: 1px solid rgba(201,168,76,0.06);
}

.aw-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.aw-benefit-card {
  background: var(--aw-card);
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.aw-benefit-card.visible { opacity: 1; transform: translateY(0); }
.aw-benefit-card:nth-child(1) { transition-delay: 0s; }
.aw-benefit-card:nth-child(2) { transition-delay: 0.08s; }
.aw-benefit-card:nth-child(3) { transition-delay: 0.16s; }
.aw-benefit-card:nth-child(4) { transition-delay: 0.24s; }
.aw-benefit-card:nth-child(5) { transition-delay: 0.32s; }
.aw-benefit-card:nth-child(6) { transition-delay: 0.4s; }

.aw-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--aw-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.aw-benefit-card:hover {
  border-color: rgba(201,168,76,0.22);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.aw-benefit-card:hover::before { transform: scaleX(1); }

.aw-benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: all 0.3s ease;
}
.aw-benefit-icon svg { fill: var(--aw-gold); transition: fill 0.3s ease; }
.aw-benefit-card:hover .aw-benefit-icon { background: var(--aw-gold); border-color: var(--aw-gold); }
.aw-benefit-card:hover .aw-benefit-icon svg { fill: var(--aw-black); }

.aw-benefit-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.aw-benefit-desc {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.38);
}

/* ============================================================
   NOMINATE CTA
============================================================ */
.aw-nominate {
  background: var(--aw-black-3);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.06);
}

.aw-nominate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(201,168,76,0.09) 0%, transparent 60%);
}

.aw-nominate-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.aw-nominate-circles span {
  position: absolute;
  left: 50%; top: 50%;
  border: 1px solid rgba(201,168,76,0.04);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.aw-nominate-circles span:nth-child(1) { width:350px; height:350px; }
.aw-nominate-circles span:nth-child(2) { width:600px; height:600px; }
.aw-nominate-circles span:nth-child(3) { width:850px; height:850px; }

.aw-nominate-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.aw-nominate-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 0.92;
  margin-bottom: 1.5rem;
}
.aw-nominate-title span { color: var(--aw-gold); }

.aw-nominate-sub {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.38);
  margin-bottom: 3rem;
}

.aw-nominate-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.aw-deadline-strip {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 4px;
  padding: 1.2rem 2.5rem;
}

.aw-deadline-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aw-gold);
  margin-bottom: 0.25rem;
}

.aw-deadline-date {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.aw-deadline-sep {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.14);
  flex-shrink: 0;
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 900px) {
  .aw-legends-grid,
  .aw-guests-grid,
  .aw-winners-grid { grid-template-columns: 1fr 1fr; }
  .aw-testimonials-grid,
  .aw-benefits-grid { grid-template-columns: 1fr 1fr; }
  .aw-yt-grid { grid-template-columns: 1fr; }
  .aw-spotlight-card { grid-template-columns: 1fr; }
  .aw-spotlight-img { min-height: 300px; }
}

@media (max-width: 560px) {
  .aw-guests-grid,
  .aw-winners-grid { grid-template-columns: 1fr; }
  .aw-testimonials-grid,
  .aw-benefits-grid { grid-template-columns: 1fr; }
  .aw-hero-actions,
  .aw-nominate-actions { flex-direction: column; align-items: center; }
  .aw-stats-inner { flex-wrap: wrap; }
  .aw-stat { flex: 0 0 50%; padding: 1rem; }
  .aw-stat-sep { display: none; }
  .aw-t1 { font-size: clamp(3rem, 16vw, 5rem); }
  .aw-deadline-strip { flex-direction: column; gap: 1rem; }
  .aw-deadline-sep { width: 60px; height: 1px; }
}

/* ============================================================
   GOLDEN CURSOR — awards page only
============================================================ */
body:has(#awards-loader) {
  cursor: none;
}

#awards-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--aw-gold);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 0 10px rgba(201,168,76,0.8), 0 0 20px rgba(201,168,76,0.4);
  mix-blend-mode: normal;
}

#awards-cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.aw-cursor-trail {
  position: fixed;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aw-gold);
  pointer-events: none;
  z-index: 99990;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: trailFade 0.6s ease forwards;
}

@keyframes trailFade {
  0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(0); }
}