/* ============================================================
   PURPOSE LIFE LEADERSHIP HUB — STYLESHEET v2
   Brand palette sourced directly from the PLLH logo file:
     Navy   #002050   (logo circle / badge background)
     Gold   #C09020   (logo eagle, swash, star elements)
   ============================================================ */

:root {
  --navy:        #002050;
  --navy-deep:   #001040;
  --navy-soft:   #0A3060;
  --navy-card:   #0D2B5E;
  --gold:        #C09020;
  --gold-bright: #D4A830;
  --gold-pale:   #ECD890;
  --gold-glow:   rgba(192,144,32,.30);
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --soft-gray:   #F0EDE8;
  --black:       #080C14;

  --on-dark-80:  rgba(255,255,255,.80);
  --on-dark-60:  rgba(255,255,255,.60);
  --on-dark-30:  rgba(255,255,255,.30);
  --on-dark-12:  rgba(255,255,255,.12);
  --on-light-06: rgba(0,32,80,.06);
  --on-light-14: rgba(0,32,80,.14);
  --on-light-50: rgba(0,32,80,.50);

  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', monospace;

  --container: 1180px;
  --r:         14px;
  --r-sm:      8px;
  --shadow:    0 4px 20px -6px rgba(0,16,64,.16);
  --shadow-lg: 0 28px 64px -22px rgba(0,16,64,.40);
  --shadow-gold: 0 14px 44px -12px rgba(192,144,32,.50);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family:var(--body); color:var(--navy); background:var(--white); line-height:1.65; -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { margin:0; padding:0; list-style:none; }
h1,h2,h3,h4 { font-family:var(--display); margin:0 0 .4em; line-height:1.10; font-weight:600; }
p { margin:0 0 1em; }
.wrap { max-width:var(--container); margin:0 auto; padding:0 28px; }

/* ─── Eyebrow ─── */
.eyebrow {
  font-family:var(--mono); font-size:.70rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); display:flex; align-items:center; gap:9px; margin-bottom:12px;
}
.eyebrow::before { content:""; width:18px; height:1px; background:var(--gold); flex-shrink:0; }
.eyebrow.center { justify-content:center; }
.eyebrow.center::before { display:none; }
.eyebrow.bright { color:var(--gold-bright); }
.eyebrow.bright::before { background:var(--gold-bright); }

/* ─── Buttons ─── */
.btn {
  font-family:var(--body); font-weight:600; font-size:.90rem;
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:999px; border:1.5px solid transparent;
  cursor:pointer; white-space:nowrap;
  transition:transform .22s, box-shadow .22s, background .22s, color .22s, border-color .22s;
}
.btn-gold  { background:var(--gold); color:var(--navy-deep); border-color:var(--gold); }
.btn-gold:hover { background:var(--gold-bright); border-color:var(--gold-bright); transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn-outline { background:transparent; border-color:var(--on-dark-30); color:var(--white); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold-pale); transform:translateY(-2px); }
.btn-outline-dark { background:transparent; border-color:var(--on-light-14); color:var(--navy); }
.btn-outline-dark:hover { border-color:var(--gold); color:var(--gold); }
.btn-sm  { padding:9px 20px; font-size:.82rem; }
.btn-block { width:100%; justify-content:center; }

/* ─── Logo in nav ─── */
.logo { display:flex; align-items:center; gap:12px; }
.logo-img { width:40px; height:40px; border-radius:50%; object-fit:cover; border:1.5px solid rgba(192,144,32,.50); flex-shrink:0; }
.logo-text strong { display:block; font-family:var(--display); font-size:.95rem; font-weight:600; color:var(--white); line-height:1.15; }
.logo-text small  { display:block; font-family:var(--mono); font-size:.52rem; letter-spacing:.15em; text-transform:uppercase; color:var(--on-dark-60); }
.logo-light .logo-text strong { color:var(--navy); }
.logo-light .logo-text small  { color:var(--on-light-50); }

