/* ═══════════════════════════════════════════════
   JSW-OESA · Dark Gold & Black Cinematic Design
   ═══════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8B7030;
  --gold-glow: rgba(201,168,76,0.18);
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --dark-4: #252525;
  --white: #F5F0E8;
  --white-dim: rgba(245,240,232,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow: hidden;
  cursor: none;
}

/* CURSOR CANVAS */
#cursorCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 9999;
}

.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold-light); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--gold);
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.expanded { width: 52px; height: 52px; border-color: var(--gold); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
}

.nav-logo { display: flex; align-items: center; gap: 8px; font-family: 'Cormorant Garamond', serif; letter-spacing: 0.1em; }
.nav-logo-initials { font-size: 1.3rem; font-weight: 600; color: var(--gold); }
.nav-logo-dash { color: var(--gold-dim); }
.nav-logo-text { font-size: 1rem; color: var(--white-dim); font-weight: 300; }

.nav-links { display: flex; gap: 36px; }

.nav-link {
  color: var(--white-dim); text-decoration: none; font-size: 0.75rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-menu-btn span { display: block; width: 24px; height: 1px; background: var(--gold); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 100vw); height: 100vh;
  background: var(--dark-2); border-left: 1px solid rgba(201,168,76,0.2);
  z-index: 200; display: flex; flex-direction: column; padding: 60px 40px;
  transition: right 0.5s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { right: 0; }

.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--gold); font-size: 1.2rem; cursor: pointer;
}

.mobile-menu-links { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }

.mobile-link {
  color: var(--white); text-decoration: none;
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300;
  transition: color 0.3s, transform 0.3s; display: block;
}
.mobile-link:hover { color: var(--gold); transform: translateX(8px); }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed; right: 32px; top: 50%; transform: translateY(-50%);
  z-index: 100; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-track { width: 1px; height: 120px; background: rgba(201,168,76,0.2); position: relative; }
.scroll-fill { position: absolute; top: 0; left: 0; width: 1px; height: 0%; background: var(--gold); transition: height 0.4s; }
.scroll-label { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold-dim); writing-mode: vertical-rl; }

/* HORIZONTAL SCROLL */
.h-scroll-wrapper { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; }
.h-scroll-inner {
  display: flex; height: 100vh; width: calc(6 * 100vw);
  transition: transform 0.9s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}

/* PANELS */
.panel {
  position: relative; width: 100vw; height: 100vh;
  flex-shrink: 0; overflow: hidden; display: flex; align-items: center;
}

.panel-number {
  position: absolute; bottom: 32px; left: 48px;
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300;
  color: rgba(201,168,76,0.06); line-height: 1; pointer-events: none; user-select: none;
}

/* SECTION HEADER */
.section-header { margin-bottom: 48px; }

.section-tag {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  position: relative; padding-left: 28px;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 20px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; line-height: 1.1; color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ════════ HERO ════════ */
.panel-hero {
  justify-content: space-between; padding: 0 5vw;
  background: var(--black);
  isolation: isolate;
}

/* Full-bleed royal portrait background */
.panel-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/k4.jpg');
  background-size: cover;
  background-position: 68% center;
  background-repeat: no-repeat;
  /* grade the warm photograph into the gold-and-black palette */
  filter: grayscale(0.5) sepia(0.42) saturate(1.15) contrast(1.06) brightness(0.62);
  transform: scale(1.04);
  animation: heroPhotoIn 1.6s ease-out both, heroPhotoDrift 34s ease-in-out infinite alternate 1.6s;
  pointer-events: none;
}

@keyframes heroPhotoIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroPhotoDrift {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.1) translateX(-14px); }
}

