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

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

:root {
  --vd: #6B21E8;
  --vk: #7634bf;
  --vm: #9B59F5;
  --vs: #C79EF9;
  --vg: #EDE8FE;
  --vo: #FAF7FC;
  --banner: #F4EEF9;
  --gold: #E8A94B;
  --ink: #1a1028;
  --inm: #3d2e5a;
  --imu: #6b5f82;
  --ifa: #9b93a8;
  --wht: #ffffff;
  --bdr: rgba(107,33,232,0.15);
  --shd: 0 2px 20px rgba(107,33,232,0.1);
  --shd-lg: 0 14px 34px rgba(107,33,232,0.16);
  --grad: linear-gradient(135deg, var(--vd) 0%, var(--vm) 100%);
  --rad: 12px;
  --ease: cubic-bezier(.22,.75,.32,1);
}

html { scroll-behavior: smooth; scrollbar-gutter: stable; font-size: 18px; }
body { font-family: 'Inter', sans-serif; background: var(--wht); color: var(--ink); font-size: 18px; line-height: 1.7; overflow-x: hidden; }

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.4rem,5vw,3.8rem); }
h2 { font-size: clamp(1.7rem,3vw,2.6rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--imu); line-height: 1.8; }
a  { color: var(--vd); text-decoration: none; transition: color .2s; }
a:hover { color: var(--vk); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT ── */
.wrap    { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: 820px;  margin: 0 auto; padding: 0 2rem; }
.sec     { padding: 5.5rem 0; }
.sec-sm  { padding: 3rem 0; }
.sec-alt { background: var(--vo); position: relative; overflow: hidden; }
.sec-alt .wrap { position: relative; z-index: 1; }
.sec-dark{ background: var(--ink); }

/* ── NAV ── */
#nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
  transition: box-shadow .3s var(--ease);
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(107,33,232,.08); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-mark:has(svg) { background: var(--grad); }
.nav-mark { box-shadow: 0 2px 8px rgba(107,33,232,.18); }
.nav-mark svg { width: 24px; height: 24px; }
.nav-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-name { font-family: 'Playfair Display',serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { position: relative; font-size: 15px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--imu); text-decoration: none; transition: color .2s; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 2px; background: var(--vd); transform: scaleX(0); transition: transform .25s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--vd); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.nav-cta::after { display: none; }
.nav-links .nav-cta { background: var(--grad); color: #fff !important; padding: 9px 22px; border-radius: 6px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.nav-links .nav-cta:hover { box-shadow: 0 6px 16px rgba(107,33,232,.28); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 6px; font-family: 'Inter',sans-serif; font-size: 17px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease); line-height: 1; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(107,33,232,.3); }
.btn-outline { background: transparent; color: var(--vd); border: 2px solid var(--vd); }
.btn-outline:hover { background: var(--vg); color: var(--vd); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--vd); }
.btn-white:hover { background: var(--vg); color: var(--vd); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.btn-sm { padding: 9px 20px; font-size: 15px; }
.btn-lg { padding: 16px 38px; font-size: 18px; }

/* ── SECTION LABEL ── */
.label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--vd); margin-bottom: .5rem; }

/* ── PILLS ── */
.pill { display: inline-block; font-size: 15px; padding: 5px 14px; border-radius: 20px; font-family: 'Inter',sans-serif; line-height: 1.4; }
.pill-dark  { background: var(--vk); color: #fff; }
.pill-light { background: var(--vg); color: var(--inm); border: 1px solid rgba(107,33,232,.2); }
.pill-stage { background: var(--vg); color: var(--vd); font-size: 13px; padding: 3px 11px; }

/* ── HERO ── */
.hero {
  background: var(--banner); position: relative;
  overflow: hidden; padding: 8rem 0 6rem;
  min-height: 580px; display: flex; align-items: center;
}
.hero-inner { position: relative; z-index: 2; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 1.5rem;
  font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--vd); background: var(--vg); border: 1px solid rgba(107,33,232,.3);
  padding: 6px 16px 6px 12px; border-radius: 20px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero h1 { color: var(--ink); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--vd); }
