/*
Theme Name: SGEF 2026 — ABLE
Theme URI: https://globaledfest.com
Author: ScooNews
Author URI: https://scoonews.com
Description: Official WordPress theme for ScooNews Global Educators Fest 2026. Theme: ABLE — A Billion Lives. Education. Featuring ScooNews Global Education Awards 2026. In partnership with India Inclusion Foundation.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sgef26
Tags: one-page, education, event, conference, accessibility
*/

/* ============================================================
   SGEF 2026 — ABLE Design System
   ScooNews Global Educators Fest · 6–8 August 2026 · Jaipur
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:    #1A1A2E;
  --gold:    #C8922A;
  --gold2:   #E8A830;
  --warm:    #F5F0E8;
  --ink:     #0E0E0E;
  --footer-bg: #0A0A14;
  --muted:   #6B6B6B;
  --border:  #D4C9B5;
  --white:   #FFFFFF;
  --purple:  #3C2E6E;
  --green:   #1E5C38;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-alt:     'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Skip Link (Accessibility) ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--gold);
  color: var(--deep);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 24px; }

/* ── STICKY NAVIGATION ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 20px 0;
}
.site-header.transparent {
  background: transparent;
}
.site-header.solid {
  background: var(--deep);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 14px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; transition: height 0.3s; }
.site-header.solid .site-logo img { height: 38px; }
.logo-sgef { display: block; }
.logo-sgea { display: none; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 0; }
.primary-nav ul { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.primary-nav ul li { position: relative; }
.primary-nav ul li a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  display: block;
}
.primary-nav ul li a:hover { color: var(--gold); }

/* Dropdown */
.primary-nav ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 100;
}
.primary-nav ul li:hover > ul { display: flex; }
.primary-nav ul li ul li a {
  padding: 10px 20px;
  border-radius: 0;
  font-size: 13px;
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--gold) !important;
  color: var(--deep) !important;
  padding: 10px 24px !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  transition: background 0.2s !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold2) !important; color: var(--deep) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { width: 100%; max-width: 360px; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav ul li a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  font-family: var(--font-display);
  transition: color 0.2s;
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-nav ul li ul { border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-nav ul li ul li a {
  font-size: 15px;
  font-family: var(--font-body);
  padding: 12px 0 12px 20px;
  color: rgba(255,255,255,0.55);
}
.mobile-nav-cta {
  margin-top: 32px;
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  padding: 16px 48px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTION BASE ─────────────────────────────────────────── */
section { padding: 100px 24px; }
.container { max-width: 860px; margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }

/* ── SHARED COMPONENTS ────────────────────────────────────── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.gold-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 0 0 40px;
  border: none;
}
.gold-line.center { margin: 0 auto 40px; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  padding: 16px 44px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold2); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); }

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: var(--deep);
  padding: 160px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(200,146,42,0.10) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(200,146,42,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.page-hero-meta {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.page-hero-meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.page-hero-meta-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.page-hero-meta-item strong {
  color: #fff;
  font-weight: 500;
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

/* ── INNER PAGE CONTENT ───────────────────────────────────── */
.page-content {
  background: #fff;
  padding: 80px 24px;
}
.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 24px;
}
.page-content h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
  margin-top: 40px;
}
.page-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #3A3A3A;
  font-weight: 300;
  margin-bottom: 20px;
}
.page-content ul {
  margin: 16px 0 24px 0;
  display: grid;
  gap: 12px;
}
.page-content ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.7;
  color: #3A3A3A;
  font-weight: 300;
}
.page-content ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.page-content strong { color: var(--deep); font-weight: 600; }

/* ── TOWNSCRIPT EMBED SECTION ─────────────────────────────── */
.embed-section {
  background: var(--warm);
  padding: 60px 24px 80px;
}
.embed-section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.embed-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.embed-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 40px;
}
.embed-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border);
  min-height: 200px;
}

/* ── AWARDS PAGE ──────────────────────────────────────────── */
.awards-intro {
  background: #fff;
  padding: 80px 24px;
}
.awards-intro-inner { max-width: 860px; margin: 0 auto; }
.awards-intro p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.85;
  color: #2A2A2A;
  font-weight: 300;
}
.awards-intro p + p { margin-top: 20px; }

