:root {
  --purple: #5b2d82;
  --purple-2: #7f4bb0;
  --navy: #25265b;
  --ink: #1d1d1f;
  --ink-2: #111126;
  --muted: #6e6e73;
  --muted-2: #86868b;
  --silver: #e8e8ed;
  --soft: #f5f5f7;
  --white: #ffffff;
  --gold: #d7b46a;
  --line: rgba(29, 29, 31, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(29, 29, 31, 0.09);
  --shadow-strong: 0 45px 120px rgba(26, 21, 49, 0.18);
  --radius: 32px;
  --radius-xl: 46px;
  --container: 1180px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--soft); }
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(82px, 9vw, 140px) 0; }
.section-soft { background: var(--soft); }
.section-white { background: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(91, 45, 130, 0.08);
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(91, 45, 130, 0.1);
}

h1, h2, h3, h4 { margin: 0; line-height: 1.02; letter-spacing: -0.055em; }
h1 { font-size: clamp(56px, 9.6vw, 132px); font-weight: 850; }
h2 { font-size: clamp(42px, 5.3vw, 76px); font-weight: 820; }
h3 { font-size: clamp(24px, 2.45vw, 36px); font-weight: 780; letter-spacing: -0.04em; }
h4 { letter-spacing: -0.02em; }
p { margin: 0; color: var(--muted); }
.lead { font-size: clamp(21px, 2.35vw, 31px); line-height: 1.35; color: rgba(255,255,255,.82); max-width: 930px; letter-spacing: -0.025em; }
.lead-dark { font-size: clamp(19px, 1.9vw, 25px); line-height: 1.45; color: var(--muted); max-width: 820px; letter-spacing: -0.018em; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 760;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
  border: 1px solid transparent;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #1d1d1f; color: white; box-shadow: 0 16px 40px rgba(0,0,0,.14); }
.btn-primary:hover { background: #000; box-shadow: 0 22px 54px rgba(0,0,0,.18); }
.btn-light { background: white; color: #1d1d1f; box-shadow: 0 18px 42px rgba(0,0,0,.15); }
.btn-light:hover { box-shadow: 0 24px 56px rgba(0,0,0,.2); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: white; background: rgba(255,255,255,.08); backdrop-filter: blur(16px); }
.btn-ghost-dark { border-color: rgba(29,29,31,.12); color: var(--ink); background: rgba(255,255,255,.72); box-shadow: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,251,253,.72);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(29,29,31,.08);
}
.topbar { display: none; }
.nav {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  min-height: 76px;
}
.logo { display: flex; align-items: center; gap: 12px; min-width: 176px; }
.logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 24px; align-items: center; color: #313135; font-size: 14px; font-weight: 650; letter-spacing: -0.01em; }
.nav-links a:not(.btn) { opacity: .78; transition: opacity .2s ease, color .2s ease; }
.nav-links a:not(.btn):hover { opacity: 1; color: var(--purple); }
.mobile-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 5%, rgba(127, 75, 176, 0.22), transparent 34%),
    radial-gradient(circle at 78% 52%, rgba(215, 180, 106, 0.14), transparent 28%),
    linear-gradient(180deg, #111126 0%, #171631 46%, #f5f5f7 46%, #f5f5f7 100%);
  color: white;
  padding: clamp(64px, 6vw, 96px) 0 clamp(60px, 7vw, 100px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 42% 0;
  background-image: url('/images/pattern.svg');
  background-size: 880px;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
  justify-items: center;
  text-align: center;
}
.hero-copy { display: grid; gap: 24px; justify-items: center; max-width: 1080px; }
.hero-copy h1 {
  background: linear-gradient(180deg, #fff 20%, #ece6f4 60%, #cdb7df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .btn-row { justify-content: center; margin-top: 8px; }
.hero-card {
  position: relative;
  width: min(100%, 980px);
  min-height: clamp(360px, 45vw, 590px);
  border-radius: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 40% 10%, rgba(255,255,255,.96), rgba(255,255,255,.72) 28%, rgba(255,255,255,.44) 55%, rgba(255,255,255,.9) 100%),
    linear-gradient(135deg, rgba(255,255,255,.95), rgba(243,241,248,.82));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(91,45,130,.12), transparent 44%);
}
.hero-card::after {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(91,45,130,.16), rgba(37,38,91,.08));
  bottom: -420px;
  right: -260px;
  filter: blur(8px);
}
.hero-logo-mark { width: min(500px, 62%); filter: drop-shadow(0 30px 55px rgba(29,29,31,.18)); position: relative; z-index: 2; }
.stat-row { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; width: min(100%, 980px); margin-top: -34px; }
.stat-card { border: 1px solid rgba(29,29,31,.08); background: rgba(255,255,255,.8); backdrop-filter: blur(18px); border-radius: 24px; padding: 20px; box-shadow: 0 16px 42px rgba(29,29,31,.06); text-align: left; }
.stat-card strong { display: block; font-size: clamp(24px, 2.8vw, 34px); color: var(--ink); line-height: 1; letter-spacing: -.04em; }
.stat-card span { display: block; font-size: 13px; color: var(--muted); margin-top: 9px; line-height: 1.3; }

.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 42px; }
.section-title { display: grid; gap: 18px; }
.section-title.center { justify-items: center; text-align: center; margin-inline: auto; }
.grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(29,29,31,.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(29,29,31,.065);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 32px 86px rgba(29,29,31,.12); border-color: rgba(91,45,130,.16); }
.card-pad { padding: 32px; }