/* Scrims — keep the type legible, let the portrait breathe on the right */
.panel-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(10,10,10,0.97) 0%,
      rgba(10,10,10,0.92) 26%,
      rgba(10,10,10,0.62) 48%,
      rgba(10,10,10,0.30) 66%,
      rgba(10,10,10,0.55) 100%),
    linear-gradient(180deg,
      rgba(10,10,10,0.85) 0%,
      rgba(10,10,10,0.10) 22%,
      rgba(10,10,10,0.10) 62%,
      rgba(10,10,10,0.88) 100%),
    radial-gradient(circle at 68% 45%, rgba(201,168,76,0.10), transparent 55%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift { 100% { background-position: 60px 60px; } }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  bottom: -80px; right: 30%;
  animation: orbFloat 11s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.eyebrow-line { display: block; width: 40px; height: 1px; background: var(--gold-dim); }
.eyebrow-text { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 300; line-height: 1.2; margin-bottom: 32px; overflow: hidden;
}
.hero-title-line {
  display: block; transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.2s; }
.hero-title-line:nth-child(2) { animation-delay: 0.35s; }
.hero-title-line:nth-child(3) { animation-delay: 0.5s; }
.hero-title-italic { font-style: italic; color: var(--gold-light); }
.hero-title-name { white-space: nowrap; font-size: clamp(1.4rem, 6.2vw, 5.5rem); }
.hero-title-award { font-size: 0.55em; }
@keyframes slideUp { to { transform: translateY(0); } }

.hero-sub { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; }

.hero-award-badge { position: relative; flex-shrink: 0; width: 52px; height: 52px; }
.badge-ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--gold-dim);
  animation: badgeSpin 8s linear infinite; border-top-color: var(--gold); border-right-color: rgba(201,168,76,0.2);
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.badge-inner {
  position: absolute; inset: 6px; border-radius: 50%;
  background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center;
}
.badge-icon { color: var(--gold); font-size: 1.2rem; }

.hero-desc { font-size: 0.95rem; line-height: 1.75; color: var(--white-dim); }

.hero-stats {
  display: flex; align-items: center; gap: 32px; margin-bottom: 44px;
  animation: fadeInUp 1s 0.8s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); }
.stat-divider { width: 1px; height: 36px; background: rgba(201,168,76,0.2); }

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.4); padding: 14px 28px;
  position: relative; overflow: hidden; transition: color 0.4s;
  animation: fadeInUp 1s 1s both;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.hero-cta:hover::before { transform: translateX(0); }
.hero-cta:hover { color: var(--black); }
.hero-cta span, .cta-arrow { position: relative; z-index: 1; }

/* HERO VISUAL */
/* The portrait now carries the right side of the hero.
   Delete this rule to bring the rotating dragon medallion back. */
.panel-hero .hero-visual { display: none; }

.hero-visual {
  position: relative; z-index: 2; width: 420px; height: 420px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.82;
  animation: fadeInUp 1.2s 0.4s both;
}
.hero-circle-outer {
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center;
  animation: rotateSlow 25s linear infinite;
}
.hero-circle-mid {
  width: 250px; height: 250px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.18); display: flex; align-items: center; justify-content: center;
  animation: rotateSlow 18s linear infinite reverse;
}
.hero-circle-inner {
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-dragon-symbol {
  font-size: 3rem;
  animation: dragonPulse 3s ease-in-out infinite;
}
@keyframes dragonPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(201,168,76,0.3)); }
  50% { filter: drop-shadow(0 0 24px rgba(201,168,76,0.7)); }
}

.hero-orbit {
  position: absolute; border-radius: 50%; border: 1px dashed rgba(201,168,76,0.15);
  display: flex; align-items: flex-start; justify-content: center;
}
.hero-orbit-1 { width: 380px; height: 380px; animation: rotateSlow 12s linear infinite; }
.hero-orbit-2 { width: 420px; height: 420px; animation: rotateSlow 20s linear infinite reverse; }
.hero-orbit-3 { width: 460px; height: 460px; animation: rotateSlow 30s linear infinite; }
.orbit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: -3px; box-shadow: 0 0 10px var(--gold); }

/* ════════ ABOUT ════════ */
.panel-about { background: var(--dark); padding: 120px 8vw 0; }
.about-bg-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(201,168,76,0.015) 40px, rgba(201,168,76,0.015) 41px);
}
.about-content { position: relative; z-index: 2; width: 100%; }
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text-block { margin-top: 40px; }
.gold-line { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 24px; }
.about-lead {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400;
  line-height: 1.6; color: var(--white); margin-bottom: 20px; font-style: italic;
}
.about-body-text { font-size: 0.9rem; line-height: 1.85; color: var(--white-dim); }
.about-features { display: flex; flex-direction: column; gap: 24px; transform: translateY(-160px); }
.feature-card {
  background: var(--dark-3); border: 1px solid rgba(201,168,76,0.12);
  padding: 28px; position: relative; overflow: hidden; transition: border-color 0.4s, transform 0.4s;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0;
  background: var(--gold); transition: height 0.4s;
}
.feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateX(4px); }
.feature-card:hover::before { height: 100%; }
.feature-icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 12px; }
.feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.feature-desc { font-size: 0.82rem; line-height: 1.7; color: var(--white-dim); }