/* ─── Header / Nav ─── */
header.site {
  position:sticky; top:0; z-index:100;
  background:rgba(0,16,64,.94);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--on-dark-12);
}
.nav-row { display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.nav-links { display:flex; gap:24px; align-items:center; }
.nav-links a { font-size:.83rem; color:var(--on-dark-60); font-weight:500; position:relative; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a.active::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--gold); border-radius:1px; }
.nav-cta { display:flex; gap:10px; align-items:center; }
.nav-toggle { display:none; background:none; border:none; color:var(--white); font-size:1.5rem; cursor:pointer; padding:4px 6px; }

@media (max-width:900px) {
  .nav-links {
    position:absolute; top:100%; left:0; right:0;
    background:var(--navy-deep); flex-direction:column; gap:0;
    border-top:1px solid var(--on-dark-12);
    max-height:0; overflow:hidden; transition:max-height .32s ease;
  }
  .nav-links.open { max-height:520px; }
  .nav-links a { width:100%; padding:13px 28px; border-bottom:1px solid var(--on-dark-12); }
  .nav-cta .btn-outline { display:none; }
  .nav-toggle { display:block; }
}

/* ─── HERO (homepage only) ─── */
.hero {
  min-height:94vh;
  background: radial-gradient(ellipse 600px 500px at 10% 110%, rgba(192,144,32,.16), transparent 55%),
              linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color:var(--white); overflow:hidden; position:relative;
  display:flex; align-items:stretch;
}
/* very subtle full-bleed poster watermark in hero bg */
.hero::before {
  content:""; position:absolute; inset:0; z-index:0;
  background:url('/assets/images/summit-poster-main.jpeg') center/cover no-repeat;
  opacity:.06; pointer-events:none;
}
.hero-grid {
  display:grid; grid-template-columns:1fr 400px;
  width:100%; position:relative; z-index:1; align-items:stretch;
}
/* LEFT: org pitch */
.hero-left { padding:80px 40px 80px 0; display:flex; flex-direction:column; justify-content:center; }
.hero-tagline {
  font-family:var(--mono); font-size:.70rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); display:flex; align-items:center; gap:9px; margin-bottom:18px;
}
.hero-tagline::before { content:""; width:18px; height:1px; background:var(--gold); }
.hero h1 { font-size:clamp(2.1rem,3.6vw,3.0rem); color:var(--white); margin-bottom:.5em; }
.hero h1 em { color:var(--gold-pale); font-style:italic; font-weight:300; }
.hero-sub { color:var(--on-dark-60); font-size:1.04rem; max-width:480px; margin-bottom:28px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:36px; }
.hero-event-strip {
  display:inline-flex; align-items:center; gap:14px;
  background:rgba(192,144,32,.12); border:1px solid rgba(192,144,32,.32);
  border-radius:999px; padding:10px 18px; font-size:.83rem; color:var(--on-dark-60);
  max-width:fit-content;
}
/* RIGHT: summit poster panel */
.hero-right {
  border-left:1px solid var(--on-dark-12);
  background:linear-gradient(180deg, rgba(0,16,64,.55) 0%, rgba(0,32,80,.25) 100%);
  display:flex; flex-direction:column; overflow:hidden; position:relative;
}
.hero-poster-img {
  flex:1; width:100%; object-fit:cover; object-position:top center;
  display:block; min-height:0;
}
.hero-poster-badge { position:absolute; top:18px; left:50%; transform:translateX(-50%); white-space:nowrap; }
.hero-right-footer {
  background:rgba(0,16,64,.90); border-top:1px solid var(--on-dark-12);
  padding:16px 20px; display:flex; gap:8px; flex-wrap:wrap;
}
@media (max-width:960px) {
  .hero { min-height:auto; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-left { padding:60px 0 40px; }
  .hero-right { height:420px; }
  .hero-poster-img { height:100%; }
}

/* ─── Status pill ─── */
.status-pill {
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--mono); font-size:.70rem; letter-spacing:.06em; text-transform:uppercase;
  background:rgba(192,144,32,.14); color:var(--gold-bright);
  padding:7px 13px; border-radius:999px; border:1px solid rgba(192,144,32,.30);
}
.status-pill .dot { width:7px; height:7px; border-radius:50%; background:var(--gold-bright); animation:pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.2;} }

