:root {
  --ink: #102033;
  --ink-2: #223349;
  --muted: #667286;
  --paper: #ffffff;
  --canvas: #fbf8f1;
  --soft: #f2f6f2;
  --soft-2: #edf5f7;
  --green: #0b7f6a;
  --green-dark: #075f50;
  --blue: #1e5bb8;
  --saffron: #f59e0b;
  --maroon: #b63d4c;
  --line: rgba(16, 32, 51, 0.12);
  --shadow: 0 18px 50px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 32, 51, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(245, 158, 11, 0.16), transparent 28rem),
    radial-gradient(circle at 95% 8rem, rgba(30, 91, 184, 0.12), transparent 31rem),
    linear-gradient(180deg, #fffaf0 0%, #fbf8f1 24rem, #ffffff 55rem, #f7faf8 100%);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(245, 158, 11, 0.32); }

.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.container.narrow { --max: 880px; }
.skip-link { position: fixed; top: 12px; left: -999px; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 999px; z-index: 999; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 251, 241, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  transition: box-shadow 0.22s ease, background 0.22s ease;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.93); box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08); }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; min-width: 174px; }
.brand img { width: 180px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 4px; padding: 6px; border: 1px solid rgba(16, 32, 51, 0.08); background: rgba(255,255,255,0.72); border-radius: 999px; }
.nav-link { padding: 10px 14px; color: var(--ink-2); font-weight: 700; font-size: 0.91rem; border-radius: 999px; transition: background 0.18s ease, color 0.18s ease; }
.nav-link:hover, .nav-link.active { background: var(--green); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.quick-call { font-size: 0.9rem; font-weight: 800; color: var(--green-dark); padding: 9px 12px; border: 1px solid rgba(11, 127, 106, 0.2); border-radius: 999px; background: rgba(255,255,255,0.75); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; }

main { overflow: hidden; }
.section { padding: 82px 0; }
.section.compact { padding: 56px 0; }
.bg-soft { background: linear-gradient(180deg, rgba(242, 246, 242, 0.92), rgba(237, 245, 247, 0.72)); border-block: 1px solid rgba(16, 32, 51, 0.07); }
.bg-dark { background: #102033; color: #fff; }
.bg-dark .muted, .bg-dark p { color: rgba(255,255,255,0.72); }
.bg-dark .section-eyebrow { color: #9de7d8; background: rgba(255,255,255,0.08); }

.hero { padding: 72px 0 72px; position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr); gap: 50px; align-items: center; }
.hero-badge, .section-eyebrow, .page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: rgba(11, 127, 106, 0.10);
  border: 1px solid rgba(11, 127, 106, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  max-width: 800px;
}
.gradient-text { color: var(--green); }
.hero-lead, .page-lead { max-width: 700px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
  font-size: 0.94rem;
  box-shadow: 0 9px 20px rgba(16, 32, 51, 0.07);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(16, 32, 51, 0.11); }
.btn-primary { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--green), #0d9b80); }
.btn-blue { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--blue), #3274d8); }
.btn-saffron { color: #321d06; border-color: rgba(245,158,11,0.2); background: linear-gradient(135deg, #ffd166, var(--saffron)); }
.btn-outline { color: var(--green-dark); background: rgba(255,255,255,0.66); border-color: rgba(11,127,106,0.25); box-shadow: none; }
.btn-white { background: #fff; color: var(--ink); }

.hero-visual { position: relative; }
.hero-frame { position: relative; padding: 14px; background: rgba(255,255,255,0.68); border: 1px solid rgba(16, 32, 51, 0.09); border-radius: var(--radius-xl); box-shadow: var(--shadow); overflow: hidden; }
.hero-frame img { border-radius: 22px; aspect-ratio: 1.28 / .86; object-fit: cover; width: 100%; }
.hero-card {
  position: absolute;
  left: 26px;
  bottom: 26px;
  width: min(280px, calc(100% - 52px));
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 35px rgba(16, 32, 51, 0.18);
  border: 1px solid rgba(16, 32, 51, 0.08);
}
.hero-card span { color: var(--green-dark); font-weight: 900; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-card strong { display: block; margin-top: 4px; font-size: 1.7rem; line-height: 1.1; }
.hero-card p { margin: 6px 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.trust-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; max-width: 720px; }
.trust-strip span { padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,0.78); border: 1px solid rgba(16, 32, 51, 0.08); color: var(--ink-2); font-weight: 800; font-size: 0.9rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 38px; }
.stat-card { background: rgba(255,255,255,0.85); border: 1px solid rgba(16,32,51,0.09); border-radius: 22px; padding: 20px; box-shadow: var(--shadow-soft); }
.stat-card span { display: block; color: var(--muted); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-card strong { display: block; margin: 8px 0 2px; font-size: clamp(1.75rem, 3.4vw, 2.35rem); line-height: 1; color: var(--green-dark); letter-spacing: -0.04em; }
.stat-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.section-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: 32px; }
.section-title.center { display: block; max-width: 780px; margin-inline: auto; text-align: center; }
.section-title h2, .split h2, .cta-panel h2 { margin: 12px 0 10px; font-size: clamp(1.85rem, 3vw, 2.65rem); line-height: 1.12; letter-spacing: -0.04em; }
.section-title p, .split p { margin: 0; color: var(--muted); max-width: 740px; font-size: 1.02rem; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.auto-grid { grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); }

.mission-card, .programme-card, .legal-card, .value-card, .collab-card, .finance-card {
  background: var(--paper);
  border: 1px solid rgba(16, 32, 51, 0.10);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.number-mark, .code-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding-inline: 10px;
  border-radius: 999px;
  background: rgba(11, 127, 106, 0.12);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.mission-card h3, .programme-card h3, .legal-card h3, .value-card h3, .collab-card h3 { margin: 16px 0 8px; font-size: 1.16rem; line-height: 1.28; }
.mission-card p, .programme-card p, .legal-card p, .value-card p, .collab-card p { color: var(--muted); margin: 0; font-size: 0.96rem; }
.programme-card { position: relative; overflow: hidden; }
.programme-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--green), var(--blue), var(--saffron)); }
.programme-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.amount { font-weight: 900; color: var(--blue); font-size: 0.9rem; }
.programme-card ul { padding-left: 18px; margin: 16px 0 0; color: var(--ink-2); font-size: 0.94rem; }
.programme-card li + li { margin-top: 6px; }
.basis { margin-top: 16px; padding: 14px; border-radius: 14px; background: var(--soft); color: var(--muted); font-size: 0.9rem; }

.story-panel { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 34px; align-items: center; }
.story-card { border-radius: var(--radius-xl); background: #102033; color: #fff; padding: 34px; min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow); }
.story-card span { color: #9de7d8; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.story-card blockquote { margin: 20px 0; font-size: clamp(1.55rem, 3vw, 2.3rem); line-height: 1.18; letter-spacing: -0.04em; }
.story-card p { margin: 0; color: rgba(255,255,255,0.72); }
.story-list { display: grid; gap: 16px; }
.story-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; padding: 20px; background: #fff; border-radius: 20px; border: 1px solid rgba(16,32,51,0.09); box-shadow: var(--shadow-soft); }
.story-item strong { width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(245,158,11,0.16); color: #8b4c02; font-weight: 950; }
.story-item h3 { margin: 0 0 6px; font-size: 1.05rem; }
.story-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr); gap: 38px; align-items: start; }
.feature-panel { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-xl); padding: 24px; }
.activity-chart { display: grid; gap: 14px; }
.chart-row { display: grid; gap: 8px; }
.chart-info { display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,0.86); font-size: 0.88rem; }
.chart-info strong { white-space: nowrap; color: #fff; }
.bar { height: 10px; background: rgba(255,255,255,0.12); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #62d3be, #7aa7ff, #ffd166); }
.muted-bar { background: rgba(16,32,51,0.08); }
.muted-bar i { background: linear-gradient(90deg, var(--green), var(--blue)); }

.page-hero { padding: 62px 0 44px; }
.page-hero .container { display: grid; gap: 8px; }
.page-hero h1 { max-width: 880px; }
.page-hero .meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.meta-row span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,0.8); border: 1px solid rgba(16,32,51,0.08); color: var(--ink-2); font-weight: 800; font-size: 0.9rem; }

.legal-card span { color: var(--green-dark); font-weight: 900; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; }
.legal-card h3 { color: var(--ink); margin-top: 8px; }

.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.team-card { background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid rgba(16,32,51,0.1); box-shadow: var(--shadow-soft); }
.team-photo { aspect-ratio: 4 / 5; background: linear-gradient(135deg, #e9f4f1, #fff3d5); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.initial-card { width: 100%; height: 100%; display: grid; place-items: center; font-size: 4.2rem; font-weight: 950; color: #fff; background: linear-gradient(135deg, var(--green), var(--blue)); }
.team-info { padding: 20px; }
.team-info h3 { margin: 0 0 4px; font-size: 1.14rem; }
.team-info span { color: var(--green-dark); font-weight: 900; font-size: 0.84rem; }
.team-info p { margin: 12px 0 0; color: var(--muted); font-size: 0.94rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-card { background: #fff; border: 1px solid rgba(16,32,51,0.09); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-soft); }
.gallery-card button { width: 100%; display: block; position: relative; padding: 0; border: 0; background: #f7f6f0; cursor: pointer; overflow: hidden; }
.gallery-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.24s ease; }
.gallery-card img.document-img { object-fit: contain; padding: 12px; background: #fff; }
.gallery-card button:hover img { transform: scale(1.035); }
.gallery-tag { position: absolute; left: 12px; top: 12px; padding: 6px 9px; border-radius: 999px; color: #fff; background: rgba(11, 127, 106, 0.92); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; }
.gallery-card div { padding: 18px; }
.gallery-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.gallery-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.filter-btn { border: 1px solid rgba(16,32,51,0.12); border-radius: 999px; background: #fff; color: var(--ink-2); padding: 10px 14px; font-weight: 850; font-size: 0.88rem; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { color: #fff; background: var(--green); border-color: var(--green); }
.gallery-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(8, 17, 30, 0.82); }
.gallery-modal.open { display: flex; }
.gallery-dialog { width: min(1060px, 100%); max-height: 92vh; overflow: auto; background: #fff; border-radius: 26px; }
.gallery-dialog header { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.gallery-dialog h2 { margin: 0; font-size: 1.15rem; }
.gallery-dialog p { margin: 0; color: var(--muted); }
.gallery-dialog img { width: 100%; max-height: 72vh; object-fit: contain; background: #f7f6f0; }
.modal-close { width: 40px; height: 40px; border: 1px solid var(--line); background: #fff; border-radius: 50%; cursor: pointer; font-size: 1.35rem; line-height: 1; }

.finance-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; }
.finance-card h3 { margin: 0 0 14px; font-size: 1.15rem; }
.data-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 14px; }
.data-table td { padding: 12px 0; border-bottom: 1px solid rgba(16,32,51,0.08); }
.data-table td:last-child { text-align: right; font-weight: 900; color: var(--green-dark); }
.receipt-chart { display: grid; gap: 18px; }
.receipt-item span { display: block; font-weight: 850; color: var(--ink-2); }
.receipt-item strong { display: block; margin: 3px 0 8px; color: var(--green-dark); }
.disclosure-note { padding: 18px; border-left: 4px solid var(--saffron); background: #fff8e8; border-radius: 16px; color: #5b4020; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 34px; border-radius: 28px; color: #fff; background: linear-gradient(135deg, #0b7f6a, #1e5bb8); box-shadow: var(--shadow); }
.cta-panel p { margin: 0; color: rgba(255,255,255,0.78); max-width: 720px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 26px; align-items: start; }
.contact-card, .form-card { background: #fff; border: 1px solid rgba(16,32,51,0.1); border-radius: 24px; padding: 26px; box-shadow: var(--shadow-soft); }
.contact-item { display: grid; gap: 6px; padding: 18px 0; border-bottom: 1px solid rgba(16,32,51,0.08); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { color: var(--green-dark); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item strong, .contact-item a { color: var(--ink); font-weight: 850; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--ink-2); font-weight: 850; font-size: 0.9rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(16,32,51,0.16); border-radius: 14px; padding: 12px 13px; background: #fff; color: var(--ink); outline: none; transition: border 0.18s ease, box-shadow 0.18s ease; }
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(11,127,106,0.55); box-shadow: 0 0 0 4px rgba(11,127,106,0.10); }
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.form-status { min-height: 22px; margin-top: 14px; color: var(--green-dark); font-weight: 800; }
.form-help { color: var(--muted); font-size: 0.92rem; margin: 12px 0 0; }

.float-contact { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; gap: 10px; }
.float-contact a { min-width: 84px; text-align: center; padding: 11px 14px; border-radius: 999px; color: #fff; background: var(--green); font-weight: 900; box-shadow: var(--shadow-soft); font-size: 0.9rem; }
.float-contact a:last-child { background: var(--blue); }

.site-footer { padding: 54px 0 24px; background: #0e1b2b; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.65fr 1fr; gap: 34px; }
.footer-logo { width: 190px; filter: brightness(0) invert(1); }
.site-footer p { color: rgba(255,255,255,0.68); margin: 14px 0 0; }
.site-footer h3 { margin: 0 0 14px; font-size: 1rem; }
.footer-links { display: grid; gap: 8px; }
.footer-links a, .site-footer a { color: rgba(255,255,255,0.82); }
.footer-links a:hover, .site-footer a:hover { color: #fff; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-badges span { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); font-weight: 800; font-size: 0.78rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.58); font-size: 0.9rem; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.show { opacity: 1; transform: none; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .quick-call { display: none; }
  .hero-grid, .story-panel, .split, .finance-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid, .grid-4, .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .nav-wrap { height: 70px; }
  .brand img { width: 160px; }
  .menu-toggle { display: inline-block; }
  .primary-nav { position: fixed; inset: 70px 16px auto; display: none; flex-direction: column; align-items: stretch; padding: 12px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .nav-link { text-align: center; padding: 13px; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 64px 0; }
  .section-title { display: block; }
  .section-title .btn { margin-top: 20px; }
  .trust-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .container { width: min(100% - 24px, var(--max)); }
  .hero h1, .page-hero h1 { font-size: clamp(2.05rem, 12vw, 2.8rem); }
  .stats-grid, .grid-2, .grid-3, .grid-4, .team-grid, .gallery-grid, .form-grid { grid-template-columns: 1fr; }
  .gallery-card img { height: 230px; }
  .hero-card { position: static; width: auto; margin: -22px 18px 0; transform: translateY(0); }
  .hero-frame { padding: 10px; }
  .story-card, .cta-panel, .contact-card, .form-card { padding: 24px; }
  .float-contact { left: 12px; right: 12px; justify-content: center; }
  .float-contact a { flex: 1; }
}

.finance-card .chart-info { color: var(--ink-2); }
.finance-card .chart-info strong { color: var(--green-dark); }
.finance-card .bar { background: rgba(16, 32, 51, 0.08); }
.finance-card .bar i { background: linear-gradient(90deg, var(--green), var(--blue), var(--saffron)); }