/* ════════ AWARD ════════ */
.panel-award { background: var(--dark-2); padding: 70px 8vw 0; align-items: flex-start; }
.award-bg-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.award-content { position: relative; z-index: 2; width: 100%; }
.award-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.award-medallion-wrap { display: flex; flex-direction: column; align-items: center; gap: 32px; margin-top: 20px; }
.award-medallion { position: relative; width: 260px; height: 260px; display: flex; align-items: center; justify-content: center; }

.medallion-ring { position: absolute; border-radius: 50%; border: 1px solid transparent; }
.r1 { inset: 0; border-color: rgba(201,168,76,0.5); animation: rotateSlow 10s linear infinite; border-top-color: var(--gold); border-right-color: rgba(201,168,76,0.2); }
.r2 { inset: 20px; border-color: rgba(201,168,76,0.3); animation: rotateSlow 15s linear infinite reverse; border-left-color: var(--gold-light); }
.r3 { inset: 40px; border-color: rgba(201,168,76,0.2); animation: rotateSlow 20s linear infinite; }

.medallion-core {
  position: relative; z-index: 5; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  width: 120px; height: 120px; border-radius: 50%; justify-content: center;
  border: 1px solid rgba(201,168,76,0.3);
}
.medallion-symbol { font-size: 1.8rem; color: var(--gold); animation: dragonPulse 2s ease-in-out infinite; }
.medallion-text { font-family: 'Cormorant Garamond', serif; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold-dim); text-align: center; text-transform: uppercase; }

.medallion-sparks { position: absolute; inset: 0; pointer-events: none; }
.spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.s1 { top: 0; left: 50%; animation: sparkPulse 4s linear infinite 0s; }
.s2 { top: 50%; right: 0; animation: sparkPulse 4s linear infinite 0.5s; }
.s3 { bottom: 0; left: 50%; animation: sparkPulse 4s linear infinite 1s; }
.s4 { top: 50%; left: 0; animation: sparkPulse 4s linear infinite 1.5s; }
.s5 { top: 15%; right: 15%; animation: sparkPulse 6s linear infinite 0.3s; }
.s6 { bottom: 15%; right: 15%; animation: sparkPulse 6s linear infinite 1.3s; }
.s7 { bottom: 15%; left: 15%; animation: sparkPulse 6s linear infinite 2.3s; }
.s8 { top: 15%; left: 15%; animation: sparkPulse 6s linear infinite 3.3s; }
@keyframes sparkPulse {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.5); }
}

.award-prize-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 32px; border: 1px solid rgba(201,168,76,0.3); background: var(--dark-3);
}
.prize-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 400; }
.prize-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); }

.award-criteria { display: flex; flex-direction: column; gap: 20px; margin-top: -120px; }
.criteria-item {
  display: flex; gap: 24px; align-items: flex-start; padding: 20px 24px;
  border: 1px solid rgba(201,168,76,0.1); background: var(--dark-3);
  transition: all 0.4s; position: relative; overflow: hidden;
}
.criteria-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.5s;
}
.criteria-item:hover { border-color: rgba(201,168,76,0.25); }
.criteria-item:hover::after { width: 100%; }
.criteria-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; color: rgba(201,168,76,0.35); line-height: 1; flex-shrink: 0; width: 30px; }
.criteria-content h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.criteria-content p { font-size: 0.8rem; line-height: 1.7; color: var(--white-dim); }

/* ════════ LAUREATES ════════ */
.panel-laureates { background: var(--black); padding: 120px 8vw 0; flex-direction: column; justify-content: center; }
.laureates-content { width: 100%; position: relative; z-index: 2; }
.laureates-ticker-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 24px; }

.laureates-track-wrap { position: relative; overflow: visible; }
.laureates-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 16px; scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch;
}
.laureates-track::-webkit-scrollbar { display: none; }
.laureates-track.dragging { cursor: grabbing; }

