/* MYNAKA — Bold & Modern Template */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');
:root {
  --navy:   #0a1628;
  --blue:   #1b3f72;
  --gold:   #d4a017;
  --gold2:  #f0bc2e;
  --white:  #ffffff;
  --off:    #f4f5f7;
  --text:   #1a1a2e;
  --muted:  #5a6477;
  --border: #e2e5eb;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--gold2); }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img { height: 52px; width: auto; }

.logo-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
nav a:hover  { background: var(--off); color: var(--blue); }
nav a.active { background: var(--navy); color: var(--white); }

.nav-pill {
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}
.nav-pill.gold  { background: var(--gold); color: var(--navy) !important; }
.nav-pill.gold:hover { background: var(--gold2); }
.nav-pill.outline { border: 2px solid var(--navy); }
.nav-pill.outline:hover { background: var(--navy); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--navy); border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,22,40,0.92) 0%, rgba(27,63,114,0.75) 60%, rgba(10,22,40,0.5) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,160,23,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27,63,114,0.3) 0%, transparent 40%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 700px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold2);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); }

.btn-white   { background: var(--white); color: var(--navy); }
.btn-ghost   { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--blue); }

.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--gold);
  padding: 28px 40px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  text-align: center;
  padding: 8px 0;
}

.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-sep {
  width: 30px;
  height: 3px;
  background: rgba(10,22,40,0.25);
  margin: 6px auto 7px;
  border-radius: 2px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.75;
}

/* ── SECTION WRAPPERS ── */
.section      { padding: 80px 40px; }
.section.alt  { background: var(--off); }
.section.dark { background: var(--navy); color: var(--white); }
.section.dark .section-label,
.section.dark .section-title { color: var(--white); }

.wrap { max-width: 1280px; margin: 0 auto; }

/* ── SECTION HEADER ── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-hd { margin-bottom: 48px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }

/* ── FEATURE CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

.card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--off);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}
.card-link:hover { gap: 9px; }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section.dark .split-text h2 { color: var(--white); }

.split-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.section.dark .split-text p { color: rgba(255,255,255,0.7); }

.split-img {
  position: relative;
}

.split-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.split-img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 22px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── ACHIEVE LIST ── */
.achieve-list { list-style: none; margin: 20px 0 28px; }
.achieve-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}
.achieve-list li:last-child { border-bottom: none; }
.achieve-list li::before {
  content: '✓';
  background: var(--gold);
  color: var(--navy);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(212,160,23,0.08);
  pointer-events: none;
}

.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold2); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── CONTENT PAGE ── */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 40px;
}

.content-wrap h2 {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--navy);
  margin: 36px 0 12px;
  letter-spacing: -0.3px;
}

.content-wrap h2:first-child { margin-top: 0; }

.content-wrap h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 24px 0 10px;
}

.content-wrap p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.content-wrap ul, .content-wrap ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.content-wrap li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ── FAQ ── */
.faq { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 28px 0; }

.faq-item {
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-item h4::before {
  content: 'Q';
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; padding-left: 30px; }

/* ── CALL-OUT BOX ── */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius);
  padding: 40px 44px;
  color: var(--white);
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(212,160,23,0.15);
}

.callout h3 { font-size: 1.35rem; font-weight: 900; margin-bottom: 10px; position: relative; color: #ffffff; }
.callout p  { font-size: 0.92rem; margin-bottom: 20px; position: relative; color: rgba(255,255,255,0.9); }

/* ── COLLAB / VOLUNTEER CARDS ── */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.collab-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.collab-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.09); }

.collab-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.collab-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.collab-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

/* ── BOARD GRID ── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px;
}

.board-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.board-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.08); }

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.board-card h4 { font-size: 0.9rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.board-card p  { font-size: 0.78rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── EVENTS ── */
.events-list { display: flex; flex-direction: column; gap: 16px; }

.event-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  align-items: center;
  transition: box-shadow 0.2s;
}

.event-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.event-date-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: var(--white);
}

.event-date-box .mo  { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }
.event-date-box .dy  { font-size: 1.7rem; font-weight: 900; line-height: 1; }
.event-date-box .yr  { font-size: 0.65rem; opacity: 0.6; }

