/*
Theme Name: GMEISS 2027
Theme URI: https://gmeiss.org
Author: GMEISS Organizing Committee
Description: Custom theme for the 4th Global Conference on Management, Engineering and Intelligent Sustainable Systems (GMEISS 2027) — Circular Intelligence for Adaptive and Resilient Futures.
Version: 1.0.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: gmeiss2027
*/

:root {
  --navy: #0a1628;
  --navy-2: #101f38;
  --navy-3: #16294a;
  --blue: #00477d;
  --blue-2: #003f76;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --cyan: #22d3ee;
  --gold: #c3a15f;
  --gold-bright: #f59e0b;
  --ink: #1e293b;
  --muted: #5b6b81;
  --line: #e2e8f0;
  --bg: #f7f9fc;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(10, 22, 40, .04), 0 8px 24px rgba(10, 22, 40, .07);
  --shadow-lg: 0 4px 12px rgba(10, 22, 40, .08), 0 20px 48px rgba(10, 22, 40, .14);
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal); }

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.25; color: var(--navy); font-weight: 700; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 860px; margin-left: auto; margin-right: auto; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 28px; max-width: 1300px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 38px; width: auto; display: block; filter: drop-shadow(0 1px 4px rgba(0,0,0,.4)); }
.brand__text { line-height: 1.15; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.18); }
.brand__title { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 16.5px; letter-spacing: .5px; }
.brand__title em { font-style: normal; color: var(--gold); }
.brand__tag { font-size: 10.5px; color: #93a5bd; letter-spacing: .12em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 1px; list-style: none; align-items: center; flex-wrap: nowrap; }
.main-nav a {
  display: block; padding: 8px 10px; border-radius: 8px; white-space: nowrap;
  color: #cbd6e5; font-size: 13px; font-weight: 500;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav li.current-menu-item > a, .main-nav li.current_page_item > a { color: #fff; background: rgba(20,184,166,.22); }
.main-nav .nav-cta a {
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 50%, var(--teal) 100%);
  background-size: 200% auto; background-position: 0% center;
  color: #06222e !important; font-weight: 700; padding: 9px 16px; border-radius: 999px;
  margin-left: 6px; white-space: nowrap;
  transition: background-position .35s ease, box-shadow .3s ease, transform .2s ease;
}
.main-nav .nav-cta a:hover {
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 50%, var(--teal) 100%);
  background-size: 200% auto; background-position: 100% center;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(34,211,238,.4);
}

/* Dropdown (Archive) */
.main-nav li { position: relative; }
.main-nav .caret { font-size: 10px; opacity: .7; margin-left: 3px; }
.main-nav .sub-menu {
  display: block; list-style: none; min-width: 210px;
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 50;
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 8px; box-shadow: 0 18px 40px rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.main-nav .sub-menu::before {
  content: ""; position: absolute; top: -9px; left: 0; right: 0; height: 10px;
}
.main-nav .sub-menu a { display: block; padding: 9px 14px; border-radius: 8px; white-space: nowrap; }
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu,
.main-nav li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }

@media (max-width: 1200px) {
  .main-nav .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border: none;
    background: rgba(255,255,255,.04); margin: 2px 0 4px 14px; padding: 4px;
  }
  .main-nav li.is-open > .sub-menu { display: block; }
}

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px; padding: 8px 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0; border-radius: 2px; transition: .25s; }

@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 20px 20px; }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 12px 14px; font-size: 16px; }
}