.laureate-card {
  flex-shrink: 0; width: 280px; background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1); padding: 32px 28px;
  position: relative; scroll-snap-align: start;
  transition: border-color 0.4s, transform 0.4s; overflow: hidden;
}
.lc-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.laureate-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.laureate-card:hover .lc-glow { opacity: 1; }
.lc-year { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 16px; }
.lc-icon { font-size: 2rem; margin-bottom: 16px; }
.lc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.lc-role { font-size: 0.72rem; color: var(--gold-dim); margin-bottom: 14px; line-height: 1.5; }
.lc-desc { font-size: 0.8rem; line-height: 1.75; color: var(--white-dim); }
.lc-medal { position: absolute; top: 20px; right: 20px; color: rgba(201,168,76,0.2); font-size: 1.2rem; transition: color 0.4s, text-shadow 0.4s; }
.laureate-card:hover .lc-medal { color: var(--gold); text-shadow: 0 0 12px var(--gold); }

.track-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--dark-4); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; z-index: 10; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.track-btn:hover { background: var(--gold); color: var(--black); }
.track-prev { left: -22px; }
.track-next { right: -22px; }

.laureates-dots { display: flex; gap: 8px; margin-top: 20px; justify-content: center; }
.ldot { width: 6px; height: 6px; border-radius: 50%; background: rgba(201,168,76,0.2); transition: all 0.3s; cursor: pointer; }
.ldot.active { background: var(--gold); width: 24px; border-radius: 3px; }

/* ════════ NOMINATE ════════ */
.panel-nominate { background: var(--dark); padding: 0 8vw; }
.panel-nominate .section-header { margin-top: 40px; margin-bottom: 24px; }
.nominate-bg-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  bottom: -100px; right: -100px; pointer-events: none;
}
.nominate-content { position: relative; z-index: 2; width: 100%; }
.nominate-intro { max-width: 500px; margin-bottom: 48px; }
.nominate-intro p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; line-height: 1.75; color: var(--white-dim); font-style: italic; }

.nominate-steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 48px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 16px; flex: 1; text-align: center; }
.step-circle { position: relative; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.step-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(201,168,76,0.3); animation: stepRingPulse 3s ease-in-out infinite; }
.step:nth-child(1) .step-ring { animation-delay: 0s; }
.step:nth-child(3) .step-ring { animation-delay: 1s; }
.step:nth-child(5) .step-ring { animation-delay: 2s; }
@keyframes stepRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.8; border-color: var(--gold); }
}
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); font-weight: 300; position: relative; z-index: 2; }
.step-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.step-body p { font-size: 0.78rem; line-height: 1.7; color: var(--white-dim); max-width: 180px; }
.step-connector { flex: 0 0 60px; height: 1px; background: linear-gradient(90deg, var(--gold-dim), transparent); margin-top: 32px; }

.nominate-cta-wrap { display: flex; flex-direction: column; gap: 16px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 32px; position: relative; overflow: hidden; transition: color 0.4s; cursor: pointer; align-self: flex-start;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.btn-gold:hover { color: var(--black); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-arrow { position: relative; z-index: 1; }

.nominate-note { font-size: 0.75rem; color: var(--white-dim); }

/* ════════ CONTACT ════════ */
.panel-contact { background: var(--dark-2); padding: 0 8vw; flex-direction: column; justify-content: center; }
.panel-contact .section-header { margin-top: 80px; }
.contact-bg-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(201,168,76,0.01) 50px, rgba(201,168,76,0.01) 51px);
}
.contact-content { position: relative; z-index: 2; width: 100%; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; margin-bottom: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 24px; }
.contact-block { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.contact-block h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.contact-block p { font-size: 0.8rem; line-height: 1.6; color: var(--white-dim); }
.contact-link { color: var(--gold); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.contact-link:hover { color: var(--gold-light); }
.contact-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { display: inline-block; padding: 10px 20px; border: 1px solid rgba(201,168,76,0.3); color: var(--gold-dim); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); }
.form-group input, .form-group textarea {
  background: var(--dark-3); border: 1px solid rgba(201,168,76,0.15); color: var(--white);
  padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 0.85rem; outline: none;
  transition: border-color 0.3s; resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,0.25); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.72rem; color: var(--white-dim); }