.campaign-card { display: grid; align-content: start; background: #fff; }
.campaign-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; background: linear-gradient(135deg, #f4f1f8, #fff); }
.campaign-card .body { padding: 28px; display: grid; gap: 16px; }
.campaign-card .tag { color: var(--purple); font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.campaign-card .btn-row { margin-top: 6px; }
.grid-4 > .campaign-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.grid-4 > .campaign-card:first-child img { aspect-ratio: 16/9; }
.grid-4 > .campaign-card:first-child h3 { font-size: clamp(30px, 3.8vw, 50px); }
.grid-4 > .campaign-card:first-child .body { padding: 36px; }

.about-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: stretch; }
.about-panel {
  background:
    radial-gradient(circle at 90% 15%, rgba(127,75,176,.36), transparent 34%),
    linear-gradient(145deg, #111126, #25265b 58%, #5b2d82);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(34px, 4vw, 56px);
  overflow: hidden;
  position: relative;
  min-height: 100%;
  box-shadow: var(--shadow-strong);
}
.about-panel::after { content: ''; position: absolute; right: -90px; bottom: -120px; width: 340px; height: 340px; border-radius: 999px; background: rgba(255,255,255,.08); }
.about-panel p { color: rgba(255,255,255,.76); font-size: 18px; }
.value-card { padding: 30px; border-radius: 30px; background: #fff; border: 1px solid rgba(29,29,31,.08); box-shadow: 0 18px 48px rgba(29,29,31,.055); }
.value-card h3 { margin-bottom: 12px; }
.cluster-card { position: relative; min-height: 300px; display: grid; gap: 18px; align-content: start; padding: 30px; background: linear-gradient(180deg, #fff, #fbfbfd); }
.cluster-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; background: linear-gradient(135deg, rgba(91,45,130,.1), rgba(37,38,91,.08)); font-size: 27px; }
.quick-link { color: var(--purple); font-weight: 760; }
.simple-list { margin: 0; padding-left: 18px; color: var(--muted); }
.simple-list li { margin: 8px 0; }
.report-card { padding: 30px; display: grid; gap: 14px; min-height: 220px; background: linear-gradient(180deg, #fff, #fbfbfd); }
.report-card .year { color: var(--purple); font-weight: 850; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 76px);
  background:
    radial-gradient(circle at 82% 20%, rgba(215,180,106,.22), transparent 32%),
    radial-gradient(circle at 20% 90%, rgba(127,75,176,.28), transparent 33%),
    linear-gradient(135deg, #111126, #25265b 58%, #5b2d82);
  color: white;
  box-shadow: var(--shadow-strong);
}
.cta-band::after { content: ''; position: absolute; inset: 0; background-image: url('/images/pattern.svg'); background-size: 900px; opacity: .07; mix-blend-mode: screen; pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.78); }

.footer { background: #111126; color: white; padding: 72px 0 30px; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 34px; }
.footer-logo { width: 245px; max-width: 100%; margin-bottom: 20px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: white; margin: 0 0 14px; }
.footer-list { display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; }

.page-hero {
  padding: clamp(80px, 9vw, 140px) 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(127,75,176,.32), transparent 32%),
    linear-gradient(145deg, #111126, #25265b 64%, #5b2d82);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: url('/images/pattern.svg'); background-size: 820px; opacity: .09; mix-blend-mode: screen; }
.page-hero .container { position: relative; }
.page-hero .lead-dark { color: rgba(255,255,255,.78); }
.content-rich { display: grid; gap: 20px; }
.notice { background: rgba(215, 180, 106, 0.14); border: 1px solid rgba(215, 180, 106, 0.32); color: #735316; padding: 16px 18px; border-radius: 18px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { padding: 30px; border-radius: 30px; border: 1px solid rgba(29,29,31,.08); background: white; box-shadow: 0 18px 48px rgba(29,29,31,.055); }

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4 > .campaign-card:first-child { grid-column: span 2; }
}
@media (max-width: 980px) {
  .nav { align-items: center; }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero { min-height: auto; background: linear-gradient(180deg, #111126 0%, #171631 58%, #f5f5f7 58%, #f5f5f7 100%); }
  .hero-grid, .about-split, .grid-3, .grid-2, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 360px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); margin-top: -20px; }
  .section-head { display: grid; align-items: start; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  h1 { font-size: clamp(48px, 15vw, 80px); }
  h2 { font-size: clamp(36px, 10vw, 56px); }
  .logo img { height: 36px; }
  .nav { min-height: 66px; padding-block: 10px; }
  .hero { padding-top: 50px; }
  .hero-card { min-height: 300px; border-radius: 34px; }
  .hero-logo-mark { width: min(360px, 74%); }
  .stat-row, .grid-4 { grid-template-columns: 1fr; }
  .grid-4 > .campaign-card:first-child { grid-column: auto; grid-row: auto; }
  .cta-band { border-radius: 32px; }
  .btn { width: 100%; }
  .hero-copy .btn-row { width: 100%; }
  .footer-bottom { display: grid; }
}

/* V3 refined premium adjustments */
h1 { font-size: clamp(44px, 6.2vw, 78px); letter-spacing: -0.045em; }
h2 { font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.04em; }
h3 { font-size: clamp(21px, 2vw, 28px); letter-spacing: -0.032em; }
.lead { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.48; max-width: 700px; }
.lead-dark { font-size: clamp(16px, 1.45vw, 19px); line-height: 1.6; max-width: 680px; }
.section { padding: clamp(66px, 7vw, 108px) 0; }
.compact-section { padding: clamp(68px, 7vw, 104px) 0; }
.btn { min-height: 44px; padding: 12px 19px; font-size: 14px; }
.eyebrow { padding: 7px 12px; font-size: 11px; letter-spacing: .11em; }
.eyebrow-light { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); color: #fff; }

.hero-refined {
  min-height: 620px;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(127, 75, 176, 0.26), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(215, 180, 106, 0.12), transparent 24%),
    linear-gradient(145deg, #101024 0%, #181733 58%, #2a1b48 100%);
  padding: clamp(70px, 8vw, 118px) 0;
}
.hero-refined::before { inset: 0; opacity: .08; background-size: 760px; }
.hero-refined-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
  text-align: left;
}
.refined-copy { justify-items: start; max-width: 720px; gap: 20px; }
.refined-copy h1 {
  background: linear-gradient(180deg, #fff 0%, #f0e8f8 56%, #d8c4ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.refined-copy .btn-row { justify-content: flex-start; margin-top: 10px; }
.hero-visual {
  min-height: 420px;
  border-radius: 44px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 52% 46%, rgba(255,255,255,.92), rgba(255,255,255,.58) 32%, rgba(255,255,255,.12) 62%, transparent 76%),
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 34px 90px rgba(0,0,0,.23);
  overflow: hidden;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/pattern.svg');
  background-size: 520px;
  opacity: .11;
  mix-blend-mode: screen;
}
.hero-visual .hero-logo-mark { width: min(390px, 72%); position: relative; z-index: 1; }

.trust-section { background: #fff; padding: 28px 0 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.trust-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(29,29,31,.08);
  box-shadow: 0 18px 48px rgba(29,29,31,.055);
}
.trust-card strong { display: block; color: var(--ink); font-size: 24px; line-height: 1; letter-spacing: -.035em; }
.trust-card span { display: block; margin-top: 8px; font-size: 14px; line-height: 1.35; color: var(--muted); }

.refined-head { align-items: end; margin-bottom: 30px; }
.featured-campaign {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  min-height: 360px;
  margin-bottom: 22px;
  background: #fff;
}
.featured-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(91,45,130,.13), rgba(37,38,91,.08));
}
.featured-media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.featured-body { padding: clamp(34px, 5vw, 58px); display: grid; align-content: center; gap: 18px; }
.featured-body .tag,
.campaign-mini-card .tag { color: var(--purple); font-weight: 820; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.featured-body h3 { font-size: clamp(28px, 3.5vw, 44px); }
.featured-body p { font-size: 16px; line-height: 1.65; max-width: 520px; }
.campaign-mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.campaign-mini-card { display: grid; background: #fff; min-height: 100%; }
.campaign-mini-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.campaign-mini-card .body { padding: 26px; display: grid; gap: 14px; align-content: start; }
.campaign-mini-card h3 { font-size: 26px; }
.campaign-mini-card p { font-size: 15px; line-height: 1.62; }
.compact-buttons { margin-top: 6px; gap: 10px; }
.compact-buttons .btn { padding-inline: 17px; }

.about-editorial { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.about-intro { max-width: 560px; }
.principle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.slim-card { min-height: 190px; padding: 28px; }
.slim-card h3 { font-size: 25px; margin-bottom: 12px; }
.slim-card p { font-size: 15px; line-height: 1.62; }

.refined-cluster-grid .cluster-card { min-height: 260px; padding: 28px; }
.refined-cluster-grid .cluster-card h3 { font-size: 25px; }
.refined-cluster-grid .cluster-card p { font-size: 15px; line-height: 1.62; }
.refined-cluster-grid .cluster-icon { width: 52px; height: 52px; border-radius: 18px; font-size: 24px; }

@media (max-width: 980px) {
  .hero-refined { min-height: auto; padding: 62px 0 74px; }
  .hero-refined-grid, .about-editorial, .featured-campaign { grid-template-columns: 1fr; }
  .hero-refined-grid { text-align: center; }
  .refined-copy { justify-items: center; margin: 0 auto; }
  .refined-copy .btn-row { justify-content: center; }
  .hero-visual { min-height: 330px; }
  .trust-grid, .campaign-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-media, .featured-media img { min-height: 300px; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(38px, 11vw, 52px); }
  h2 { font-size: clamp(30px, 8.4vw, 40px); }
  h3 { font-size: 22px; }
  .lead { font-size: 17px; }
  .lead-dark { font-size: 16px; }
  .hero-visual { min-height: 260px; border-radius: 30px; }
  .hero-visual .hero-logo-mark { width: min(260px, 70%); }
  .trust-grid, .campaign-mini-grid, .principle-grid { grid-template-columns: 1fr; }
  .trust-section { padding-top: 18px; }
  .trust-card { padding: 20px; }
  .featured-body, .campaign-mini-card .body, .slim-card { padding: 24px; }
  .featured-media, .featured-media img { min-height: 230px; }
  .section-head.refined-head { gap: 18px; }
}

/* V4 trust + sticky donation improvements */
body { padding-bottom: 110px; }
.trusted-section { background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%); }
.trusted-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 6vw, 78px); align-items: start; }
.trusted-intro { position: sticky; top: 108px; }
.official-bank-card {
  margin-top: 26px;
  display: grid;
  gap: 15px;
  width: min(100%, 440px);
  padding: 24px;
  border-radius: 30px;
  background: #111126;
  color: white;
  box-shadow: 0 28px 74px rgba(17,17,38,.18);
  border: 1px solid rgba(255,255,255,.1);
}
.official-bank-card .official-label { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.official-bank-card img { width: 240px; max-width: 100%; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,.22); }
.official-bank-card strong { display: block; color: #fff; font-size: 21px; line-height: 1.1; }
.official-bank-card span { display: block; color: rgba(255,255,255,.72); font-style: normal; }
.partner-groups { display: grid; gap: 18px; }
.partner-group {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(29,29,31,.08);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 18px 52px rgba(29,29,31,.055);
}
.partner-group-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 18px; }
.partner-group-head h3 { font-size: 24px; }
.partner-group-head p { margin-top: 8px; font-size: 14px; line-height: 1.5; }
.partner-group-head > span { flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: rgba(91,45,130,.08); color: var(--purple); font-size: 12px; font-weight: 800; }
.partner-logo-row { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-logo-slot {
  width: 104px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  box-shadow: inset 0 -1px 0 rgba(29,29,31,.04);
}
.partner-logo-slot span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 999px; background: rgba(91,45,130,.09); color: var(--purple); font-size: 11px; font-weight: 850; letter-spacing: .04em; }

.partner-logo-slot.has-logo { padding: 10px; }
.partner-logo-slot img {
  display: block;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: saturate(.96) contrast(1.02);
}
.partner-logo-slot.has-logo:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(29,29,31,.09); }
.partner-logo-slot.has-logo { transition: transform .2s ease, box-shadow .2s ease; }

.footer-bank { margin-top: 18px; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: grid; gap: 3px; }
.footer-bank span { font-size: 11px; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.footer-bank strong { font-size: 14px; color: #fff; }
.footer-bank em { font-style: normal; color: rgba(255,255,255,.78); font-weight: 760; }
.sticky-donation {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 32px));
  z-index: 200;
  pointer-events: none;
}
.sticky-donation-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 16px;
  border-radius: 999px;
  background: rgba(17,17,38,.9);
  color: white;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}
.sticky-bank { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sticky-bank img { width: 152px; height: auto; border-radius: 6px; flex: 0 0 auto; }
.sticky-bank-text { display: grid; gap: 2px; min-width: 0; }
.sticky-bank-text strong { font-size: 13px; line-height: 1.1; color: rgba(255,255,255,.78); }
.sticky-bank-text span { font-size: 18px; line-height: 1; font-weight: 850; letter-spacing: .02em; color: #fff; white-space: nowrap; }
.sticky-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.copy-account { min-height: 42px; padding: 0 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.08); color: white; font-weight: 760; cursor: pointer; }
.sticky-cta { min-height: 42px; padding: 11px 18px; background: #fff; color: #111126; box-shadow: none; }
.sticky-cta:hover { background: #f7f7f9; }
@media (max-width: 980px) {
  .trusted-layout { grid-template-columns: 1fr; }
  .trusted-intro { position: static; }
}
@media (max-width: 720px) {
  body { padding-bottom: 126px; }
  .sticky-donation { bottom: 10px; width: calc(100% - 20px); }
  .sticky-donation-inner { border-radius: 26px; display: grid; gap: 10px; padding: 12px; }
  .sticky-bank { justify-content: space-between; width: 100%; }
  .sticky-bank img { width: 142px; }
  .sticky-bank-text { text-align: right; }
  .sticky-bank-text strong { font-size: 12px; }
  .sticky-bank-text span { font-size: 16px; }
  .sticky-actions { width: 100%; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8px; }
  .copy-account, .sticky-cta { width: 100%; min-height: 42px; }
  .partner-group, .official-bank-card { border-radius: 24px; padding: 20px; }
  .partner-logo-slot { width: 86px; height: 58px; }
  .partner-logo-slot img { max-height: 38px; }
}


/* V6 humanized refinement */
.trust-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,248,250,.98));
}
.about-intro h2, .refined-head h2, .trusted-intro h2 {
  letter-spacing: -0.034em;
}
.trusted-section {
  background: linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
}
.partner-group {
  padding: 28px 30px;
  border-radius: 32px;
}
.partner-group-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}
.partner-group-head > span {
  display: none;
}
.partner-group-head h3 {
  font-size: 22px;
}
.partner-group-head p {
  margin-top: 10px;
  max-width: 520px;
  margin-inline: auto;
}
.partner-logo-row {
  justify-content: center;
  gap: 14px;
}
.partner-logo-slot {
  width: 148px;
  height: 84px;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(29,29,31,.04), inset 0 -1px 0 rgba(29,29,31,.04);
}
.partner-logo-slot.has-logo {
  padding: 12px;
}
.partner-logo-slot img {
  max-height: 52px;
}
.cluster-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: start;
}
.cluster-story, .cluster-focus {
  background: linear-gradient(180deg, #fff, #fcfcfd);
}
.cluster-story p + p {
  margin-top: 14px;
}
.cluster-focus h3 {
  margin-top: 12px;
  margin-bottom: 14px;
}
@media (max-width: 980px) {
  .cluster-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .partner-group {
    padding: 22px 18px;
  }
  .partner-logo-slot {
    width: 116px;
    height: 70px;
    border-radius: 18px;
  }
  .partner-logo-slot img {
    max-height: 42px;
  }
}


/* V7 corporate premium + mobile polish */
.hero-refined {
  min-height: 580px;
  padding: clamp(64px, 7vw, 104px) 0;
}
.refined-copy { gap: 18px; }
.refined-copy h1 { max-width: 9ch; }
.hero-visual {
  min-height: 390px;
  border-radius: 40px;
  box-shadow: 0 30px 82px rgba(0,0,0,.2);
}
.trust-card strong { font-size: 22px; }
.trust-card span { line-height: 1.45; }
.featured-body h3 { font-size: clamp(26px, 3vw, 40px); }
.featured-body p,
.campaign-mini-card p,
.slim-card p,
.refined-cluster-grid .cluster-card p { font-size: 15px; line-height: 1.68; }
.section-title { gap: 14px; }
.about-intro { max-width: 620px; }
.about-intro h2,
.refined-head h2,
.trusted-intro h2,
.cta-band h2 { max-width: 12ch; }
.cta-band .lead { max-width: 640px; }
.footer { padding-top: 66px; }
@media (max-width: 980px) {
  .hero-refined-grid { gap: 28px; }
  .hero-visual { min-height: 300px; }
  .featured-body { padding: 30px; }
}
@media (max-width: 720px) {
  body { padding-bottom: 128px; }
  .hero-refined { padding: 48px 0 56px; }
  .hero-refined-grid { gap: 22px; }
  .refined-copy { gap: 14px; }
  .refined-copy h1 { max-width: none; }
  h1 { font-size: clamp(34px, 10vw, 46px); }
  h2 { font-size: clamp(28px, 8.4vw, 36px); }
  h3 { font-size: 21px; }
  .lead { font-size: 15.5px; line-height: 1.56; }
  .lead-dark { font-size: 15px; line-height: 1.62; }
  .compact-section, .section { padding: 54px 0; }
  .hero-visual { min-height: 220px; border-radius: 26px; }
  .hero-visual .hero-logo-mark { width: min(210px, 58%); }
  .trust-section { padding-top: 12px; }
  .trust-card { padding: 18px; border-radius: 22px; }
  .trust-card strong { font-size: 20px; }
  .campaign-mini-card .body, .featured-body, .slim-card, .refined-cluster-grid .cluster-card { padding: 20px; }
  .section-head.refined-head { margin-bottom: 22px; gap: 16px; }
  .principle-grid { gap: 14px; }
  .partner-group { padding: 20px 16px; }
  .partner-group-head h3 { font-size: 20px; }
  .partner-logo-row { gap: 10px; }
  .partner-logo-slot { width: calc(50% - 5px); max-width: 138px; height: 64px; }
  .partner-logo-slot img { max-height: 38px; }
  .sticky-donation { width: calc(100% - 16px); bottom: 8px; }
  .sticky-donation-inner { padding: 10px 10px 10px 12px; border-radius: 22px; gap: 9px; }
  .sticky-bank { gap: 10px; }
  .sticky-bank img { width: 118px; }
  .sticky-bank-text strong { font-size: 11px; }
  .sticky-bank-text span { font-size: 15px; }
  .sticky-actions { gap: 8px; }
  .copy-account, .sticky-cta { min-height: 40px; font-size: 13px; }
}

/* --- V8 visual refinements --- */
.hero-visual-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(238,238,245,.96));
}

.hero-collage {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-photo-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 17, 38, 0.78);
  color: white;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(17, 17, 38, 0.24);
}

.hero-photo-badge img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-photo-badge span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

.refined-head {
  align-items: flex-end;
}

.featured-campaign {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  overflow: hidden;
  margin-top: 8px;
}

.featured-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.featured-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.featured-body h3 {
  font-size: clamp(1.75rem, 2vw, 2.3rem);
}

.campaign-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.campaign-mini-grid .campaign-card img {
  min-height: 200px;
}

.about-column {
  display: grid;
  gap: 20px;
}

.about-photo {
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-photo figcaption {
  padding: 16px 18px 18px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.cluster-card-media {
  overflow: hidden;
  padding: 0;
}

.cluster-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.cluster-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,38,0) 40%, rgba(17,17,38,.1) 100%);
}

