/* IWSLAW Design System v2 — blues drawn from hero banner + white */
:root {
  --bg-dark-navy: #041d4a;
  --bg-light: #f4f8fc;
  --bg-white: #ffffff;
  --primary-blue: #0e6ec8;
  --primary-hover: #0a57a3;
  --secondary-blue: #2f8adb;
  --accent-blue: #5bc0de;
  --border-blue: #c5ddf4;
  --text-main: #12233f;
  --text-muted: #5a6b82;

  --radius: 10px;
  --radius-lg: 14px;
  --shadow-card: 0 4px 20px rgba(4, 29, 74, 0.06);
  --shadow-lift: 0 16px 40px rgba(4, 29, 74, 0.12);
  --container: 1180px;
  --header-h: 80px;
  --font-ltr: "Poppins", system-ui, sans-serif;
  --font-rtl: "Vazirmatn", "Poppins", system-ui, sans-serif;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-ltr);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  overflow-x: hidden;
  max-width: 100%;
  background:
    radial-gradient(ellipse 70% 45% at 6% -8%, rgba(94, 184, 239, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 40% at 98% 4%, rgba(31, 111, 212, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 38% at 72% 100%, rgba(59, 142, 230, 0.12), transparent 55%),
    #ffffff;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body,
body.is-rtl {
  font-family: var(--font-rtl);
}

body.is-ltr {
  direction: ltr;
}

body.is-rtl {
  direction: rtl;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.65rem;
}

.section-header h2 {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 42ch;
}

.section-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-header-row .section-header {
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.btn:focus-visible {
  outline: 3px solid var(--border-blue);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 91, 184, 0.22);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--border-blue);
}

.btn-outline-dark:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: transparent;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn .icon-arrow {
  width: 1em;
  height: 1em;
  transition: transform var(--transition);
}

[dir="rtl"] .btn .icon-arrow {
  transform: scaleX(-1);
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

[dir="rtl"] .btn:hover .icon-arrow {
  transform: scaleX(-1) translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark-navy);
  height: var(--header-h);
  border-bottom: none;
  border-radius: 0 0 1.65rem 1.65rem;
  overflow: visible;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}

.logo:hover {
  color: #fff;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.logo-text span {
  font-size: 0.6rem;
  opacity: 0.72;
  max-width: 190px;
  font-weight: 400;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary-blue);
  background: rgba(30, 91, 184, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-switcher {
  position: relative;
  z-index: 40;
}

.lang-switcher[open] {
  z-index: 50;
}

.lang-switcher summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-switcher summary::after {
  content: "";
  width: 0;
  height: 0;
  border-inline-start: 4px solid transparent;
  border-inline-end: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.lang-switcher[open] summary {
  background: rgba(255, 255, 255, 0.1);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: var(--shadow-lift);
  min-width: 108px;
  overflow: hidden;
  z-index: 60;
  border: 1px solid var(--border-blue);
}

.lang-menu a {
  display: block;
  padding: 0.6rem 0.95rem;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-menu a:hover,
.lang-menu a.active {
  background: var(--bg-light);
  color: var(--primary-blue);
}

.header-cta {
  display: none;
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
  box-shadow: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-mobile {
  display: none;
  background: var(--bg-dark-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0 1.5rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 1.1rem;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .logo-text span {
    max-width: 230px;
  }
}

/* Hero — photo as background, copy on left empty space */
.hero,
.hero.hero--banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  color: #fff;
  min-height: clamp(420px, 58vw, 620px);
  padding: 0;
  overflow: hidden;
  background: var(--bg-dark-navy);
  border-radius: 0 0 2.75rem 2.75rem;
}

.hero-visual {
  grid-area: 1 / 1;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  line-height: 0;
  background: var(--bg-dark-navy);
  z-index: 0;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 58vw, 620px);
  object-fit: cover;
  object-position: right center;
}

.hero-copy {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(4, 29, 74, 0.55) 0%,
    rgba(4, 29, 74, 0.28) 34%,
    rgba(4, 29, 74, 0.06) 55%,
    transparent 70%
  );
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

[dir="rtl"] .hero-copy {
  background: linear-gradient(
    270deg,
    rgba(4, 29, 74, 0.55) 0%,
    rgba(4, 29, 74, 0.28) 34%,
    rgba(4, 29, 74, 0.06) 55%,
    transparent 70%
  );
}

.hero-copy .container,
.hero .container {
  width: min(100% - 2.5rem, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding: 0;
  box-sizing: border-box;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: min(520px, 46%);
  padding: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}

.hero-bg,
.hero-shade,
.hero-art,
.hero-shape {
  display: none;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1.15rem;
}

.hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.5rem;
  max-width: 32ch;
  line-height: 1.45;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero .btn-primary {
  background: #fff;
  color: var(--bg-dark-navy);
  border-color: #fff;
}

.hero .btn-primary:hover {
  background: var(--accent-blue);
  color: var(--bg-dark-navy);
  border-color: var(--accent-blue);
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: #fff;
}

.hero-meta {
  display: none;
}

.hero-meta::before {
  content: none;
}

@media (max-width: 767px) {
  .hero,
  .hero.hero--banner {
    min-height: clamp(380px, 88vw, 520px);
  }

  .hero-photo {
    min-height: clamp(380px, 88vw, 520px);
    object-position: 60% center;
  }

  .hero-copy {
    background: linear-gradient(
      180deg,
      rgba(4, 29, 74, 0.55) 0%,
      rgba(4, 29, 74, 0.78) 100%
    );
    padding: 2rem 0 2.25rem;
    align-items: flex-end;
  }

  [dir="rtl"] .hero-copy {
    background: linear-gradient(
      180deg,
      rgba(4, 29, 74, 0.55) 0%,
      rgba(4, 29, 74, 0.78) 100%
    );
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: none;
  }
}

/* Pillars */
.pillars {
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding-bottom: 1.5rem;
}

.pillars-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

.pillar-card {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.55);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.45rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--primary-blue);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(9, 69, 224, 0.1), rgba(76, 105, 179, 0.16));
  color: var(--primary-blue);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
  flex: 1;
  line-height: 1.6;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: auto;
}

.pillar-link .icon-arrow {
  width: 0.95em;
  height: 0.95em;
}

@media (min-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .pillars {
    margin-top: -4.5rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Impact — text + 2x2 stats */
.impact {
  padding: 5rem 0 4.5rem;
  background: var(--bg-light);
}

.impact-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .impact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }
}

.impact-copy .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.impact-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.impact-copy p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  max-width: 42ch;
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(9, 69, 224, 0.1);
  color: var(--primary-blue);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.stat-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card .stat-value {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 700;
  color: var(--bg-dark-navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Legacy full-width stats (inner pages) */
.stats {
  background: linear-gradient(135deg, var(--bg-dark-navy), var(--secondary-blue));
  color: #fff;
  padding: 3.75rem 0;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

.stat-block {
  text-align: center;
  padding: 0.75rem;
}

.stat-block .stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.stat-block .stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Content + events */
.content-section {
  background: var(--bg-white);
  padding: 5rem 0;
}

.split-layout {
  display: grid;
  gap: 3.25rem;
}

@media (min-width: 980px) {
  .split-layout {
    grid-template-columns: 1.35fr 0.75fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.content-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 700px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.content-card {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.45);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.content-card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
  position: relative;
  overflow: hidden;
}

.content-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-card:hover .content-card-media img {
  transform: scale(1.04);
}

.content-card-media .tag {
  position: absolute;
  top: 0.85rem;
  inset-inline-start: 0.85rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  backdrop-filter: blur(4px);
}

.content-card-media.alt-1 {
  background:
    linear-gradient(to top, rgba(22, 58, 122, 0.35), transparent 50%),
    url("../img/insight-1.jpg") center / cover;
}

.content-card-media.alt-2 {
  background:
    linear-gradient(to top, rgba(22, 58, 122, 0.35), transparent 50%),
    url("../img/insight-2.jpg") center / cover;
}

.content-card-media.alt-3 {
  background:
    linear-gradient(to top, rgba(22, 58, 122, 0.35), transparent 50%),
    url("../img/insight-3.jpg") center / cover;
}

.content-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: rgba(76, 105, 179, 0.12);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}

.content-card h3 {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  letter-spacing: -0.01em;
}

.content-card h3 a {
  color: var(--text-main);
}

.content-card h3 a:hover {
  color: var(--primary-blue);
}

.content-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.content-meta .icon-arrow {
  width: 14px;
  height: 14px;
  color: var(--primary-blue);
}

[dir="rtl"] .content-meta .icon-arrow {
  transform: scaleX(-1);
}

/* Events */
.events-panel {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(168, 182, 217, 0.4);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.event-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.45);
  border-radius: var(--radius);
  padding: 0.95rem;
  box-shadow: var(--shadow-card);
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
}

.event-item:hover {
  border-color: var(--primary-blue);
  transform: translateX(3px);
}

[dir="rtl"] .event-item:hover {
  transform: translateX(-3px);
}

.event-date {
  flex-shrink: 0;
  width: 56px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 0.55rem 0.3rem;
  line-height: 1.15;
  box-shadow: 0 6px 14px rgba(9, 69, 224, 0.25);
}

.event-date .month {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.event-date .day {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.event-body .event-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.25rem;
}

.event-body h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Partners */
.partners {
  background: var(--bg-light);
  padding: 3.25rem 0;
  border-block: 1px solid rgba(168, 182, 217, 0.35);
}

.partners-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2.75rem;
}

.partner-logo {
  opacity: 0.38;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-dark-navy);
  letter-spacing: 0.03em;
  padding: 0.5rem 0.35rem;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--bg-dark-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 69, 224, 0.25), transparent 70%);
  top: -120px;
  inset-inline-end: -80px;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1.15rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 34ch;
  margin-bottom: 1.35rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.social-links a:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  padding: 0.32rem 0;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.85rem;
}

.footer-contact strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9eb4e8;
  font-weight: 600;
}