/* ─── Countdown ─── */
.countdown-widget {
  background:rgba(255,255,255,.04); border:1px solid var(--on-dark-12);
  border-radius:var(--r); padding:26px; backdrop-filter:blur(6px);
}
.countdown { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:14px; }
.countdown .unit { background:linear-gradient(150deg, var(--navy-soft), var(--navy-deep)); border:1px solid var(--on-dark-12); border-radius:10px; text-align:center; padding:14px 4px; }
.countdown .unit .num { font-family:var(--mono); font-size:1.65rem; color:var(--gold-bright); font-weight:600; line-height:1; }
.countdown .unit .lbl { font-family:var(--mono); font-size:.56rem; letter-spacing:.12em; text-transform:uppercase; color:var(--on-dark-60); margin-top:5px; }

/* ─── Award categories grid ─── */
.award-cats {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(210px,1fr)); gap:10px;
}
.award-cat-item {
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.05); border:1px solid var(--on-dark-12);
  border-radius:var(--r-sm); padding:12px 14px;
  transition:background .2s, border-color .2s;
}
.award-cat-item:hover { background:rgba(192,144,32,.10); border-color:rgba(192,144,32,.35); }
.award-cat-item .num { font-family:var(--mono); font-size:.62rem; color:var(--gold); min-width:22px; }
.award-cat-item span { font-size:.84rem; color:var(--on-dark-80); line-height:1.3; }

/* ─── GALLERY ─── */
.gallery-section { background:var(--navy-deep); color:var(--white); padding:80px 0; }
.gallery-mosaic {
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  grid-template-rows:260px 260px;
  gap:12px;
}
.g-cell { border-radius:var(--r); overflow:hidden; position:relative; background:var(--navy-card); }
.g-cell img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.g-cell:hover img { transform:scale(1.06); }
.g-cell.tall { grid-row:1 / 3; }
.g-cell.wide { grid-column:1 / 3; }
.g-caption {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(0deg, rgba(0,16,64,.90) 0%, transparent 80%);
  padding:32px 16px 14px;
  font-family:var(--mono); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold-pale); opacity:0; transition:opacity .3s;
}
.g-cell:hover .g-caption { opacity:1; }
@media (max-width:760px) {
  .gallery-mosaic { grid-template-columns:1fr 1fr; grid-template-rows:200px 200px; }
  .g-cell.tall { grid-row:auto; }
  .g-cell.wide { grid-column:auto; }
}
@media (max-width:500px) {
  .gallery-mosaic { grid-template-columns:1fr; grid-template-rows:auto; }
}

/* ─── Summit poster highlight strip ─── */
.summit-strip {
  background:linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color:var(--white);
}
.summit-poster-frame {
  border-radius:var(--r); overflow:hidden;
  box-shadow:0 24px 60px -16px rgba(0,16,64,.55), 0 0 0 1px rgba(192,144,32,.28);
  position:relative;
}
.summit-poster-frame::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:40%;
  background:linear-gradient(0deg, rgba(0,16,64,.7) 0%, transparent 100%);
}
.summit-poster-frame img { width:100%; display:block; }

/* ─── Section helpers ─── */
section { padding:80px 0; }
.section-head { margin-bottom:44px; }
.section-head.center { text-align:center; }
.section-head h2 { font-size:clamp(1.75rem,2.8vw,2.45rem); }
.section-head p { color:var(--on-light-50); margin-top:8px; max-width:580px; }
.section-head.center p { margin:8px auto 0; }
.bg-off-white { background:var(--off-white); }
.bg-soft  { background:var(--soft-gray); }
.bg-navy  { background:var(--navy); color:var(--white); }
.bg-deep  { background:var(--navy-deep); color:var(--white); }
.bg-navy p, .bg-deep p { color:var(--on-dark-60); }

/* ─── Grid ─── */
.grid { display:grid; gap:24px; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }
@media (max-width:920px) { .grid-3,.grid-4 { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; } }