/* ============ Hero ============ */
:root {
  --logo-navy: #183060;
  --logo-navy-deep: #0d1b36;
  --logo-gold: #c0a860;
  --logo-gold-light: #d8c078;
  --logo-gold-pale: #ecdfae;
}
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1100px 600px at 78% -10%, #24457e 0%, transparent 55%),
              radial-gradient(900px 500px at -10% 110%, rgba(192,168,96,.14) 0%, transparent 55%),
              linear-gradient(160deg, var(--logo-navy-deep) 0%, var(--logo-navy) 60%, #101f3e 100%);
}
.hero--photo::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center 65%;
  opacity: .3;
}
.hero--photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 460px at 82% 8%, rgba(192,168,96,.2) 0%, transparent 60%),
              linear-gradient(175deg, rgba(13,27,54,.62) 0%, rgba(24,48,96,.52) 45%, rgba(10,18,38,.94) 100%);
}
.hero--photo .container { position: relative; z-index: 2; }
.hero--photo .hero__rings { z-index: 1; opacity: .35; }
.hero__rings { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.hero__rings i {
  position: absolute; border-radius: 50%; border: 1px solid rgba(192, 168, 96, .35);
  animation: ringPulse 9s ease-in-out infinite;
}
.hero__rings i:nth-child(1) { width: 620px; height: 620px; right: -180px; top: -220px; }
.hero__rings i:nth-child(2) { width: 460px; height: 460px; right: -100px; top: -140px; animation-delay: 1.4s; border-color: rgba(120,150,210,.35); }
.hero__rings i:nth-child(3) { width: 320px; height: 320px; right: -30px; top: -70px; animation-delay: 2.8s; border-color: rgba(216,192,120,.4); }
.hero__rings i:nth-child(4) { width: 500px; height: 500px; left: -220px; bottom: -260px; animation-delay: 2s; }
.hero__rings i:nth-child(5) { width: 340px; height: 340px; left: -140px; bottom: -180px; animation-delay: 3.6s; border-color: rgba(120,150,210,.35); }
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity:.65 } 50% { transform: scale(1.06); opacity: 1 } }