.event-info h3  { font-size: 0.97rem; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.event-info p   { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── KHABBAR GRID ── */
.khabbar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

.khabbar-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.khabbar-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); }

.khabbar-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.khabbar-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}

.khabbar-body { padding: 18px 20px; }
.khabbar-body h4 { font-size: 0.92rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.khabbar-body p  { font-size: 0.8rem; color: var(--muted); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 10px 28px rgba(0,0,0,0.15); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }

.contact-info h3 { font-size: 1.2rem; font-weight: 900; color: var(--navy); margin-bottom: 24px; }

.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }

.ci-icon {
  width: 40px; height: 40px;
  background: var(--off);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-text strong { display: block; font-size: 0.8rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.ci-text span   { font-size: 0.88rem; color: var(--muted); }
.ci-text a      { color: var(--blue); }

.contact-form-box {
  background: var(--off);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form-box h3 { font-size: 1.1rem; font-weight: 900; color: var(--navy); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.form-group textarea { height: 110px; resize: vertical; }

/* ── PARTNERS ── */
.partners-strip {
  padding: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.partners-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 48px;
  width: auto;
  filter: grayscale(40%);
  opacity: 0.7;
  transition: 0.2s;
}

.partners-logos img:hover { filter: none; opacity: 1; }

/* ── MEMBER CTA ── */
.member-cta {
  background: linear-gradient(105deg, var(--navy) 0%, #1e4d8a 100%);
  position: relative;
  overflow: hidden;
}

.member-cta::before {
  content: '';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212,160,23,0.12);
  pointer-events: none;
}

.member-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.member-cta h2 { font-size: 1.9rem; font-weight: 900; color: var(--white); margin-bottom: 8px; letter-spacing: -0.5px; }
.member-cta p  { color: rgba(255,255,255,0.72); font-size: 0.97rem; max-width: 520px; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: #06101e;
  color: rgba(255,255,255,0.9);
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img { height: 48px; margin-bottom: 14px; }

.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212,160,23,0.35);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a  { font-size: 0.83rem; color: rgba(255,255,255,0.85); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.85); }

.social-row { display: flex; gap: 10px; }

.social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  transition: background 0.15s, color 0.15s;
}

.social-btn:hover { background: var(--gold); color: var(--navy); }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 56px 32px;
  background: var(--off);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.empty-state p     { color: var(--muted); font-size: 0.95rem; }
.empty-state .big  { font-size: 2.5rem; margin-bottom: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 48px 20px; }
  .page-hero { padding: 40px 20px; }
  .wrap { padding: 0; }

  /* NAV */
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 95px;
    left: 0; right: 0;
    background: var(--white);
    padding: 12px 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 800;
    gap: 2px;
    border-top: 3px solid var(--gold);
  }
  nav.open a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }
  nav.open a:last-child { border-bottom: none; }
  nav.open .nav-pill.gold {
    margin-top: 8px;
    text-align: center;
    border-radius: 8px !important;
  }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; height: auto; min-height: 72px; }
  .logo img { height: 44px; }

  /* HERO */
  .hero-content { padding: 48px 20px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* STATS */
  .stats-strip { padding: 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-num { font-size: 1.8rem; }

  /* SPLITS */
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse { direction: ltr; }
  .split-img-badge { bottom: -12px; left: -8px; font-size: 0.78rem; padding: 12px 16px; }

  /* MEMBER CTA */
  .member-cta-inner { flex-direction: column; text-align: center; padding: 40px 20px; }
  .member-cta form { flex-direction: column; width: 100%; }
  .member-cta form input { width: 100% !important; }

  /* FOOTER */
  .footer-main { grid-template-columns: 1fr; padding: 36px 20px 28px; gap: 28px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; gap: 8px; }
  .topbar { display: none; }

  /* FORMS */
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* COLLAB / VOLUNTEER */
  .collab-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }

  /* PARTNERS */
  .partners-strip { padding: 28px 20px; }
  .partners-logos { gap: 20px; }
  .partners-logos img { height: 64px !important; }

  /* CONTENT */
  .content-wrap { padding: 36px 20px; }
  .section-hd { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .content-wrap { padding: 40px 20px; }
  .contact-form-box { padding: 24px 20px; }
}