.footer-contact a {
  display: inline;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

/* Page hero */
.page-hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(4, 29, 96, 0.94), rgba(10, 52, 163, 0.85)),
    url("https://images.unsplash.com/photo-1461896836934-ffe607ba6851?auto=format&fit=crop&w=1600&q=80")
      center / cover;
  color: #fff;
  padding: 4rem 0 3.25rem;
  overflow: hidden;
}

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.95rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  font-size: 1.02rem;
}

/* Content pages */
.page-content {
  padding: 3.75rem 0;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.prose ul {
  padding-inline-start: 1.25rem;
  list-style: disc;
}

.values-grid,
.mission-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid,
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value-card,
.mission-card {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover,
.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.value-card h3,
.mission-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.value-card p,
.mission-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .team-grid.advisory {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(9, 69, 224, 0.25);
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.team-role {
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Forms */
.form-card {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  background: var(--bg-light);
  color: var(--text-main);
  transition: border-color var(--transition), box-shadow var(--transition),
    background var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(9, 69, 224, 0.12);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info-card {
  background: linear-gradient(160deg, var(--bg-dark-navy), var(--secondary-blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.15rem;
  box-shadow: var(--shadow-lift);
}

.contact-info-card h2 {
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.contact-info-list li {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-info-list strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9eb4e8;
  margin-bottom: 0.25rem;
}

.contact-info-list a {
  color: #fff;
}

/* Resource list */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-blue);
  background: var(--bg-white);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition);
}

.resource-row:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.resource-row .tag {
  margin: 0;
}

.resource-row h3 {
  flex: 1;
  min-width: 200px;
  font-size: 0.98rem;
}

.resource-row .content-meta {
  margin-inline-end: auto;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  padding: 1.15rem 1.3rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary-blue);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.coming-soon {
  text-align: center;
  padding: 3.25rem 1.5rem;
  background: var(--bg-white);
  border: 1px dashed var(--border-blue);
  border-radius: var(--radius-lg);
}

.coming-soon h2 {
  margin-bottom: 0.5rem;
}

.coming-soon p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.benefits {
  display: grid;
  gap: 0.9rem;
}

.benefit-item {
  display: flex;
  gap: 0.9rem;
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-card);
}

.benefit-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(9, 69, 224, 0.12);
  color: var(--primary-blue);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.work-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.work-card {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.work-card .pillar-icon {
  margin-bottom: 1.15rem;
}

.work-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.work-card p {
  color: var(--text-muted);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pillar-card:hover,
  .content-card:hover,
  .stat-card:hover,
  .btn:hover,
  .btn:hover .icon-arrow,
  .content-card:hover .content-card-media img {
    transform: none;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.bg-white-section {
  background: var(--bg-white);
}

.bg-light-section {
  background: var(--bg-light);
}

.custom-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.custom-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.custom-logo-link:hover {
  color: #fff;
}

.alignwide {
  max-width: var(--container);
  margin-inline: auto;
}

.alignfull {
  width: 100%;
}

.wp-block-button__link {
  border-radius: var(--radius) !important;
}

.form-success,
.form-error {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-blue);
}

/* ===== Enhanced sections & motion (v3) ===== */
.about-band {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.about-band-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-band-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.about-band-media,
.about-side-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.about-band-media {
  aspect-ratio: 3 / 2;
  max-height: 380px;
}

.about-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-side-media {
  min-height: 340px;
  background:
    linear-gradient(160deg, rgba(22, 58, 122, 0.22), rgba(61, 127, 212, 0.12)),
    url("../img/about-side.jpg") center / cover;
}

.about-band-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
  margin: 0.5rem 0 1rem;
}

.about-band-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.mission-section {
  padding: 4.5rem 0 5rem;
  background: var(--bg-light);
}

.mission-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  counter-reset: none;
}

.mission-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.45);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-card);
  color: var(--text-muted);
  transition: transform var(--transition), border-color var(--transition);
}

.mission-list li:hover {
  transform: translateX(4px);
  border-color: var(--primary-blue);
}

[dir="rtl"] .mission-list li:hover {
  transform: translateX(-4px);
}

.mission-num {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-blue);
  background: rgba(9, 69, 224, 0.1);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.membership-section {
  position: relative;
  padding: var(--air, 4rem) 0;
  color: var(--text-main);
  overflow: visible;
  background: transparent;
}

.membership-layout {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .membership-layout {
    grid-template-columns: minmax(280px, 0.95fr) 1.15fr;
    gap: 2.5rem;
  }
}

.membership-media {
  border-radius: 32px 32px 80px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  min-height: 360px;
  background: var(--bg-dark-navy);
}

.membership-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.membership-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.membership-copy .section-header h2 {
  color: var(--text-main);
}

.membership-copy .section-header p {
  color: var(--text-muted);
}

.membership-bg {
  display: none;
}

.benefit-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.membership-section .container {
  position: relative;
  z-index: 1;
}

.section-header-light h2,
.section-header-light .eyebrow {
  color: #fff;
}

.section-header-light .eyebrow {
  color: #a8c0ff;
}

.section-header-light p {
  color: rgba(255, 255, 255, 0.8);
}

.benefit-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(168, 182, 217, 0.35);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  color: var(--text-main);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.benefit-card p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.95rem;
}

.benefit-card .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(9, 69, 224, 0.12);
  color: var(--primary-blue);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.programs-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.programs-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.program-card {
  position: relative;
  display: block;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-card);
  background-size: cover;
  background-position: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  color: #fff;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 29, 96, 0.92) 0%, rgba(4, 29, 96, 0.35) 55%, rgba(4, 29, 96, 0.15) 100%);
  transition: background var(--transition);
}