.hero p { font-size: 1.08rem; max-width: 520px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-map {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: .9; pointer-events: none; object-fit: cover; object-position: center center; z-index: 1;
}

/* ── PAGE HEADER ── */
.page-hdr {
  background: var(--banner);
  padding: 5rem 0 4rem; border-bottom: 1px solid var(--bdr); position: relative; overflow: hidden;
}
.page-hdr .wrap, .page-hdr .wrap-sm { position: relative; z-index: 1; }
.page-hdr h1 { margin-bottom: .75rem; }
.page-hdr p { max-width: 720px; font-size: 1.05rem; }

/* ── CARDS ── */
.card { background: #fff; border: 1px solid var(--bdr); border-radius: var(--rad); padding: 1.75rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shd); border-color: rgba(107,33,232,.28); }
.card-alt { background: var(--vo); border-color: transparent; }
.card-purple { background: var(--grad); color: #fff; }
.card-purple p { color: rgba(255,255,255,.75); }
.card-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--vg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0; }
.card-icon svg { width: 20px; height: 20px; stroke: var(--vd); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── STATS ── */
.stat-n { font-family: 'Playfair Display',serif; font-size: 3rem; color: var(--vd); line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 15px; color: var(--ifa); font-family: 'Inter',sans-serif; }

/* ── CONFERENCE ── */
.conf-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.conf-card { border-radius: var(--rad); padding: 2.5rem; }
.conf-past { background: #fff; border: 1px solid var(--bdr); }
.conf-next { background: var(--grad); box-shadow: 0 16px 40px rgba(107,33,232,.28); }
.conf-next p { color: rgba(255,255,255,.75); }
.conf-year { font-family: 'Playfair Display',serif; font-size: 4rem; line-height: 1; margin-bottom: .5rem; }
.conf-past .conf-year { color: var(--vd); }
.conf-next .conf-year { color: #fff; }
.conf-tag { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: .9rem; }
.conf-past .conf-tag { background: var(--vg); color: var(--vd); }
.conf-next .conf-tag { background: rgba(255,255,255,.2); color: var(--vs); }
.conf-hr { height: 1px; margin: 1.1rem 0; }
.conf-past .conf-hr { background: var(--bdr); }
.conf-next .conf-hr { background: rgba(255,255,255,.2); }
.conf-stats { display: flex; gap: 2rem; margin-bottom: 1rem; }
.conf-sn { font-family: 'Playfair Display',serif; font-size: 2.4rem; line-height: 1; }
.conf-past .conf-sn { color: var(--vd); }
.conf-next .conf-sn { color: #fff; }
.conf-sl { font-size: 15px; color: var(--ifa); margin-top: 2px; font-family: 'Inter',sans-serif; }
.conf-next .conf-sl { color: rgba(255,255,255,.55); }

/* ── COMMITTEE ── */
.committee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.cmt-card { background: #fff; border: 1px solid var(--bdr); border-radius: var(--rad); padding: 1.4rem 1.1rem; text-align: center; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.cmt-card:hover { transform: translateY(-3px); box-shadow: var(--shd); }
.cmt-av { width: 60px; height: 60px; border-radius: 50%; background: var(--vg); border: 1.5px solid rgba(107,33,232,.25); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display',serif; font-size: 20px; color: var(--vd); margin: 0 auto .75rem; }
.cmt-name { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 3px; line-height: 1.3; }
.cmt-name a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(107,33,232,.25); }
.cmt-name a:hover { color: var(--vd); }
.cmt-role { font-size: 15px; color: var(--vd); margin: 0; font-family: 'Inter',sans-serif; line-height: 1.4; }

/* ── NEWS ── */
.news-card { border-left: 3px solid var(--vd); padding: 1.25rem 1.5rem; background: #fff; border-radius: 0 10px 10px 0; box-shadow: 0 1px 8px rgba(107,33,232,.07); margin-bottom: 1.1rem; }
.news-date { font-size: 15px; color: var(--ifa); margin-bottom: 4px; font-family: 'Inter',sans-serif; }
.news-title { font-family: 'Playfair Display',serif; font-size: 1.5rem; color: var(--ink); margin-bottom: 5px; }
.news-body { font-size: 17px; color: var(--imu); line-height: 1.75; margin: 0; }

/* ── DIRECTORY ── */
.dir-ctrl { background: #fff; border: 1px solid var(--bdr); border-radius: 10px; padding: 1.4rem 1.6rem; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.srch-wrap { position: relative; }
.srch-wrap svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--ifa); fill: none; stroke-width: 2; stroke-linecap: round; pointer-events: none; }
.srch-input { width: 100%; padding: 12px 13px 12px 40px; border: 1px solid rgba(107,33,232,.2); border-radius: 6px; font-family: 'Inter',sans-serif; font-size: 17px; color: var(--ink); background: #fff; outline: none; transition: border-color .2s; }
.srch-input:focus { border-color: var(--vd); box-shadow: 0 0 0 3px rgba(107,33,232,.08); }
.srch-input::placeholder { color: var(--ifa); }
.flt-row { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.flt-lbl { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ifa); min-width: 88px; flex-shrink: 0; font-family: 'Inter',sans-serif; }
.flt-btn { font-size: 15px; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(107,33,232,.22); background: #fff; color: var(--imu); cursor: pointer; transition: all .15s; font-family: 'Inter',sans-serif; }
.flt-btn:hover { border-color: var(--vd); color: var(--vd); }
.flt-btn.on { background: var(--vd); color: #fff; border-color: var(--vd); }
.flt-sel { padding: 8px 30px 8px 12px; border: 1px solid rgba(107,33,232,.22); border-radius: 6px; font-family: 'Inter',sans-serif; font-size: 16px; color: var(--imu); background: #fff; outline: none; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b5f82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.flt-sel:focus { border-color: var(--vd); }
.dir-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; flex-wrap: wrap; gap: .5rem; }
.dir-count { font-size: 15px; color: var(--ifa); font-family: 'Inter',sans-serif; }
.clr-btn { font-size: 15px; color: var(--vd); background: none; border: none; cursor: pointer; font-family: 'Inter',sans-serif; text-decoration: underline; }

.mem-card { background: var(--vo); border: 1px solid rgba(107,33,232,.12); border-radius: var(--rad); padding: 1.5rem 1.75rem; margin-bottom: .9rem; }
.mem-row1 { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: .9rem; }
.mem-av { width: 52px; height: 52px; border-radius: 50%; background: var(--vg); border: 1.5px solid rgba(107,33,232,.22); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display',serif; font-size: 19px; color: var(--vd); flex-shrink: 0; }
.mem-info { flex: 1; min-width: 0; }
.mem-name { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 3px; line-height: 1.3; font-family: 'Inter',sans-serif; }
.mem-name a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(107,33,232,.3); }
.mem-name a:hover { color: var(--vd); }
.mem-org { font-size: 16px; color: var(--vm); font-weight: 500; margin: 0; font-family: 'Inter',sans-serif; }
.mem-cty { font-size: 15px; color: var(--imu); margin: 2px 0 0; font-family: 'Inter',sans-serif; }
.mem-email a { font-size: 15px; color: var(--imu); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; border-bottom: 1px solid rgba(107,33,232,.25); font-family: 'Inter',sans-serif; }
.mem-email a:hover { color: var(--vd); }
.mem-email svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mem-meta { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.mem-web a { font-size: 15px; color: var(--vm); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; border-bottom: 1px solid rgba(107,33,232,.25); font-family: 'Inter',sans-serif; }
.mem-web a:hover { color: var(--vd); }
.mem-web svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mem-hr { border: none; border-top: 1px solid rgba(107,33,232,.1); margin: 0 0 .8rem; }
.mem-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.mem-tag { font-size: 13px; padding: 3px 10px; border-radius: 20px; background: #fff; border: 1px solid rgba(107,33,232,.18); color: var(--imu); font-family: 'Inter',sans-serif; }

/* mobile-only meta inside card-info */
.mem-mob { display: none; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 8px; }
@media (max-width: 700px) {
  .mem-meta { display: none; }
  .mem-mob { display: flex; }
  .mem-card { padding: 1.1rem; }
  .mem-tags { padding-left: 0; }
}

/* ── PAGINATION ── */
.pag { display: flex; justify-content: center; gap: 5px; margin-top: 2.5rem; flex-wrap: wrap; }
.pg-btn { min-width: 38px; height: 38px; padding: 0 8px; border-radius: 6px; border: 1px solid rgba(107,33,232,.2); background: #fff; color: var(--imu); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-family: 'Inter',sans-serif; transition: all .15s; }
.pg-btn:hover:not(:disabled) { border-color: var(--vd); color: var(--vd); background: var(--vo); }
.pg-btn.on { background: var(--vd) !important; color: #fff !important; border-color: var(--vd) !important; }
.pg-btn:disabled { opacity: .3; cursor: not-allowed; }
.pg-dots { padding: 0 4px; color: var(--ifa); font-size: 16px; line-height: 38px; }

/* ── JOIN PAGE INFO PANEL ── */
.join-info .card-icon { background: var(--grad); }
.join-info .card-icon svg { stroke: #fff; }

/* ── FORM ── */
.form-wrap { background: var(--vo); border: 1px solid var(--bdr); border-radius: 16px; padding: 2.75rem; box-shadow: var(--shd); align-self: start; height: fit-content; }
.fg { margin-bottom: 1.25rem; }
.fg label { display: block; font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.fg label .req { color: var(--vd); margin-left: 2px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(107,33,232,.25); border-radius: 7px;
  font-family: 'Inter',sans-serif; font-size: 17px; color: var(--ink);
  background: #fff; outline: none; transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--vd); box-shadow: 0 0 0 3px rgba(107,33,232,.08); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--ifa); }
.fg .hint { font-size: 13px; color: var(--ifa); margin-top: 4px; font-family: 'Inter',sans-serif; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.chk-grp { display: flex; align-items: flex-start; gap: 10px; margin-bottom: .9rem; }
.chk-grp input[type=checkbox] { margin-top: 3px; accent-color: var(--vd); flex-shrink: 0; width: 16px; height: 16px; }
.chk-grp label { font-size: 16px; color: var(--imu); line-height: 1.65; font-weight: 400; }
.form-submit { width: 100%; padding: 14px; border-radius: 7px; background: var(--grad); color: #fff; font-family: 'Inter',sans-serif; font-size: 18px; font-weight: 700; border: none; cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease); margin-top: .75rem; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(107,33,232,.28); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.f-msg { padding: 1rem 1.25rem; border-radius: 8px; font-size: 16px; margin-bottom: 1.25rem; display: none; font-family: 'Inter',sans-serif; }
.f-ok  { background: #f0fdf4; border-left: 3px solid #86efac; color: #166534; }
.f-err { background: #fef2f2; border-left: 3px solid #fca5a5; color: #991b1b; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--vg); border-radius: var(--rad); padding: 2rem 2.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-strip > * { position: relative; z-index: 1; }
.cta-t { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.cta-s { font-size: 16px; color: var(--imu); margin: 0; }

/* ── PARTNER ── */
.partner-card { display: inline-flex; align-items: center; gap: 1.1rem; padding: 1.4rem 2rem; background: #fff; border: 1px solid var(--bdr); border-radius: 10px; text-decoration: none; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
.partner-card:hover { border-color: var(--vm); text-decoration: none; box-shadow: var(--shd-lg); transform: translateY(-4px); }
.partner-n { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0; }
.partner-u { font-size: 15px; color: var(--imu); margin: 2px 0 0; }

/* ── FOOTER ── */
#footer { background: var(--ink); padding: 4.5rem 0 2.25rem; }
.ft-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; margin-bottom: 2.75rem; }
.ft-name { font-family: 'Playfair Display',serif; font-size: 20px; color: rgba(255,255,255,.75); margin-bottom: .5rem; }
.ft-desc { font-size: 15px; color: rgba(255,255,255,.35); line-height: 1.8; margin-bottom: 1.4rem; }
.ft-lbl { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: .9rem; display: block; }
.ft-nav { list-style: none; }
.ft-nav li { margin-bottom: .55rem; }
.ft-nav a { font-size: 16px; color: rgba(255,255,255,.48); text-decoration: none; transition: color .2s; }
.ft-nav a:hover { color: rgba(255,255,255,.9); text-decoration: none; }
.ft-social { display: flex; flex-direction: column; gap: .7rem; }
.ft-social a { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; color: rgba(255,255,255,.48); text-decoration: none; transition: color .2s; }
.ft-social a:hover { color: rgba(255,255,255,.9); text-decoration: none; }
.ft-social svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: 13px; color: rgba(255,255,255,.2); font-family: 'Inter',sans-serif; }

/* ── LOADING SPINNER ── */
.spinner-wrap { text-align: center; padding: 3rem; color: var(--ifa); font-family: 'Inter',sans-serif; font-size: 16px; }
.spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--vg); border-top-color: var(--vd); animation: spin .7s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.err-box { background: #fef2f2; border-left: 3px solid #fca5a5; border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; font-size: 16px; color: #991b1b; font-family: 'Inter',sans-serif; }

/* ── GRID HELPERS ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.gap-sm { gap: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .g3, .committee-grid { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wrap, .wrap-sm { padding: 0 1.25rem; }
  .sec { padding: 3.5rem 0; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid var(--bdr); z-index: 998; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .hero { padding: 5rem 0 4rem; min-height: auto; }
  .hero-map { display: none; }
  .g2, .conf-pair, .fg-row { grid-template-columns: 1fr; }
  .g3, .committee-grid { grid-template-columns: 1fr; }
  .cmt-card { display: flex; align-items: center; gap: 14px; text-align: left; padding: 1rem 1.25rem; }
  .cmt-av { margin: 0; flex-shrink: 0; width: 50px; height: 50px; font-size: 17px; }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-wrap { padding: 1.75rem; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}