.cluster-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cluster-card-body {
  padding: 24px;
}

.cluster-card-body h3 {
  margin-bottom: 12px;
}

.inline-feature-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  margin-bottom: 20px;
  object-fit: cover;
  max-height: 260px;
}

@media (max-width: 1024px) {
  .featured-campaign {
    grid-template-columns: 1fr;
  }

  .featured-media img {
    min-height: 320px;
  }

  .campaign-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-visual-photo {
    min-height: 340px;
  }

  .hero-photo-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .hero-photo-badge img {
    width: 40px;
    height: 40px;
  }

  .featured-body {
    padding: 24px 20px;
  }

  .campaign-mini-grid {
    grid-template-columns: 1fr;
  }

  .cluster-media {
    height: 180px;
  }

  .inline-feature-image {
    max-height: 220px;
  }
}


/* V9 clean focus: remove PDF/report-image direction and keep premium abstract layout */
.hero-visual-photo,
.hero-collage,
.hero-photo-badge,
.about-photo,
.cluster-card-media,
.cluster-media,
.cluster-card-body,
.inline-feature-image {
  /* Kept unused intentionally in V9; no PDF/report style visuals are displayed. */
}

.refined-cluster-grid.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.refined-cluster-grid.grid-3 .cluster-card {
  min-height: 280px;
}