.awards-categories {
  background: var(--warm);
  padding: 80px 24px;
}
.awards-categories-inner { max-width: 1100px; margin: 0 auto; }
.awards-categories h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
}
.awards-categories > .awards-categories-inner > p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.7;
}

.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.category-tab {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
}
.category-tab:hover,
.category-tab.active {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

.category-panel { display: none; }
.category-panel.active { display: block; }

.awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.award-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.award-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,146,42,0.1);
}

.awards-cta-strip {
  background: var(--deep);
  padding: 80px 24px;
  text-align: center;
}
.awards-cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.awards-cta-strip h2 em { color: var(--gold); font-style: normal; }
.awards-cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.awards-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.awards-disclaimer {
  background: var(--warm);
  padding: 60px 24px;
}
.awards-disclaimer-inner {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  background: #fff;
}
.awards-disclaimer h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
}
.awards-disclaimer p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}
.awards-disclaimer p + p { margin-top: 12px; }

/* Nomination charges */
.charges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.charge-card {
  background: var(--warm);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.charge-card-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.charge-card-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 6px;
}
.charge-card-note {
  font-size: 12px;
  color: var(--muted);
}

/* ── SPEAKERS PAGE ────────────────────────────────────────── */
.speakers-section {
  background: #fff;
  padding: 80px 24px;
}
.speakers-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.speaker-card {
  background: var(--warm);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,26,46,0.12);
}
.speaker-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.speaker-card-info {
  padding: 16px 18px 20px;
}
.speaker-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
  line-height: 1.3;
}
.speaker-card-title {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── PARTNERS PAGE ────────────────────────────────────────── */
.partners-section {
  background: #fff;
  padding: 80px 24px;
}
.partners-collage {
  max-width: 1100px;
  margin: 0 auto;
}
.partners-collage img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.partners-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.partners-intro p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.85;
  color: #2A2A2A;
  font-weight: 300;
}

/* ── CONTACT & PARTNER PAGES ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 24px;
}
.contact-person {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-person:last-child { border-bottom: none; margin-bottom: 0; }
.contact-person-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}
.contact-person-role {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 300;
}
.contact-person-detail {
  font-size: 14px;
  color: #3A3A3A;
  font-weight: 300;
  line-height: 1.8;
}
.contact-person-detail a { color: var(--gold); }

/* WP Forms / CF7 styling override */
.wpcf7-form label,
.wpforms-field-label {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-family: var(--font-body) !important;
}
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea,
.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: var(--ink) !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  outline: none !important;
  width: 100% !important;
  box-shadow: none !important;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-bottom-color: var(--gold) !important;
}
.wpcf7-submit,
.wpforms-submit {
  background: var(--deep) !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 40px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: background 0.2s !important;
}
.wpcf7-submit:hover,
.wpforms-submit:hover { background: var(--gold) !important; color: var(--deep) !important; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  padding: 64px 24px 32px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

.footer-brand .footer-logo { margin-bottom: 20px; }
.footer-brand .footer-logo img { height: 44px; width: auto; }
.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.3;
}
.footer-brand-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-brand-featuring {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-brand-featuring strong {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.footer-iif {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-iif-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}
.footer-iif img { height: 40px; width: auto; }

.footer-nav h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--gold); }

.footer-contact h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-contact-item {
  margin-bottom: 20px;
}
.footer-contact-item-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-contact-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.7;
}
.footer-contact-item a { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ── TERMS & NOMINATION GUIDE ─────────────────────────────── */
.legal-content {
  background: #fff;
  padding: 80px 24px;
}
.legal-content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  margin: 40px 0 16px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #3A3A3A;
  font-weight: 300;
  margin-bottom: 16px;
}
.legal-content em { color: var(--muted); font-style: italic; }
.legal-content strong { color: var(--deep); font-weight: 600; }
.legal-content ul {
  margin: 16px 0 24px 0;
  display: grid;
  gap: 10px;
}
.legal-content ul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.7;
  color: #3A3A3A;
  font-weight: 300;
}
.legal-content ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  section { padding: 60px 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .embed-wrapper { padding: 24px 16px; }
  .speakers-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
  .awards-list { grid-template-columns: 1fr; }
  .charges-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .charges-grid { grid-template-columns: 1fr; }
  .page-hero h1 { letter-spacing: -1px; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── WP ADMIN BAR OFFSET ──────────────────────────────────── */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