.hero__inner { position: relative; padding: 124px 0 140px; text-align: center; max-width: 980px; margin: 0 auto; }
.hero__badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 34px; padding: 2px 17px 0 calc(17px + .08em); box-sizing: border-box;
  border: 1px solid rgba(216,192,120,.45); background: rgba(192,168,96,.12);
  color: var(--logo-gold-pale); border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  line-height: 1;
}
.hero__badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--logo-gold-light); box-shadow: 0 0 10px var(--logo-gold-light);
}
.hero__badge > span, .hero__badge { text-box-trim: trim-both; text-box-edge: cap alphabetic; }
.hero h1 {
  color: #fff; font-size: clamp(28px, 3.9vw, 44px); font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.32;
  margin: 44px 0 28px;
  text-shadow: 0 2px 20px rgba(6, 12, 26, .55), 0 1px 3px rgba(6, 12, 26, .4);
}
.hero h1 .grad {
  background: linear-gradient(92deg, var(--logo-gold-pale), var(--logo-gold-light) 45%, var(--logo-gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(6, 12, 26, .5));
}
.hero__conf {
  color: #cfdbeb; font-size: clamp(15px, 1.8vw, 17.5px); font-weight: 500; max-width: 700px; margin: 0 auto;
  text-shadow: 0 1px 8px rgba(6, 12, 26, .5);
}
.hero__theme {
  margin: 34px auto 10px; font-family: var(--font-head);
  font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; color: #e8eef7;
}
.hero__sub { color: var(--logo-gold-light); font-size: clamp(14px, 1.7vw, 16.5px); font-style: italic; margin-top: 20px; text-shadow: 0 1px 6px rgba(6,12,26,.5); }
.hero__actions { margin-top: 72px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 28px; height: 46px; line-height: 1; border-radius: 999px;
  font-weight: 700; font-size: 14.5px; font-family: var(--font-head);
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--cyan)); color: #06222e;
  box-shadow: 0 10px 30px rgba(34, 211, 238, .35);
}
.btn--primary:hover {
  filter: brightness(1.12); color: #06222e;
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(34,211,238,.5), 0 0 0 3px rgba(34,211,238,.18);
}
.btn--ghost { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.09); color: #fff; }
.btn--gold { background: linear-gradient(135deg, var(--logo-gold-light), var(--logo-gold)); color: #1c2a4a; box-shadow: 0 10px 30px rgba(192,168,96,.35); }
.btn--gold:hover { filter: brightness(1.07); color: #1c2a4a; }

/* Stats strip */
.stats { position: relative; margin-top: 74px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(6px);
}
.stat { background: rgba(10,22,40,.55); padding: 22px 12px; text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: 26px; color: var(--cyan); font-weight: 800; }
.stat span { font-size: 13px; color: #9fb0c6; letter-spacing: .04em; }
@media (max-width: 760px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Info strip (WHEN / WHERE / THEME) ============ */
.info-strip { background: var(--bg); padding: 0 0 26px; }
.info-strip__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  transform: translateY(-46px); margin-bottom: -18px;
}
@media (max-width: 860px) { .info-strip__grid { grid-template-columns: 1fr; transform: translateY(-30px); } }
.info-card {
  background: #fff; border-radius: var(--radius); padding: 26px 30px;
  border: 1px solid var(--line); border-top: 4px solid var(--blue);
  box-shadow: var(--shadow-lg); text-align: center;
}
.info-card:nth-child(2) { border-top-color: var(--teal); }
.info-card:nth-child(3) { border-top-color: var(--gold); }
.info-card__label {
  display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.info-card:nth-child(2) .info-card__label { color: var(--teal-dark); }
.info-card:nth-child(3) .info-card__label { color: #a08040; }
.info-card__value {
  font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.35;
}

/* Stats on light background (under info cards) */
.stats--flat { margin-top: 10px; }
.stats--flat .stats__grid { background: var(--line); border-color: var(--line); }
.stats--flat .stat { background: #fff; }
.stats--flat .stat b { color: var(--blue); }
.stats--flat .stat span { color: var(--muted); }

/* ============ Sections ============ */
.section { padding: 84px 0; }
.section--alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--dark {
  background: radial-gradient(900px 500px at 85% 0%, #16324f 0%, transparent 55%),
              linear-gradient(160deg, var(--navy), var(--navy-2));
  color: #c6d3e4;
}
.section--dark h2, .section--dark h3 { color: #fff; }

.kicker {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; padding: 3px 14px 0 calc(14px + .16em); box-sizing: border-box;
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal-dark);
  border-radius: 999px; background: rgba(20,184,166,.1);
  margin-bottom: 16px; line-height: 1;
  text-box-trim: trim-both; text-box-edge: cap alphabetic;
}
.section--dark .kicker { color: var(--cyan); background: rgba(34,211,238,.1); }
.section-head { max-width: 780px; margin-bottom: 46px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(25px, 3.2vw, 33px); letter-spacing: -.01em; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17.5px; }
.section--dark .section-head p { color: #a9b9cf; }

.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose--center { text-align: center; }

/* Definition callout */
.definition {
  position: relative; border-radius: var(--radius); padding: 40px 44px;
  background: linear-gradient(135deg, rgba(20,184,166,.09), rgba(34,211,238,.07));
  border: 1px solid rgba(20,184,166,.3);
}
.definition::before {
  content: "“"; position: absolute; top: -6px; left: 22px;
  font-family: Georgia, serif; font-size: 90px; color: var(--teal); opacity: .35; line-height: 1;
}
.definition blockquote { font-family: var(--font-head); font-size: clamp(18px, 2.4vw, 23px); font-weight: 600; color: var(--navy); font-style: italic; }
.definition figcaption { margin-top: 14px; color: var(--muted); font-size: 14.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

/* ============ Cards ============ */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(20,184,166,.45); }

.track-card { display: flex; flex-direction: column; }
.track-card__num {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: grid; place-items: center; margin-bottom: 18px;
  font-family: var(--font-head); font-weight: 800; font-size: 19px; color: #fff;
  background: conic-gradient(from 210deg, var(--teal), var(--cyan));
  box-shadow: 0 6px 18px rgba(20,184,166,.35);
}
.track-card:nth-child(3n+2) .track-card__num { background: conic-gradient(from 210deg, #6366f1, var(--cyan)); box-shadow: 0 6px 18px rgba(99,102,241,.3); }
.track-card:nth-child(3n) .track-card__num { background: conic-gradient(from 210deg, var(--gold), #f97316); box-shadow: 0 6px 18px rgba(245,158,11,.3); }
.track-card h3 { font-size: 18px; margin-bottom: 10px; }
.track-card p { color: var(--muted); font-size: 15px; flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  font-size: 12.5px; font-weight: 600; color: var(--teal-dark);
  background: rgba(20,184,166,.09); border: 1px solid rgba(20,184,166,.25);
  border-radius: 999px; padding: 4px 12px;
}

/* Why GMEISS */
.why-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  padding: 26px 28px; overflow: hidden;
}
.why-card__head { display: flex; align-items: center; gap: 15px; padding-right: 44px; }
.why-card__icon {
  flex: none; width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center; font-size: 23px;
  background: linear-gradient(135deg, rgba(20,184,166,.16), rgba(34,211,238,.16));
  border: 1px solid rgba(20,184,166,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.why-card h3 { font-size: 17px; }
.why-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Dark-section variant: glassy cards */
.section--dark .why-card {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.section--dark .why-card:hover {
  background: rgba(255,255,255,.17);
  border-color: rgba(34,211,238,.5);
  box-shadow: 0 14px 34px rgba(0,0,0,.3);
}
.section--dark .why-card h3 { color: #fff; }
.section--dark .why-card p { color: #c9d5e4; }
.section--dark .why-card__icon { background: rgba(34,211,238,.14); border-color: rgba(34,211,238,.4); }

/* Benefit list */
.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; font-size: 13px; font-weight: 800;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}
.section--dark .check-list li { color: #c6d3e4; }

/* Numbered policy lists */
.num-list { counter-reset: item; list-style: none; display: grid; gap: 16px; }
.num-list > li { position: relative; padding-left: 52px; counter-increment: item; }
.num-list > li::before {
  content: counter(item); position: absolute; left: 0; top: -2px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--teal-dark);
  background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.3);
}

/* ============ Page hero (inner pages) ============ */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: 72px 0 64px;
  background: radial-gradient(800px 420px at 80% -20%, #1c3a63 0%, transparent 55%),
              linear-gradient(160deg, var(--navy), var(--navy-2));
}
.page-hero .kicker { color: var(--cyan); background: rgba(34,211,238,.12); }
.page-hero h1 { color: #fff; font-size: clamp(28px, 3.7vw, 40px); letter-spacing: -.01em; margin-top: 6px; }
.page-hero p { color: #a9b9cf; max-width: 720px; margin: 16px auto 0; font-size: 17px; }

/* Content blocks on inner pages */
.content-block { margin-bottom: 54px; }
.content-block:last-child { margin-bottom: 0; }
.content-block h2 {
  font-size: 23px; margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid rgba(20,184,166,.35);
}
.content-block h3 { font-size: 19px; margin: 26px 0 10px; }
.content-block p { margin-bottom: 14px; color: #37475d; }
.content-block ul:not(.check-list):not(.num-list) { padding-left: 24px; margin: 10px 0 16px; }
.content-block ul:not(.check-list):not(.num-list) li { margin-bottom: 8px; color: #37475d; }

.notice {
  border-left: 4px solid var(--gold); background: rgba(245,158,11,.07);
  border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 22px 0;
}
.notice--teal { border-left-color: var(--teal); background: rgba(20,184,166,.07); }
.notice p { margin: 0; }

/* ============ FAQ accordion ============ */
.faq-group { margin-bottom: 40px; }
.faq-group h2 { font-size: 22px; margin-bottom: 16px; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px; font-weight: 600; font-family: var(--font-head);
  font-size: 16px; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-size: 18px; font-weight: 700;
  color: var(--teal-dark); background: rgba(20,184,166,.1); transition: transform .25s;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq[open] summary { color: var(--teal-dark); }
.faq__body { padding: 0 22px 20px; color: #37475d; }

/* ============ Committees ============ */
.person-card { text-align: center; padding: 30px 22px; }
.person-card__avatar {
  width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 24px; color: #fff;
  background: linear-gradient(135deg, var(--navy-3), var(--teal-dark));
  box-shadow: 0 0 0 4px rgba(20,184,166,.15);
}
.person-card h3 { font-size: 17px; margin-bottom: 5px; }
.person-card .role { color: var(--teal-dark); font-size: 13.5px; font-weight: 600; }
.person-card .affil { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

.committee-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .committee-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .committee-list { grid-template-columns: 1fr; } }
.member {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; box-shadow: var(--shadow);
}
.member b { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--navy); }
.member span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 3px; }

/* ============ CTA band ============ */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  padding: 76px 24px;
  background: radial-gradient(700px 400px at 50% -30%, rgba(34,211,238,.25), transparent 60%),
              linear-gradient(150deg, var(--navy), var(--navy-3));
}
.cta-band h2 { color: #fff; font-size: clamp(23px, 3.2vw, 31px); margin-bottom: 14px; }
.cta-band p { color: #a9b9cf; max-width: 640px; margin: 0 auto 34px; }

/* ============ Footer ============ */
.site-footer { background: var(--navy); color: #93a5bd; padding: 60px 0 0; }
.site-footer a { color: #c1cede; }
.site-footer a:hover { color: var(--cyan); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; font-size: 14.5px; }
.footer-col p { font-size: 14.5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__rings i { animation: none; }
}

/* Default page content (admin-created pages) */
.entry-content { max-width: 860px; margin: 0 auto; }
.entry-content h2 { margin: 32px 0 14px; }
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { padding-left: 26px; margin-bottom: 16px; }