.campaign-mini-grid .campaign-card img {
  min-height: 210px;
  object-fit: cover;
  background: linear-gradient(135deg, #f7f4fb, #ffffff);
}

.featured-media img {
  background: linear-gradient(135deg, #f7f4fb, #ffffff);
}

@media (max-width: 980px) {
  .refined-cluster-grid.grid-3 {
    grid-template-columns: 1fr;
  }
}

/* V10 payment wrapper pages */
.payment-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: start;
}
.payment-intro h2 { margin-top: 12px; }
.payment-intro p + p { margin-top: 12px; }
.payment-intro .btn-row { margin-top: 20px; }
.payment-frame-card {
  overflow: hidden;
  background: #fff;
  min-height: 720px;
}
.payment-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
  background: #fff;
}
@media (max-width: 980px) {
  .payment-shell { grid-template-columns: 1fr; }
  .payment-frame-card, .payment-frame { min-height: 680px; }
}
@media (max-width: 640px) {
  .payment-frame-card, .payment-frame { min-height: 620px; }
}


/* V11 smoother infaq UX */
.smooth-payment-shell {
  align-items: stretch;
}
.payment-intro .btn-primary {
  min-width: 118px;
}
.payment-intro p {
  line-height: 1.68;
}
html {
  scroll-padding-top: 96px;
}
@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
  .payment-intro h2 { font-size: clamp(30px, 8.4vw, 40px); }
}