.footer-small { font-size: 0.68rem; color: var(--gold-dim); font-style: italic; }

/* MOBILE STYLES */
@media (max-width: 900px) {
  body { overflow-x: hidden; overflow-y: auto; cursor: auto; }
  #cursorCanvas, .cursor-dot, .cursor-ring { display: none; }
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .nav { padding: 16px 24px; }
  .scroll-progress { display: none; }

  .h-scroll-wrapper { position: static; overflow: visible; height: auto; }
  .h-scroll-inner { display: block; width: 100%; height: auto; transform: none !important; transition: none; }

  .panel { width: 100%; min-height: 100svh; height: auto; padding: 100px 24px 60px; flex-direction: column; justify-content: center; align-items: flex-start; }
  .panel-hero { gap: 48px; }
  .panel-hero::before {
    background-position: 62% 20%;
    filter: grayscale(0.5) sepia(0.42) saturate(1.15) contrast(1.06) brightness(0.78);
    animation: heroPhotoIn 1.6s ease-out both; transform: scale(1.02);
  }
  .panel-hero::after {
    background:
      linear-gradient(180deg,
        rgba(10,10,10,0.88) 0%,
        rgba(10,10,10,0.40) 16%,
        rgba(10,10,10,0.58) 26%,
        rgba(10,10,10,0.86) 38%,
        rgba(10,10,10,0.92) 78%,
        rgba(10,10,10,0.97) 100%),
      radial-gradient(circle at 60% 30%, rgba(201,168,76,0.10), transparent 60%);
  }
  .panel-laureates { padding-top: 100px; }
  .panel-number { display: none; }

  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-visual { width: 240px; height: 240px; align-self: center; }
  .hero-circle-outer { width: 200px; height: 200px; }
  .hero-circle-mid { width: 148px; height: 148px; }
  .hero-circle-inner { width: 90px; height: 90px; }
  .hero-orbit-1 { width: 220px; height: 220px; }
  .hero-orbit-2 { width: 250px; height: 250px; }
  .hero-orbit-3 { width: 280px; height: 280px; }

  .about-body { grid-template-columns: 1fr; gap: 40px; }
  .award-grid { grid-template-columns: 1fr; gap: 40px; }
  .award-medallion-wrap { flex-direction: row; align-items: center; gap: 24px; }
  .award-medallion { width: 160px; height: 160px; }
  .r2 { inset: 14px; } .r3 { inset: 28px; }
  .medallion-core { width: 80px; height: 80px; }

  .laureate-card { width: 240px; }
  .track-prev { left: 0; }
  .track-next { right: 0; }

  .nominate-steps { flex-direction: column; gap: 32px; }
  .step { flex-direction: row; text-align: left; align-items: flex-start; }
  .step-body { flex: 1; }
  .step-body p { max-width: none; }
  .step-connector { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }
}

@media (max-width: 480px) {
  .panel { padding: 90px 20px 50px; }
  .hero-title { font-size: 2.1rem; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 2rem; }
  .laureate-card { width: 220px; padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .panel-hero::before { transform: scale(1.04) !important; }
}

/* ════════════════════════════════════
   LAUREATE CARD ENHANCEMENTS
   ════════════════════════════════════ */
.laureate-card { cursor: pointer; }

.lc-click-hint {
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.laureate-card:hover .lc-click-hint {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold);
}

/* ════════════════════════════════════
   OVERLAY BACKDROP
   ════════════════════════════════════ */
.overlay-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
}
.overlay-backdrop.active { opacity: 1; pointer-events: all; }

/* ════════════════════════════════════
   OVERLAY MODAL
   ════════════════════════════════════ */
