/* ============================================================
   WORLD CEO AWARDS — Executive Corporate Design System
   Vanilla CSS3 • Premium • Responsive • Accessible
   ============================================================ */

/* ---------- 1. ROOT VARIABLES ---------- */
:root {
  /* Brand palette */
  --executive-navy: #0b163d;
  --royal-blue: #123c69;
  --platinum-gold: #c8a45d;
  --pearl-white: #f8f8f5;
  --charcoal: #20242c;
  --steel-grey: #6d7480;
  --soft-gold: #ead8a8;

  /* Derived tones */
  --navy-900: #070f2b;
  --navy-800: #0b163d;
  --navy-700: #102050;
  --navy-600: #16306e;
  --navy-glass: rgba(11, 22, 61, 0.85);
  --gold: #c8a45d;
  --gold-bright: #d9bd78;
  --gold-deep: #a8853f;
  --ink: #20242c;
  --line: rgba(11, 22, 61, 0.10);
  --line-gold: rgba(200, 164, 93, 0.35);
  --line-gold-strong: 1px solid rgba(200, 164, 93, 0.55);
  --border-gold: 1px solid rgba(200, 164, 93, 0.22);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing / sizing */
  --container: 2400px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(11, 22, 61, 0.08);
  --shadow: 0 18px 48px rgba(11, 22, 61, 0.14);
  --shadow-lg: 0 30px 80px rgba(7, 15, 43, 0.28);
  --shadow-gold: 0 14px 40px rgba(200, 164, 93, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 74px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pearl-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; object-position: top center; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.18; color: var(--executive-navy); letter-spacing: -0.01em; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--platinum-gold); color: #fff; }

/* ---------- 3. LAYOUT ---------- */
/* Site page width: 90%–100% of viewport (95%, high cap so large screens stay wide) */
.container { width: 95%; max-width: var(--container); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section-sm { padding: 52px 0; }
.section-dark { background: var(--executive-navy); color: var(--pearl-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-navy-gradient { background: linear-gradient(160deg, var(--navy-900), var(--royal-blue)); color: #fff; }
.bg-tint { background: linear-gradient(180deg, #fff, #f1efe7); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }

/* Section header */
.section-header { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-header.left { margin-inline: 0; text-align: left; }
.label {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px;
}
.section-dark .label { color: var(--gold-bright); }
.section-header h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 14px; }
.section-header p { color: var(--steel-grey); font-size: 1.02rem; }
.section-dark .section-header p { color: rgba(248, 248, 245, 0.78); }
.gold-divider { width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); margin: 18px auto 22px; border-radius: 3px; }
.section-header.left .gold-divider { margin-inline: 0; }
.gold-text { color: var(--gold); }
.eyebrow-line { display: flex; align-items: center; gap: 14px; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: 50px; cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap; text-align: center;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(200, 164, 93, 0.42); color: #fff; }
.btn-navy { background: var(--executive-navy); color: #fff; }
.btn-navy:hover { background: var(--royal-blue); transform: translateY(-3px); color: #fff; }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold-deep); }
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.section-dark .btn-outline { color: var(--soft-gold); border-color: var(--soft-gold); }
.section-dark .btn-outline:hover { background: var(--gold); color: var(--executive-navy); border-color: var(--gold); }
.btn-light { background: #fff; color: var(--executive-navy); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--royal-blue); }
.btn-lg { padding: 17px 38px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- 5. HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; width: 100%;
  background: var(--navy-glass); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 164, 93, 0.16);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { background: var(--executive-navy); box-shadow: 0 8px 30px rgba(7, 15, 43, 0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--executive-navy);
  box-shadow: 0 6px 18px rgba(200, 164, 93, 0.4);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.02; }
.nav-logo-text span { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; letter-spacing: 0.01em; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li > a {
  display: block; padding: 10px 14px; font-size: 0.9rem; font-weight: 500;
  color: rgba(248, 248, 245, 0.88); border-radius: 8px; position: relative;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: #fff; }
.nav-menu > li > a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: '▾'; font-size: 0.7rem; margin-left: 5px; opacity: 0.7; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 244px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s var(--ease); border-top: 3px solid var(--gold);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 14px; font-size: 0.87rem; color: var(--charcoal); border-radius: 6px; }
.dropdown li a:hover { background: var(--pearl-white); color: var(--royal-blue); }
.nav-cta {
  margin-left: 8px; padding: 11px 22px !important; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--executive-navy) !important; font-weight: 700 !important; font-size: 0.86rem !important;
  box-shadow: 0 6px 18px rgba(200, 164, 93, 0.35);
}
.nav-cta:hover { transform: translateY(-2px); }
.nav-cta::after { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero-slide { opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7, 15, 43, 0.92) 0%, rgba(11, 22, 61, 0.78) 45%, rgba(18, 60, 105, 0.55) 100%); z-index: 1; }
.hero-overlay-gold { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(200, 164, 93, 0.18), transparent 55%); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; margin-bottom: 24px;
  background: rgba(200, 164, 93, 0.14); border: var(--line-gold-strong); border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; color: var(--soft-gold);
}
.hero-title { font-size: clamp(2.4rem, 5.6vw, 4.2rem); line-height: 1.08; margin-bottom: 22px; color: #fff; }
.hero-subtitle { font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(248, 248, 245, 0.86); max-width: 600px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 38px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-bright); }
.hero-stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248, 248, 245, 0.7); }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: 116px 0 70px; color: #fff; overflow: hidden; background: var(--executive-navy); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.32; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,15,43,0.95), rgba(18,60,105,0.7)); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); color: #fff; margin-bottom: 14px; max-width: 900px; }
.page-hero p { color: rgba(248, 248, 245, 0.82); max-width: 680px; font-size: 1.05rem; }

/* Breadcrumbs */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.82rem; margin-bottom: 20px; color: rgba(248,248,245,0.7); }
.breadcrumb a { color: var(--soft-gold); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span.sep { opacity: 0.5; }

/* ---------- 7. STATS BAR ---------- */
.stats-section { background: linear-gradient(135deg, var(--navy-800), var(--royal-blue)); padding: 50px 0; border-top: 1px solid var(--line-gold); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-block { text-align: center; color: #fff; }
.stat-block .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--gold-bright); display: block; }
.stat-block .lbl { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,248,245,0.72); margin-top: 6px; }

/* ---------- 8. CARDS ---------- */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Category / sector cards */
.cat-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.cat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.cat-card:hover .cat-card-img img { transform: scale(1.07); }
.cat-card-img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.cat-card-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--navy-glass); color: var(--soft-gold); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; }
.cat-card-body { padding: 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.cat-card-body h3 { font-size: 1.16rem; }
.cat-card-body p { font-size: 0.9rem; color: var(--steel-grey); flex: 1; }
.cat-card-link { font-size: 0.84rem; font-weight: 600; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.cat-card-link:hover { gap: 10px; color: var(--royal-blue); }

/* Icon feature cards (who can participate / benefits) */
.icon-card { background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.icon-card .ic { width: 54px; height: 54px; border-radius: 13px; background: linear-gradient(135deg, rgba(200,164,93,0.16), rgba(200,164,93,0.06)); border: 1px solid var(--line-gold); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.icon-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.icon-card p { font-size: 0.88rem; color: var(--steel-grey); }
.section-dark .icon-card { background: rgba(255,255,255,0.04); border-color: rgba(200,164,93,0.18); }
.section-dark .icon-card p { color: rgba(248,248,245,0.72); }

/* Participant chip grid */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.chip { display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); font-weight: 500; font-size: 0.92rem; transition: 0.3s var(--ease); }
.chip:hover { border-color: var(--gold); transform: translateY(-3px); }
.chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Benefit list */
.benefit-item { display: flex; gap: 16px; padding: 22px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.benefit-item .bi-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.benefit-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit-item p { font-size: 0.9rem; color: var(--steel-grey); }

/* ---------- 9. ABOUT / SPLIT ROWS ---------- */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 30px; }
.split-row.reverse .split-img { order: 2; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.split-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.split-text p { color: var(--steel-grey); margin-bottom: 16px; }
.section-dark .split-text p { color: rgba(248,248,245,0.78); }
.check-list li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 11px; font-size: 0.94rem; }
.check-list li::before { content: '✓'; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }
.section-dark .check-list li::before { color: var(--gold-bright); }

/* ---------- 10. CTA BARS ---------- */
.cta-bar { background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright)); padding: 54px 0; }
.cta-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-bar h2 { color: var(--executive-navy); font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-bar p { color: rgba(11,22,61,0.78); font-weight: 500; }
.cta-section { background: linear-gradient(150deg, var(--navy-900), var(--royal-blue)); padding: 80px 0; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(200,164,93,0.16), transparent 60%); }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-section p { color: rgba(248,248,245,0.82); max-width: 620px; margin: 0 auto 30px; font-size: 1.05rem; }

/* ---------- 11. TABS ---------- */
.tabs-wrap { max-width: 90vw; margin: 0 auto; }
.tab-nav { display: flex; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; gap: 0; justify-content: center; padding: 0; margin-bottom: 38px; background: var(--executive-navy); border-radius: 0; box-shadow: 0 4px 20px rgba(11,22,61,0.28); border-bottom: 2px solid var(--gold); position: relative; z-index: 900; width: 100vw; margin-left: calc(50% - 50vw); }
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn { padding: 16px 30px; border-radius: 0; font-weight: 600; font-size: 0.88rem; color: rgba(248,248,245,0.68); transition: 0.3s var(--ease); white-space: nowrap; flex-shrink: 0; border-bottom: 3px solid transparent; letter-spacing: 0.03em; }
.tab-btn:hover { color: var(--gold-bright); background: rgba(200,164,93,0.08); }
.tab-btn.active { background: rgba(200,164,93,0.12); color: var(--gold-bright); box-shadow: none; border-bottom: 3px solid var(--gold); }
.tab-panel { display: none; animation: fadeUp 0.5s var(--ease); }
.tab-panel.active { display: block; }
.tab-nav-spacer { height: 0; }
.tab-nav.is-fixed { position: fixed; top: var(--header-h); left: 0; right: 0; width: 100%; margin-left: 0; z-index: 900; box-shadow: 0 6px 20px rgba(11,22,61,0.35); }

/* ---------- 12. FAQ ACCORDION ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--line-gold); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--executive-navy); }
.faq-question .qi { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--line-gold); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: transform 0.3s var(--ease); }
.faq-item.open .qi { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 0 24px 22px; color: var(--steel-grey); font-size: 0.94rem; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ---------- 13. LOGO / WINNER WALL ---------- */
.logo-wall { overflow: hidden; padding: 12px 0; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-row { display: flex; gap: 26px; width: max-content; margin-bottom: 22px; animation: marquee 46s linear infinite; }
.logo-row.reverse { animation-direction: reverse; }
.logo-row:hover { animation-play-state: paused; }
.logo-chip { flex-shrink: 0; width: 150px; height: 92px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 6px; }
.logo-chip img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 6px; }
.section-dark .logo-chip { background: rgba(255,255,255,0.96); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 14. WINNERS GRID ---------- */
.winner-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.winner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.winner-card-img { aspect-ratio: 1 / 1; overflow: hidden; }
.winner-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.winner-card-body { padding: 20px 16px; }
.winner-card-body h3 { font-size: 1.04rem; margin-bottom: 3px; }
.winner-card-role { font-size: 0.82rem; color: var(--gold-deep); font-weight: 600; }
.winner-card-co { font-size: 0.82rem; color: var(--steel-grey); margin-top: 4px; }
.winner-card-cat { font-size: 0.74rem; color: var(--steel-grey); margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
.winner-flag { font-size: 0.8rem; color: var(--steel-grey); }

/* ---------- 15. VIDEO TESTIMONIALS ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; max-width: 980px; margin: 0 auto; }
.video-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.section-dark .video-card { border-color: rgba(200,164,93,0.2); }
.video-facade { position: relative; aspect-ratio: 16 / 9; cursor: pointer; background: var(--navy-900); overflow: hidden; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0.82; transition: 0.4s var(--ease); }
.video-facade:hover img { opacity: 1; transform: scale(1.04); }
.video-facade .play-btn { position: absolute; inset: 0; margin: auto; width: 70px; height: 70px; border-radius: 50%; background: rgba(200,164,93,0.95); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(7,15,43,0.4); transition: transform 0.3s var(--ease); }
.video-facade:hover .play-btn { transform: scale(1.1); }
.video-facade .play-btn::after { content: ''; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card-info { padding: 18px 20px; }
.video-card-info h3 { font-size: 1rem; margin-bottom: 4px; }
.video-card-info p { font-size: 0.84rem; color: var(--steel-grey); }

/* ---------- 16. GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,22,61,0.6), transparent 60%); opacity: 0; transition: 0.3s var(--ease); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; color: #fff; font-size: 1.6rem; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ---------- 17. GALA / EVENT CARD ---------- */
.gala-card { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--executive-navy); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.gala-img { position: relative; min-height: 320px; }
.gala-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.gala-info { padding: 46px; color: #fff; }
.gala-info h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
.gala-meta { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.gala-meta-row { display: flex; gap: 13px; align-items: center; font-size: 0.96rem; }
.gala-meta-row .gm-ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(200,164,93,0.15); border: 1px solid var(--line-gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.gala-meta-row .gm-lbl { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-bright); }

/* ---------- 18. CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm); transition: 0.3s var(--ease); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.contact-card .cc-ic { width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, rgba(200,164,93,0.16), rgba(200,164,93,0.05)); border: 1px solid var(--line-gold); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-card a, .contact-card p { color: var(--steel-grey); font-size: 0.92rem; }
.contact-card a:hover { color: var(--gold-deep); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- 19. BLOG ---------- */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: 0.35s var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-card-body .meta { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.16rem; margin-bottom: 8px; }
.blog-card-body p { font-size: 0.9rem; color: var(--steel-grey); }
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: flex; flex-direction: column; gap: 22px; }
.widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.widget h4 { font-size: 1rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--line-gold); }
.widget-cta { background: linear-gradient(150deg, var(--navy-900), var(--royal-blue)); color: #fff; text-align: center; }
.widget-cta h4 { color: #fff; border-color: rgba(200,164,93,0.3); }
.widget-cta p { font-size: 0.86rem; color: rgba(248,248,245,0.82); margin-bottom: 14px; }
.widget-links li { margin-bottom: 9px; }
.widget-links li a { font-size: 0.88rem; color: var(--charcoal); display: flex; gap: 8px; }
.widget-links li a:hover { color: var(--gold-deep); }
.widget-links li a::before { content: '→'; color: var(--gold); }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 1.7rem; margin: 34px 0 14px; }
.article-body h3 { font-size: 1.3rem; margin: 26px 0 12px; }
.article-body p { margin-bottom: 18px; color: var(--charcoal); }
.article-body ul { margin: 0 0 18px 22px; list-style: disc; }
.article-body li { margin-bottom: 9px; }
.article-body img { border-radius: var(--radius); margin: 24px 0; }

/* ---------- 20. PROCESS / TIMELINE ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; counter-reset: step; }
.process-step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.process-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--line-gold); display: block; margin-bottom: 10px; }
.process-step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--steel-grey); }
.section-dark .process-step { background: rgba(255,255,255,0.04); border-color: rgba(200,164,93,0.18); }
.section-dark .process-step p { color: rgba(248,248,245,0.72); }
.section-dark .process-step::before { color: rgba(200,164,93,0.45); }

/* Criteria list */
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.criteria-item { display: flex; gap: 14px; padding: 20px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.criteria-item .ci-ic { color: var(--gold-deep); font-size: 1.3rem; flex-shrink: 0; }
.criteria-item h3 { font-size: 0.98rem; margin-bottom: 4px; }
.criteria-item p { font-size: 0.85rem; color: var(--steel-grey); }

/* Pricing */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 30px; box-shadow: var(--shadow-sm); text-align: center; position: relative; transition: 0.35s var(--ease); }
.price-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card .tier { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.price-card .amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--executive-navy); margin: 12px 0; }
.price-card ul { text-align: left; margin: 22px 0; }
.price-card ul li { display: flex; gap: 10px; font-size: 0.9rem; margin-bottom: 11px; color: var(--charcoal); }
.price-card ul li::before { content: '✓'; color: var(--gold-deep); font-weight: 700; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.package-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; transition: 0.3s var(--ease); }
.package-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.package-item-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--pearl-white); }
.package-item-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.package-item-body { padding: 18px; }
.package-item-body h3 { font-size: 1rem; margin-bottom: 6px; }
.package-item-body p { font-size: 0.84rem; color: var(--steel-grey); }

/* ---------- 21. FOOTER ---------- */
.site-footer { background: var(--navy-900); color: rgba(248,248,245,0.74); padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-icon { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--executive-navy); }
.footer-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; max-width: 340px; }
.footer-contact-mini a { display: flex; gap: 9px; align-items: center; font-size: 0.86rem; margin-bottom: 9px; color: rgba(248,248,245,0.78); }
.footer-contact-mini a:hover { color: var(--gold-bright); }
.footer-col h4 { color: #fff; font-size: 0.96rem; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 0.86rem; color: rgba(248,248,245,0.72); }
.footer-links li a:hover { color: var(--gold-bright); padding-left: 4px; }
.social-links { display: flex; gap: 11px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(200,164,93,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.84rem; font-weight: 600; color: var(--soft-gold); transition: 0.3s var(--ease); }
.social-link:hover { background: var(--gold); color: var(--executive-navy); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(200,164,93,0.16); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-bottom-left { font-size: 0.82rem; color: rgba(248,248,245,0.6); }
.footer-bottom-right { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom-right a { font-size: 0.78rem; color: rgba(248,248,245,0.6); }
.footer-bottom-right a:hover { color: var(--gold-bright); }
.newsletter-form { display: flex; gap: 8px; margin-top: 6px; }
.newsletter-form input { flex: 1; min-width: 0; padding: 12px 14px; border-radius: 8px; border: 1px solid rgba(200,164,93,0.25); background: rgba(255,255,255,0.05); color: #fff; font-size: 0.86rem; }
.newsletter-form input::placeholder { color: rgba(248,248,245,0.5); }
.newsletter-form button { padding: 12px 18px; border-radius: 8px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: var(--executive-navy); font-weight: 700; font-size: 0.84rem; white-space: nowrap; }

/* ---------- 22. SCROLL TOP ---------- */
#scrollTop { position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--executive-navy); color: var(--gold-bright); font-size: 1.2rem; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: 0.3s var(--ease); z-index: 900; border: 1px solid var(--line-gold); }
#scrollTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTop:hover { background: var(--gold); color: var(--executive-navy); }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 26px; left: 26px; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 900; font-size: 1.5rem; transition: 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }

/* ---------- 23. ANIMATIONS ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.7s var(--ease) both; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; } .logo-row { animation: none !important; } }

/* ---------- 24. SKIP LINK ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--executive-navy); padding: 10px 18px; z-index: 2000; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }

/* ---------- 25. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar .widget { flex: 1 1 280px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-h); right: 0; width: min(82%, 340px); height: calc(100vh - var(--header-h));
    background: var(--executive-navy); flex-direction: column; align-items: stretch; gap: 0;
    padding: 18px; overflow-y: auto; transform: translateX(100%); transition: transform 0.35s var(--ease);
    border-left: 1px solid var(--line-gold);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.04); border-top: none; padding: 0 0 8px 14px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: rgba(248,248,245,0.78); }
  .dropdown li a:hover { background: transparent; color: var(--gold-bright); }
  .has-dropdown > a::after { float: right; }
  .nav-cta { margin: 10px 0 0; display: block; text-align: center; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-row { grid-template-columns: 1fr; gap: 30px; }
  .split-row.reverse .split-img { order: 0; }
  .gala-card { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 78vh; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .hero-stat-number { font-size: 1.7rem; }
  .cta-bar-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .tab-nav { border-radius: 0; width: 100vw; margin-left: calc(50% - 50vw); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  /* Mobile: lighten heavy decorative sections */
  .logo-wall { display: none; }
}

/* ============================================================
   26. NETWORK-STANDARD FOOTER LEGAL + DISCLAIMER (§4)
   ============================================================ */
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; padding: 6px 0 4px; }
.footer-legal a { font-size: 0.78rem; color: rgba(248,248,245,0.6); }
.footer-legal a:hover { color: var(--gold-bright); }
.footer-disclaimer { margin: 14px auto 26px; padding-top: 18px; max-width: var(--container);
  border-top: 1px solid rgba(255,255,255,0.12); font-family: inherit; font-size: 0.72rem;
  line-height: 1.7; color: rgba(248,248,245,0.5); text-align: justify; }
.footer-disclaimer strong { color: rgba(248,248,245,0.72); }
.footer-disclaimer a { color: var(--gold-bright); text-decoration: underline; }
.footer-disclaimer a:hover { color: #fff; }
.footer-bottom .footer-bottom-left { text-align: center; width: 100%; margin-bottom: 6px; }

/* ============================================================
   27. TIMELINE (Schedule / Gala agenda)
   ============================================================ */
.timeline { max-width: 860px; margin: 0 auto; display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.tl-when { font-family: var(--font-display); font-weight: 700; color: var(--royal-blue); font-size: 1rem; }
.section-dark .tl-when { color: var(--gold-bright); }
.section-dark .tl-item { border-color: rgba(200,164,93,0.18); }
.tl-item h3 { font-size: 1.04rem; margin-bottom: 5px; }
.tl-item p { font-size: 0.9rem; color: var(--steel-grey); }
.section-dark .tl-item p { color: rgba(248,248,245,0.74); }
@media (max-width: 560px) { .tl-item { grid-template-columns: 1fr; gap: 6px; } }

/* Highlight / merit callout box */
.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--executive-navy); color: #fff;
  border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 24px; margin: 0 0 26px; }
.callout .co-ic { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.callout strong { color: var(--gold-bright); }
.callout p { color: rgba(248,248,245,0.82); font-size: 0.92rem; margin: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: 50px;
  background: rgba(200,164,93,0.12); border: 1px solid var(--line-gold); font-size: 0.82rem; font-weight: 600; color: var(--gold-deep); }
.section-dark .badge { color: var(--gold-bright); }
/* icon + heading on one line (fee cards) */
.icon-card.row .ic-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.icon-card.row .ic-head .ic { margin-bottom: 0; }
.icon-card.row .ic-head h3 { margin: 0; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 9px; color: var(--charcoal); }
.tick-list li::before { content: '✓'; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }
.tick-list li.no::before { content: '✗'; color: #c0392b; }
.note-red { border-left: 4px solid #c0392b; background: #fcf3f2; border-radius: var(--radius-sm); padding: 14px 18px; margin: 14px 0; font-size: 0.9rem; color: var(--charcoal); }
.note-soft { border-left: 4px solid var(--gold); background: #fbf7ee; border-radius: var(--radius-sm); padding: 14px 18px; margin: 14px 0; font-size: 0.9rem; color: var(--charcoal); }

/* ============================================================
   28. FEE COMPARISON TABLE + WINNER PACKAGE BOXES
   ============================================================ */
.fee-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin: 8px 0 22px; -webkit-overflow-scrolling: touch; }
.fee-table { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; font-size: 0.86rem; }
.fee-table th, .fee-table td { padding: 13px 14px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fee-table thead th { background: var(--executive-navy); color: #fff; font-family: var(--font-body); font-weight: 600; white-space: nowrap; }
.fee-table thead th.feat { background: var(--gold-deep); color: #fff; }
.fee-table td:first-child, .fee-table th:first-child { text-align: left; font-weight: 600; color: var(--executive-navy); background: #faf9f6; min-width: 200px; position: sticky; left: 0; }
.fee-table tbody tr:nth-child(even) td { background: #faf9f6; }
.fee-table tbody tr:nth-child(even) td:first-child { background: #f3f1ea; }
.fee-table td.feat { background: #fbf7ee; }
.fee-table .price-row td { font-weight: 700; color: var(--executive-navy); font-size: 0.98rem; }
.fee-table .yes { color: #1d7a46; font-weight: 700; }
.fee-table .no { color: var(--steel-grey); }
.wp-boxes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1180px) { .wp-boxes { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .wp-boxes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .wp-boxes { grid-template-columns: 1fr; } }
.wp-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.wp-box:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wp-box.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-gold); }
.wp-box .ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; white-space: nowrap; }
.wp-box .wp-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--executive-navy); }
.wp-box .wp-was { font-size: 0.84rem; color: var(--steel-grey); text-decoration: line-through; margin-top: 6px; }
.wp-box .wp-now { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--gold-deep); line-height: 1; margin: 2px 0 6px; }
.wp-box .wp-list { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 14px; flex: 1; }
.wp-box .wp-list li { display: flex; gap: 9px; font-size: 0.84rem; color: var(--charcoal); margin-bottom: 9px; line-height: 1.5; }
.wp-box .wp-list li::before { content: '✓'; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }
.wp-box .btn { margin-top: 18px; width: 100%; }

/* ============================================================
   29. NOMINEES / WINNERS DIRECTORY
   ============================================================ */
.dir-noselect { -webkit-user-select: none; -moz-user-select: none; user-select: none; }
.dir-noselect input, .dir-noselect select, .dir-noselect textarea { -webkit-user-select: text; user-select: text; }
.dir-filters { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.dir-field { display: flex; flex-direction: column; gap: 6px; }
.dir-field label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel-grey); }
.dir-field select, .dir-field input { font-family: inherit; font-size: 0.9rem; padding: 10px 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--executive-navy); min-width: 170px; }
.dir-field.search input { min-width: 230px; }
.dir-clear { margin-left: auto; padding: 11px 20px; border-radius: var(--radius-sm); background: var(--executive-navy); color: #fff; font-weight: 600; font-size: 0.86rem; align-self: flex-end; }
.dir-clear:hover { background: var(--royal-blue); }
.dir-count { font-size: 0.9rem; color: var(--steel-grey); margin-bottom: 14px; }
.dir-count b { color: var(--executive-navy); }
.dir-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.dir-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 820px; }
.dir-table thead th { text-align: left; background: var(--executive-navy); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 14px 16px; white-space: nowrap; }
.dir-table tbody td { padding: 13px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.dir-table tbody tr.row-main:hover { background: var(--pearl-white); }
.dir-photo-cell { width: 56px; }
.dir-photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid var(--line-gold); }
.dir-ph-fallback { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); font-size: 1rem; }
.dir-name { font-family: var(--font-display); font-weight: 700; color: var(--executive-navy); }
.dir-sub { font-size: 0.78rem; color: var(--steel-grey); }
.dir-region { font-size: 0.76rem; color: var(--steel-grey); }
.dir-badge { display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 4px 11px; border-radius: 50px; background: rgba(11,22,61,0.07); color: var(--executive-navy); white-space: nowrap; }
.dir-badge.gold { background: rgba(200,164,93,0.18); color: var(--gold-deep); white-space: normal; }
.dir-cat { max-width: 250px; }
.dir-toggle { cursor: pointer; background: var(--executive-navy); color: #fff; border-radius: var(--radius-sm); padding: 7px 14px; font-size: 0.78rem; font-weight: 600; white-space: nowrap; }
.dir-toggle:hover { background: var(--gold-deep); }
.dir-detail { display: none; }
.dir-detail.open { display: table-row; }
.dir-detail td { background: var(--pearl-white); padding: 0; }
.dir-detail-inner { padding: 20px 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px 28px; border-top: 2px solid var(--line-gold); }
.dir-kv .k { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--steel-grey); font-weight: 700; margin-bottom: 2px; }
.dir-kv .v { font-size: 0.88rem; color: var(--executive-navy); word-break: break-word; }
.dir-links { display: flex; gap: 8px; flex-wrap: wrap; }
.dir-links a { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--executive-navy); background: #fff; }
.dir-links a:hover { background: var(--executive-navy); color: #fff; }
.dir-links svg { width: 15px; height: 15px; fill: currentColor; }
.dir-empty { padding: 44px 20px; text-align: center; color: var(--steel-grey); }
.dir-pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; align-items: center; margin-top: 26px; }
.pg-btn { min-width: 38px; height: 38px; padding: 0 13px; border: 1px solid var(--line); background: #fff; color: var(--executive-navy); border-radius: var(--radius-sm); font-weight: 600; font-size: 0.85rem; }
.pg-btn:hover:not(:disabled):not(.active) { border-color: var(--gold); color: var(--gold-deep); }
.pg-btn.active { background: var(--executive-navy); color: #fff; border-color: var(--executive-navy); }
.pg-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.pg-gap { padding: 0 4px; color: var(--steel-grey); }
@media (max-width: 600px) { .dir-field, .dir-field select, .dir-field input, .dir-field.search input, .dir-clear { width: 100%; min-width: 0; margin-left: 0; } }

/* ============================================================
   30. VERTICAL LEFT-TAB FAQ (faq.html §13)
   ============================================================ */
.faq-vert { display: grid; grid-template-columns: 280px 1fr; gap: 34px; align-items: start; }
.faq-vnav { position: sticky; top: calc(var(--header-h) + 18px); display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-sm); }
.faq-vtab { text-align: left; padding: 14px 18px; border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 700; font-size: 0.96rem; color: var(--executive-navy); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-vtab small { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; color: var(--steel-grey); }
.faq-vtab:hover { background: var(--pearl-white); }
.faq-vtab.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #fff; }
.faq-vtab.active small { color: rgba(255,255,255,0.85); }
.faq-vpanel { display: none; }
.faq-vpanel.active { display: block; animation: fadeUp 0.5s var(--ease); }
.faq-vpanel > h2 { font-size: 1.5rem; margin-bottom: 18px; }
.faq-vert .faq-list { max-width: none; margin: 0; }
@media (max-width: 860px) {
  .faq-vert { grid-template-columns: 1fr; }
  .faq-vnav { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-vtab { flex: 1 1 auto; }
}

/* ============================================================
   31. READABILITY FIX — white chips on dark sections need dark text
   (Eligibility / "Who Can Participate" on regional pages, etc.)
   ============================================================ */
.section-dark .chip { background: #fff; color: var(--executive-navy); border-color: var(--line-gold); }
.section-dark .chip .dot { background: var(--gold-deep); }