/* ─── Cards ─── */
.card {
  background:var(--white); border:1px solid var(--on-light-06);
  border-radius:var(--r); padding:28px 24px;
  transition:transform .22s, box-shadow .22s;
}
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.card-icon {
  width:42px; height:42px; border-radius:10px;
  background:linear-gradient(145deg, var(--navy-soft), var(--navy));
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.card-icon svg { width:20px; height:20px; stroke:var(--gold-bright); stroke-width:1.8; fill:none; }
.card h3 { font-size:1.07rem; margin-bottom:.3em; }
.card p  { color:var(--on-light-50); font-size:.92rem; }
.card .link { font-family:var(--mono); font-size:.70rem; letter-spacing:.06em; text-transform:uppercase; color:var(--gold); display:inline-block; margin-top:8px; }
.card-dark { background:rgba(255,255,255,.04); border:1px solid var(--on-dark-12); border-radius:var(--r); padding:26px; }
.card-dark .card-icon { background:rgba(192,144,32,.12); }

/* ─── Stats ─── */
.stat .num { font-family:var(--mono); font-size:2.2rem; color:var(--gold); font-weight:600; line-height:1; }
.stat .lbl { font-size:.84rem; color:var(--on-light-50); margin-top:4px; }
.bg-navy .stat .lbl, .bg-deep .stat .lbl { color:var(--on-dark-60); }

/* ─── Testimonials ─── */
.testimonial { background:var(--white); border:1px solid var(--on-light-06); border-radius:var(--r); padding:28px; }
.testimonial blockquote { font-family:var(--display); font-style:italic; font-size:1.04rem; color:var(--navy); margin:0 0 14px; }
.testimonial .who { font-family:var(--mono); font-size:.70rem; letter-spacing:.06em; color:var(--gold); text-transform:uppercase; }

/* ─── Partners ─── */
.partners-strip { display:flex; flex-wrap:wrap; gap:28px; align-items:center; justify-content:center; }
.partner-chip { font-family:var(--mono); font-size:.76rem; letter-spacing:.08em; border:1px dashed rgba(0,32,80,.22); border-radius:var(--r-sm); padding:10px 18px; color:var(--on-light-50); }

/* ─── CTA band ─── */
.cta-band {
  background:linear-gradient(130deg, var(--navy-deep), var(--navy-soft));
  color:var(--white); border-radius:18px; padding:50px 44px;
  display:flex; justify-content:space-between; align-items:center;
  gap:28px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.cta-band::after {
  content:""; position:absolute; right:-80px; top:-80px;
  width:260px; height:260px;
  background:radial-gradient(circle, var(--gold-glow), transparent 70%);
}
.cta-band h2 { color:var(--white); font-size:1.75rem; margin-bottom:6px; }
.cta-band p  { color:var(--on-dark-60); margin:0; }

/* ─── Page headers (inner pages) ─── */
.page-head {
  background:
    radial-gradient(ellipse 500px 300px at 92% 50%, rgba(192,144,32,.16), transparent),
    linear-gradient(148deg, var(--navy-deep) 0%, var(--navy) 100%);
  color:var(--white); padding:64px 0 52px; position:relative; overflow:hidden;
}
.page-head .breadcrumb { font-family:var(--mono); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:var(--on-dark-60); margin-bottom:10px; }
.page-head .breadcrumb a { color:var(--gold-bright); }
.page-head h1 { color:var(--white); font-size:clamp(1.85rem,3.2vw,2.6rem); }
.page-head p  { color:var(--on-dark-60); max-width:580px; margin-top:8px; }

/* ─── Process steps ─── */
.process-step { display:flex; gap:16px; }
.process-step .bar { width:4px; border-radius:2px; background:linear-gradient(180deg, var(--gold), transparent); flex-shrink:0; }
.process-step .body { padding-bottom:28px; }

/* ─── Forms ─── */
.form-card { background:var(--white); border:1px solid var(--on-light-06); border-radius:var(--r); padding:34px; box-shadow:var(--shadow-lg); }
.form-row { margin-bottom:18px; }
.form-row label { display:block; font-family:var(--mono); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; color:var(--navy); margin-bottom:7px; }
.form-row .req { color:var(--gold); }
.form-row input, .form-row select, .form-row textarea {
  width:100%; padding:12px 14px; border-radius:var(--r-sm); border:1px solid var(--on-light-14);
  font-family:var(--body); font-size:.93rem; background:var(--soft-gray); color:var(--navy);
  transition:border-color .2s, background .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline:none; border-color:var(--gold); background:var(--white);
}
.form-row textarea { min-height:110px; resize:vertical; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 18px; }
@media (max-width:600px) { .form-grid { grid-template-columns:1fr; } }
.form-note { font-size:.81rem; color:var(--on-light-50); margin-top:5px; }
.upload-box {
  border:1.5px dashed rgba(0,32,80,.22); border-radius:10px; padding:24px;
  text-align:center; background:var(--soft-gray); cursor:pointer; transition:border-color .2s;
}
.upload-box:hover { border-color:var(--gold); }

/* ─── Nominee cards ─── */
.nominee-card { background:var(--white); border:1px solid var(--on-light-06); border-radius:var(--r); overflow:hidden; display:flex; flex-direction:column; }
.nominee-photo { height:180px; background:linear-gradient(150deg, var(--navy-soft), var(--navy-deep)); display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:.68rem; letter-spacing:.10em; text-transform:uppercase; color:var(--on-dark-60); overflow:hidden; }
.nominee-photo img { width:100%; height:100%; object-fit:cover; }
.nominee-body { padding:20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.nominee-body .cat { font-family:var(--mono); font-size:.64rem; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); }
.nominee-body h3 { font-size:1.02rem; margin:0; }
.vote-counter { display:flex; align-items:center; gap:10px; margin-top:auto; padding-top:8px; }
.vote-counter button { width:32px; height:32px; border-radius:50%; border:1px solid var(--on-light-14); background:var(--white); font-size:1.1rem; cursor:pointer; color:var(--navy); transition:all .2s; }
.vote-counter button:hover { border-color:var(--gold); color:var(--gold); }
.vote-counter .count { font-family:var(--mono); font-weight:600; min-width:22px; text-align:center; }
.vote-cost { font-family:var(--mono); font-size:.74rem; color:var(--on-light-50); margin-left:auto; }

/* ─── Tags / misc ─── */
.tag { display:inline-block; font-family:var(--mono); font-size:.64rem; letter-spacing:.10em; text-transform:uppercase; background:rgba(192,144,32,.12); color:var(--gold); padding:5px 12px; border-radius:999px; }

/* ─── Footer ─── */
footer.site { background:var(--navy-deep); color:var(--on-dark-60); padding:60px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px; }
.footer-logo-img { width:48px; height:48px; border-radius:50%; object-fit:cover; border:1.5px solid rgba(192,144,32,.38); margin-bottom:14px; }
.footer-grid h4 { color:var(--white); font-family:var(--mono); font-size:.70rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:14px; }
.footer-grid ul li { margin-bottom:9px; font-size:.88rem; }
.footer-grid ul li a:hover { color:var(--gold-bright); }
.footer-about p { font-size:.88rem; color:var(--on-dark-60); max-width:280px; }
.social-row { display:flex; gap:10px; margin-top:16px; }
.social-row a { width:34px; height:34px; border-radius:50%; border:1px solid var(--on-dark-12); display:flex; align-items:center; justify-content:center; font-size:.76rem; font-weight:700; transition:border-color .2s, color .2s; }
.social-row a:hover { border-color:var(--gold); color:var(--gold-bright); }
.footer-bottom { border-top:1px solid var(--on-dark-12); padding-top:20px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:.78rem; color:var(--on-dark-60); }
.footer-bottom a:hover { color:var(--gold-bright); }
@media (max-width:880px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:540px) { .footer-grid { grid-template-columns:1fr; } }

/* ─── Reveal ─── */
.reveal { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.reveal.in { opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce) { .reveal { opacity:1; transform:none; transition:none; } .status-pill .dot { animation:none; } }