.overlay-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  z-index: 501;
  width: min(900px, 94vw);
  max-height: 90vh;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.25);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.overlay-modal.active {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* CORNER BRACKETS */
.overlay-corner {
  position: absolute; width: 20px; height: 20px;
  border-color: var(--gold); border-style: solid;
  transition: width 0.4s 0.1s, height 0.4s 0.1s;
}
.overlay-modal.active .overlay-corner { width: 20px; height: 20px; }
.overlay-corner.tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.overlay-corner.tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.overlay-corner.bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.overlay-corner.br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* CLOSE BUTTON */
.overlay-close {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  width: 36px; height: 36px; background: none; border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; transition: border-color 0.3s, background 0.3s;
}
.overlay-close:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.overlay-close-line {
  display: block; width: 14px; height: 1px; background: var(--gold);
  transition: transform 0.3s;
}
.overlay-close .overlay-close-line:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.overlay-close .overlay-close-line:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* INNER LAYOUT */
.overlay-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 480px;
  max-height: 90vh;
}

/* LEFT PANEL */
.overlay-left {
  background: var(--dark-3);
  border-right: 1px solid rgba(201,168,76,0.12);
  padding: 48px 32px 40px;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.overlay-left::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* OVERLAY MEDALLION */
.overlay-medallion {
  position: relative; width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; flex-shrink: 0;
}
.om-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent;
}
.om-r1 {
  inset: 0; border-color: rgba(201,168,76,0.4);
  animation: rotateSlow 10s linear infinite;
  border-top-color: var(--gold);
}
.om-r2 {
  inset: 14px; border-color: rgba(201,168,76,0.2);
  animation: rotateSlow 16s linear infinite reverse;
  border-left-color: var(--gold-light);
}
.om-icon {
  font-size: 2.8rem; position: relative; z-index: 2;
  animation: dragonPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}
.om-sparks { position: absolute; inset: 0; pointer-events: none; }
.om-spark {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px var(--gold);
}
.om-spark:nth-child(1) { top: 0; left: 50%; animation: sparkPulse 3s infinite 0s; }
.om-spark:nth-child(2) { top: 50%; right: 0; animation: sparkPulse 3s infinite 0.5s; }
.om-spark:nth-child(3) { bottom: 0; left: 50%; animation: sparkPulse 3s infinite 1s; }
.om-spark:nth-child(4) { top: 50%; left: 0; animation: sparkPulse 3s infinite 1.5s; }
.om-spark:nth-child(5) { top: 15%; right: 15%; animation: sparkPulse 4s infinite 0.7s; }
.om-spark:nth-child(6) { bottom: 15%; left: 15%; animation: sparkPulse 4s infinite 2.1s; }

.overlay-year {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px; text-align: center;
}
.overlay-award-label {
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white-dim); margin-bottom: 20px; text-align: center;
}

.overlay-tags {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 24px;
}
.overlay-tag {
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dim); border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 10px; white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}
.overlay-tag:hover { border-color: var(--gold); color: var(--gold); }

.overlay-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  margin-bottom: 20px;
}

.overlay-prize {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 24px; border: 1px solid rgba(201,168,76,0.2); background: var(--dark-2);
  width: 100%;
}
.op-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  color: var(--gold); font-weight: 400;
}
.op-label {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white-dim);
}

/* RIGHT PANEL */
.overlay-right {
  padding: 52px 48px 44px;
  display: flex; flex-direction: column;
  overflow-y: auto; scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.3) transparent;
}
.overlay-right::-webkit-scrollbar { width: 4px; }
.overlay-right::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }

.overlay-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 10px;
}
.overlay-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; line-height: 1.15;
  color: var(--white); margin-bottom: 10px;
}
.overlay-role {
  font-size: 0.82rem; color: var(--gold); margin-bottom: 24px; line-height: 1.5;
}
.overlay-gold-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}
.overlay-body {
  font-size: 0.9rem; line-height: 1.9; color: var(--white-dim);
  flex: 1;
}


/* ── MOBILE OVERLAY ── */
@media (max-width: 700px) {
  .overlay-modal { width: 96vw; max-height: 92vh; }
  .overlay-inner { grid-template-columns: 1fr; }
  .overlay-left {
    border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 36px 24px 28px; flex-direction: row; flex-wrap: wrap; gap: 16px;
    align-items: center;
  }
  .overlay-medallion { width: 80px; height: 80px; margin-bottom: 0; flex-shrink: 0; }
  .om-icon { font-size: 1.8rem; }
  .overlay-year, .overlay-award-label { text-align: left; }
  .overlay-prize { padding: 10px 16px; width: auto; }
  .overlay-right { padding: 28px 24px; }
  .overlay-name { font-size: 1.5rem; }
}