/* V12 Ahli Lembaga Pemegang Amanah */
.trustees-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(127,75,176,.11), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(215,180,106,.12), transparent 30%),
    #ffffff;
}
.trustees-head {
  margin-bottom: 34px;
}
.trustees-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.trustee-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,248,252,.98));
  border: 1px solid rgba(91,45,130,.10);
}
.trustee-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/pattern.svg');
  background-size: 460px;
  opacity: .035;
  pointer-events: none;
}
.trustee-photo {
  position: relative;
  z-index: 1;
  height: 310px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 18px 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.95), rgba(245,242,250,.7) 34%, rgba(91,45,130,.09) 78%),
    linear-gradient(180deg, #fbfbfd, #f1eef7);
}
.trustee-photo img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 28px rgba(17,17,38,.18));
}
.trustee-info {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: grid;
  gap: 10px;
}
.trustee-info span {
  width: fit-content;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(91,45,130,.08);
  color: var(--purple);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trustee-info h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.trustee-info p {
  font-size: 15px;
  line-height: 1.62;
}
.trustee-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 360px;
}
.trustee-feature .trustee-photo {
  height: auto;
  min-height: 360px;
}
.trustee-feature .trustee-info {
  align-content: center;
  padding: 34px;
}
.trustee-feature .trustee-info h3 {
  font-size: clamp(28px, 3.1vw, 42px);
}
@media (max-width: 1100px) {
  .trustees-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trustee-feature { grid-template-columns: 1fr; }
  .trustee-feature .trustee-photo { height: 330px; min-height: 0; }
}
@media (max-width: 720px) {
  .trustees-feature-grid,
  .trustees-grid { grid-template-columns: 1fr; }
  .trustee-photo { height: 285px; }
  .trustee-feature .trustee-photo { height: 300px; }
  .trustee-info,
  .trustee-feature .trustee-info { padding: 22px; }
}
.trustee-chairman {
  margin-bottom: 24px;
}
.trustee-chairman .trustee-info p {
  max-width: 520px;
}