.program-card:hover::before {
  background: linear-gradient(to top, rgba(4, 29, 96, 0.95) 0%, rgba(9, 69, 224, 0.45) 60%, rgba(4, 29, 96, 0.2) 100%);
}

.prog-1 { background-image: url("../img/program-legal.jpg"); }
.prog-2 { background-image: url("../img/program-hub.jpg"); }
.prog-3 { background-image: url("../img/program-research.jpg"); }
.prog-4 { background-image: url("../img/program-collab.jpg"); }

.program-card-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 260px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.program-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.program-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.program-card .pillar-link {
  color: #fff;
}

.partners-showcase {
  padding: 5rem 0 0;
  background: var(--bg-light);
  overflow: hidden;
}

.partners-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 800px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lift);
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 29, 96, 0.88), rgba(4, 29, 96, 0.25));
}

.partner-card-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.15rem;
  color: #fff;
  z-index: 1;
}

.partner-card-body strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.partner-card-body span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.partner-1 { background-image: url("https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=700&q=80"); }
.partner-2 { background-image: url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=700&q=80"); }
.partner-3 { background-image: url("https://images.unsplash.com/photo-1461896836934-ffe607ba6851?auto=format&fit=crop&w=700&q=80"); }
.partner-4 { background-image: url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=700&q=80"); }
.partner-5 { background-image: url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=700&q=80"); }
.partner-6 { background-image: url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=700&q=80"); }

.partners-marquee {
  margin-top: 2.5rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(168, 182, 217, 0.35);
  overflow: hidden;
}

.partners-marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.partners-marquee .partner-logo {
  opacity: 0.45;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

[dir="rtl"] .partners-marquee-track {
  animation-name: marquee-rtl;
}

@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.faq-section {
  padding-top: 5rem;
}

.home-contact {
  padding: 5rem 0;
  background: var(--bg-white);
}

.team-card-photo {
  position: relative;
  overflow: hidden;
}

.team-photo {
  height: 140px;
  margin: -1.6rem -1.6rem 1rem;
  background-size: cover;
  background-position: center;
}

.team-photo-0 {
  background-image: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=800&q=80");
}

.team-photo-1 {
  background-image: url("https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=800&q=80");
}

.team-card-photo .team-avatar {
  margin-top: -42px;
  position: relative;
  border: 3px solid #fff;
}

.float-soft {
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal {
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

.pillar-icon {
  transition: transform var(--transition);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08) rotate(-4deg);
}

.magnetic-hover {
  transition: transform 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .float-soft,
  .partners-marquee-track {
    animation: none !important;
  }
  .mission-list li:hover,
  .program-card:hover,
  .partner-card:hover,
  .benefit-card:hover,
  .pillar-card:hover .pillar-icon {
    transform: none;
  }
}

/* ===== UX densify: less empty space, compact FAQ+Contact ===== */
.section { padding: 3.5rem 0; }
.about-band { padding: 3.75rem 0; }
.mission-section { padding: 3.25rem 0 3.5rem; }
.membership-section { padding: 3.75rem 0; }
.programs-section { padding: 2.75rem 0; }
.program-card,
.program-card-overlay { min-height: 0; }
.program-card-clear { min-height: 0; }
.impact { padding: 3.75rem 0; }
.content-section { padding: 3.75rem 0; }
.partners-showcase { padding: 3.75rem 0 0; }
.home-contact, .faq-section { padding: 0; }

.section-header.compact { margin-bottom: 1.15rem; }
.section-header.compact h2 { font-size: 1.45rem; margin-bottom: 0.35rem; }
.section-header.compact p { font-size: 0.92rem; }

.mission-list {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 800px) {
  .mission-list { grid-template-columns: 1fr 1fr; }
}
.mission-list li {
  padding: 0.85rem 1rem;
  margin: 0;
}

.about-side-media { min-height: 280px; }

.program-card,
.program-card-overlay,
.program-card-clear { min-height: 0; }

.partner-card { min-height: 150px; }

.support-band {
  padding: 3.5rem 0 4rem;
  background: var(--bg-light);
  border-top: 1px solid rgba(168, 182, 217, 0.35);
}
.support-grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .support-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}
.support-faq,
.support-contact {
  background: var(--bg-white);
  border: 1px solid rgba(168, 182, 217, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.faq-list.compact { max-width: none; gap: 0.5rem; }
.faq-list.compact .faq-item { box-shadow: none; }
.faq-list.compact .faq-item summary {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.35;
}
.faq-list.compact .faq-item .faq-body {
  padding: 0 1rem 0.95rem;
  font-size: 0.88rem;
}
.contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-mini a { color: var(--primary-blue); font-weight: 600; }
.support-contact .form-card {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.support-contact .form-field textarea { min-height: 100px; }
.partners-marquee { margin-top: 1.75rem; padding: 1rem 0 1.5rem; }