/* V13 Trustee layout polish */
.trustee-leadership-stack {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}
.trustee-chairman-card {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  min-height: 420px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 14%, rgba(215,180,106,.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,244,252,.98));
}
.trustee-advisor-card {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, .58fr);
  min-height: 300px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 6%, rgba(91,45,130,.10), transparent 30%),
    linear-gradient(135deg, #fff, #fbf9ff);
}
.trustee-photo-chairman {
  min-height: 420px;
  height: auto;
  padding: 28px 24px 0;
  background:
    radial-gradient(circle at 50% 26%, rgba(255,255,255,1), rgba(248,245,253,.82) 38%, rgba(91,45,130,.12) 100%),
    linear-gradient(180deg, #ffffff, #f2eef8);
}
.trustee-photo-advisor {
  min-height: 300px;
  height: auto;
  padding: 26px 22px 0;
}
.trustee-info-feature {
  align-content: center;
  padding: clamp(32px, 5vw, 62px);
  gap: 14px;
}
.trustee-info-feature h3 {
  font-size: clamp(34px, 4.2vw, 58px);
  max-width: 11ch;
}
.trustee-info-feature p {
  font-size: 17px;
  max-width: 560px;
}
.trustee-info-advisor {
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
}
.trustee-info-advisor h3 {
  font-size: clamp(28px, 3vw, 42px);
  max-width: 16ch;
}
.trustee-note {
  margin-top: 8px;
  max-width: 610px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(91,45,130,.07);
  border: 1px solid rgba(91,45,130,.1);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}
.trustees-grid-polished {
  align-items: stretch;
}
.trustees-grid-polished .trustee-card {
  border-radius: 26px;
  display: flex;
  flex-direction: column;
}
.trustees-grid-polished .trustee-photo {
  height: 280px;
  padding-top: 18px;
}
.trustees-grid-polished .trustee-info {
  flex: 1;
  padding: 22px;
}
.trustees-grid-polished .trustee-info h3 {
  font-size: clamp(20px, 1.7vw, 25px);
}
.trustees-grid-polished .trustee-info p {
  font-size: 14px;
  line-height: 1.58;
}
@media (max-width: 980px) {
  .trustee-chairman-card,
  .trustee-advisor-card {
    grid-template-columns: 1fr;
  }
  .trustee-photo-chairman,
  .trustee-photo-advisor {
    min-height: 340px;
  }
  .trustee-info-feature h3,
  .trustee-info-advisor h3 {
    max-width: none;
  }
}
@media (max-width: 720px) {
  .trustee-chairman-card,
  .trustee-advisor-card {
    border-radius: 26px;
  }
  .trustee-photo-chairman,
  .trustee-photo-advisor {
    min-height: 300px;
    height: 300px;
  }
  .trustee-info-feature,
  .trustee-info-advisor {
    padding: 24px;
  }
  .trustee-info-feature h3 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .trustees-grid-polished .trustee-photo {
    height: 270px;
  }
}


/* V14 dropdown menu + trustee hierarchy polish */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-parent { display: inline-flex; align-items: center; gap: 7px; }
.nav-parent::after { content: '⌄'; font-size: 12px; line-height: 1; transform: translateY(-1px); opacity: .74; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(29,29,31,.08);
  box-shadow: 0 26px 70px rgba(17,17,38,.16);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 80;
}
.dropdown-menu::before { content: ''; position: absolute; left: 0; right: 0; top: -22px; height: 22px; }
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown-menu a { padding: 11px 12px; border-radius: 14px; color: var(--ink); opacity: 1 !important; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dropdown-menu a:hover { background: rgba(91,45,130,.07); color: var(--purple); }
.dropdown-menu small { font-size: 10px; font-weight: 800; letter-spacing: .02em; color: var(--muted); white-space: nowrap; }
.about-statement-card { align-self: stretch; display: grid; align-content: center; }
.vision-grid { margin-bottom: 22px; }
.objective-grid { margin-top: 22px; }
.trustee-chairman-card { grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr); min-height: 430px; }
.trustee-info-feature { position: relative; }
.trustee-info-feature::after {
  content: '';
  position: absolute;
  right: clamp(22px, 4vw, 48px);
  bottom: clamp(22px, 4vw, 44px);
  width: 150px;
  height: 150px;
  background: url('/images/logo-mark.png') center/contain no-repeat;
  opacity: .045;
  pointer-events: none;
}
.trustee-info-feature h3 { max-width: 11ch; }
.trustee-signature-block {
  margin-top: 8px;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: fit-content;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(91,45,130,.07);
  border: 1px solid rgba(91,45,130,.10);
}
.trustee-signature-block strong { font-size: 30px; line-height: 1; letter-spacing: -.05em; color: var(--purple); }
.trustee-signature-block em { font-style: normal; font-size: 13px; line-height: 1.35; color: var(--muted); font-weight: 720; }
.trustee-note { display: none !important; }
.trustee-advisor-card {
  width: min(920px, 92%);
  margin: 0 auto;
  grid-template-columns: minmax(220px, .38fr) minmax(0, .62fr);
  min-height: 285px;
  border-radius: 30px;
}
.trustee-photo-advisor { min-height: 285px; padding: 22px 20px 0; }
.trustee-info-advisor { padding: clamp(26px, 3.5vw, 40px); }
.trustee-info-advisor h3 { font-size: clamp(26px, 2.7vw, 38px); max-width: 17ch; }
.annual-report-card { text-align: left; background: linear-gradient(135deg, #fff, #fbf9ff); border-color: rgba(91,45,130,.1); }
.annual-report-card h2 { max-width: 14ch; margin-top: 14px; margin-bottom: 12px; }
.annual-report-card p { max-width: 720px; font-size: 16px; line-height: 1.7; }
@media (max-width: 980px) {
  .nav-item.has-dropdown { display: none; }
  .trustee-advisor-card { width: 100%; grid-template-columns: 1fr; }
  .trustee-chairman-card { grid-template-columns: 1fr; }
  .trustee-photo-chairman { min-height: 360px; }
  .trustee-photo-advisor { min-height: 315px; }
}
@media (max-width: 720px) {
  .trustee-photo-chairman { min-height: 315px; height: 315px; }
  .trustee-photo-advisor { min-height: 285px; height: 285px; }
  .trustee-signature-block { width: 100%; }
  .annual-report-card h2 { max-width: none; }
}


/* V15 trustee final polish */
.dropdown-menu a {
  justify-content: flex-start;
}
.dropdown-menu small,
.trustee-signature-block {
  display: none !important;
}
.trustee-info-feature {
  min-height: 100%;
}
.trustee-info-feature h3 {
  margin-top: 2px;
}
.trustee-info-feature p {
  max-width: 520px;
}
.trustees-grid-polished .trustee-photo {
  height: 282px;
  min-height: 282px;
  padding: 20px 18px 0;
}
.trustees-grid-polished .trustee-photo img {
  height: 100%;
  width: auto;
  max-width: 96%;
  object-fit: contain;
  object-position: bottom center;
}
@media (max-width: 720px) {
  .trustees-grid-polished .trustee-photo {
    height: 275px;
    min-height: 275px;
  }
}
